diff --git a/Gopkg.lock b/Gopkg.lock index 754e57c..10183c9 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -25,6 +25,12 @@ packages = ["."] revision = "75ee37df8664a47cd5d9eb84d41e1f2b08086893" +[[projects]] + branch = "master" + name = "github.com/danielheath/gin-teeny-security" + packages = ["."] + revision = "0bc769386cc5a75bd79ccdcceaf0f977eeb6990e" + [[projects]] name = "github.com/garyburd/redigo" packages = ["internal","redis"] @@ -109,6 +115,12 @@ revision = "4048872b16cc0fc2c5fd9eacf0ed2c2fedaa0c8c" version = "v1.5" +[[projects]] + name = "github.com/schollz/cowyo" + packages = ["encrypt"] + revision = "684ff4e692da7ce06781b2fecb47b34fc100faf4" + version = "v2.8.0" + [[projects]] branch = "master" name = "github.com/schollz/cryptopasta" @@ -238,6 +250,6 @@ [solve-meta] analyzer-name = "dep" analyzer-version = 1 - inputs-digest = "3b488719d6a087407dfd8d956f305228c41a71472ce5c12d09c3a22cdaacbbcb" + inputs-digest = "78100cdb84da20268b3f0840cd94ee575c61b892b6474f3744499256026625af" solver-name = "gps-cdcl" solver-version = 1 diff --git a/handlers.go b/handlers.go index 57964bb..c5a356f 100755 --- a/handlers.go +++ b/handlers.go @@ -11,6 +11,7 @@ import ( "time" // "github.com/gin-contrib/static" + secretRequired "github.com/danielheath/gin-teeny-security" "github.com/gin-contrib/multitemplate" "github.com/gin-contrib/sessions" "github.com/gin-gonic/gin" @@ -34,11 +35,17 @@ func serve( debounce int, diary bool, secret string, + secretCode string, + allowInsecure bool, ) { + gin.SetMode(gin.ReleaseMode) router := gin.Default() store := sessions.NewCookieStore([]byte(secret)) router.Use(sessions.Sessions("mysession", store)) + if secretCode != "" { + router.Use(secretRequired.RequiresSecretAccessCode(secretCode, "/login/")) + } router.HTMLRender = loadTemplates("index.tmpl") // router.Use(static.Serve("/static/", static.LocalFile("./static", true))) router.GET("/", func(c *gin.Context) { @@ -89,6 +96,9 @@ func serve( // set diary mode diaryMode = diary + // Allow iframe/scripts in markup? + allowInsecureHtml = allowInsecure + if TLS { http.ListenAndServeTLS(host+":"+port, crt_path, key_path, router) } else { diff --git a/main.go b/main.go index 85ee507..6aaa78d 100755 --- a/main.go +++ b/main.go @@ -39,7 +39,6 @@ func main() { fmt.Printf("\nRunning cowyo server (version %s) at http://%s:%s\n\n", version, host, c.GlobalString("port")) } - allowInsecureHtml = c.GlobalBool("allow-insecure-markup") serve( c.GlobalString("host"), c.GlobalString("port"), @@ -52,6 +51,8 @@ func main() { c.GlobalInt("debounce"), c.GlobalBool("diary"), c.GlobalString("cookie-secret"), + c.GlobalString("access-code"), + c.GlobalBool("allow-insecure-markup"), ) return nil } @@ -118,6 +119,11 @@ func main() { Name: "diary", Usage: "turn diary mode (doing New will give a timestamped page)", }, + cli.StringFlag{ + Name: "access-code", + Value: "", + Usage: "Secret code to login with before accessing any wiki stuff", + }, cli.StringFlag{ Name: "cookie-secret", Value: "secret", diff --git a/vendor/github.com/danielheath/gin-teeny-security/.gitignore b/vendor/github.com/danielheath/gin-teeny-security/.gitignore new file mode 100644 index 0000000..3ce482d --- /dev/null +++ b/vendor/github.com/danielheath/gin-teeny-security/.gitignore @@ -0,0 +1,15 @@ +# Binaries for programs and plugins +*.exe +*.dll +*.so +*.dylib + +# Test binary, build with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736 +.glide/ +vendor diff --git a/vendor/github.com/danielheath/gin-teeny-security/Gopkg.lock b/vendor/github.com/danielheath/gin-teeny-security/Gopkg.lock new file mode 100644 index 0000000..ffd15f7 --- /dev/null +++ b/vendor/github.com/danielheath/gin-teeny-security/Gopkg.lock @@ -0,0 +1,117 @@ +# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. + + +[[projects]] + name = "github.com/boj/redistore" + packages = ["."] + revision = "fc113767cd6b051980f260d6dbe84b2740c46ab0" + version = "v1.2" + +[[projects]] + branch = "master" + name = "github.com/bradfitz/gomemcache" + packages = ["memcache"] + revision = "1952afaa557dc08e8e0d89eafab110fb501c1a2b" + +[[projects]] + branch = "master" + name = "github.com/bradleypeabody/gorilla-sessions-memcache" + packages = ["."] + revision = "75ee37df8664a47cd5d9eb84d41e1f2b08086893" + +[[projects]] + name = "github.com/garyburd/redigo" + packages = ["internal","redis"] + revision = "d1ed5c67e5794de818ea85e6b522fda02623a484" + version = "v1.4.0" + +[[projects]] + branch = "master" + name = "github.com/gin-contrib/sessions" + packages = ["."] + revision = "cccdeef56346e7037ca92de250c2b55ef5e7ffe3" + +[[projects]] + branch = "master" + name = "github.com/gin-contrib/sse" + packages = ["."] + revision = "22d885f9ecc78bf4ee5d72b937e4bbcdc58e8cae" + +[[projects]] + name = "github.com/gin-gonic/gin" + packages = [".","binding","render"] + revision = "d459835d2b077e44f7c9b453505ee29881d5d12d" + version = "v1.2" + +[[projects]] + branch = "master" + name = "github.com/golang/protobuf" + packages = ["proto"] + revision = "1e59b77b52bf8e4b449a57e6f79f21226d571845" + +[[projects]] + name = "github.com/gorilla/context" + packages = ["."] + revision = "1ea25387ff6f684839d82767c1733ff4d4d15d0a" + version = "v1.1" + +[[projects]] + name = "github.com/gorilla/securecookie" + packages = ["."] + revision = "667fe4e3466a040b780561fe9b51a83a3753eefc" + version = "v1.1" + +[[projects]] + name = "github.com/gorilla/sessions" + packages = ["."] + revision = "ca9ada44574153444b00d3fd9c8559e4cc95f896" + version = "v1.1" + +[[projects]] + branch = "master" + name = "github.com/kidstuff/mongostore" + packages = ["."] + revision = "256d65ac5b0e35e7c5ebb3f175c0bed1e5c2b253" + +[[projects]] + name = "github.com/mattn/go-isatty" + packages = ["."] + revision = "0360b2af4f38e8d38c7fce2a9f4e702702d73a39" + version = "v0.0.3" + +[[projects]] + branch = "master" + name = "github.com/ugorji/go" + packages = ["codec"] + revision = "9831f2c3ac1068a78f50999a30db84270f647af6" + +[[projects]] + branch = "master" + name = "golang.org/x/sys" + packages = ["unix"] + revision = "2c42eef0765b9837fbdab12011af7830f55f88f0" + +[[projects]] + name = "gopkg.in/go-playground/validator.v8" + packages = ["."] + revision = "5f1438d3fca68893a817e4a66806cea46a9e4ebf" + version = "v8.18.2" + +[[projects]] + branch = "v2" + name = "gopkg.in/mgo.v2" + packages = [".","bson","internal/json","internal/sasl","internal/scram"] + revision = "3f83fa5005286a7fe593b055f0d7771a7dce4655" + +[[projects]] + branch = "v2" + name = "gopkg.in/yaml.v2" + packages = ["."] + revision = "d670f9405373e636a5a2765eea47fac0c9bc91a4" + +[solve-meta] + analyzer-name = "dep" + analyzer-version = 1 + inputs-digest = "d185a6d39b5e201aa40795d091e9a9aac336d3dd891d7716a511e7f5b6fb6dda" + solver-name = "gps-cdcl" + solver-version = 1 diff --git a/vendor/github.com/danielheath/gin-teeny-security/Gopkg.toml b/vendor/github.com/danielheath/gin-teeny-security/Gopkg.toml new file mode 100644 index 0000000..93a549f --- /dev/null +++ b/vendor/github.com/danielheath/gin-teeny-security/Gopkg.toml @@ -0,0 +1,4 @@ + +[[constraint]] + name = "github.com/gin-gonic/gin" + version = "1.2.0" diff --git a/vendor/github.com/danielheath/gin-teeny-security/LICENSE b/vendor/github.com/danielheath/gin-teeny-security/LICENSE new file mode 100644 index 0000000..dbbe355 --- /dev/null +++ b/vendor/github.com/danielheath/gin-teeny-security/LICENSE @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/vendor/github.com/danielheath/gin-teeny-security/README.md b/vendor/github.com/danielheath/gin-teeny-security/README.md new file mode 100644 index 0000000..584ad54 --- /dev/null +++ b/vendor/github.com/danielheath/gin-teeny-security/README.md @@ -0,0 +1,2 @@ +# gin-teeny-security +A tiny middleware to add low-fi protection to personal pages diff --git a/vendor/github.com/danielheath/gin-teeny-security/gin-teeny-security.go b/vendor/github.com/danielheath/gin-teeny-security/gin-teeny-security.go new file mode 100644 index 0000000..e645ed3 --- /dev/null +++ b/vendor/github.com/danielheath/gin-teeny-security/gin-teeny-security.go @@ -0,0 +1,65 @@ +// A GIN middleware providing low-fi security for personal stuff. +package gin_teeny_security + +import "github.com/gin-gonic/gin" +import "github.com/gin-contrib/sessions" +import "net/http" + +// Forces you to a login page until you provide a secret code. +// No CSRF protection, so any script on any page can log you +// out (or in, if they know the password). +// The rest of your site needs XSS protection on forms or any site on the +// net can inject stuff. If you're sending open CORS headers this +// would be particularly bad. +func RequiresSecretAccessCode(secretAccessCode, path string) gin.HandlerFunc { + return func(c *gin.Context) { + session := sessions.Default(c) + if c.Request.URL.Path == path { + if c.Request.Method == "POST" { + c.Request.ParseForm() + + if c.Request.PostForm.Get("secretAccessCode") == secretAccessCode { + c.Header("Location", "/") + session.Set("secretAccessCode", secretAccessCode) + session.Save() + c.AbortWithStatus(http.StatusFound) + return + } else { + session.Set("secretAccessCode", "") + session.Save() + c.Data(http.StatusForbidden, "text/html", []byte(` +

Login

+

Wrong password

+
+ + +
+ `)) + c.Abort() + return + } + } else if c.Request.Method == "GET" { + c.Data(http.StatusOK, "text/html", []byte(` +

Login

+
+ + +
+ `)) + c.Abort() + return + } else { + c.Next() + return + } + } + + v := session.Get("secretAccessCode") + if v != secretAccessCode { + c.Header("Location", path) + c.AbortWithStatus(http.StatusTemporaryRedirect) + } else { + c.Next() + } + } +} diff --git a/vendor/github.com/schollz/cowyo/.gitattributes b/vendor/github.com/schollz/cowyo/.gitattributes new file mode 100644 index 0000000..fdfde9d --- /dev/null +++ b/vendor/github.com/schollz/cowyo/.gitattributes @@ -0,0 +1 @@ +static/* linguist-vendored diff --git a/vendor/github.com/schollz/cowyo/.gitignore b/vendor/github.com/schollz/cowyo/.gitignore new file mode 100644 index 0000000..189a123 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/.gitignore @@ -0,0 +1,27 @@ +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a +*.so + +# Folders +_obj +_test + +# Architecture specific extensions/prefixes +*.[568vq] +[568vq].out + +*.cgo1.go +*.cgo2.c +_cgo_defun.c +_cgo_gotypes.go +_cgo_export.* + +_testmain.go + +*.exe +*.test +*.prof + +data/* +cowyo \ No newline at end of file diff --git a/vendor/github.com/schollz/cowyo/.travis.yml b/vendor/github.com/schollz/cowyo/.travis.yml new file mode 100644 index 0000000..c2bc606 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/.travis.yml @@ -0,0 +1,8 @@ +language: go + +go: + - tip + +before_install: + - go get -u github.com/schollz/cowyo + - go get -u github.com/jteeuwen/go-bindata/... diff --git a/vendor/github.com/schollz/cowyo/Dockerfile b/vendor/github.com/schollz/cowyo/Dockerfile new file mode 100644 index 0000000..ac2c9bf --- /dev/null +++ b/vendor/github.com/schollz/cowyo/Dockerfile @@ -0,0 +1,25 @@ +# First build step +FROM golang:1.9-alpine as builder + +WORKDIR /go/src/cowyo +COPY . . +# Disable crosscompiling +ENV CGO_ENABLED=0 + +# Install git and make, compile and cleanup +RUN apk add --no-cache git make \ + && go get -u github.com/schollz/cowyo \ + && go get -u github.com/jteeuwen/go-bindata/... \ + && make \ + && apk del --purge git make \ + && rm -rf /var/cache/apk* + +# Second build step uses the minimal scratch Docker image +FROM scratch +# Copy the binary from the first step +COPY --from=builder /go/src/cowyo/cowyo /usr/local/bin/cowyo +# Expose data folder +VOLUME /data +EXPOSE 8050 +# Start cowyo listening on any host +CMD ["cowyo", "--host", "0.0.0.0"] \ No newline at end of file diff --git a/vendor/github.com/schollz/cowyo/Gopkg.lock b/vendor/github.com/schollz/cowyo/Gopkg.lock new file mode 100644 index 0000000..754e57c --- /dev/null +++ b/vendor/github.com/schollz/cowyo/Gopkg.lock @@ -0,0 +1,243 @@ +# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. + + +[[projects]] + branch = "master" + name = "dmitri.shuralyov.com/kebabcase" + packages = ["."] + revision = "bf160e40a7918fbe9dc3cc841a023d87242bd2eb" + +[[projects]] + name = "github.com/boj/redistore" + packages = ["."] + revision = "fc113767cd6b051980f260d6dbe84b2740c46ab0" + version = "v1.2" + +[[projects]] + branch = "master" + name = "github.com/bradfitz/gomemcache" + packages = ["memcache"] + revision = "1952afaa557dc08e8e0d89eafab110fb501c1a2b" + +[[projects]] + branch = "master" + name = "github.com/bradleypeabody/gorilla-sessions-memcache" + packages = ["."] + revision = "75ee37df8664a47cd5d9eb84d41e1f2b08086893" + +[[projects]] + name = "github.com/garyburd/redigo" + packages = ["internal","redis"] + revision = "34a326de1fea52965fa5ad664d3fc7163dd4b0a1" + version = "v1.2.0" + +[[projects]] + branch = "master" + name = "github.com/gin-contrib/multitemplate" + packages = ["."] + revision = "bbc6daf6024bc4c48f334a0490321cd48a24da3d" + +[[projects]] + branch = "master" + name = "github.com/gin-contrib/sessions" + packages = ["."] + revision = "cccdeef56346e7037ca92de250c2b55ef5e7ffe3" + +[[projects]] + branch = "master" + name = "github.com/gin-contrib/sse" + packages = ["."] + revision = "22d885f9ecc78bf4ee5d72b937e4bbcdc58e8cae" + +[[projects]] + name = "github.com/gin-gonic/gin" + packages = [".","binding","render"] + revision = "d459835d2b077e44f7c9b453505ee29881d5d12d" + version = "v1.2" + +[[projects]] + branch = "master" + name = "github.com/golang/protobuf" + packages = ["proto"] + revision = "1643683e1b54a9e88ad26d98f81400c8c9d9f4f9" + +[[projects]] + name = "github.com/gorilla/context" + packages = ["."] + revision = "1ea25387ff6f684839d82767c1733ff4d4d15d0a" + version = "v1.1" + +[[projects]] + name = "github.com/gorilla/securecookie" + packages = ["."] + revision = "667fe4e3466a040b780561fe9b51a83a3753eefc" + version = "v1.1" + +[[projects]] + name = "github.com/gorilla/sessions" + packages = ["."] + revision = "ca9ada44574153444b00d3fd9c8559e4cc95f896" + version = "v1.1" + +[[projects]] + branch = "master" + name = "github.com/jcelliott/lumber" + packages = ["."] + revision = "dd349441af25132d146d7095c6693a15431fc9b1" + +[[projects]] + branch = "master" + name = "github.com/kidstuff/mongostore" + packages = ["."] + revision = "256d65ac5b0e35e7c5ebb3f175c0bed1e5c2b253" + +[[projects]] + name = "github.com/mattn/go-isatty" + packages = ["."] + revision = "0360b2af4f38e8d38c7fce2a9f4e702702d73a39" + version = "v0.0.3" + +[[projects]] + branch = "master" + name = "github.com/microcosm-cc/bluemonday" + packages = ["."] + revision = "68fecaef60268522d2ac3f0123cec9d3bcab7b6e" + +[[projects]] + name = "github.com/russross/blackfriday" + packages = ["."] + revision = "4048872b16cc0fc2c5fd9eacf0ed2c2fedaa0c8c" + version = "v1.5" + +[[projects]] + branch = "master" + name = "github.com/schollz/cryptopasta" + packages = ["."] + revision = "dcd61c7d42a11660da3789311050e961c0a5be55" + +[[projects]] + branch = "master" + name = "github.com/schollz/versionedtext" + packages = ["."] + revision = "1cef32a305b7272d4df0454533de5e4ba67adfc1" + +[[projects]] + branch = "master" + name = "github.com/sergi/go-diff" + packages = ["diffmatchpatch"] + revision = "2fc9cd33b5f86077aa3e0f442fa0476a9fa9a1dc" + +[[projects]] + branch = "master" + name = "github.com/shurcooL/github_flavored_markdown" + packages = ["."] + revision = "cccd3ce4f8e394ae9f87de0bd8b37e00625913d9" + +[[projects]] + branch = "master" + name = "github.com/shurcooL/go" + packages = ["parserutil","printerutil","reflectfind","reflectsource"] + revision = "c661e953e604ba4a84a3c4e458462a481bd6ce72" + +[[projects]] + branch = "master" + name = "github.com/shurcooL/go-goon" + packages = ["."] + revision = "37c2f522c041b74919a9e5e3a6c5c47eb34730a5" + +[[projects]] + branch = "master" + name = "github.com/shurcooL/graphql" + packages = ["ident"] + revision = "cf6db17b893acfad0ca1929ba6be45bf854790ed" + +[[projects]] + branch = "master" + name = "github.com/shurcooL/highlight_diff" + packages = ["."] + revision = "09bb4053de1b1d872a9f25dc21378fa71dca4e4e" + +[[projects]] + branch = "master" + name = "github.com/shurcooL/highlight_go" + packages = ["."] + revision = "78fb10f4a5f89e812a5e26ab723b954a51226086" + +[[projects]] + branch = "master" + name = "github.com/shurcooL/octiconssvg" + packages = ["."] + revision = "8c9861b86a08c72d14e0285d0dc313bb6df52295" + +[[projects]] + branch = "master" + name = "github.com/shurcooL/sanitized_anchor_name" + packages = ["."] + revision = "86672fcb3f950f35f2e675df2240550f2a50762f" + +[[projects]] + branch = "master" + name = "github.com/sourcegraph/annotate" + packages = ["."] + revision = "f4cad6c6324d3f584e1743d8b3e0e017a5f3a636" + +[[projects]] + branch = "master" + name = "github.com/sourcegraph/syntaxhighlight" + packages = ["."] + revision = "bd320f5d308e1a3c4314c678d8227a0d72574ae7" + +[[projects]] + branch = "master" + name = "github.com/ugorji/go" + packages = ["codec"] + revision = "50189f05eaf5a0c17e5084eb8f7fb91e23699840" + +[[projects]] + branch = "master" + name = "golang.org/x/crypto" + packages = ["bcrypt","blowfish"] + revision = "bd6f299fb381e4c3393d1c4b1f0b94f5e77650c8" + +[[projects]] + branch = "master" + name = "golang.org/x/net" + packages = ["html","html/atom"] + revision = "01c190206fbdffa42f334f4b2bf2220f50e64920" + +[[projects]] + branch = "master" + name = "golang.org/x/sys" + packages = ["unix"] + revision = "4fe5d7925040acd225bf9c7cee65e82d07f06bff" + +[[projects]] + name = "gopkg.in/go-playground/validator.v8" + packages = ["."] + revision = "5f1438d3fca68893a817e4a66806cea46a9e4ebf" + version = "v8.18.2" + +[[projects]] + branch = "v2" + name = "gopkg.in/mgo.v2" + packages = [".","bson","internal/json","internal/sasl","internal/scram"] + revision = "3f83fa5005286a7fe593b055f0d7771a7dce4655" + +[[projects]] + name = "gopkg.in/urfave/cli.v1" + packages = ["."] + revision = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1" + version = "v1.20.0" + +[[projects]] + branch = "v2" + name = "gopkg.in/yaml.v2" + packages = ["."] + revision = "eb3733d160e74a9c7e442f435eb3bea458e1d19f" + +[solve-meta] + analyzer-name = "dep" + analyzer-version = 1 + inputs-digest = "3b488719d6a087407dfd8d956f305228c41a71472ce5c12d09c3a22cdaacbbcb" + solver-name = "gps-cdcl" + solver-version = 1 diff --git a/vendor/github.com/schollz/cowyo/Gopkg.toml b/vendor/github.com/schollz/cowyo/Gopkg.toml new file mode 100644 index 0000000..0ca7d1f --- /dev/null +++ b/vendor/github.com/schollz/cowyo/Gopkg.toml @@ -0,0 +1,66 @@ + +# Gopkg.toml example +# +# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md +# for detailed Gopkg.toml documentation. +# +# required = ["github.com/user/thing/cmd/thing"] +# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"] +# +# [[constraint]] +# name = "github.com/user/project" +# version = "1.0.0" +# +# [[constraint]] +# name = "github.com/user/project2" +# branch = "dev" +# source = "github.com/myfork/project2" +# +# [[override]] +# name = "github.com/x/y" +# version = "2.4.0" + + +[[constraint]] + branch = "master" + name = "github.com/gin-contrib/multitemplate" + +[[constraint]] + branch = "master" + name = "github.com/gin-contrib/sessions" + +[[constraint]] + name = "github.com/gin-gonic/gin" + version = "1.2.0" + +[[constraint]] + branch = "master" + name = "github.com/jcelliott/lumber" + +[[constraint]] + branch = "master" + name = "github.com/microcosm-cc/bluemonday" + +[[constraint]] + name = "github.com/russross/blackfriday" + version = "1.5" + +[[constraint]] + branch = "master" + name = "github.com/schollz/cryptopasta" + +[[constraint]] + branch = "master" + name = "github.com/schollz/versionedtext" + +[[constraint]] + branch = "master" + name = "github.com/shurcooL/github_flavored_markdown" + +[[constraint]] + branch = "master" + name = "golang.org/x/crypto" + +[[constraint]] + name = "gopkg.in/urfave/cli.v1" + version = "1.20.0" diff --git a/vendor/github.com/schollz/cowyo/LICENSE b/vendor/github.com/schollz/cowyo/LICENSE new file mode 100644 index 0000000..0ca9765 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2017 Zack + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/github.com/schollz/cowyo/Makefile b/vendor/github.com/schollz/cowyo/Makefile new file mode 100644 index 0000000..81f69cb --- /dev/null +++ b/vendor/github.com/schollz/cowyo/Makefile @@ -0,0 +1,40 @@ +# Make a release with +# make -j4 release + +VERSION=$(shell git describe) +LDFLAGS=-ldflags "-s -w -X main.version=${VERSION}" -a -installsuffix cgo + +.PHONY: build +build: + go-bindata static/... templates/... + go build ${LDFLAGS} + +.PHONY: quick +quick: + go-bindata static/... templates/... + go build + +.PHONY: linuxarm +linuxarm: + env GOOS=linux GOARCH=arm go build ${LDFLAGS} -o dist/cowyo_linux_arm + #cd dist && upx --brute cowyo_linux_arm + +.PHONY: linux64 +linux64: + env GOOS=linux GOARCH=amd64 go build ${LDFLAGS} -o dist/cowyo_linux_amd64 + #cd dist && upx --brute cowyo_linux_amd64 + +.PHONY: windows +windows: + env GOOS=windows GOARCH=amd64 go build ${LDFLAGS} -o dist/cowyo_windows_amd64.exe + #cd dist && upx --brute cowyo_windows_amd64.exe + +.PHONY: osx +osx: + env GOOS=darwin GOARCH=amd64 go build ${LDFLAGS} -o dist/cowyo_osx_amd64 + #cd dist && upx --brute cowyo_osx_amd64 + +.PHONY: release +release: osx windows linux64 linuxarm + + diff --git a/vendor/github.com/schollz/cowyo/README.md b/vendor/github.com/schollz/cowyo/README.md new file mode 100644 index 0000000..84ce9fd --- /dev/null +++ b/vendor/github.com/schollz/cowyo/README.md @@ -0,0 +1,124 @@ + +

+linkcrawler +
+Build Status +Version +

+ +

A feature-rich wiki for minimalists

+ +*cowyo* is a self-contained wiki server that makes jotting notes easy and _fast_. The most important feature here is _simplicity_. Other features include versioning, page locking, self-destructing messages, encryption, and listifying. You can [download *cowyo* as a single executable](https://github.com/schollz/cowyo/releases/latest) or install it with Go. Try it out at https://cowyo.com. + +There is now [a command-line tool, *cowyodel*](https://github.com/schollz/cowyodel) to interact with *cowyo* and transfer information between computers with only a code phrase: [schollz/cowyodel](https://github.com/schollz/cowyodel). + +Getting Started +=============== + +## Install + +If you have go + +``` +go get -u github.com/schollz/cowyo/... +``` + +or just [download the latest release](https://github.com/schollz/cowyo/releases/latest). + +## Run + +To run just double click or from the command line: + +``` +cowyo +``` + +and it will start a server listening on `0.0.0.0:8050`. To view it, just go to http://localhost:8050 (the server prints out the local IP for your info if you want to do LAN networking). You can change the port with `-port X`, and you can listen *only* on localhost using `-host localhost`. + +### Running with TLS + +Specify a matching pair of SSL Certificate and Key to run cowyo using https. *cowyo* will now run in a secure session. + +*N.B. Let's Encrypt is a CA that signs free and signed certificates.* + +``` +cowyo --cert "/path/to/server.crt" --key "/p/t/server.key" +``` + +### Running with Docker + +You can easily get started with Docker. First pull the latest image and create the volume with: + +``` +docker run -d --name cowyo -p 8050:8050 schollz/cowyo +``` + +Then you can stop it with `docker stop cowyo` and start it again with `docker start cowyo`. + +### Running as a micro-CMS + +There are a couple of command-line flags that you can use to make your own micro-CMS. + +``` +cowyo -lock 123 -default-page index.html -css mystyle.css +``` + +The `-lock` flag will automatically lock every page with the passphrase "123". Also, the default behavior will be to redirect `/` to `/index.html`. Also, every page that is published will automatically redirect to `/mypage/read` which will show the custom CSS file if it is supplied with `-css`. + +## Usage + +*cowyo* is straightforward to use. Here are some of the basic features: + +### Editing + +When you open a document you'll be directed to an alliterative animal (which is supposed to be easy to remember). You can write in Markdown. Saving is performed as soon as you stop writing. You can easily link pages using [[PageName]] as you edit. + +![Editing](http://i.imgur.com/vEs2U8z.gif) + +### History + +You can easily see previous versions of your documents. + +![History](http://i.imgur.com/CxhRkyo.gif) + +### Lists + +You can easily make lists and check them off. + +![Lists](http://i.imgur.com/7xbauy8.gif) + +### Locking + +Locking prevents other users from editing your pages without a passphrase. + +![Locking](http://i.imgur.com/xwUFV8b.gif) + +### Encryption + +Encryption is performed using AES-256. + +![Encryption](http://i.imgur.com/rWoqoLB.gif) + +### Self-destructing pages + +Just like in mission impossible. + +![Self-destructing](http://i.imgur.com/upMxFQh.gif) + +## Development + +You can run the tests using + +``` +$ cd $GOPATH/src/github.com/schollz/cowyo +$ go test ./... +``` + +Any contributions are welcome. + +## License + +MIT + diff --git a/vendor/github.com/schollz/cowyo/bindata.go b/vendor/github.com/schollz/cowyo/bindata.go new file mode 100644 index 0000000..743fdb8 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/bindata.go @@ -0,0 +1,1215 @@ +// Code generated by go-bindata. +// sources: +// static/css/base-min.css +// static/css/github-markdown.css +// static/css/highlight.css +// static/css/menus-min.css +// static/img/cowyo/android-icon-144x144.png +// static/img/cowyo/android-icon-192x192.png +// static/img/cowyo/android-icon-36x36.png +// static/img/cowyo/android-icon-48x48.png +// static/img/cowyo/android-icon-72x72.png +// static/img/cowyo/android-icon-96x96.png +// static/img/cowyo/apple-icon-114x114.png +// static/img/cowyo/apple-icon-120x120.png +// static/img/cowyo/apple-icon-144x144.png +// static/img/cowyo/apple-icon-152x152.png +// static/img/cowyo/apple-icon-180x180.png +// static/img/cowyo/apple-icon-57x57.png +// static/img/cowyo/apple-icon-60x60.png +// static/img/cowyo/apple-icon-72x72.png +// static/img/cowyo/apple-icon-76x76.png +// static/img/cowyo/apple-icon-precomposed.png +// static/img/cowyo/apple-icon.png +// static/img/cowyo/browserconfig.xml +// static/img/cowyo/favicon-16x16.png +// static/img/cowyo/favicon-32x32.png +// static/img/cowyo/favicon-96x96.png +// static/img/cowyo/favicon.ico +// static/img/cowyo/manifest.json +// static/img/cowyo/ms-icon-144x144.png +// static/img/cowyo/ms-icon-150x150.png +// static/img/cowyo/ms-icon-310x310.png +// static/img/cowyo/ms-icon-70x70.png +// static/img/logo.png +// static/js/highlight.min.js +// static/js/highlight.pack.js +// static/js/jquery-1.8.3.js +// static/text/adjectives +// static/text/adjectives.old +// static/text/animals +// static/text/animals.all +// static/text/howmany.py +// static/text/robots.txt +// static/text/sitemap.xml +// templates/index.tmpl +// 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 _staticCssBaseMinCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x56\xdd\x8e\xdc\x36\x0f\xbd\xdf\xa7\x70\x10\x04\x48\x02\xdb\xe3\xdd\xfd\x92\xfd\x20\xa3\x37\x4d\x83\x22\x45\x1a\x14\x48\x6f\x8a\xc5\x14\xa0\x25\x8e\xad\xae\x24\x0a\x12\x3d\x3b\xb3\x8e\xdf\xbd\x90\x3d\x3f\x9e\x74\x73\x35\x36\x45\x1e\x1e\xf1\x90\xf4\xac\xde\xbe\xb8\xfa\xa3\x0f\x98\x6d\xab\xf2\x7d\x79\x73\xf5\x81\xfc\x3e\xe8\xb6\xe3\xec\xa6\xba\xbe\xcd\xfe\x82\x8e\xe8\xc5\xd5\x67\x2d\xd1\x45\x54\x59\xef\x14\x86\x8c\x3b\xcc\x7e\xfe\xfa\x4b\x76\x30\x97\x57\x1d\xb3\x8f\x62\xb5\x6a\x35\x77\x7d\x53\x4a\xb2\xab\x7d\x8a\x5c\xf9\x3e\xe0\xaa\x31\xd4\xac\x2c\x44\xc6\xb0\xfa\xfc\xe9\xc3\xc7\x2f\x5f\x3f\x96\x56\x5d\xbd\x5d\x5d\xa5\xec\x8e\x82\x05\xa3\x9f\xb0\x94\x31\x66\xdb\xbf\x6f\xcb\x2a\xfb\x96\xfd\xfe\xe9\xcf\x23\x7c\xf6\x2d\x6b\x35\x97\x9a\x56\x27\xd7\x05\xcd\xd7\xf2\x4d\xf6\x45\x4b\x32\x10\xb3\x5f\xc1\x18\x68\x3b\x0c\x19\x38\x95\xfd\x46\x0e\xb8\x03\x97\x7d\x41\x30\x87\x6c\xd9\x77\xd9\x6e\xcb\xaa\xbc\x7d\x2e\xdd\xf1\x1a\x0e\x27\xe8\xd5\x65\xdc\xdb\x95\xb6\x6d\x6e\xb0\x45\xa7\x86\x86\x82\xc2\x20\xaa\x71\x7e\xcf\x59\xe5\xdc\x0d\x1e\x94\xd2\xae\x15\xd5\xd8\xb1\x35\xc3\x86\x1c\x17\x1b\xb0\xda\xec\x45\x04\x17\x8b\x88\x41\x6f\xea\xc2\xc6\x82\x71\xc7\x45\xd4\x4f\x58\x80\xfa\xa7\x8f\x2c\xae\xab\xea\x55\x5d\x3c\x62\xf3\xa0\xf9\xf9\xd3\xb1\x21\xb5\x1f\x2c\x84\x56\x3b\x51\x8d\x10\x58\x4b\x83\x39\x44\xad\x30\x57\xc8\xa0\x4d\xcc\x37\xba\x95\xe0\x59\x93\x4b\x8f\x7d\xc0\x7c\x43\xc4\x18\xf2\x0e\x41\xa5\x9f\x36\x50\xef\x73\x0b\xda\xe5\x16\x5d\x9f\x3b\xd8\xe6\x11\xe5\x14\x11\x7b\x6b\x21\xec\x07\xa5\xa3\x37\xb0\x17\x8d\x21\xf9\x30\x42\xaf\x34\xe5\x12\xdc\x16\x62\xee\x03\xb5\x01\x63\xcc\xb7\x5a\x21\x9d\x3c\xb5\x33\xda\x61\x31\x05\xd4\x5b\x4c\xd4\xc0\x14\x60\x74\xeb\x44\x03\x11\xd3\xe9\x0c\x24\x1c\xf1\xeb\x7b\x49\x8e\x03\x99\xb8\x7e\x73\x82\x70\xe4\xb0\xee\x30\xe9\x2b\xaa\xf1\xbe\xd3\x4a\xa1\x5b\xe7\x8c\xd6\x1b\x60\xbc\xf0\x1b\x61\x68\x40\x3e\xa4\xbb\x38\x55\x48\x32\x14\x04\x07\x70\xd1\x43\x40\xc7\x23\x08\x90\xac\xb7\x98\x83\xe8\x68\x8b\x61\xa0\x9e\x13\x85\x54\xb6\xa6\x09\xf7\xac\xd9\xe0\xfa\x20\x62\xd1\x10\x33\x59\x71\xed\x77\x99\x22\x66\x54\x63\x93\x93\xe7\xb9\x52\x91\x03\xb9\x76\x96\xf2\x71\x66\x77\x57\x55\xa3\xda\xb8\xd9\x16\x79\x6f\x50\x68\x06\xa3\xe5\xd8\x5d\x1f\x8c\xfa\x09\xc5\x0d\xda\xfa\xa0\x56\xf9\xfe\x0e\x6d\x56\x8d\x16\xc2\xc3\x82\xb9\x78\xb9\xd9\x54\xf5\x4c\xff\x65\x55\x55\x63\xb4\x60\xcc\x02\xe2\xff\xd5\xab\x31\xf6\x4d\x1e\x7b\xbf\xb0\xde\xbd\x7b\x55\x4f\xe5\x3e\x56\xab\xf6\x14\x75\x52\x50\x04\x34\x90\x2e\xfe\x43\x0d\x12\x12\x93\x17\x45\xf9\x0e\x6d\xc2\x1e\x0e\xb7\x2f\xca\x9b\xc9\xb2\x6d\x27\x85\x44\x20\xe2\x37\x43\x2a\xde\xc6\xd0\xa3\x98\xe5\x18\xe7\x9e\x3a\x36\xe1\x35\xda\xec\x7f\x95\xdf\x8d\x5d\x18\x1a\xda\x25\x76\xa9\xfb\x93\xb8\xe8\xb8\x68\x68\x77\x16\xd4\x07\xcc\x53\x5b\x43\x40\x38\xc3\x42\xcf\x34\x4a\x52\x98\x3f\x34\x2a\x4f\x3e\x11\xac\xbf\x18\x1c\x4b\x8e\xa2\x07\x89\xf9\xe9\xa9\x3e\xd7\xe2\x1a\xed\xd8\xf4\xcc\xe4\x72\xed\x7c\xcf\x0b\xe1\xd0\xa0\xe4\x73\xce\xb9\xcc\xda\x75\x18\x34\x4f\x08\xa7\x97\xd3\x4c\xcd\x48\x67\x7a\x5b\x1d\x75\x63\xf0\x98\x61\x86\x1c\xa6\xe9\x9c\xda\x6d\x43\xc1\xce\x0d\x79\xf0\x48\x63\x9f\x4d\x44\xee\x79\xef\xf1\xa7\xd9\xbc\xce\x17\xa6\x80\x11\xf9\xc2\x12\xfb\xc6\x6a\x5e\x0f\xc7\xe9\x07\xef\x11\x02\x38\x89\x62\x8e\xaf\x65\x1f\x22\x05\xe1\x49\x3b\xc6\x70\x48\x76\xaf\x74\x84\xc6\xa0\x5a\x2f\xd3\x9e\x8c\xc3\x21\x48\xe1\x06\x7a\xc3\x87\x20\x21\x0a\x4b\x4f\xc5\x86\x64\x1f\x0b\xed\x1c\x86\x99\xc9\x7f\xed\xa7\x15\x57\x9f\xb7\xda\xe4\x3a\x2c\x7b\x6f\x5e\x91\xe3\xe2\x36\xb2\x43\xf9\xd0\xd0\xee\xf2\xd2\xa0\x34\xad\x97\x4d\x72\x9a\xbd\xdd\xf7\xf8\x73\x84\xeb\x6d\x83\x61\x2d\xc4\xb1\x2a\x13\xa9\x22\x7a\xed\x8a\xa5\xe0\x3f\xf0\xa6\x9e\x2f\xbd\x87\x03\xe1\xa9\xe3\x96\xc5\x47\x08\xb2\x7b\xb6\xf8\x49\xe7\x8d\x46\xa3\xea\xe7\x9b\xfb\x19\x98\x33\x81\xd9\x50\xc8\x84\x64\x9e\x61\xfc\xa3\x00\x85\x92\x02\xa4\x61\x7e\x8e\xd2\xd4\x6b\x13\xa7\x88\x7c\x54\x28\x2d\xae\x48\x46\xab\x2c\x6a\xb3\xc5\x70\xea\xe7\xec\xc6\x9f\xab\x5b\xde\xbe\x43\x9b\x95\xef\x6f\xa6\x9f\xbb\x34\xec\x9c\x3a\xe5\xb8\x05\x25\x19\x03\x3e\xa2\x38\x3e\xd4\x87\x83\x34\x72\xb3\x3c\xe5\xbc\x05\xf2\xe3\x72\xbe\xd8\xc9\x2f\xb4\xf5\x14\x18\x1c\x8f\x65\xfa\x07\x50\x68\xdb\x0e\x16\x76\xc5\xa3\x56\xdc\xcd\xdf\xb7\x85\x06\xf5\xe5\x47\xe6\xdf\x00\x00\x00\xff\xff\x96\xa4\xc2\xf8\x93\x08\x00\x00") + +func staticCssBaseMinCssBytes() ([]byte, error) { + return bindataRead( + _staticCssBaseMinCss, + "static/css/base-min.css", + ) +} + +func staticCssBaseMinCss() (*asset, error) { + bytes, err := staticCssBaseMinCssBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/css/base-min.css", size: 2195, mode: os.FileMode(436), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticCssGithubMarkdownCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x79\x69\x93\xaa\x4c\xb2\xf0\x5f\xf1\xed\x27\x26\xe6\x9c\xb1\x6d\x59\xdc\x8d\xe7\x89\xb7\x40\xdc\xd1\xb6\x5d\x71\xee\x7c\x28\xa0\x84\x52\xa0\x10\x50\x5c\xe2\xfe\xf7\x1b\xa0\xb8\x81\xed\x39\x33\x1f\x6e\x5c\x8d\x30\xb0\x72\xa9\xac\xcc\xac\xdc\xf8\xff\x0b\x62\x79\x99\x05\x54\xd0\xf1\xfc\x64\x62\x63\x5f\x21\x8a\x87\x15\x62\xb9\x19\x03\x5b\xab\xaa\xeb\x28\x95\x8d\x63\xfc\x50\xa1\x07\x2b\x01\x5a\xd6\x27\x8b\x45\x55\xd1\xa1\xe3\x22\xef\xcf\x8d\xb7\xc8\x94\xaa\x32\x74\x51\x21\xf7\xae\x52\xe5\xc6\x97\x06\x38\x10\x7e\xe6\x7e\xf4\xc4\xd7\x07\xe0\xfb\x0f\x27\x8c\x29\xa3\x09\x00\x68\xc0\xf0\xbf\x16\xfc\xb4\xc2\xc7\xb1\x3a\x9a\x8c\x83\xc7\xb9\x12\xf2\x0a\x41\x04\x80\x01\x00\x23\x5a\xdc\x8a\xc1\xff\x7d\xc0\x9f\x6b\x07\x10\xa9\x2e\x09\x63\xf6\x6b\x29\x4f\xeb\x3e\x00\xa0\x16\x12\x09\xe3\x80\x12\x80\xf6\x48\xdf\x9a\x3d\x46\xe5\x83\xc5\xd1\x2a\xdc\x39\xdc\xe4\x24\xdf\xdc\xe2\x2c\x39\x78\x2c\x06\x4c\xf9\x7d\x00\xe6\xc7\x62\xba\xd4\xd2\x2d\x69\xd6\x0b\xf8\x35\x46\xb7\x44\x1c\x01\x2d\x46\x75\xd1\x54\x02\x00\xd4\xdd\x00\xf2\x79\x3a\xba\x22\xac\xcb\x1e\x6c\x4c\xf4\x79\xf0\xdf\x0d\x85\xa6\x82\x9f\x9e\xa6\xe7\x60\x99\x26\x01\x2c\x90\x2f\x14\x85\x23\xc1\xef\x8a\x07\xa5\xda\x57\x43\xf7\xd4\x66\x80\xdf\x2d\x05\x8b\xb5\x70\x2b\xbf\x01\x00\xbf\x90\x1b\xe5\xa5\x14\xc8\xe7\x82\x8b\x7e\x78\xc0\x61\x30\xe2\x3c\x69\xa6\x07\xf2\xf1\xeb\x90\x9f\x76\x56\x62\x09\x0c\xcd\xbc\x2e\x4f\x83\xf3\x8f\x82\x4d\xb8\x41\x00\x32\x66\x9b\x22\xeb\xf6\x95\x46\xf9\xa0\x06\x8b\x38\x20\x05\x28\xf8\x11\x05\x76\x60\xf7\x39\x5f\x31\x27\xc1\xa2\x20\x07\x8b\xcd\xe0\x7c\x5c\x16\xd6\x1b\xf6\x8a\x5d\xc2\x91\x54\xd8\xc1\x52\x1b\x34\xc4\x69\xb6\x5f\x60\xb8\x1a\xa6\xbc\x76\x57\x1a\x60\x4b\x99\x09\x7b\x5b\x6a\xe1\x46\x7b\x39\xd4\x9a\x16\x1e\x14\x36\xe6\xc8\x1d\x0b\xfb\xae\x99\xe7\x26\x85\x5e\x8d\xfb\x2c\x8d\x6c\xcf\x2d\xd4\xa9\x6d\x7a\x95\xa5\xa0\xc5\xe0\x34\xf6\x9a\x35\x9f\xdd\x32\xe9\x72\xba\xc6\x75\x46\x07\xb7\xdd\xb3\xa6\xed\xde\x48\x6b\x0a\xfb\x1c\xa7\x35\x58\x41\x6c\x95\x6b\xbc\x50\xeb\x37\x84\xd9\xa1\x06\x6a\xe3\xbc\xce\x75\xc4\x96\xd6\xfb\x9c\xaf\x49\x8d\x1d\x62\x63\x02\x67\x73\x5e\xf8\x62\xb3\xad\x22\xf0\x76\x42\xbb\xeb\x1d\x0e\x9b\xf9\xa2\x95\x9e\x4c\x56\xb6\xb3\x1b\x19\xb3\xa1\x3e\xed\xc8\xec\x88\x43\x4a\x83\xa6\x1d\x9f\xf4\x0c\xd3\xb4\xe8\x4f\x66\x2a\x29\x6d\xe5\x60\xb0\x0c\xf2\x86\x76\xc7\x3a\x60\xbe\x68\x0c\xf6\x53\x44\xbb\xe6\xe4\x73\x9f\xed\x7a\xc5\x8e\x92\xa6\xb6\x53\x29\xab\x01\xad\xd5\x12\xd6\xa0\x57\xf6\x11\x65\xfb\x9d\x99\x83\xb0\x08\xdd\xdd\x16\xca\xb5\x81\x28\xe6\x1c\xdc\x4f\xaf\x77\x22\x43\x34\xbf\xd6\xe8\xcf\x47\xb3\x9d\xbf\xab\xe1\xbd\x32\x68\x29\x44\xaa\x73\xdd\x65\xbe\xc3\x0a\x2d\x38\x54\x3c\xb0\x66\x56\x23\x09\xfb\xe9\xbd\xa9\x2b\xa8\xb8\xf5\xc5\xf2\x72\xb8\xee\x97\xda\xfb\x89\x9a\xff\x6a\x96\xb5\xfd\xc8\x63\xd2\xed\xec\x7e\x6c\x4a\x46\xeb\x8b\x72\xa9\x9c\x55\x48\x17\x27\x26\x4d\x0e\xe8\x30\x46\x5d\x01\x8e\x97\x3a\xac\x0d\x37\xb3\xa6\x3f\xf9\xd2\xb6\xdd\xb6\x45\x7b\x83\xe2\x0e\x6f\x26\xdb\x2c\x51\x46\x5f\xf5\x1c\x63\xf6\xb4\x79\x83\xd3\xa4\x86\xec\xcf\xfb\x1c\x06\xa0\xde\x68\x73\x2d\x11\x00\x7c\x00\xf5\xd0\x15\x30\x68\xb4\xc0\xc1\x5a\x42\x89\xe1\x56\x52\x03\x80\x1c\xb6\x4a\x07\x7f\x86\xd3\x53\x26\x2d\x2e\xf9\x83\xd8\xaa\x01\x7b\xe8\x6f\x67\x07\xbe\x5c\x9c\xe7\x5a\x5a\xa9\x97\xe5\x76\x52\x63\xae\x29\x9a\x91\x67\x38\x7e\x38\xe8\x00\xc0\x2e\xf9\x49\x89\x07\x80\x5b\x80\xe8\x2e\x09\xdc\x65\xff\xdc\x82\xdd\x02\x7e\x30\x1f\x00\xae\x25\x2e\x3b\x1a\x30\x25\xd0\x11\x34\x6e\xa6\x01\x80\x7a\xf6\x52\x6a\x48\x05\x7f\x84\x39\x6d\x3e\xe5\x34\x66\x65\x8e\x77\xa4\x06\x72\xe2\xa7\xde\x98\x8b\xd2\x81\xc3\x34\x68\xee\xb5\x49\x57\x1a\x8c\x79\x08\xfd\x75\x0d\xe4\x3e\x79\x7d\xa7\x9b\x7a\xb6\xd4\xaf\xd5\x04\x77\x0b\xfc\xa6\x26\x76\xc4\x56\xcd\x6a\x74\xa9\x5d\x51\x6b\x0f\x78\xe0\x8b\xa0\xad\xe6\xc4\x30\x02\x34\xc3\xf3\x69\x52\x03\x82\x5c\x0d\x34\xbe\x34\x69\xb0\x02\xcd\x7d\x43\xac\x97\x7a\x9a\xe4\xb4\x44\xb6\xdd\x02\x8d\x89\x24\xd5\x46\x69\x20\x2c\x81\xbf\xa9\xd5\x6d\xce\x04\xe5\x8e\x58\x13\x7c\x91\xd7\xcb\x38\xbb\x2d\x35\x4b\x6e\x93\xca\xe6\xd4\x81\x42\x63\x60\x82\x15\xe8\xc2\x71\xa7\xab\x9d\xf8\x8f\xa4\x72\xb7\xe6\xb6\x34\xa1\x25\x7b\xda\xba\x39\xfe\xb4\x6b\x98\xd5\x3e\x09\x37\xd9\x7f\x8d\xcc\x91\xaa\xf6\xcd\xf5\x68\x36\xd2\x85\xd9\xda\x21\x32\xa3\x0d\xe8\xfa\xd2\xb7\x6b\xdb\x85\xcf\x73\xaa\xa9\xce\xf8\x3c\x98\x74\xea\x1b\x16\xe5\xc5\x45\xaf\xde\x66\xca\x9d\xd1\x60\x94\x2b\xf5\xe5\x72\xd6\x58\x4b\x7e\xbf\x31\xdf\xa1\x31\x32\x7a\xcc\x98\xf9\x2a\xa4\x15\xe0\x68\x1e\xdf\xb6\xe1\x66\x5a\x1c\x0f\xb8\xb5\x55\x5f\x8d\xdd\x25\x90\xb2\xab\xfe\x98\x56\x3e\xd3\x35\xa0\x6d\x77\xbe\x45\x2b\xfa\xbc\xe6\x8f\x65\xb5\xc0\xd7\xb1\xd9\x98\xf9\x07\xbf\x5e\xf0\x3e\xe5\x7a\x4b\x59\x0a\x46\x7a\xbb\x35\xc5\xac\xbc\x07\xb9\x12\x2a\x78\x53\xa7\x03\x1c\x33\x37\x6f\x1b\xbc\xac\xba\xce\x6e\xe5\x76\x69\xe0\x4f\xad\xec\x9e\x1b\xb6\x3b\xb6\x24\xaf\x4b\x60\x06\xe1\x48\x2e\x85\xe7\x65\x4a\x4b\xe0\xf7\x79\x8a\x9a\x3b\x1c\x1a\xf4\x6a\x83\xfe\xb4\x9f\xcd\xba\x2a\x17\xa8\xf9\x0b\x4b\x53\x09\x08\x42\x57\xf0\xc5\x91\x90\xdb\x1c\x48\x7e\x7e\x20\x79\x99\xe1\x76\xaa\x55\xef\x2b\xa0\xbb\xeb\x2d\x41\x41\x66\xb8\xfd\xc8\xf5\xf9\xd2\x52\xf2\x35\x6a\x62\xf4\x36\x84\x1f\x4d\x81\xb8\xee\x1d\xc4\x83\x4b\x3a\xb4\x23\xe8\xbd\x35\xb7\x17\xf6\xc8\xd1\xf2\x9f\x62\xdb\x90\x36\x93\x0d\x12\x46\x1d\x45\xcd\x96\xca\x1b\xce\xb6\xec\x6d\x4b\x98\x10\x13\x35\xbb\x44\x74\x01\x40\x74\x4b\xcd\x45\xf9\x24\xc7\x90\xe9\x60\x44\x15\xf9\x01\x37\x6a\x6c\xa9\x36\xa7\x43\x6d\x55\x6c\x0e\x0e\x9d\x9d\x02\x19\xb7\xcd\x0b\xb4\x5e\xf3\x72\x83\x7a\xba\xdc\xee\x0f\x29\x4b\x86\x50\xaa\xf1\x83\x85\xcf\xb7\x8b\x60\xc3\x82\xe6\x32\xdd\xed\xd3\x6c\x5d\x34\xcd\x82\x62\x14\x8b\xa5\xfc\x76\x8b\x2c\x6a\xc5\x2d\x9b\x3c\xa7\x2f\x6c\x69\xd3\x83\xf9\x4f\x9d\x56\x28\xc4\xcc\x36\xec\x52\xd8\x4e\x1b\xc5\xb1\xfa\x59\xeb\xce\x73\xbd\x32\x63\xf5\xcd\xb4\xc0\xcd\x36\x40\x6e\x9a\x2d\x71\xf8\x25\xba\xe9\x1c\x1c\x0b\x6a\xae\xa7\xb2\x7c\xb3\x56\xea\xa9\xdb\x7e\x77\xe4\x02\xa6\xd1\x2d\x89\xe5\xcf\x7e\x4d\x56\xba\x69\xbd\x56\xe4\xe9\x1d\x81\x4d\xd4\x6d\x0f\x05\x48\xa8\xba\x30\xa5\x73\xca\x6a\xc7\xa7\x47\xe3\xd2\x68\xb7\x75\xa5\xc2\x8c\x42\xdd\x4f\xf3\x4b\x77\xf6\xcc\x74\x82\x49\xd7\x5e\x39\xb2\x5d\xca\x75\xbb\x83\xcf\x46\xab\xa8\x14\xdc\x3e\x1e\x1f\xec\x69\x6b\x3a\xcc\x37\x0e\xc6\x50\x1b\x1f\x0e\x5d\x6e\x88\x57\xfd\xcf\xfa\xa8\x3f\x5b\x1b\xfb\xa2\xb3\xde\x51\x73\x7a\x90\xe7\x40\x8b\xcc\xb9\x61\x1d\xeb\x03\x69\xd0\xef\x73\x82\xba\xe2\xfb\xda\x6c\xd4\x6f\x02\xaa\xd8\x04\x8d\x65\x63\x8a\x5b\x4b\xf8\x39\xef\x4d\x69\x36\x9b\x36\xcc\xc2\xb0\x5c\x1f\x15\x9d\x6e\xb3\xde\x2e\x2c\x06\xf2\x0a\x8c\xfa\x0d\x7a\xc9\xf4\xeb\xe2\x46\xe9\xb4\xdb\xee\xae\x35\x59\x0c\xfa\x5f\x46\xba\xdc\xde\xab\xb0\x30\x34\x68\x75\x2c\xe9\x43\xde\xa4\xd5\x3d\x6f\x2c\x08\xaa\x6d\x51\x6e\x2d\x4a\x6a\x57\x90\x17\xeb\xe6\x82\xed\x67\x81\x5a\xdb\x98\xee\x32\xb4\x97\xd9\xd3\x24\x02\xc0\x7c\x20\x2d\x39\x73\x0f\x1a\xd2\x60\x6e\xaa\x7a\xb7\x74\xe8\xaa\x35\x61\xaf\x82\xaf\x05\x01\xeb\xd6\x39\xfb\x8a\x80\xf3\x41\x07\x70\x22\xe0\xb2\xd9\x6c\x90\xe7\x40\xbc\xc4\x38\x57\x1f\x7f\xfe\xf9\x33\xb5\x20\x8e\x09\xbd\x1f\x7f\x0f\x6a\x97\xbf\xff\xac\xfe\xf7\x87\x09\x9d\x95\x4a\x7c\x2b\x23\x13\x75\x7f\xcc\x98\x6e\xc6\x43\x3b\x2f\xe3\xe2\x03\xca\x40\x75\xb9\x71\xbd\x0a\x4d\x51\x7f\xab\x66\x7c\x24\xaf\xb0\xf7\x04\x6a\x60\x0b\x65\x74\x84\x35\xdd\xab\xd0\x1f\xf9\xaa\x42\x0c\xe2\x54\xfe\x60\x59\xb6\x7a\x5b\x51\x65\xa0\x6d\x1b\x28\xe3\xee\x5d\x0f\x99\xef\x5c\x50\x57\x89\x50\x19\x86\x7f\xeb\xc4\xf2\xde\xdf\x86\x48\x23\x28\x35\x6e\xbd\xbd\x7f\x11\x99\x78\xe4\xbd\x89\x8c\x2d\xf2\xb0\x02\xdf\x81\x83\xa1\xf1\xee\x42\xcb\xcd\xb8\xc8\xc1\x8b\xf7\x37\x10\x70\x4b\xf1\xc1\x5e\x29\xc1\x24\x4b\xfc\x76\x65\x10\x5f\x18\xee\x4d\x99\x18\x6f\x27\x81\x82\x13\x54\xe8\x82\xbd\x8b\x89\xee\x13\x47\xcd\xf8\x0e\xb4\x2b\xb2\x83\xe0\x2a\x13\xfc\x7f\xd4\x53\xea\xc3\x36\x32\xca\xf1\x7c\xca\x72\xa1\x5c\x2a\x17\x92\x71\xe8\xf7\x84\x55\x37\xfc\xdd\x46\xf4\x14\x55\x2a\xc8\x6c\x22\x3d\x4a\x22\x47\x56\x44\x59\x2c\xe7\x55\x98\x4c\xe9\x9a\xf8\xf9\xd6\x2e\x7d\xbc\xb1\x50\xe2\xc6\x96\x17\xa1\x14\x58\xc8\xe6\x95\x44\xac\x55\x84\x03\x8b\xb4\x9a\x4f\x56\x93\x9b\x24\x86\xad\x26\x2e\x9f\xa4\xb3\x5d\x74\x96\x32\x11\xc7\x49\x5e\x3d\xe9\x5b\x49\xd4\xd8\x19\xea\x3a\xdf\x43\x61\x74\x1c\xba\xc4\x16\xca\x74\xe2\x71\x2e\x56\x43\x6a\x01\xe6\x92\x95\x87\xd5\x08\x49\xce\x33\x90\x4e\xd6\x0b\xc6\x11\xd2\xa2\x14\x7c\xab\x32\x54\x56\x9a\x43\x36\x96\x9a\x79\x4d\x7d\x3d\xef\xa9\x65\xf1\x4f\x0e\x2c\x13\x43\xad\xbe\xb6\x9b\x69\x5c\x8c\x5b\x66\x21\x5d\x4c\x46\xd2\x93\x94\x65\xea\x67\xff\x48\x04\xba\x4f\xa5\xa1\x55\x16\x95\x92\x55\x6a\xae\x6f\x6e\x02\x55\xa2\x92\x91\xf0\x89\xb5\xeb\xed\x0d\x54\xc1\x1e\x34\xb0\x52\x7d\xe1\xc4\xa6\xfc\x54\x9c\xa7\x24\x57\xd3\xa9\x8c\x42\x51\x09\x56\x59\x2c\x90\x82\x9e\xe8\x15\x5f\x2e\x56\x3e\x0f\xf3\x2c\x93\x40\x8e\xe0\x62\x81\xe0\x93\xcd\x9d\xa7\x02\x7f\x73\xd5\x4d\x72\x7c\xa1\xe4\x73\x27\x7b\x54\xb1\x6b\x1b\x70\x5f\xc1\x56\x18\xf5\x64\x83\x28\xab\xea\x16\x39\x41\x7c\x35\x32\xd0\xc0\x9a\x55\x09\x03\xbc\x47\xec\xea\x02\x1b\x46\x45\xd9\x38\x0e\xb2\xbc\x30\xc6\xc6\xf8\xc2\x63\xec\x78\x9e\x03\x2d\xd7\x86\x01\xcd\x7d\xca\x50\x91\x42\x1c\xe8\x61\x62\x65\xdc\x15\xb6\x2b\x44\x5e\x22\xc5\x73\xe3\x3c\x2b\x50\xf1\xf0\x36\x76\x51\x61\x45\x27\x5b\xe4\x1c\xc9\xc6\x0b\x65\xf7\xb1\xea\xe9\x95\xb8\xaf\xb8\x9e\x43\x2c\xed\x4e\x8d\xd8\xd2\x91\x83\xbd\x5f\x41\x0d\x34\x8e\xe2\x07\xd5\xe9\xe3\x35\x6b\x30\xc8\xac\x9a\xd0\xd1\xb0\x55\xa1\x3e\x0a\x45\x64\xa6\xe2\x52\x60\x53\x3b\xca\xc4\x51\x91\x73\x76\x58\x8b\x58\x28\x2e\xc0\x56\xab\x58\xc4\xfb\x51\x71\x08\xf1\x7e\x1e\x83\xf3\x2d\x0c\xe2\x57\x74\xac\xaa\xc8\x8a\xa1\x2b\x44\x8d\xa9\x65\x25\xab\x8f\x4b\xb6\x73\x3f\xc6\x30\x89\x45\x5c\x1b\x2a\xe8\xfd\xf2\x74\x9b\x03\x91\x19\x3f\xae\x73\x94\xc9\x2e\x80\x63\x4b\xab\x28\xc4\xf2\x90\xe5\x65\x64\xb2\xab\x9e\xf3\x24\x55\xbd\xc8\xba\xc5\x2e\x96\x8d\xf8\xd9\xb0\x65\x6f\xbc\x50\x8e\x8b\xfe\x23\xa5\x3d\xc1\x7d\xc9\xf2\x9f\xde\xde\x46\x7f\xbe\x29\x3a\x52\x56\x32\xd9\xbd\xfd\xeb\x56\xca\xb3\xb6\x03\x21\x6d\xa8\xaa\xc1\x52\x7c\xa3\x7f\x3c\xa1\x78\x2e\x7c\xa4\xc4\xe8\x0c\x57\xc5\x45\x2b\xb7\xf5\xc3\x33\x4f\xbb\x24\x96\x1c\x55\x2c\x29\x54\xf5\xe1\x46\x24\x7b\xc7\xd9\xe3\xe3\x17\xe1\x74\x41\x8e\x8f\x4c\x36\x96\x8a\x9c\x40\x9a\x5f\x71\xf4\x02\x15\xd7\x8e\xee\x1c\x2f\xf6\x3d\xdb\x8a\xce\xdb\xbb\xd4\x8d\xb5\xcf\x9e\x79\xbd\xf6\x77\x17\xfe\xa4\xd1\x0a\x55\xbd\xa8\xd6\xf3\x88\x59\xa1\xed\x5d\xca\x25\x06\x56\x53\x7f\xa8\x6a\x3c\x9d\xe9\x4e\xa5\x22\xa3\x05\x71\xd0\x25\x3e\x79\x30\xb0\xff\xd9\xf1\x2a\x6f\x6f\x89\x34\x70\xe1\x21\xe7\x91\xc4\x40\xd0\xa9\xc8\xc4\xd3\xbf\xa3\x0e\x71\x2f\xf7\xd3\x86\xca\xc9\x5b\xce\x0b\x0a\x31\x0c\x68\xbb\xa8\x12\x3d\xc4\xe9\x63\x77\xce\xd3\x8f\xcf\xbd\x4e\x8f\xd5\x31\x3a\x13\x5b\x61\x63\x2b\xb9\xd8\x4a\x3e\xb6\x52\x38\x9e\x0c\x15\x04\xec\x8b\xd5\x22\xbd\x27\x49\x72\x13\xc7\x58\xc6\xde\x55\x5f\xfa\x04\x73\x1b\xf9\x72\xbf\x42\xc1\xde\x52\x50\xbf\x42\x91\x3b\x3e\xd4\xe4\x2f\x29\xf2\xb7\x14\xbf\x24\x55\xe1\x96\xe2\x57\x4e\x6e\x7f\xa7\x5a\x3a\x38\xd7\x23\x45\x98\x4e\xd7\x1b\xe2\xa1\xe3\xd3\x50\xb7\x31\x1e\x6d\x48\x8c\xc8\x75\x32\x06\x5a\x5c\xef\xde\x2f\x9a\x94\x18\x29\x12\xe3\xb9\x09\x16\x8f\x06\x76\xcf\xf5\x52\x26\x88\x9c\x15\x83\xf8\xc8\xc9\x38\xc4\x84\xf1\xdc\xb2\x31\x4e\x44\x89\x9c\x12\xd6\xc9\x13\x7c\x72\xc6\x7f\xb2\x39\x34\x6c\x3d\x5e\xfb\xa8\x6a\xa4\xeb\xb3\x06\x92\x32\xdf\x5d\x38\xe6\x89\xe5\x12\x03\xba\xef\x6f\x5d\x2c\xa3\x53\x00\x4c\x89\xc4\x22\x6f\xef\x22\xb2\x0c\xf2\xce\x93\x8d\x83\x91\x93\x9c\xf2\x98\x04\xe3\x05\x59\xf3\x5b\xc5\x87\xa9\x2c\x20\x4d\xfd\x1b\x9b\x3f\xad\xc8\x92\x8a\xaf\xd3\x96\x4f\x92\x52\x54\x54\x9d\xb4\x81\xa0\xb7\x71\x50\xc6\x45\x9e\x87\x2d\xcd\xad\xbc\x19\x58\x83\x6f\x29\xaa\xfa\x02\xfc\xc0\xfb\xb7\x03\xf0\x7f\x10\x7d\xff\xfa\x47\x65\x81\x1d\xd7\xcb\x28\x3a\x36\xd4\x3b\x9d\xff\x3f\x6c\xda\xc4\xf1\xa0\x15\xcb\xa0\x7f\xfd\xa3\x62\xc0\x47\x9a\xc8\x34\xcf\xc9\x52\x30\xac\xaf\xfe\xa9\x3b\x68\xf1\xaf\x9f\xe7\x24\x1c\x25\xe9\x5f\x4a\xc2\x1f\xd0\x52\x74\xe2\x1c\x17\x06\x81\x5e\x25\x70\xcf\xa8\xbc\xc8\x38\x61\xe8\x08\x82\xcf\xad\xf3\x66\xc2\x90\x77\x37\x54\x78\xc6\xb4\xb2\x20\xca\xc6\x8d\x2a\xda\xe4\xfd\xed\xc7\x0b\x76\x0d\x32\xf1\xab\x1a\xbf\x8c\x8f\x2b\x6a\x6c\x25\xb4\x5c\x52\x09\xf9\x5d\xf4\x2b\x24\x5c\xa0\x9b\xea\xe1\x83\xc9\x23\xf3\xa6\x0c\x3b\x47\xc3\x20\x7d\xa4\x92\x3a\x2a\x54\x0c\xbe\xd7\xf2\xe1\x9b\xc0\x7a\x61\x9a\x0a\x0a\xd7\xa8\x37\x2a\x46\xc4\xe7\x00\x12\x0a\xf0\x5d\xcd\x71\xe5\xf8\xd7\x53\x6f\xfc\x96\xe8\xb9\x37\xc6\xc8\x56\xb2\x9a\xdc\x78\x45\x67\x61\xed\x5d\x2a\x1f\x65\xa4\x53\x84\xa2\x1f\x7d\x28\x70\xaa\x4b\x67\x99\x7f\xec\xd9\x4c\xac\xaa\x06\x4a\xea\x55\x95\xe0\x1b\x69\xf6\xa4\x90\xa0\x1c\xfb\x43\x51\x94\xfb\x2a\xed\x32\x73\x90\xe5\x08\xe0\x40\x15\x6f\xdc\x40\xbc\x6a\x58\x36\xeb\x50\x25\x7e\x05\x5b\x2e\xf2\x52\x54\x2a\x13\xf0\xa1\x52\x21\xc1\xff\x56\xc5\xc3\xdc\xdc\xbe\x5b\xdf\x7c\xcc\xed\xf7\x33\x3e\x26\x9f\x20\xf0\x25\x24\x87\x6f\x7b\xe3\xe2\xbf\x80\xb3\x2f\xe0\xb9\x17\xf0\xfc\x0b\x78\xe1\x1e\x7e\x1d\x98\x50\x4f\x7c\x21\x6c\xa2\xb0\x81\xbd\xfd\xb3\x76\x52\xa7\x4f\x0d\x46\x14\x8e\xe2\x67\x7e\x01\x67\x5f\xc0\x73\x2f\xe0\xf9\x17\xf0\xc2\x3d\x3c\xd6\xf0\x24\x06\xcc\xc7\x53\xbd\xb2\xeb\x6f\x61\xb3\xbf\x85\x9d\xfb\x2d\xec\xfc\x6f\x61\x17\xbe\xc3\x3e\xde\x18\xff\x59\x33\xad\xd3\x97\xb2\x33\x8a\x5c\x1f\x2c\x32\xab\xf7\x73\x8e\xa7\x8d\x1c\x42\x09\x2c\x99\x57\x2c\xe9\x8f\xfc\x6f\x33\xbd\x6d\x27\xe8\x53\x66\xf9\xbe\x81\x48\x42\xb8\xed\x17\xa8\x8f\x52\x31\x91\x4b\xe1\x1e\x29\x7f\x9f\x60\x7e\xbf\x92\x67\x12\x36\x09\xeb\xec\xc4\x22\x3b\xb1\x92\x4e\x2c\xbb\x7f\xaf\xe7\x33\xf0\x5f\x77\xad\x4c\x62\xf2\x36\x70\xda\xc0\x77\x7c\x93\x35\xad\x1a\xdf\xf4\xb9\xaa\x91\x52\xbd\xe3\x63\xda\xbf\x6e\x7a\x6f\xa3\xf8\x34\x37\x36\xfa\x4c\xda\x40\xbd\x2d\x01\x0a\xc9\xe1\x3f\xb9\xdf\x8f\x72\xf0\x29\xf9\x9e\xe6\x87\xe1\xcb\xab\xcb\x74\x03\x6e\x3c\x92\x4c\x1c\x34\xf8\x2f\xc5\x8b\x30\x13\x4b\xac\x94\x77\x95\xbc\x60\xef\x52\xf4\x29\xad\x86\x79\xf9\xc5\x80\xe4\x4c\xef\xc4\xa7\xad\x7f\x2c\x16\x8b\xe8\x3a\x85\x6a\xbe\x32\x0a\x12\xfc\x33\x46\x15\xcb\xd3\x4f\xc5\xcb\x0f\xc6\xfa\x99\xc4\xf6\xf4\x46\x22\x69\xaa\x69\xc2\x5d\xe6\x46\x77\x4f\xe6\x84\xc9\x92\x26\xb6\x75\x57\x7f\x89\x2e\xcf\xd9\xff\xae\x25\xe4\x35\x9c\xdc\xce\x5e\x6f\xfc\xa9\x94\xff\x5b\x7c\x4b\x47\x93\xe1\x0f\xea\x3d\xfc\x7e\x50\xb9\x9f\x09\x65\x4d\x92\x40\x51\x2f\xf4\x68\xc5\x13\xec\xd4\xf6\x18\xc8\xf3\x6e\x46\x47\x99\x93\x60\x97\x9e\xe7\xbf\x28\x0a\x52\xf1\xb1\x53\x50\x55\x5f\xdf\x2e\x5a\xc4\x31\xa1\x91\x84\xf4\xd7\x83\x5e\x12\x0e\x1c\xea\x3e\xe4\x15\xbe\xa4\x8c\x98\xf9\x3a\xf6\x50\x28\x16\xaa\xd8\x0e\x7a\x39\xa7\x8b\x35\x26\x3a\xd6\x74\x23\xf0\xf0\xe3\x2f\x5c\xab\x2b\xf6\x6d\xc3\x70\x09\x44\x71\xf1\xbe\x67\x90\xd4\x84\x44\x4a\x08\xf7\xbf\xbf\xa7\xf7\xd6\xbf\xaf\xf0\x72\xf9\x24\x0f\x2c\x06\xdf\x5f\xf0\x02\xdb\x41\x27\xd7\xbc\xaf\xda\xab\x57\xd7\x0f\x05\x48\x30\x50\x6c\x84\x9d\x34\x1c\x8e\xb9\xc0\xb7\x2f\x51\x9e\xda\x2a\x92\xf2\x99\xbf\x5e\xe1\x27\x9f\x8d\xbc\xf3\x99\x2d\x6c\x23\x43\x3d\x4c\xa2\xbe\x69\xac\x03\x74\xfa\x1e\x9d\xb5\x77\x2f\x08\x98\x7b\x82\xc2\x4b\x02\xf6\x9e\x80\x66\x5e\x52\xe4\x1e\x52\x70\xee\x25\x45\xfe\xe1\x14\xaf\xa5\x2a\xdc\x53\xe4\x4a\xdf\x53\x2c\x36\x86\x91\x51\x88\x69\x62\x2f\xf5\x21\x7b\x56\xe6\xda\xf0\x7b\x3f\x2a\x2a\x76\x83\xa8\xac\xfe\x3c\xbf\xdf\xba\x7f\x51\x10\x4f\x10\x67\xc0\x7f\xd4\x64\x86\xfd\xe5\xbf\x33\xc6\xfa\x3f\xdc\x92\x56\xc2\xd7\x46\x48\x4d\x7f\x04\x3c\x48\xc6\x80\x32\x32\x8e\x36\x71\x71\xd8\x4b\x38\xc8\x80\x1e\xde\xa2\xea\x21\x83\x2d\x15\xed\x2a\xf4\xcd\xeb\x80\x1b\x83\xc4\xac\xeb\x41\x77\x95\x09\x87\x9d\xd8\x43\x66\x6c\xec\x99\x3c\x54\xba\x27\x4a\x3f\x32\xb9\x29\x9c\x92\xe2\xd3\x03\xfa\x79\x30\x18\x05\xa1\x54\x98\x8c\x52\xe7\x19\x48\x86\xfe\x28\x20\xf3\x89\x71\x12\xdf\xfb\x25\x18\x20\xac\xcb\xff\x27\x00\x00\xff\xff\x07\x4a\xd3\xa3\x25\x2d\x00\x00") + +func staticCssGithubMarkdownCssBytes() ([]byte, error) { + return bindataRead( + _staticCssGithubMarkdownCss, + "static/css/github-markdown.css", + ) +} + +func staticCssGithubMarkdownCss() (*asset, error) { + bytes, err := staticCssGithubMarkdownCssBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/css/github-markdown.css", size: 11557, mode: os.FileMode(436), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticCssHighlightCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xdd\x6e\xdb\x30\x0c\x85\x1f\xa6\xb7\x71\xe1\xa2\x59\x53\xdb\x57\xdb\x80\xbd\xc6\xa0\x1f\xda\xe1\x4c\x89\x9e\x44\x35\x35\x82\xbe\xfb\xe0\xc4\x52\x02\x07\xb3\x01\x03\xe2\x67\x52\xe7\x90\x7c\x3e\xd2\x9f\x78\xb6\x18\x27\x52\x73\xab\x89\xcd\xd8\xf1\x07\x84\x9e\xf8\x54\x7d\xb6\x2a\x09\x77\x93\xb2\x16\xfd\xd0\xd6\xcf\xdf\xc0\x75\x5a\x99\x71\x08\x9c\xbc\x6d\x9f\x7e\xd5\xcb\xfb\x75\x29\xb2\xbb\x7c\xab\x98\x74\x94\xb3\x61\xe2\xd0\x3e\xed\xf7\xfb\x2b\xac\x0c\x3b\x07\xbe\x80\xf7\xcb\xb3\xb2\x11\xe6\x13\x07\xbb\x16\x50\x22\x01\x75\x12\xc8\x05\x81\xc0\x08\x87\x4a\xd4\xb0\x86\x1c\x88\xda\x64\x59\x36\x37\xee\x95\x83\x73\xcf\x5e\xaa\x13\xe0\x70\x94\x56\x33\xd9\xf5\x32\x99\xa7\x52\x59\x02\xfa\x92\x93\x9c\x86\xb0\xbd\x13\xed\x36\x62\x48\xc5\xec\xf5\x6f\xe2\x22\x53\xc0\x4d\xa4\x04\xee\x64\x5a\x20\x10\x64\x7f\x33\x5d\xd7\x75\x9d\x75\xa0\xd0\xcd\xa2\x79\xfc\xaf\xfb\x8f\x81\x00\x03\x7c\x4e\x39\x73\x76\x9a\x69\x3d\x7c\xa8\x80\x4a\xd3\x83\xa2\x4d\x9c\xd0\x8f\x5b\x57\x4b\xd3\xb7\xb1\x29\x42\xb2\x9c\x45\xfd\xf8\xf9\x56\xbf\x65\xf1\x84\x02\x41\x51\x66\x87\xf7\xef\x4d\x61\x3a\x21\xc9\x6f\xf4\xbb\x7c\x24\x02\xd9\xe5\x2d\xb0\x59\xc5\xb2\x53\xf7\xa6\x5f\x9b\xc3\x6b\x69\xce\x32\xe0\x0c\x5e\xfa\xc3\x4b\xd3\xdc\x81\x75\x6e\x65\xc7\x6c\xd3\xe8\x7e\xe5\xe0\xa6\xa3\x8a\x18\xaf\xd3\x8f\x32\x13\xb4\x28\x8a\xd0\x7c\x95\x99\xb3\x1f\x1e\x97\xe3\x5f\x00\x00\x00\xff\xff\x42\xc2\x59\xc3\x08\x03\x00\x00") + +func staticCssHighlightCssBytes() ([]byte, error) { + return bindataRead( + _staticCssHighlightCss, + "static/css/highlight.css", + ) +} + +func staticCssHighlightCss() (*asset, error) { + bytes, err := staticCssHighlightCssBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/css/highlight.css", size: 776, mode: os.FileMode(436), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticCssMenusMinCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x4b\x6f\xe3\x36\x10\xbe\xfb\x57\x68\xb3\xe8\x65\x11\x3d\x92\xd4\x49\x41\x01\x7b\xd8\x6d\x0e\x05\x16\x45\x81\x3d\x15\xe8\x85\x22\x47\x16\x11\x8a\x43\x90\x23\x3f\x62\xe4\xbf\x17\x94\x63\x45\x92\x99\xda\x41\x2f\x02\x44\xce\xe3\x9b\x99\xef\x1b\xe6\x5f\x3e\x2d\xfe\xea\x1c\x24\xeb\x22\xbb\xcf\x6e\x17\xdf\xd1\xee\x9c\x5a\x35\x94\xdc\x16\x37\x77\xc9\xdf\xbc\x41\xfc\xb4\xf8\xa1\x04\x18\x0f\x32\xe9\x8c\x04\x97\x50\x03\xc9\xb7\x9f\xbf\x27\xaf\xc7\xd9\xa2\x21\xb2\x9e\xe5\xf9\x4a\x51\xd3\x55\x99\xc0\x36\xdf\x05\xcf\xdc\x76\x0e\xf2\x4a\x63\x95\xb7\xdc\x13\xb8\xfc\xc7\x1f\xdf\x1f\xff\xfc\xf9\x98\xb5\x72\xf1\x25\x5f\x64\xe1\x3e\x6d\xc1\x74\xfb\x0a\xb7\xa9\x57\xcf\xca\xac\x58\x85\x4e\x82\x4b\x2b\xdc\xbe\xbc\x19\xa4\xb5\xda\x82\xdc\x5b\xf4\x8a\x14\x1a\xd6\xff\x96\x1a\x6a\x62\x45\x49\x68\x59\x51\x3e\xa7\xca\x48\xd8\xb2\xbb\xb1\x9b\x22\x68\xaf\x47\xff\x5a\x79\x7a\x8b\xe2\x40\x73\x52\x6b\x78\x99\x5b\x84\x4f\xea\x69\xa7\x81\x19\x34\x50\xb6\xdc\xad\x94\x61\x45\x69\xb9\x94\x01\x64\x31\x4f\xb2\x1f\x6e\xde\x8c\x1b\x08\xad\x64\x37\x45\xf1\xcb\xd8\xbc\x01\x1e\x2c\xa7\xb0\xcc\xd3\x5e\x2a\x6f\x35\xdf\xb1\x4a\xa3\x78\x2a\x09\xb6\x94\x4a\x10\xe8\x78\x8f\xb5\xc7\xb1\x69\x14\x41\xea\x2d\x17\x01\xd8\xc6\x71\x3b\x09\x8c\x4e\x3d\xa3\x21\xae\xf7\x1b\x25\xa9\xe9\x33\x5f\xec\x93\xcc\x9b\x70\xc4\xa3\x8c\x56\x06\xd2\x1e\xd6\x79\xd7\x48\x75\x71\xc3\xf9\x68\xe2\x56\x1e\x2c\x77\x9c\xd0\x45\xe1\x94\xcf\x88\x2d\xbb\x29\xd7\xe0\x48\x09\xae\x53\xae\xd5\xca\xb0\x56\x49\xa9\x61\x3e\xa2\x79\xf2\x69\xc3\xc7\xd6\xa2\x51\x5a\x3a\x30\x83\x45\xdf\xfc\x81\x36\xbc\xf2\xa8\x3b\x82\x03\xff\xfa\x26\x1f\x28\x78\x4a\x93\x38\x2b\xe3\xa5\x0e\x59\x47\xb4\xe6\x1d\x61\x79\x18\xa6\x32\x0d\x38\x45\xe3\x38\x5c\x04\xf6\x7e\x8d\xc4\x18\x37\x96\x6b\x8d\x9b\xb4\xc1\x35\x38\xd6\x7f\x63\x0e\x33\xf6\x9d\xd4\x3a\x81\xcf\xfd\xe0\xf7\x75\xc6\x62\xc6\x6b\x02\x77\x54\x43\xda\x97\x92\x2d\xa1\x2d\x05\x1a\x02\x43\xec\xea\x9f\xdb\xe5\xb7\xdf\xae\xca\x1a\x0d\x05\xc9\x03\xf3\x2d\xd7\xfa\x02\x62\x9d\xcf\x3a\xc9\xf1\x78\x35\x8e\xe9\x85\x43\xad\x79\xa5\x61\x1f\x5a\x50\x87\x96\xec\xd8\xe1\xb4\x1c\x4e\xb6\xac\x51\x52\x82\x89\x7b\xbe\xab\x90\xff\x90\xc6\xc7\x02\x9d\x97\x5a\xbc\xa4\x53\x8d\x97\xa3\x2a\x0f\x35\x8d\xab\xec\x69\x95\xb6\x3e\x1d\xce\x46\xcb\x2e\xdd\x40\xf5\xa4\x68\x74\xd7\x27\x0a\x7c\x26\xec\x44\x33\xb0\x3b\xcc\x35\x29\x3e\x80\x93\xb1\x63\xec\xc3\x59\xc5\xdd\x44\x62\x97\x6b\x24\xba\x22\xae\xa3\x7b\xa3\xe2\xe2\x69\xe5\xb0\x33\x32\x15\xa8\xd1\xb1\xcf\x42\x88\x61\x37\xdb\xed\x51\xb5\xd9\xdd\xfb\xd5\xc4\x37\xd2\xeb\x92\xb5\xdb\x21\x5a\x88\x31\x6c\x81\x24\xfc\xfd\xcf\x92\x66\xb2\x3c\x64\x0c\xd3\x8b\x3c\x28\xfb\xfe\xc9\x20\xc7\x8d\xaf\xd1\xb5\xac\xb3\x16\x9c\xe0\x1e\xca\xd7\xba\x97\xf7\x4b\x79\xff\xeb\xcb\xfc\xdd\x79\xbd\x7d\x78\x78\x88\xee\xc0\xd3\xfe\xd5\x75\x3d\xb6\x94\xca\x87\xe1\xca\xeb\x0b\xde\xb8\x09\x75\x6e\xa6\xed\x39\xc6\xd9\xa3\xe5\x42\xd1\x8e\x65\xcb\xd8\x75\x32\xd7\x7e\xbf\xd3\x4e\x61\xf6\x8d\xb0\xdc\x81\x39\xb3\x33\x43\x90\x39\x50\x56\xa3\xe8\xfc\xc9\xe9\x3b\xa9\x3e\x03\x4c\xb8\xeb\x41\x83\xa0\x53\xa8\xd7\x17\xd8\xb0\xb5\xf2\x8a\x40\x1e\xc7\x52\x14\xc5\xcb\xbf\x01\x00\x00\xff\xff\x79\x1b\x26\xad\xa7\x09\x00\x00") + +func staticCssMenusMinCssBytes() ([]byte, error) { + return bindataRead( + _staticCssMenusMinCss, + "static/css/menus-min.css", + ) +} + +func staticCssMenusMinCss() (*asset, error) { + bytes, err := staticCssMenusMinCssBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/css/menus-min.css", size: 2471, mode: os.FileMode(436), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAndroidIcon144x144Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x65\x54\xd4\x61\xdb\xed\xff\x80\x94\x34\x48\x48\xb7\x20\x39\xd4\xc0\xd0\x03\x48\x08\x92\x4a\xc7\x00\x33\x74\x0e\x8d\xa4\x74\x87\x0a\x48\x77\x77\x89\x94\x74\xb7\x74\x4a\x77\x23\x2d\x67\xf9\x7c\x39\xcf\x79\xcf\x7a\x3f\xec\x4f\xf7\x6f\xef\xfb\xba\xf6\x5a\x57\xb8\xda\x3b\x79\xbc\xe7\x94\xcf\x01\x00\xc0\x53\x54\x90\xd5\x00\x00\x20\xee\x9f\xb0\xd0\x00\x00\x18\x4f\x26\x8e\x00\x00\xe0\x99\x85\xb4\x8a\x34\x00\x54\xc7\xe2\x3c\xc0\xd0\x01\x00\x40\x41\x6a\xc8\x43\x81\x8a\x51\xea\x3d\x00\x00\xe8\xcd\x14\x34\x54\x00\xc0\x8b\x15\x00\xfc\x83\x00\xe0\x0e\x00\x00\xff\x5d\x00\x70\xe5\x05\x80\x7d\x13\x00\x80\x24\x03\x00\xb9\x63\xda\x0f\x75\x31\x00\x40\x03\xd4\x94\xb5\xe4\x9e\x9e\x9e\xfe\xfe\xfd\xfb\xf8\xf8\xb8\xb1\xb1\xf1\xf5\xeb\xd7\xd8\xd8\xd8\xf9\xf9\xf9\xd9\xd9\xd9\xb8\xb8\xb8\xa4\xa4\xa4\xe3\xe3\x63\x7d\x7d\xfd\xe7\xcf\x9f\x63\x61\x61\xbd\x7b\xf7\x6e\x67\x67\x67\x73\x73\x53\x46\x46\x06\x1b\x1b\x1b\x07\x07\xc7\xcc\xcc\xec\xfc\xfc\xbc\xa9\xa9\x89\x88\x88\x08\x05\x05\x05\x15\x15\x95\x92\x92\xb2\xb1\xb1\xb1\xa6\xa6\x06\x0f\x0f\x8f\x9a\x9a\xfa\xc7\x8f\x1f\x77\x77\x77\xd6\xd6\xd6\x68\x68\xff\x16\xf8\xf6\xed\x9b\xbb\xbb\xfb\xed\xed\x2d\x37\x37\xb7\x8f\x8f\x8f\xb3\xb3\xb3\xa0\xa0\xe0\xe2\xe2\x62\x5a\x5a\x1a\x2e\x2e\x2e\x0c\x06\xbb\xb8\xb8\x50\x50\x50\x28\x2b\x2b\x13\x15\x15\x5d\x5e\x5e\x5e\x5b\x5b\xe3\xe3\xe3\xb3\xb0\xb0\xf8\xf3\xe7\xcf\xf4\xf4\x34\x27\x27\x27\x0d\x0d\xcd\xd0\xd0\x50\x47\x47\x07\x3d\x3d\x7d\x65\x65\x65\x55\x55\x55\x72\x72\x72\x75\x75\xf5\xf5\xf5\xb5\xa3\xa3\xe3\xc7\x8f\x1f\x3d\x3d\x3d\xd1\xd1\xd1\xbd\xbd\xbd\x4f\x4e\x4e\x34\x34\x34\xf6\xf7\xf7\xd5\xd5\xd5\xc7\xc7\xc7\x05\x04\x04\xd8\xd8\xd8\x26\x26\x26\x5e\xbd\x7a\xf5\xe6\xcd\x1b\x0e\x0e\x8e\xa9\xa9\xa9\xd2\xd2\x52\x1e\x1e\x1e\x26\x26\x26\x7c\x7c\xfc\xda\xda\x5a\x32\x32\xb2\x17\x2f\x5e\x84\x87\x87\x63\x62\x62\x8a\x8b\x8b\xcf\xcc\xcc\x88\x88\x88\x60\x60\x60\x04\x04\x04\xdc\xdc\xdc\x48\x4b\x4b\x8f\x8d\x8d\x09\x09\x09\x3d\x3c\x3c\x98\x98\x98\x68\x6b\x6b\xcb\xc9\xc9\x41\xa1\xd0\xa3\xa3\x23\x2d\x2d\x2d\x17\x17\x17\x29\x29\xa9\x8c\x8c\x0c\x06\x06\x86\xee\xee\xee\xcb\xcb\xcb\xd3\xd3\xd3\xbd\xbd\xbd\xdf\xbf\x7f\x2f\x2d\x2d\x75\x75\x75\x91\x92\x92\x66\x65\x65\xdd\xdf\xdf\xdb\xd9\xd9\xa5\xa7\xa7\xd3\xd1\xd1\x85\x84\x84\x2c\x2c\x2c\x8c\x8c\x8c\xf4\xf4\xf4\xb8\xba\xba\x1a\x1a\x1a\xea\xe8\xe8\x30\x33\x33\xbf\x7c\xf9\x92\x85\x85\x85\x8b\x8b\x4b\x53\x53\xd3\xd8\xd8\xd8\xcd\xcd\x2d\x3e\x3e\xbe\xa2\xa2\xc2\xcf\xcf\x2f\x3a\x3a\xba\xa8\xa8\x48\x57\x57\x77\x7d\x7d\xbd\xad\xad\x2d\x31\x31\xd1\xc3\xc3\x43\x4f\x4f\x0f\x0c\x06\x43\x20\x10\x2f\x2f\xaf\x2f\x5f\xbe\xac\xac\xac\x18\x19\x19\x5d\x5d\x5d\x65\x67\x67\xaf\xae\xae\x16\x16\x16\xe6\xe6\xe6\x9e\x9d\x9d\x8d\x8e\x8e\xa6\xa4\xa4\xd0\xd2\xd2\xa6\xa6\xa6\x3a\x38\x38\x94\x94\x94\xf0\xf3\xf3\x87\x86\x86\x6e\x6d\x6d\x11\x12\x12\x92\x90\x90\x10\x10\x10\xbc\x7f\xff\x3e\x27\x27\xe7\xd3\xa7\x4f\x73\x73\x73\x99\x99\x99\xcf\x9e\x3d\x53\x52\x52\xa2\xa2\xa2\x7a\xfd\xfa\xb5\xbf\xbf\x7f\x58\x58\x58\x7e\x7e\x7e\x79\x79\xb9\xad\xad\x2d\x3b\x3b\xfb\xee\xee\xae\xbc\xbc\x3c\x05\x05\x05\x31\x31\x71\x42\x42\x82\x84\x84\x44\x4c\x4c\x4c\x5f\x5f\x9f\xb2\xb2\xb2\x95\x95\x55\x73\x73\xf3\xe0\xe0\xe0\xe4\xe4\xe4\xdb\xb7\x6f\x65\x65\x65\x7b\x7b\x7b\x23\x23\x23\x0b\x0a\x0a\x0c\x0c\x0c\x06\x06\x06\x14\x15\x15\x03\x03\x03\xb7\xb7\xb7\x87\x87\x87\xfb\xfb\xfb\x1b\x1a\x1a\x8a\x8b\x8b\x41\x20\x50\x54\x54\x14\x2f\x2f\xaf\xb9\xb9\xb9\x98\x98\x58\x5e\x5e\x9e\xb0\xb0\xf0\xf7\xef\xdf\x83\x82\x82\x82\x83\x83\x7f\xfd\xfa\x55\x5f\x5f\xff\xf9\xf3\x67\x46\x46\xc6\xce\xce\x4e\x49\x49\xc9\xc3\xc3\xc3\x83\x83\x03\x7b\x7b\x7b\x72\x72\xf2\x9f\x3f\x7f\x22\x91\xc8\x88\x88\x08\x35\x35\x35\x38\x1c\xde\xde\xde\xde\xda\xda\xca\xca\xca\x6a\x69\x69\xe9\xeb\xeb\x6b\x6a\x6a\x5a\x57\x57\xa7\xa2\xa2\x82\x40\x20\x3e\x7c\xf8\x60\x63\x63\xa3\xaa\xaa\xea\xe4\xe4\xd4\xd2\xd2\x02\xc6\x79\xf5\xef\xc2\x50\x4c\xdf\xca\xcb\x02\x61\xe8\x34\x0a\x00\x00\x60\x3b\x2a\xe8\x22\x01\x00\x50\xf8\x8f\xde\x0c\xd8\x48\x00\x00\x29\x81\xa2\xac\xb4\x96\xc7\xc2\x91\x81\xa7\x8e\xa6\xfc\x6c\x3b\xd2\x49\x8e\x10\xab\x60\x29\x32\x90\x21\xd7\x64\x9a\x02\x6e\x95\x67\xcd\x51\xc4\x2e\xe7\xa4\xfd\x4c\x7d\xaa\xc8\xc9\x78\xf0\x43\x04\xa3\x96\x93\x8d\xa1\x9a\x8d\x74\x7c\x89\x0e\x47\x91\x3f\x8e\xdc\x92\xda\xaf\x92\xef\x1f\x8f\xf5\xcb\xdf\xda\xe8\x97\x9a\xd6\xcf\xcc\x96\xd4\x1f\xb9\x23\xec\x85\xe8\x4d\xb0\xa4\xdb\x4f\x3c\x57\x2e\x42\x13\x06\x86\x53\x56\xd3\x44\x90\xdb\x69\xfc\xfc\xb0\xe4\xa7\xc9\x27\x63\xe8\xee\x93\xce\x2c\xe7\xfd\x0f\x42\x86\x44\xc3\xc5\x5f\xc5\xfa\x27\x82\x0c\x25\xab\x59\xd9\x2a\xe8\x71\x0d\xd1\x87\x87\x54\xa2\x2d\x64\x62\x31\xef\x18\x77\x58\xd7\x9d\x3d\xc6\xa9\xb8\xa9\x4f\x16\x2e\x05\x7f\x4a\x17\xa5\x50\x8d\x35\x81\x79\xb4\x5f\x9f\xc5\x39\xcf\xb5\x8d\x1e\x00\xdd\x0d\x55\x1b\xbc\xab\x93\xb5\xb6\x4e\x3e\x3c\xb8\xbf\xf6\x05\xd9\x88\xa0\x0e\x81\x9c\x8e\x07\x42\xf0\xc8\xc5\x41\xac\x2c\xb7\xf3\x59\x7f\x85\x25\x5a\x34\x7a\xdd\x50\x3e\x1b\xe3\x95\xa0\xb5\x8e\x15\x89\x4a\x5a\x82\x8d\x03\x4c\x71\xe4\x92\xfe\x73\x33\x29\x9a\x47\xf6\xac\x46\xd1\x56\x0c\xa9\xf4\xe6\xf1\xb6\xd6\xa8\x0f\x12\xd0\x13\xe1\x29\xe8\x44\xf3\x70\x69\x66\x6d\x45\xd6\x14\x3d\x63\x23\xd0\x95\x96\xfd\xd3\x9e\x9a\x6b\xf3\x87\x77\x9b\xb5\x54\xd8\x51\x80\xd5\xea\xe0\x35\xee\x36\x25\xba\x88\x13\xf5\x2b\x74\xa9\x93\x76\xaf\x72\xfc\x63\x6c\xcb\x43\x94\xc4\xc4\x72\x5a\x82\xa9\x21\x52\xb3\x24\x42\x0b\xfc\xeb\x3f\x3e\xd3\x1e\xc9\x12\x3e\xb0\xf0\xab\xda\xae\xef\x4f\x80\x38\xbd\x80\x5a\xef\x6f\x69\x43\x4c\x33\x6e\x97\x7e\x8e\xd5\x8b\xd4\x80\x3b\x37\x2b\x8a\x90\xa6\x53\x7c\x0c\x29\x19\x26\x0f\x31\xdb\x1b\xac\xe1\x52\x09\x8f\x1e\x7d\x09\x8d\xc6\x4d\x11\x31\xe7\x5f\x96\x6a\x29\xd9\x77\x1a\x23\x14\x31\x3b\xbd\xaf\x17\x3a\xb4\x37\x6c\x4b\xbb\xa2\x6f\xf0\xe0\x98\x00\x8b\xad\x6b\x50\x94\x6d\x5f\x97\xd7\xbe\x10\x8c\x71\x6c\x43\x91\xd2\xd0\x6a\xdc\x7c\x98\x43\x1f\xa4\x69\xf2\xa8\xf2\x38\x6e\xf0\xce\x85\x79\x5f\xa1\x49\x78\x50\x68\x01\xc4\xda\x90\xa1\x1a\x65\x56\x65\xf7\x59\x87\xb6\x78\x66\xb7\x1d\x6c\xa6\x40\xd7\x03\x3b\xfc\xe3\xf4\x20\x00\xfc\x62\x53\xd2\x3e\x9c\xa3\xbc\x70\x9b\x4a\x41\xc1\xae\xba\x41\x58\x8e\x0f\x79\xc4\x3d\x67\x63\x03\xed\x25\xe2\xe3\x21\x46\x95\x7c\xfd\x1e\x2c\x9f\xe6\x0d\x97\x76\xbe\xbf\x1a\x4e\x07\x2f\x58\xfd\x9d\x53\x95\xd4\xaf\x3a\x4d\xcc\x9b\x63\xcb\xab\xd4\x27\xad\xbd\x91\x7b\x8d\x3f\x56\x3a\xc6\x89\x21\x12\x3d\x95\xfa\x26\x95\x70\x78\x40\x43\x60\x9d\x45\x0d\xc2\x57\x30\xd8\x21\x4d\xa0\xd0\xea\x32\xbf\x33\xd4\xae\xa0\x12\xa6\xe9\x24\x36\x86\xfc\x15\x84\xdd\x8d\x8d\x4e\x04\x33\x9c\x44\x94\xeb\xcc\xcf\x4f\x24\x96\x2f\x80\x10\x29\x97\x5a\xc3\x67\xa5\x7c\xc9\x3c\xd2\x86\x1a\x24\xae\x5b\xa5\x8f\xc0\x38\xe5\x57\x43\x9c\xc8\x31\xdf\x82\xdc\xbc\x08\x4f\x68\xca\x41\x9b\x1e\x71\x8d\x04\x74\x97\x36\x6c\x27\x2a\x7c\x87\x0d\xfa\x7c\xa2\xed\xed\xc1\x7b\xe3\x6b\xa2\xdc\xc1\x14\x10\xf1\x2a\x1e\x63\xd5\x84\x6e\xd8\xcb\xa2\x20\x57\x09\x83\xeb\xe9\x49\x5b\x46\x06\xff\x03\x95\x9b\xa8\x95\x9b\x01\x56\xf3\x64\x6a\x33\x7c\xdb\xf5\xcb\x8c\x63\xb7\x40\xb6\xcb\x84\xdf\x4c\x69\xe0\x9d\xa0\xd0\xd0\x9d\x4d\x48\xa9\xf0\xa7\xb2\xfe\xd9\xb4\x74\xef\x15\xb2\xcc\xf3\xe7\xf9\x5b\x91\xd4\x92\x4b\xfb\x85\xa8\xfc\xe2\x22\x14\x20\x9b\x9f\xe8\x03\x2b\x05\xa5\x52\x2e\xfd\x9e\xa2\x43\xd6\x94\xdb\xc4\x1f\x6e\x91\x6d\xba\x67\x5b\x45\x96\xd8\x4e\xad\xd1\x33\x44\xd0\xd2\xd0\x98\x18\x42\x66\x14\xe7\x6d\x19\x1c\x37\x61\xae\x94\x99\x12\xc7\x9d\x41\xf6\xe6\x1a\x88\xcb\x5c\x7a\xbd\xcd\xdd\x60\x7a\x70\xf9\x1f\xe6\xd8\x55\xfd\x35\x0c\x7f\x6c\x36\x5a\x24\xe3\x09\x86\x10\x06\xd9\xe7\x57\xd0\x0c\x39\xc5\x45\xef\xc3\x45\x1e\x96\xf7\x11\xed\x51\x16\xf3\x68\x3f\x91\x35\x2b\xaf\x55\x85\xb1\x4a\x6d\x45\xb4\xf0\xf4\xaa\x53\xe8\x03\x89\x42\x8e\x55\x52\x5d\xd9\x0e\xf4\x43\x95\x9b\x28\xad\x7a\x72\x77\x1d\xd5\x82\xf7\x7e\x32\x41\x2d\xe8\x24\x6a\xce\x2d\x07\xfc\xf3\xa5\x49\x0b\x67\xa7\x84\xb6\x75\x06\xa8\x70\x56\x20\x12\xd3\x2a\x72\x2c\xc1\x72\xaf\x50\x51\xeb\xa1\x50\x6b\xcf\xed\x82\x44\xdd\xa7\x29\x4b\x59\x07\x30\xa7\x0b\x69\xa3\x20\xb1\xd0\x94\x38\xaf\x7f\x35\x24\xf1\xd3\x1c\x53\x0b\xbd\x30\xeb\xf9\x2f\x0f\x46\x66\x23\x35\x54\xdd\xb3\x98\x8d\xc2\x24\xbf\xe9\x4b\x65\x0d\x9f\x54\xb6\xd4\x31\x67\x36\xcc\xad\xa5\x5a\xfe\x90\xb2\x51\xad\x2a\x3d\x71\xde\xec\x3f\x52\xdf\xa2\x86\xe7\xfc\x91\x1b\x18\x3b\x9a\x0a\x30\xfd\x31\xf9\xf9\x5f\xed\x8e\x67\x1a\xb3\x63\x94\x3e\x53\xcd\x3a\x88\xca\x4c\x2d\xf2\x42\x4e\xf4\xba\x70\x5a\x0c\x3a\xbd\x7d\x32\x61\xd3\xc6\x4f\xe8\x11\xcd\xca\x2e\x64\xe9\xab\x93\x15\x95\xe2\xf1\x60\x55\x18\x11\x8b\x6b\xc6\xd4\x96\x52\xbb\xae\xc5\xfb\xa0\x60\xdb\x55\x77\x0b\xbe\x01\x0d\xef\x70\x39\x79\x97\x1f\x9f\xde\x1d\x53\x9f\x28\x7f\x13\xa1\x93\x14\x3f\xb6\xee\xa4\xb6\xe8\x8c\xe1\xcb\xe7\x7f\xbd\xff\xf8\xc8\x8d\x09\x09\x6d\x36\xa7\x26\xff\xb1\xcc\x5b\x20\xe4\x2d\xdd\xa8\xc1\x83\x25\x43\x76\xad\x78\x96\xdc\x62\x5c\x30\xc9\xc3\x5c\xfe\xa7\xb3\x7d\xd0\x66\x96\x66\xa4\x8a\xbb\xf7\x07\x55\xed\x63\x08\x31\x12\x43\x65\xb6\x26\x32\x6e\xe4\xa5\x08\xd7\x81\x0e\x73\x3d\xd3\xf0\x00\x21\xdb\xc5\x5b\x01\x81\x2b\xe6\xed\x70\x82\xa6\xe2\x99\xd1\x80\x4e\x37\xad\x41\x02\x12\xcd\xc7\x1d\xcb\xa4\x46\x32\xb5\xb9\x08\x0a\xf3\x05\xa5\xf7\x01\x71\x2a\xab\x6a\x65\x72\x79\x82\x98\x15\x7f\xc1\xe7\xbe\xc3\xfb\xf0\xd2\x71\xa1\xf7\xe0\x21\x0c\xcf\x62\xa1\x9a\x37\xe5\x93\x7d\x24\x37\xd8\xfa\x66\xbb\x55\x61\x2d\xba\x79\x12\x7e\x07\x85\x99\x38\xe0\x61\xba\xb3\xb7\x1d\x88\x8c\xaa\xfb\x7c\x3b\x13\x96\x1a\x69\x5b\xad\x37\xb7\xf9\xe5\x3a\x10\x69\x1b\xb1\x4d\x8e\xe5\x62\x4f\x36\x6e\x8a\xb4\xaf\x8d\xd9\x55\xa3\xaa\x34\x34\xbf\xb0\xb0\x89\x83\xfc\x4c\xf5\x49\xe3\x6e\x91\xe7\x82\xdb\xfe\xf6\xc6\x0c\x37\x47\x7e\xe2\xae\x85\x51\xe5\xc0\xa2\x2b\xd8\x6d\xb9\xc7\x5b\xc9\x64\x0e\xae\xf2\x11\xae\x51\x95\xee\xcb\xd8\xa4\xa9\x2b\x8b\x9f\x08\xc5\xcf\xfc\xc5\x55\x7e\xb0\xe6\x00\x83\xc7\x26\xb8\x56\xbb\x33\x07\x6a\xb9\x3c\xa8\x9f\xba\x38\x98\x46\x9e\x46\x3b\x0c\xd5\xc9\x1f\xf6\xc4\xdf\xe6\x89\x5d\xa7\x96\x5d\x90\xd6\x10\xd9\xb5\xc0\xb0\xf2\xf5\xd7\x55\xc2\x31\x4b\xde\xac\xa8\x86\x08\xa6\x91\xdb\x09\x04\x14\x69\xd2\xee\xae\x25\x2b\xd8\x55\x66\xe0\x19\x9a\xb4\x30\xd1\x0c\x3a\xb2\xfa\xf5\xda\x8a\xfc\x56\xfe\xcc\xe0\x67\x8c\xfd\x7a\xac\x71\xa4\x95\xba\xc4\xc9\xbe\xaf\x5d\x6f\x84\xf2\x80\xeb\x5c\x0c\xd3\x6d\xd9\x37\x7e\x61\x93\x52\x3e\x02\x4e\x7b\x2c\xab\x2e\xb3\xff\x72\x30\x42\x22\x53\x5e\x67\x84\x9c\x89\xd9\x71\x30\xed\x45\x40\x53\xd8\x89\x8e\x99\xb0\xc2\x64\xf5\xb1\xc2\x0f\x8c\xa6\xaa\xd5\x49\x0e\x5e\x79\xe5\xed\xad\x3a\xac\x12\x8f\x9a\x99\x60\x45\xe7\x4f\x39\x39\xb2\x35\x18\x7d\x3d\xc9\xfe\x5d\x55\xee\xdf\x2a\x94\xb2\x70\x08\x63\xd3\xb3\xb8\xcc\x72\x6a\x46\x21\x24\x12\xf9\x36\x82\x61\xa4\x91\xc5\x15\xbd\x31\xfe\x4a\x4c\x1f\xa8\xea\x71\xf7\x97\xec\x8c\x9e\x4d\x23\x9b\x9d\x4e\xcc\x93\x0d\xc8\xfa\xb7\x03\x8c\x25\xca\x73\xf4\x9e\x7a\xb6\xba\x3d\xa4\x4b\xc2\x8a\xd1\xb8\x3d\xde\x29\xa1\xc7\xf3\x29\xaf\x95\x57\x3c\x46\x88\xc0\xce\x1c\xe9\xe8\xb3\xc7\xb3\xbb\xba\xd4\x20\xdc\x4f\xf5\xd6\x79\x56\x90\xa7\x47\x04\xe7\xad\xa9\xa8\xc7\x40\xcd\x9e\x5e\xbf\xb2\x79\x66\x88\x45\x57\x5e\x9d\x9e\xec\xfe\x8e\xdc\x17\x4e\x8d\x20\x81\xae\x46\x04\x07\xba\x3e\x0c\xec\xb5\x1d\x67\x89\x67\x2b\xa1\xb0\x42\x81\x31\xfb\xf7\x9d\x88\x00\xdb\x0a\xb8\xa7\xcb\x38\x1f\xcc\xc9\xcd\x5e\xc5\xab\xde\xa2\x1a\xd9\xd5\xd4\x39\xbc\x93\x1e\x84\xad\xd7\xf0\x69\x67\xa7\x27\x81\x2c\xb5\x25\x5b\x8f\x44\xc4\xd5\xd8\x54\xf2\x6f\x6b\x63\x43\x7e\xbf\xb7\x93\x2d\x29\x37\xab\xa9\xc0\x22\x65\x94\x23\x49\x03\x7d\x8b\x9f\xce\xb5\xbc\xfb\xf4\xf0\x29\x0d\x61\x81\xc0\x38\x98\xf1\xa9\x6f\xc8\xa7\x46\x0c\x1a\x81\x3e\x94\x20\xe9\xad\x26\xd1\x9f\x2b\xc1\x54\xfd\x58\x04\x6f\xe0\xe7\xd2\xba\xad\xc7\xc2\x70\xb0\x58\xc6\xe2\xbd\xe6\x5e\xd5\x78\xe0\xff\x29\x4c\x50\xd2\x27\x7b\x67\xf4\xf7\x31\x82\x1e\x3a\xec\x60\x2f\xd9\x13\x5a\xbc\xd0\xf4\x4c\x01\x9f\xdd\x53\x53\x04\x25\x81\x6f\x67\xcd\x7b\x08\x7f\xd3\x51\xf8\x41\x5f\x9c\x3e\x5c\x26\x53\x92\x76\x53\xfc\xeb\x19\xaa\xe6\xc4\x97\x2d\xf2\xbf\x68\x6d\x9f\xdc\x07\x1e\xcb\x5f\x75\x9e\x5b\x65\xd7\x3d\x25\xea\xe0\x55\x41\x84\x5e\xa6\xbd\xf0\x2d\x5b\x4b\x59\xc1\x30\x16\x7c\xd8\x10\xf4\x3b\x26\xd4\xeb\x2c\xf8\x9e\x3b\xa0\xa9\xff\xd5\x93\x3d\xe0\x4e\x7e\xc5\x48\x60\x38\x7a\x0a\x62\x22\x52\xb1\xc6\x5c\x87\x1f\xe2\x90\x43\x87\xa7\x7b\x71\xd1\x64\x3f\x76\xf7\x43\xc1\xd5\x38\xe4\xca\x40\x57\x95\xe4\x23\x5e\xc1\xb0\xb8\xa8\xfc\x41\x29\x7b\x6b\x46\x54\x04\xe6\x83\xed\x0e\x6c\x9c\xd8\xf8\x80\xe9\xb4\x75\x9a\xce\xcc\x2a\x39\x6c\xb6\x81\xd3\xe7\x8f\x61\xa6\x54\x2d\x98\x01\x23\x1f\x93\x7a\x9e\x63\xa3\x0e\x89\x49\xc4\x25\xec\x2b\x31\x80\x7d\x6f\xc8\x88\xbb\xa2\xfd\x77\x9b\x6a\xf9\x84\x24\x8b\x25\x16\x4f\xe2\x25\xb9\x57\xf9\xb1\xbf\x07\x04\x27\x7c\x45\x56\xef\x02\x62\x23\x6a\xe8\x05\xd5\xc7\xd6\xfb\x91\xe7\xda\x7e\xf4\x53\xeb\xd5\x09\x8e\x20\xe9\xde\xac\x85\xa7\xba\x6b\xe0\xb2\x88\xee\x68\x0e\x19\x86\x03\xa9\x07\x2b\xae\x8d\x27\xfb\x42\xe2\x07\xc3\x8d\x1c\x0e\xd2\x2b\xe3\x7a\x51\x88\x51\xe9\x8b\xc6\xc8\x0e\xc9\x45\x27\x2d\x0b\x6f\xdb\x3b\x6c\x2a\x01\x37\x95\xd4\xdb\x37\xf1\x85\xf3\x6a\x51\x3d\x2f\x74\x1c\xee\x33\xe2\xd4\x50\x2d\xdb\x92\xe1\x8d\x73\x53\x5b\x23\xc8\x12\x91\xe2\x31\xf2\x55\x82\x99\xdd\x67\xbe\xde\xaf\x5d\x8f\x0d\x2b\xc4\x1c\x3c\x86\x2c\xc9\x88\x35\x3d\xad\x16\xf8\x7c\x08\x49\xf8\x69\xf5\x76\xc8\xa9\x79\x1e\xf6\x3e\xb6\xa4\x68\xc2\x51\x49\x72\x2b\xdc\x2f\x84\xb1\x8a\x7d\x58\x4d\xa9\x17\x8f\x08\x0e\x9c\xb7\x3c\x72\x49\x93\x78\x58\x11\x14\xa2\x0c\x01\x9a\x6d\x22\xf7\xb3\x17\x68\xb1\xfb\x16\x9f\x53\x82\x6f\x16\x79\x3e\xb8\x08\x7c\xbc\x64\xc0\xbf\x8f\x8c\x4c\x4d\xa6\x2c\xdc\xa5\xf2\x87\x2b\xe1\xa0\x0a\xad\xdb\xd1\xf8\x9c\xf8\xab\x0e\x7d\x36\x2e\x3e\x4b\x49\x39\xc7\x55\xe9\xb9\x2a\x55\xa3\xf2\xa1\x90\xc0\x32\x88\x0a\x9e\x11\xe6\x49\x5e\xc7\xfd\xc0\xaa\x13\xda\xa9\x35\x93\x6e\xab\x53\x36\x90\x3e\xba\xdb\xc5\x96\x30\x74\xd3\xf5\x5d\x45\x90\x97\xde\xcc\x88\xa6\x53\xa4\x45\xa2\x15\x8a\x39\x9d\xff\xae\x0a\xfd\xa4\xbd\xe8\xa9\x68\x82\x37\x6a\xfe\x4c\x48\x2b\x89\xe3\x72\x3a\xb6\x6d\xe4\xf7\x7a\x1e\xe5\xce\x9d\x92\x81\x48\x45\x96\xec\x62\xb0\x6a\x6d\x4f\xa4\xe8\xe7\x39\x7a\xfe\x5e\xac\x4e\x82\x3b\xf3\x8e\x3c\xd0\x98\xbb\xd1\xe5\x0b\x6b\xe3\xdd\xc8\xa6\xa5\x6d\xc1\x8c\xfb\x7b\x6e\x0a\x55\x95\x1c\xf1\xa5\xc7\x79\xaa\xa5\x18\xac\x6b\xdf\xf2\x95\x2a\x1f\xab\x0a\xd9\x09\xa7\xb3\xb6\x8e\xee\x8e\x24\x09\xa3\x63\x99\x83\x5e\xa3\xe0\xef\x42\xa5\x21\x9e\x4c\xdd\x87\x18\x8d\x8f\xaf\xb1\xbf\xce\xe3\x78\x8e\xea\x2d\x46\xe0\x8c\x0a\x5d\x7e\xd1\x9a\x56\xf2\xf5\x5b\x30\xf1\x66\xb8\x09\x18\xe9\xbd\x67\xf7\x78\xec\x67\x7d\x76\x51\x63\x28\x88\x1e\x44\x89\xda\x77\x46\xc8\xdc\x3f\xeb\xb5\x27\x46\xb6\x8f\x6b\xb8\x2c\xd2\x32\xd9\x2f\xfd\xd8\x87\xd4\x36\x4a\x12\xa4\x2f\x37\x20\xbf\xad\x29\xda\xc5\xd8\x96\x73\xb5\x7e\xae\xe0\x8c\xef\x76\x7f\x7d\x82\x91\xe1\x29\x7d\xf4\xc3\x50\xaf\x7d\xde\x0d\xaa\x7d\xeb\xeb\x0a\x4e\x49\x03\x8f\x9c\xe2\x1d\x04\xd3\x2c\x55\xbc\xdd\xb0\xf2\x84\x75\x8f\xcb\x2b\xdb\x7f\xaf\xa8\x25\x7f\xb6\xa0\x6a\x5d\x24\x53\x16\x28\xdb\x77\x5c\xbb\x3d\x16\xbc\x4c\x8a\xf4\xa6\xea\x5d\x88\xa2\xbc\x69\xa9\x0c\x73\x63\x5b\xb8\x16\xa8\xca\xf1\xc8\x29\x18\x4e\xd4\x10\x3e\xf6\xf3\x13\x34\x28\xeb\xa7\x3e\x2f\xfd\x6c\x2b\x9e\x73\x4a\xbd\x2e\x27\x51\x99\xfd\xae\xf6\x9c\x45\x00\x41\x9a\xd6\xdd\x6b\x61\xf9\x95\x2b\x77\x64\x6c\xc3\xc0\x32\x33\x3f\x58\x6e\xab\x50\xf8\x4f\x3f\xe2\x5b\x45\xf2\x8f\x42\x4f\xd6\xe8\xcf\x1d\x07\x04\xb3\x72\xe5\xd4\xf6\xd4\x96\xd8\xb8\xb9\xf8\xdd\xe2\xc1\x69\xd8\x8e\x1f\xbd\xe3\x79\xe5\xba\x33\x30\x8c\x25\x39\x73\x33\x36\xf6\xe6\x6a\xae\xe4\xd3\xf3\xf5\x34\xf7\x9d\x34\xb2\xeb\xf1\xb2\x7c\xd9\x57\x18\x0d\xbf\xa7\x90\x19\xf0\x4b\x29\x8f\x0b\x76\xd2\x7d\x1c\xfb\xce\x22\x8f\xf6\x92\xe9\x7a\x0a\xa6\x64\xc3\x87\x7e\x2b\x1e\x9d\x8b\xe5\x62\xcb\x5c\xcc\x65\xfd\xf0\xe6\xcd\x4b\x11\x1e\x43\xde\x0a\x87\xb9\xb4\xc7\xb5\xf5\xe0\xb9\xe4\xd5\x46\x45\xe7\xb4\x48\x11\xf5\xfb\xf7\x2a\x6d\xf7\x45\x4b\x30\xd6\xdc\xf0\xd6\x24\x19\x42\x9a\x78\xaa\x53\x65\x1d\x68\xf7\x07\xde\xae\xec\xb2\xfd\xc0\xf8\x34\xc7\xdf\xe9\x0c\x54\x47\x45\x60\x83\xdc\x97\x32\xad\xeb\xbc\x3b\x5e\xe1\x45\xa8\x25\x84\xed\xfd\xfa\x71\x68\xd9\xa7\x9c\x32\x03\x64\xeb\x97\x37\x3c\x97\x65\x26\x04\x96\x1b\xf7\x4d\x14\x4f\xa6\xf6\x3f\xbe\xf3\x49\x81\xb3\x23\xfb\xd2\x95\x4f\x8a\xfb\x2f\xf8\xc2\xeb\xdb\x67\x23\x15\x1e\x70\xb7\x4b\x1d\x58\x9a\xd1\x4c\x1b\x9a\x4c\xb9\xed\x1b\xff\xa0\x99\x1d\x7f\x65\x53\x0e\x2d\x54\xa3\xa9\x66\x5f\x23\xbc\x2f\xaf\xc8\xa3\x2c\x35\x7a\xd7\x72\xe2\xb2\x6c\x91\x70\xa9\x95\x5e\x2a\x20\x4d\x73\x88\x5e\x9a\xc5\x11\x9c\xa3\x48\x47\x5c\xa5\x62\x5a\xa1\x63\xdb\xfe\xf1\xa2\x67\x1c\x05\x35\xab\xc1\x4d\xcc\xbe\xb5\xb8\xe6\x9b\xba\xd9\xe0\x26\x05\x8d\x0c\x6f\xd2\x09\x43\x65\x99\xdb\xb6\x84\x5a\x15\x5d\x7f\xe6\x4b\x43\xcd\xeb\x24\x23\x1f\x7a\xc4\x70\x8e\xca\x6a\x97\xc1\xce\xaa\x87\xac\x47\x16\x94\x34\x36\x3d\xe7\x75\x31\xbb\xa4\x7c\x60\x9a\xdf\xe5\xfc\xa7\xa8\x29\x93\x3a\xa1\x27\xfa\x0a\xf3\xb7\xf1\xb1\x5b\x9e\x0f\xb4\x14\xaf\x46\xfe\x98\x9a\xa2\x42\xe9\x8a\x52\x92\x48\x12\x86\xd5\x26\xf0\x0e\xb4\x19\xc9\x1b\xb0\x0f\xdf\x94\x0a\xb0\x72\xf0\xc5\xb4\x07\x13\xa7\x4f\x94\xb2\x43\x87\x96\x14\x59\x0b\xf4\xa3\x14\xb9\x4c\xf9\x7d\x31\xa5\xda\x39\x08\x35\x37\xb9\x28\x58\x2a\x63\xb6\xb1\xd8\x1e\xbf\x11\xd2\x4c\xd4\xbe\xbd\x95\x18\x7e\xdb\x9c\xb2\x46\x70\x76\x1f\x1a\xad\x68\x70\xe4\xf6\x93\x6d\x79\x43\xa4\x0b\x3f\x24\x67\xa9\x51\xd9\x0e\xaa\xc0\x56\x4b\xb4\x76\x23\x4a\x99\x1d\xd9\x03\xad\xe0\xbd\x34\x46\x02\x2c\xd8\xa1\xcd\xcc\x68\x31\xc9\x17\xc5\x00\x17\xf3\x40\xd0\x47\xea\xd0\x3f\xac\xbd\xb3\xb7\xad\xca\x1b\x15\x76\x49\x43\x61\x2f\x5d\x8d\x57\xaa\x1f\xf6\x9e\x41\xf7\x2b\x85\xd0\x56\x27\xc2\xb1\xd2\x07\x88\x80\xad\xbf\x1d\xc9\xd2\x76\x6f\x70\x88\x9d\x57\xf0\xa8\xb5\x8d\x19\xe6\xee\xae\xd8\x33\xab\xf5\xee\xce\x04\xbf\x25\x62\xa7\xaa\x7f\x68\x8f\x3b\xea\xe5\x35\xa5\xca\xf7\xe5\x8f\x51\x8c\xa2\x79\x1b\xc4\xb7\x40\x46\xd8\xa6\x39\x0b\x62\xbb\xc9\xe2\x85\x6b\xef\xa7\x06\x60\xa2\x37\x68\xa8\x4b\x16\xb8\x42\xaa\x44\xf9\x93\xf6\xa7\x3a\x52\xad\x7f\xc7\x45\x23\x2e\xa7\x69\x0e\x32\x08\x3f\x12\x56\x6a\x46\x9c\x6b\x92\x24\x6f\xc9\x83\xbd\xf3\x9f\x5a\xb7\x3b\x42\xd2\x7f\xd5\x8e\xe4\x09\x43\xc6\x45\x2c\xa4\x8a\x55\xbf\x24\x48\x1a\x92\x25\xe7\xfe\xc2\xad\xf5\x62\xb4\x0d\xbe\x7d\xcc\x24\xd6\xde\x5f\xe6\xdd\x4f\xf8\x7d\xe5\x4d\x3b\xff\xc6\xcb\x7a\x7d\x3a\x5e\xbd\xaf\x8d\x7a\x83\xc7\xbc\xcc\x99\xea\x4b\x32\xe5\x44\xf9\xd3\xe7\xc9\xca\xfc\x9e\xd9\x95\x25\x43\x0d\xbf\xa9\x20\xec\x98\xc6\xaf\xae\x99\x85\x2f\x50\x4d\x9a\x33\xc3\x30\x1b\xb7\x4c\x3a\xef\x26\x24\xe5\xbf\x05\x87\xc2\x46\xe9\x6e\x16\xad\x34\x5e\x7d\x5b\x2b\x62\x0a\x6a\xfd\x29\x6e\x71\x9e\xa9\x8a\x2f\x7e\x73\x58\x97\x58\x5a\x1b\x67\x56\xad\xba\x48\x6c\xae\xd1\xcd\xb6\x91\x1e\x9a\xbd\xb0\x66\xa8\xe5\xb8\x75\x68\xec\x57\x7f\xcd\x53\x80\x9f\xa7\x81\xcd\x75\x30\xbe\xf4\x50\x00\x7f\xba\xb3\x1e\xee\x96\x71\xee\x32\x2d\x6f\x12\xc7\xa4\x76\x5b\x1a\xf7\xce\x4d\x8b\x1b\xc4\xac\x51\x15\xad\xfb\xc1\xb7\x43\x30\x73\xb5\xd5\x25\xa2\x61\xab\xb0\x82\x63\xef\x70\xe3\xb0\xb1\x16\x9b\x62\xdd\xb0\xa0\x1f\xca\xbd\x13\x2e\xc0\x0f\x1a\xe3\xd9\xbb\x34\x95\x8c\xc5\x93\xb7\xa5\xe0\xd8\x58\xf0\xa3\x19\xfa\xd0\x43\xa8\x22\xbc\xef\x04\x47\xa6\xc8\xf8\xa7\x75\xa1\x9c\xdb\xff\xac\x88\x5f\x8a\xda\xd4\x80\xdb\xe6\x52\x06\x20\xdd\x54\x69\x3c\x9f\x9a\x66\x11\xcb\xf1\xdf\xca\x4e\xfa\x5f\xa5\x1b\x7f\xad\x66\x94\xd7\xb5\x9b\x19\x3d\xbc\x8e\x8c\xfc\x3c\xfa\xde\xaa\x41\x7e\xc6\xb0\xfb\x05\x6a\xa7\x45\x8a\xe0\xa9\xa9\x8f\x3c\x6a\x28\x06\x25\x59\x71\xa3\x21\xcf\xe5\xcd\xc1\xfc\xaa\xf1\xd2\xbd\xc9\x5d\x30\x36\x25\x3f\xaa\x35\x65\xe3\x42\x59\x73\xbb\xdb\x19\xe6\xce\x3e\x22\x7d\x89\x4c\xa1\x60\x17\x19\x56\x8c\x31\xdd\x6d\xc1\x3c\x4b\x7e\xb8\x3a\x3d\xda\xe0\x05\x55\xaf\x73\x1c\x47\xd8\x6f\xd2\xa7\x79\x28\x32\xdf\x9d\x7a\xc3\xa8\x93\x2b\x24\x04\xc3\x0a\x18\x62\x7a\xef\x7e\xd2\x32\xbc\x3d\x97\x81\x73\x63\x7f\x16\xab\x98\xe0\xc2\xed\x16\x40\x77\xd8\x4d\x52\x27\x8b\x2d\x44\xbd\xbd\xeb\xf8\x5a\x37\xb3\xae\x43\x54\xcd\x01\xfb\x52\xd8\xa3\x37\xb7\xf4\x6c\xf9\xaa\xf7\x63\x37\x6e\x24\x4b\x37\xc6\x5f\x34\xff\x04\xbb\x72\xf7\x72\xd9\x84\x28\xcf\x63\xd5\x5a\x3c\x53\x74\xec\x09\x36\xa7\x84\x9e\x23\x0e\x3e\xd9\xe5\x2f\x62\x19\xd4\xe6\x4e\xf7\x45\x24\x90\xcc\x29\x25\xff\x39\xf6\x51\xb1\xd1\x98\xea\x64\xe9\x61\x93\x53\x68\x81\x3e\x11\xe1\x73\x20\xb3\xf1\x04\x3d\x32\xd5\x3d\x84\xb7\xf5\x61\x6b\x92\x12\xc5\xf4\x4d\xfc\xa7\x08\xfc\xaf\x42\xf2\x49\xb0\xe9\xb1\x45\x04\x0c\x99\xf8\xe2\x30\x54\x04\x6e\xf8\x16\xa5\x3a\xf4\xd0\x33\xcd\x6b\x25\xc2\x23\xee\x86\xc1\xb6\x8e\x83\x73\xc9\x90\xe8\x9e\x4c\x16\x9b\x00\xad\xdc\x23\x25\x6a\xc4\x03\xff\xe0\x8f\x66\x75\x30\x67\x6e\xaf\x99\x44\x7b\xbe\x60\xe5\x22\xc3\x88\x3b\x7d\x36\x6c\x8f\x4c\x28\x76\xa0\xb7\xc5\x50\xdf\xc6\xa8\x51\x66\x98\x50\x74\x2e\x6a\x46\x77\xee\x61\xdd\x20\x6c\xf4\x9b\xee\x35\x94\x51\xd1\x7b\xc7\xa5\xa1\xea\x8c\x9d\x1c\x7f\xac\x09\xbe\x6c\xd3\xb0\xb9\x2b\x0b\x59\xee\x94\xb6\x7f\x56\x28\x58\x0e\xb9\x26\x1a\xc9\x5a\xcb\x58\x3b\x6f\x7d\x69\x39\x00\x91\x49\xf0\xfb\xe9\x47\x63\xb3\xa5\xdf\x70\xd6\x8e\x32\x25\x16\x99\x9c\x93\xd3\xfb\x83\xa2\xe3\xdb\x25\x90\x76\x48\x38\xd4\x32\x87\xf2\x08\x4a\x6a\x9f\x59\x48\xb2\x1d\x60\x78\x6f\xf0\x2a\xf2\xc5\x85\x39\x7b\x5f\xcf\x34\x27\x8b\x65\xa0\xd7\x51\x4f\x9a\x6d\x16\x4b\x1b\x2f\x52\x69\xe0\xf7\x4a\x5f\x19\xde\xee\xc7\xd7\xc2\xd1\x04\x9c\x40\x77\x89\x7e\xa0\xba\xb8\xfd\x48\x7a\x54\x02\x84\x80\x71\x94\xa7\xc4\xef\x07\xde\xf1\xba\xec\x9c\xdb\x0f\xc5\xb2\x32\x28\xd6\x48\xd8\xda\x19\xd6\x5b\x5a\x02\x74\x0b\x64\xda\x65\x40\x3d\x7a\x90\x1a\xd9\x8d\x80\x77\x29\xdd\x00\xbd\x4b\x0d\x05\xd2\x09\xa7\x1c\x3f\xac\x49\x2d\xa2\x7a\xe8\xdb\x3e\xd8\xbc\xf2\xd3\xfd\xe2\xd3\xd7\x7a\x14\xd0\x70\x3a\x11\x75\x9f\xf6\xaa\x3a\x39\x6a\x90\x8d\x7b\x79\x0c\xa6\xdc\x28\x2a\xcf\x81\x2a\x12\xf9\x1e\x83\x38\x13\x9d\xea\xe9\xeb\x55\xe5\x5d\xee\x4d\x74\x95\x97\x43\x5d\xb1\x5b\xd7\x5c\x69\x32\xb9\x60\x19\xba\x94\xf2\x85\x1a\x7e\x73\x46\xb1\x5b\x57\x01\x7a\xf2\x90\xb8\x1e\x55\x25\xbf\x57\x40\x6a\x7e\xc9\xdf\xaf\x75\xc2\x99\x5d\x8f\x36\x5e\x0b\x88\x84\x88\x8c\x8e\x02\x1f\x55\xf5\x11\x15\xd1\x53\xf4\x02\x72\x4a\x1b\x94\xb8\x02\x96\xaa\x63\xf2\xf7\x2a\x33\xa5\x04\x81\xef\x24\x8b\xa3\xc1\x6a\x61\xb7\x0b\x29\x5d\xe8\x21\x2a\x35\x11\x03\xfc\x77\xfb\x39\x1c\xbd\x35\x85\xf5\xf4\x74\x59\xfc\xc8\x81\x0d\x8c\xae\x47\x2f\xcf\xc9\x4b\x64\xe4\xf3\xa1\x89\x1c\x02\xb2\x67\xdd\xfb\x0e\xa4\x4c\x6e\xcd\x11\x5d\xb1\xf7\xbf\xf0\xb3\x76\x05\xb0\x2a\x11\xfb\x64\x55\x47\x3f\xaf\xef\x07\xab\xb0\x35\xbe\x18\x59\xb9\x2b\x7a\xe7\x85\xbc\x70\x08\xa8\xf6\xd0\x99\x62\x3a\x52\x0a\x5b\xa6\xdf\x3a\xed\x68\xee\xec\xe7\x61\xde\xa1\xac\xe9\x83\x63\x0f\x46\x4a\xb6\xd2\x9b\x7f\x3a\x2e\x90\xee\x20\xe1\xf0\xae\xd4\x63\x6c\x26\x0e\xdd\x21\x7e\x1b\xb4\x8e\xd6\xe2\xf1\x1b\xca\x60\x1c\x53\x77\x8d\x7b\x2b\xad\x7b\x49\xb8\xe3\x86\xdf\xdb\xc3\x5e\x7f\x31\x4e\x08\xea\x5b\x02\xbd\x2a\x91\xf9\x65\xd1\x6f\xf2\x9b\xc6\x78\x6e\x7e\xb3\x7a\xc0\x8b\x72\xf1\xe2\x77\x57\xef\x7c\x76\x67\xf1\x9b\x4e\x4a\xbc\x28\x58\x80\xb8\xcf\x9d\xa6\x68\x10\x1f\x41\xd7\x69\x2c\x1b\x21\xff\x5a\x89\xe3\x90\xef\xf8\x88\x72\x13\x28\x3c\x20\x50\x73\xfb\x79\x23\x3f\x02\x2c\xaf\x00\xa2\x63\xfe\xe3\x6e\xd7\xca\x2f\x9b\x20\x77\xc9\x08\x8e\xa0\x4c\x1c\x53\x97\xe5\xda\x6b\xf5\x77\xce\xdb\x63\x25\x7d\xa7\xf4\x67\x9e\xb7\xeb\x11\x64\xe1\x57\xd4\x60\x74\xc5\xb0\x6d\x4c\x1e\x85\xe4\x01\xa1\x6c\xbe\x26\x68\x72\xbb\xf0\x0e\x09\xb7\x4e\x78\xf2\x1f\x2a\xf9\x6c\xca\x9d\xc3\x5d\x8b\x2e\xd0\x7e\xe3\x76\x24\xce\x7f\xf9\x12\x45\x8a\x75\xf9\x91\xe4\x99\xe0\x97\x25\xe6\xe8\x52\xcd\xdf\x46\x62\x09\x87\xa8\x2a\x9a\x2c\x04\x4c\xe0\xe1\xa4\x15\xa6\xc2\xc9\x0f\xf8\x39\xd1\x8a\xcb\x78\x90\x53\xdf\x67\x01\x74\xd7\x46\x48\xe7\x25\x72\xdf\xa2\x25\xee\xe0\xf5\x59\xdc\x90\xbd\x28\x7d\x21\x16\x72\x24\xb7\x21\x0a\xd9\xac\x8c\xa1\x0d\x2a\xa3\x27\x6e\x72\xa0\xfd\x1a\x73\xd2\xca\xa8\x0e\x2d\x4a\xe0\xe0\xb2\x0e\x62\x26\x0e\xf1\x5b\xeb\x77\x41\xa4\x83\xd0\xb0\xae\x35\xe8\x7b\xab\xbc\xcd\x85\xab\x93\x97\x50\xef\xa4\x23\xed\xc6\x00\x48\xf9\x12\x49\x4a\xff\x7a\x45\xa3\xf7\x7a\x5f\x96\xd6\x70\x27\xf6\x0a\xae\x43\x30\xce\xec\x5c\x6c\xad\x53\x2e\x91\xfe\xde\x7b\x13\x87\x63\x37\x83\x32\x7b\xd7\x6a\xf3\x2e\x33\x33\x96\x88\xfe\x96\x16\x48\x7d\xd2\x66\x0c\x54\x19\x4e\x99\xd9\xf4\x56\xb0\x26\x22\x80\xa2\x34\xd5\x51\x4d\xef\x6c\xe6\x1e\x31\x13\x6d\xa7\x45\x6f\x1c\xe8\x67\x19\x3d\xc0\xe8\x9c\x51\xbf\xc8\xaa\x56\x55\x1f\x8c\x2c\xbc\x20\xfc\x74\x6c\x94\xbb\x93\x81\x7d\x19\x82\xad\xc9\x47\x7e\xe1\xc6\x15\xb5\x1d\x65\xe0\x51\x9f\x0a\xfd\x12\xd2\xd2\x8e\x71\xc0\x7b\x1c\xd3\x93\x9e\x82\xae\x50\x13\x3f\xaa\x6b\xb3\x9f\xe8\x36\x1c\x09\x84\x76\xdf\x14\x3e\xdb\x6d\xf6\x69\x07\x9c\xbf\x88\x9c\xd2\x39\xef\x0d\xef\x36\xc9\x70\xa9\x17\x76\x98\x9f\xd8\x3e\xe3\xa6\x1f\xb4\x94\xa7\x45\x89\x32\xb2\xbe\xb4\xeb\xc5\x60\xfc\xea\x69\xb1\x8b\x66\xeb\x9c\x69\xee\x60\x6a\x87\x36\x08\xd4\x6f\xc9\x61\x2a\x80\xa5\xc1\x3f\x0d\x9a\x11\x5f\xf6\x9c\x7e\x9a\x2b\xbf\x8a\x26\xe2\x56\x43\x5e\x97\xa5\x70\x83\x55\x4e\x42\x60\xdc\x97\xec\x3e\x1d\x93\x32\xdd\xd7\x6d\x46\x7f\x02\x99\x5e\xcf\x17\x6e\xb6\xee\xf2\x70\x09\x1f\xa3\x49\x49\xea\x88\x1e\xa8\xc7\x43\x54\x7b\x3c\x2e\x42\xb5\x38\xe5\xec\x2c\x3e\x6b\x79\x6c\x7c\x69\xbb\x69\xbc\xdf\x64\xa0\x8c\x80\xe0\x71\x54\x84\xd6\x6b\x46\x92\x16\x93\x88\x10\xfe\x55\x4c\x7e\x35\xf3\x8b\xe4\xbb\x87\x34\xa2\x3f\xa0\x85\x7b\xee\x75\xb1\xab\xd4\x26\x0d\xb2\x5b\xed\xc8\x4e\x2d\x31\xb6\xaa\x8e\x70\x66\x04\xc3\xbb\xbe\xf4\x8f\x9f\x9a\x14\x88\xe8\x23\xf7\xc9\x65\x92\x9d\x5a\xff\x85\x7c\x18\x78\xa5\xc2\x77\xd7\xd0\x10\xba\x6b\x26\x8a\x5f\xba\xf2\x82\xbf\x48\xc9\x94\xa7\x1c\x13\xd3\xbc\xed\x6a\x8a\x97\x94\x88\x8b\x45\x7b\x03\x7a\x32\x3d\x55\x55\xa0\x80\x23\xdf\x52\x2a\x99\xdc\xbf\x7e\x50\x1f\x8b\xa9\x65\x0e\xe6\xfc\x58\x86\xab\xeb\xf4\x7a\xeb\x5c\x94\x94\x2d\x8b\x7d\xbc\x99\x8b\x95\xb8\x50\x63\x81\xb9\x64\xfb\x31\x45\x3a\x82\x0e\x7e\xe9\x9c\xac\xcc\x8a\x2c\x55\xc8\x96\xb2\x77\x13\x40\x20\x95\xca\x3c\x2d\x10\xea\xe3\xa3\x1a\xef\xbe\xb3\xbc\x7f\x19\xef\xa0\x15\xea\xdd\x5a\xb3\x7a\x88\x85\xeb\xf8\x7c\xcb\xe9\xcb\x8b\x89\xad\x81\x49\xed\x1b\x19\x81\x7e\xd8\xda\x35\xd3\x43\x0b\xae\x80\x43\x28\xe8\xf6\xfe\x6a\x51\x78\xb0\xa5\xf4\xe3\x0c\x6a\x50\x5c\x9e\xe5\x95\x10\x1a\x9e\x24\x42\x99\xc6\x27\x97\xf3\x23\xf4\x03\x89\x02\xcf\xed\xdf\xe9\xce\x5b\x9e\x56\x89\x3b\xe3\xf2\x28\x1c\xa7\x5a\x89\x0d\x4f\x00\x00\x58\x5c\xe4\x74\x5c\xcc\x61\x2e\x70\x88\x99\x33\x1c\xe6\x02\x07\xf8\x78\x41\x42\x5c\xbc\xfc\x5c\x20\x11\x2d\x90\x00\x84\x8f\x0f\xc2\x27\xc8\xc1\xcb\x0b\xe1\xe5\x5d\x03\x45\xb5\xfe\x3f\x06\x3b\x07\x73\x2b\x84\xe7\xff\x6e\x88\xb7\x15\x40\x01\x00\xe0\xcd\x3f\x03\xd2\x01\xe1\xe2\x0e\x73\x86\x03\x8a\x76\x30\x0b\xb8\x0a\xcc\xc2\xca\xcc\x86\x5e\x88\x1b\xcc\x2d\xcc\x25\x42\xcf\xc7\x0b\x12\xe0\xe2\x15\xe4\x02\xf1\xd1\xab\x83\x84\xe8\x2d\x5d\x5c\x1c\x21\x3c\x3c\xee\xee\xee\xdc\x56\xff\x68\xbb\xff\xd0\xdc\x0e\xce\x16\x4b\x21\x47\x00\x00\x00\x14\xff\x12\xb5\x2c\x5d\xed\x4c\x21\x10\x59\x07\x33\x57\x3b\xb8\xbd\x0b\x04\xa2\x06\xb3\x80\x23\x01\x50\xe1\x53\x33\xcf\xff\x60\xfe\xf3\x27\x04\x62\x09\xb7\xb2\xb0\x74\x01\x40\x22\x7c\x04\x80\x73\x30\x00\x00\xe4\xff\x3f\xa3\x6d\x65\xee\x62\xf9\x0f\x99\x2a\x63\xc0\x02\x00\xe0\xe5\x7f\x21\x2a\x56\x76\x70\x17\x4f\x47\x38\xf0\x9f\xa9\x78\x1c\xed\x2d\x24\x6b\x3e\xbc\xfb\x1f\x39\x2a\x5a\x56\x76\x70\x00\x24\x20\x28\xcc\x2f\x02\xe6\x17\x10\xd4\xde\xaa\xd2\x00\x00\x80\xe0\xbf\x10\x4d\x2b\x2f\x38\xc0\x0b\x85\x7e\xce\x91\x38\x04\x00\xe0\xc3\x7f\x3d\xbd\xd7\x50\x04\x10\x56\xb6\x70\x08\x0f\x0f\x8f\x9d\xbd\x8b\xad\x83\x05\x0f\x02\xe6\x66\x65\xe6\x60\x8f\xe4\xf9\xbf\x3d\xf3\x20\xe0\x22\x70\x11\x01\x30\x0c\xc4\xc7\xc7\xcf\x6f\x6e\x8e\x80\x23\xf8\x61\xa6\xe6\x60\x10\x4c\x10\x04\x82\xf3\x9b\x0b\x72\x5b\x99\x39\x70\x3b\xda\x5b\xb4\x98\x87\x0f\xfc\x2b\x4c\x51\xee\x9d\x6c\x05\xd4\x24\xf0\xff\x04\x00\x00\xff\xff\x7f\xd8\x56\x73\xa3\x1a\x00\x00") + +func staticImgCowyoAndroidIcon144x144PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAndroidIcon144x144Png, + "static/img/cowyo/android-icon-144x144.png", + ) +} + +func staticImgCowyoAndroidIcon144x144Png() (*asset, error) { + bytes, err := staticImgCowyoAndroidIcon144x144PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/android-icon-144x144.png", size: 6819, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAndroidIcon192x192Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x08\x20\xf7\xdf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\xc0\x00\x00\x00\xc0\x08\x03\x00\x00\x00\x65\x02\x9c\x35\x00\x00\x03\x00\x50\x4c\x54\x45\xff\xff\xff\xfb\xfb\xfb\xfd\xfd\xfd\xfe\xfe\xfe\xfc\xfc\xfc\xa2\xa2\xa2\x5b\x5b\x5b\x74\x74\x74\xd9\xd9\xd9\xf0\xf0\xf0\x8e\x8e\x8e\x5a\x5a\x5a\x83\x83\x83\xe8\xe8\xe8\x7b\x7b\x7b\x00\x00\x00\x04\x04\x04\x1b\x1b\x1b\xe2\xe2\xe2\x4a\x4a\x4a\x05\x05\x05\x3b\x3b\x3b\xf5\xf5\xf5\xda\xda\xda\x0b\x0b\x0b\x08\x08\x08\x8c\x8c\x8c\xb9\xb9\xb9\x07\x07\x07\xac\xac\xac\x8b\x8b\x8b\x03\x03\x03\x54\x54\x54\x99\x99\x99\x02\x02\x02\x3e\x3e\x3e\xf7\xf7\xf7\x2a\x2a\x2a\x27\x27\x27\x82\x82\x82\x01\x01\x01\x06\x06\x06\xd8\xd8\xd8\xc1\xc1\xc1\x11\x11\x11\xee\xee\xee\x4f\x4f\x4f\x67\x67\x67\xf8\xf8\xf8\x21\x21\x21\x2e\x2e\x2e\xf1\xf1\xf1\x17\x17\x17\xa7\xa7\xa7\xd4\xd4\xd4\xbe\xbe\xbe\xbb\xbb\xbb\x6a\x6a\x6a\x6e\x6e\x6e\x5d\x5d\x5d\x3c\x3c\x3c\x32\x32\x32\x2c\x2c\x2c\x25\x25\x25\xfa\xfa\xfa\xc7\xc7\xc7\xd1\xd1\xd1\x1d\x1d\x1d\x92\x92\x92\xe3\xe3\xe3\x48\x48\x48\x66\x66\x66\xaf\xaf\xaf\x0c\x0c\x0c\x1a\x1a\x1a\x39\x39\x39\x65\x65\x65\x33\x33\x33\xc3\xc3\xc3\x68\x68\x68\x4c\x4c\x4c\x35\x35\x35\x29\x29\x29\x90\x90\x90\x8d\x8d\x8d\xbc\xbc\xbc\x94\x94\x94\xa0\xa0\xa0\xe5\xe5\xe5\x0f\x0f\x0f\x42\x42\x42\xdc\xdc\xdc\x4d\x4d\x4d\x75\x75\x75\xd6\xd6\xd6\xcc\xcc\xcc\x6f\x6f\x6f\x71\x71\x71\x1e\x1e\x1e\xf6\xf6\xf6\x40\x40\x40\x0d\x0d\x0d\xed\xed\xed\xeb\xeb\xeb\x0e\x0e\x0e\x64\x64\x64\xbd\xbd\xbd\x58\x58\x58\xf4\xf4\xf4\x34\x34\x34\x53\x53\x53\xc6\xc6\xc6\x26\x26\x26\x15\x15\x15\xd3\xd3\xd3\x5e\x5e\x5e\x96\x96\x96\x7e\x7e\x7e\xef\xef\xef\xe6\xe6\xe6\xe4\xe4\xe4\xf2\xf2\xf2\xb4\xb4\xb4\x4b\x4b\x4b\x8f\x8f\x8f\xc9\xc9\xc9\x86\x86\x86\xd2\xd2\xd2\x23\x23\x23\xcd\xcd\xcd\xad\xad\xad\x70\x70\x70\x46\x46\x46\x38\x38\x38\x13\x13\x13\x0a\x0a\x0a\x10\x10\x10\x18\x18\x18\x20\x20\x20\x57\x57\x57\x6b\x6b\x6b\xa5\xa5\xa5\xc5\xc5\xc5\x72\x72\x72\xb6\xb6\xb6\xf9\xf9\xf9\xaa\xaa\xaa\x77\x77\x77\x36\x36\x36\x22\x22\x22\x9e\x9e\x9e\x12\x12\x12\xdb\xdb\xdb\xce\xce\xce\x89\x89\x89\x47\x47\x47\xd5\xd5\xd5\x30\x30\x30\x24\x24\x24\x5f\x5f\x5f\xf3\xf3\xf3\x95\x95\x95\x56\x56\x56\xdd\xdd\xdd\x16\x16\x16\x76\x76\x76\xb1\xb1\xb1\x7d\x7d\x7d\x1c\x1c\x1c\x69\x69\x69\xa4\xa4\xa4\x5c\x5c\x5c\xc4\xc4\xc4\xe0\xe0\xe0\x63\x63\x63\x98\x98\x98\xd7\xd7\xd7\x3a\x3a\x3a\x31\x31\x31\x50\x50\x50\x59\x59\x59\x9d\x9d\x9d\xd0\xd0\xd0\x4e\x4e\x4e\x9a\x9a\x9a\x2b\x2b\x2b\x2d\x2d\x2d\xb8\xb8\xb8\xc0\xc0\xc0\xa1\xa1\xa1\xea\xea\xea\xcb\xcb\xcb\x62\x62\x62\x44\x44\x44\xde\xde\xde\x09\x09\x09\x84\x84\x84\xe7\xe7\xe7\x93\x93\x93\x51\x51\x51\xb0\xb0\xb0\x7a\x7a\x7a\x3f\x3f\x3f\xb5\xb5\xb5\x19\x19\x19\x91\x91\x91\xba\xba\xba\x8a\x8a\x8a\xae\xae\xae\xe9\xe9\xe9\x55\x55\x55\x88\x88\x88\xe1\xe1\xe1\x2f\x2f\x2f\xa3\xa3\xa3\x37\x37\x37\xcf\xcf\xcf\xa8\xa8\xa8\x78\x78\x78\x6c\x6c\x6c\x81\x81\x81\xc8\xc8\xc8\x80\x80\x80\x6d\x6d\x6d\xb3\xb3\xb3\x61\x61\x61\x14\x14\x14\x28\x28\x28\xb7\xb7\xb7\xca\xca\xca\xec\xec\xec\x85\x85\x85\x3d\x3d\x3d\xc2\xc2\xc2\x87\x87\x87\x7c\x7c\x7c\xdf\xdf\xdf\x97\x97\x97\xa6\xa6\xa6\xab\xab\xab\x43\x43\x43\x73\x73\x73\x9b\x9b\x9b\x41\x41\x41\x45\x45\x45\xa9\xa9\xa9\x60\x60\x60\x79\x79\x79\xb2\xb2\xb2\x52\x52\x52\x49\x49\x49\x9f\x9f\x9f\x9c\x9c\x9c\x7f\x7f\x7f\x1f\x1f\x1f\xbf\xbf\xbf\xda\xcd\x5b\x93\x00\x00\x1c\xc3\x49\x44\x41\x54\x78\xda\xed\x3d\x09\x78\x54\x45\xd2\xf5\x0e\x05\x0c\xd8\x03\x8e\x98\x40\xd8\x81\x67\x80\x17\x48\x30\x40\x70\x41\x20\x8e\xf2\x23\x86\xfb\x50\x36\x81\x55\x17\x31\x10\x30\x08\x88\x72\x23\x82\x1c\x09\x87\x1a\x08\x97\x02\x1b\x17\x16\x11\x09\xb7\x20\xac\x82\x10\x2e\x05\x54\x44\x04\x41\x14\x05\x51\x5c\x45\x14\x75\xd9\xf5\xdf\xfd\xff\xae\xea\x7e\x73\x64\x8e\x64\xc2\xcc\x24\xff\xff\xd9\x1f\x06\xcc\x9b\xe9\x57\xd5\x5d\x77\x55\x57\x03\xfc\x36\x7e\x1b\xbf\x8d\xff\x47\x43\x51\x14\xb5\xa2\x61\x28\x65\x68\x1c\x46\x2d\xe0\x43\xfc\x4f\x0b\x61\xb6\x0a\x80\x1f\xc1\x53\x03\xc1\xa8\x5f\x77\x7d\x95\xaa\x50\x99\xf7\x40\x83\x6a\x37\xc4\x54\xaf\x01\x7e\x31\xd0\xe1\x46\x66\x63\x35\x6b\x55\x66\x0c\x34\xb8\x89\xd9\xd9\xcd\xb5\xfd\x61\xa0\xc2\x2d\xb1\xcc\x1e\xc7\xea\x80\x52\xd1\x60\x06\x1c\x3a\xd4\x65\x76\x5b\x3c\xab\xc7\xff\xe5\x33\x14\xf8\x1d\xdf\x00\x07\xab\xef\xef\x61\x25\x19\x0a\x34\xe0\x30\x1a\xec\x56\x3f\x3b\xa0\x41\x42\x43\xfe\xc8\x60\x8d\x74\xa8\xb4\x7c\xac\x40\x63\x8e\x80\xc9\x12\x9b\xf8\xd2\xb9\x0e\x4d\x39\xf4\xfc\x61\x52\x72\xe5\x45\x40\x87\x66\x9c\x46\xf8\x9f\x2a\xbe\x64\xa2\xc3\x6d\xf8\xcc\x64\xb6\xca\x2b\x87\x34\x48\x69\x8e\xab\x6c\xb0\x16\x7e\x9e\xb5\x4c\xe5\xd0\x23\x76\xad\x2a\x2d\x17\xab\x70\xbb\x49\x40\x9a\xec\xf7\x25\xb7\x40\x87\xd6\xf4\x88\x93\x58\x9b\x4a\x8b\x80\x24\x73\x04\xf2\x8e\x92\x40\xea\xd0\x16\x29\x08\x77\xa0\x5d\xa5\x25\x21\x05\x6e\xe0\xb0\x33\xa4\xa1\xf6\x9a\x37\xa7\xf2\xff\x4d\x13\xc8\x19\xec\x4e\x67\x65\xe5\x62\xc9\xc3\x44\x43\x4d\xbd\x69\x48\x87\xbb\x18\x93\x8f\xd8\xdd\x95\x74\x0b\x34\xa8\xdd\x41\xac\x32\xdf\x87\x1b\xbc\x69\x48\x21\x33\x82\xb8\xc0\xc6\xfe\xab\x92\x32\x81\x0a\x1d\x63\x11\x44\x13\x09\xfd\x1e\xef\x55\xd6\xa1\x3e\x09\x51\x13\x11\xe8\x54\x49\x11\xd0\xe1\x5e\xa2\x20\xc2\x21\xdd\xcb\x66\xe3\x42\xb4\x33\x42\x9f\x94\x8e\xc8\x75\xa9\xa4\x3c\xa0\x43\x57\x24\x93\xf8\x6e\x1c\x7e\x83\x75\xf7\x64\x02\x14\xa2\x06\x07\xbd\x47\x4f\xe6\x30\x99\xbd\x49\xe5\x64\x02\x0d\x7a\x31\xc3\x64\xbd\xfb\x70\x58\x6d\xec\x3e\x4f\x3a\x11\x46\x92\x83\xdd\xdf\x97\xff\x65\x63\x7f\xa8\x94\x34\xa4\x41\x46\x26\x33\x1d\xac\x5f\x7f\x86\x7f\xfd\xd1\x73\x07\x14\x78\x80\x8c\xa4\x07\x1f\x22\xe4\xfe\x54\x29\x11\xd0\xe1\x0f\x7c\x8d\x6d\x6c\x00\xdc\xc9\x0c\x83\x3d\x3c\xd0\x83\xd2\x55\x78\x04\x69\x27\x6b\xd0\xe0\x6c\x66\x1a\xac\x79\xed\xb0\x70\x81\x86\x43\xa5\x9f\xe1\x98\x4e\x81\x21\xb4\xca\x43\xe1\x51\x66\xe3\xfc\x3a\xc8\x0d\xa4\x06\x39\x35\x99\xe1\x60\xc3\x00\x1e\xe3\x48\x9a\x6c\x78\xb9\x7d\x02\x0e\xb1\x82\x43\x2f\xe1\xb7\x6a\xaa\xee\xf7\xf7\x21\xcc\x0c\x09\x23\x90\x05\x46\x0e\x86\x1e\x88\x00\x7b\xdc\xcd\xa9\x2a\x54\xe5\x60\xdb\xd8\x28\x80\x27\x88\x09\x9e\x2c\x07\x02\x08\xb9\x17\x74\x5a\x4a\xce\xe8\xe4\x31\x63\x33\x92\x93\xc7\xa5\xa8\x3e\x1f\x0c\x19\x0f\x1d\xc6\x93\xa0\x99\x00\x30\x91\x18\xf6\x5e\x37\x90\x3a\x4c\x42\x3b\x9a\x3d\x05\x30\xd9\x86\x34\xf4\x74\x4a\x48\x34\x84\xcb\x2b\x3f\xaf\xd7\x98\x32\xf5\x86\x67\xba\xde\x76\xfd\xb4\xe9\x69\xcd\x3b\xcf\x48\x4a\x9f\x19\x9b\x9b\x94\x37\xab\xf7\xb0\x7e\xb3\x3b\x75\x9d\xf3\xd4\xdc\x67\x6b\xa5\x58\x2f\x55\x42\xdb\x0c\x05\x9e\x23\xb8\x5b\x01\x3c\x4f\x9c\xda\xc7\xcd\xa9\x16\x02\x0d\x20\x1f\xee\x21\x1a\x1a\x5a\x76\x36\xd6\x04\xf0\x7a\xb5\x5b\xe6\xcd\x9f\x56\xd0\x3b\x9d\x05\x1f\xf1\x0b\x0a\x6e\x6d\xb3\xf0\xee\x41\xf9\x04\x94\x52\x66\x1c\x54\x18\xb3\x08\x55\x55\xdc\x62\x80\x25\x64\x30\x54\xf1\x44\xe0\x2e\x89\x40\x02\xbc\x40\x68\xbe\x88\x0b\x54\xa6\x8d\xc5\x49\x94\xa5\xe3\x9f\x59\x96\x94\x28\x8d\x29\x87\x0d\x87\xc3\x61\x18\xa6\x35\x0c\xc3\x21\x7f\x6b\x8a\x0f\x39\x32\x97\xff\xb9\xd5\x92\x42\x9a\xa0\x2c\x38\x68\x8a\x13\x5e\xe2\x70\x39\xd8\x5f\x38\xd8\x2b\x12\x91\xe0\x3b\x79\x22\x70\x3f\x6d\x4a\x03\x70\x42\x8d\x95\x0c\x9d\x86\xbf\x16\x22\xad\x96\xb2\xc9\x9a\xce\x91\x2c\x5c\xf5\x72\x9a\x00\xcb\x81\x50\xd3\x3f\x09\x68\x87\x43\x42\xcd\x7f\x2d\xb1\xc1\x47\x84\x8b\xf8\xc2\xea\x57\xae\xcb\xe0\x6c\xaf\x97\xf2\x16\x15\xd7\x52\x5b\xc3\x05\x24\x47\x60\x1e\x87\x31\x23\x16\x11\x78\xd5\x93\x07\xd6\x4a\x04\x14\x1d\x46\xa1\xba\xe6\x6c\x70\xe3\x0a\xe4\x03\x5d\xd1\x03\xee\x04\x3e\x69\xda\xa3\x39\x22\xec\xb0\x19\x08\x9e\x80\xce\x08\x48\x3f\x06\x62\x63\x08\x3c\x70\x37\x4c\x96\x5b\xbf\x95\x02\x81\x51\xe0\xf4\xa9\x50\x38\xeb\x89\xe9\xc2\x97\x5c\x96\xcf\x89\xa9\x28\x0e\x11\x58\xe7\xcb\x03\xeb\x81\xe3\xba\x21\x0e\x41\xe1\xb3\xa7\x6f\x6c\xbc\xa1\xb6\xd8\x3f\xc5\xcf\x5e\xa8\x3a\x28\xad\x36\xa1\x8b\x4d\x10\x9b\x1e\x90\x9b\xe9\x8b\x72\xf3\x1a\x75\xbb\xf5\xa6\xcd\x5b\x62\x62\x62\xae\xaf\xdf\xb3\x5f\x41\xc3\x0e\x49\x49\x99\x0e\xeb\xb9\xa4\x25\x8e\x0f\xff\xb9\xe0\xa9\x42\x9c\xcc\x67\xdd\x75\x19\xa8\xcd\x1f\xfb\xda\x8b\xa9\x04\x11\x4b\x44\x4b\x59\x85\xad\xc4\x03\x03\x7c\x11\x78\x92\xff\x4a\x87\x27\x99\x1d\x91\xc5\x6d\xb6\xa7\x6e\x7b\x7d\x78\x91\x80\x5d\xf5\x96\xe2\xba\xa6\x3d\xbf\x1d\x3f\x66\x10\xf0\x02\xb6\xd8\x1d\x05\x13\xaa\xac\xff\xdb\xe3\x35\x46\x27\x17\x7a\x83\xa4\x0d\x4c\x1e\x3d\xb8\xc9\x1b\x6f\xbe\xfc\x97\x2e\xed\x67\xc8\xdd\x40\x90\x4c\xfc\xb9\xe8\x25\xa7\x1b\x18\xa1\x31\xe4\xb7\x77\xee\xaa\xf7\xd6\x82\x38\x24\x4f\xb4\x95\x13\xd9\x6e\xbe\x1b\xc2\x28\xf5\x32\x86\x54\xd8\x13\x8f\xe6\x05\xd9\xd8\x1a\x0c\xe0\xff\x76\x10\x58\x44\xaa\xc5\x9b\xda\xbc\x34\x77\x72\x6d\x6b\x7e\xd2\x54\xba\x0e\x63\x66\x5b\x1f\x23\xe0\xb3\xfa\x75\xda\x3b\x74\x9f\x97\x1e\x50\x55\x5d\x0e\xef\xfd\x4b\x9e\xb4\xff\x95\x03\xa9\x02\x09\xfe\x06\xc3\x61\xb0\x4d\x93\x38\xf5\x72\xc0\x75\x97\x7e\x70\xee\x39\xd8\xe0\xed\x77\x72\x05\x73\x21\xaa\xb8\x54\xbb\x47\x73\xf0\x14\x78\x9b\xa2\x5b\x87\xdc\x3c\x20\x1c\x4a\x4e\x34\x45\x88\x81\x0e\x87\x46\x70\x36\xe4\x54\xcd\x7f\x4a\x24\x98\x71\xb8\xdf\xba\x39\x47\xde\x5d\x5c\xdb\x42\x79\xfc\x4a\x66\x73\x6d\xd4\x23\xef\xbd\x7f\xd4\x4d\xb4\xba\xea\x6b\x3d\x08\xb3\x42\x77\x6f\x62\xe1\xfd\x7d\x3f\xc8\x42\xb6\x74\xe0\x24\x2c\xbe\x8e\xf5\xc9\xfc\x8e\x6b\x5f\x7b\xae\xeb\xb6\xa7\x13\x2d\x99\x66\x08\xe8\x4d\x96\x7d\x8c\xd4\x13\x39\x96\x26\x2b\xfe\xd0\xc3\x66\x56\xe0\x19\x92\x9e\x0b\x39\x8b\x73\x18\x20\xa7\xd5\x71\x07\x91\xaa\x21\xf8\xcd\x25\xfe\x6c\x9d\xbb\x15\xdc\xf3\xca\xb1\x8f\x96\xbc\xc0\x31\xc4\x4f\xf0\x89\x76\xcf\xdb\xa3\x09\x12\xd3\xcb\x26\xd5\x09\x49\x5c\xb6\x7d\xad\x47\x65\xf3\xf5\x35\x90\x8f\xd8\xa3\x93\xeb\xf5\x19\xb0\xf9\x44\x01\x51\x8c\x10\x6a\xe2\xb5\x26\x31\x99\x79\xb8\x7a\x06\xe8\x04\xff\x49\x3b\x2a\xdb\x0e\x9e\xc6\x9c\x02\x1f\x93\xfe\x5a\x3d\x98\xb6\x85\x7f\x4e\xbf\xfd\x8e\x16\xf1\x1e\xfc\x26\xc4\xbb\x4b\xbe\xa0\x68\xa7\x57\xaf\x3c\x95\x41\xc0\x97\x11\x76\x2f\x2c\xf0\x55\x2d\x1b\x34\x44\xe2\xe5\xff\x99\x26\x73\xf3\xb8\x25\xab\xa4\x64\x30\x17\xd4\x6f\x9d\xc0\x85\x89\x86\x12\x05\x62\x88\x05\x4e\x7b\x9a\x3b\xdc\x5d\x6e\x44\x86\xc6\xee\x04\xfa\x35\x7d\x14\x36\x3c\xd5\xb6\x91\x00\x9e\xf6\xc0\x92\xe2\xb4\x32\x06\x39\xa6\xc5\x55\x92\xa5\x98\x2e\xd7\xd0\x38\x2b\x81\xda\xa0\x03\xd9\x66\x06\x42\xeb\x90\x9a\xc4\xc4\x57\x0a\x9d\xc2\x52\x0f\x9c\x6a\x4a\xea\x12\x5f\xc3\xbf\xf1\x89\x10\xa8\x67\xbc\xec\x35\x85\x6b\x60\x3b\x82\x34\x3d\x43\x7c\x90\x2f\x2a\xe2\xa0\xec\x5a\xf8\xe9\xee\x91\xd6\xca\xd0\x1b\x0c\x6b\xa5\x6c\xac\x60\x32\x97\x7f\xc1\xa1\x0f\xa4\x0a\x39\xec\xf4\x44\xe3\x6f\x3b\xba\x85\xc8\x48\xf0\x1a\x29\x3f\xeb\x15\xb1\xc3\x06\xac\x7f\x77\x1c\x10\xe0\x94\x3e\x52\x40\xfd\x0c\xe1\x77\xb0\x66\x25\xe3\x42\xf9\xc7\x45\xd8\x34\xef\xac\x84\x9d\xa8\x9a\xfe\xae\xb6\xe4\x8d\xbe\x9f\x0f\xfb\xc2\x25\xc6\xe5\x3e\xb3\x4e\x29\x50\x8a\x1d\xa0\x93\x4c\x08\x80\x97\x64\x73\x44\xa1\x01\xdf\x52\x2f\x8d\x97\xbe\xe8\x5c\xfd\xbd\xe7\xbf\x1c\x2b\x66\x51\xdc\xc8\x6e\x98\x4e\xd1\x13\x33\xf1\xa1\x12\x6e\xaf\x0a\x53\x62\x09\x03\x83\xc5\x8c\x75\xa1\x20\x4c\x5f\xf1\xaf\x96\x17\x1e\x9f\xfa\xd5\xa8\xaf\x0b\x5a\x64\xca\x18\xea\x57\xb8\x9f\x41\x29\x84\x6b\x95\x07\x6b\xf8\xf3\xaf\x15\xb8\x70\x71\x78\xa1\xb5\x86\xaa\x02\x75\xb3\x44\xc0\x27\x6e\x7b\xaf\xe9\xf5\xdf\xfe\xe8\x4c\x8d\xd1\x8a\x9c\xc2\xcd\x5d\x9c\x67\x0a\x1b\xc7\x53\xf0\xc4\xc6\x26\xfa\x58\x9b\x3a\x9c\xa7\x87\xdc\xaf\xc9\xac\x9e\xec\xa5\xdd\x49\xfc\x59\x18\x41\x4a\x9a\xd8\xc3\x63\xa5\x2c\x3f\x1a\x4a\x5b\xfb\xb1\xd8\x6f\xfc\x21\x56\x75\x04\x63\x05\x3b\x5d\x54\xe0\x84\x8b\xd9\x64\x82\xa5\x6f\x75\xe1\xcb\xd7\xdd\x83\x3c\x71\xf5\x53\xe6\x36\x17\x52\xd7\xc1\xfe\xee\x67\x63\x15\x68\xfa\x05\x71\x13\xdf\x84\x87\xbf\xc9\x11\x96\x9a\xe7\x6b\x09\x0f\xa7\xe0\x21\x1b\x3b\x15\x1c\x7e\x14\x03\x85\x2f\xc7\xa2\x01\xbc\xca\xfb\x65\x38\xef\xa1\x91\xcc\x61\xf7\xb4\x05\x9c\xb0\x0a\xa5\x04\xba\x2b\x8a\xd0\x67\x5e\x93\xa3\xa5\xa1\xae\xd9\x84\xb2\x8a\x6c\x8a\xf7\xfc\x12\xa6\x0e\xdf\x4e\x17\x2a\x9b\xa3\x71\xf8\x93\x41\xe0\xa6\x24\x0f\x4a\x2b\x4a\x22\xa3\xf0\x00\x04\x13\x9c\xf8\xc5\x94\x97\x56\xe3\x5a\xd9\x59\x5b\xaf\xb7\x71\xf0\x0b\xdb\x70\x89\xc3\xe7\x78\xcc\xe3\x81\x93\x4b\x11\xe2\xc1\x79\x3e\xb0\x69\x28\x6f\x6b\x7f\xd7\xdb\xa5\x31\xf2\xce\x07\xf0\x56\x74\x4d\x6f\x5c\x2c\xf5\x2b\xe7\xa3\xcf\x1e\xd4\x68\xe7\xbc\xb7\xe9\x15\x72\xac\x3b\x1c\x0d\x12\x3a\x42\x89\x91\xfc\x5d\x07\x5a\x08\x6f\xc7\x03\xb9\x46\xbf\x94\x47\x90\x24\x72\x49\xce\x85\x8a\x22\x57\x49\xe5\xae\x14\x66\xb8\x7a\x95\x08\x2d\xd3\xe3\xc5\x2f\x7f\xc1\x2c\x9d\xcd\x3e\x18\x14\xd0\xdb\xe2\x3b\x35\xb9\x1f\xdf\x27\x44\x01\x37\xab\xe7\xf7\xb5\xbd\xb7\x81\x1b\x4d\x99\x14\x16\x5b\x13\x78\x0e\x85\xef\xfe\x8a\xc6\xa9\x62\x1a\x14\xd8\xf7\x5b\x6b\x4a\x44\xf9\xb7\xe9\x34\x37\xe7\xc3\xe5\xe8\x0b\x90\x70\x14\x53\x37\x99\x49\x7b\x3b\xde\x63\x0b\x68\xfd\x12\xce\xce\x76\x48\x6b\x8e\x4f\x99\x36\xde\x8f\xe9\xea\xfe\x02\x7f\xf4\xfe\x76\xcb\x48\xe3\x44\xd9\x68\xfe\x06\xb4\xff\x2c\x72\x51\xe0\x3e\xb2\xa3\xda\x05\x70\x99\x85\x4e\xab\xbb\x25\xdd\x02\x9f\x83\x94\x29\x79\x95\x30\xab\x7b\xd9\x45\x08\xed\x32\xf0\x75\x4b\xdb\xbe\xf8\xc3\x68\xfa\x80\xb0\xd1\xd0\xa2\xd4\xdc\xd0\x6b\x50\x75\x7e\x43\x34\xcc\x4c\xb1\xa6\xa9\xfb\x73\x20\xb8\xe6\xe1\xd8\x25\xbc\xd9\x5c\x20\x4c\x3f\x66\x6e\x7c\x6d\x34\x48\xcf\x8f\xff\xe9\x45\xfb\x7c\xde\x1f\x13\x11\xf4\x6a\xc7\xea\xdb\x0d\x41\x3c\x84\x82\xc1\x5a\x60\x2a\x82\xe8\x58\x3f\x38\xdd\x90\x84\x60\xb2\xf9\x0a\x17\x0a\xb0\x62\x35\x07\xfa\x80\xa8\x71\x80\x22\x72\x7a\xd3\xc7\x82\x26\x09\x1f\x92\x7f\x6c\x17\x8b\xd8\x9a\xc2\x22\x4d\xfa\xea\x42\x69\xa2\x1b\x48\x63\xe7\xff\xa1\xa1\x65\xea\xe2\x8f\xac\xfa\x75\x2f\xa0\x19\xcb\xe7\x3c\x29\x60\xca\x2f\xb9\x03\x9a\x90\xb3\x7b\x2e\x7d\x9d\x28\xbf\x24\x8c\x6c\xc1\x02\x84\x7d\xad\xfd\x0b\x48\x02\x72\xec\x0c\x76\x7c\x2d\x5f\x48\x15\x46\xb7\x60\x89\xdc\xa9\x99\x44\xeb\xa1\x60\xbc\x87\x6f\xc1\x8f\xe0\x54\x30\xd5\xbb\xef\xec\xb6\x2c\xf1\x69\xf1\x63\xc1\xb1\x71\xd2\xc6\x29\x65\xa0\x0a\xd0\xbe\xbf\xec\x10\x64\x80\xe4\xc4\x5d\x8e\x36\xf7\xb6\x44\xf9\xfd\x11\xd9\x51\xc7\x3c\xdc\x0f\x4d\xb3\x14\xe5\x92\xbe\x13\xec\x08\x32\x7d\x89\x1b\x1c\x5d\xda\xd1\x6e\x3d\x8f\xd0\x25\x1c\x1a\x12\x27\xc1\xe7\x93\x8e\x7c\x8f\xab\x38\x4d\xd5\x52\xae\x08\xf7\x55\xc4\xd1\x44\x9a\xce\xc1\x7a\xa2\x80\x3b\x7a\xe9\x2d\x61\x6c\x9b\xe2\x6b\xac\xdd\xc2\x7c\x28\xcd\x7b\xf6\x42\x01\xee\x9a\xe3\xc2\x9f\xbf\x93\x0b\x9e\xb7\x2e\x55\x83\x3f\xcb\xe0\x1e\xbd\x50\x71\xfb\xcb\x47\xd7\xcc\xe9\x62\x58\xae\x07\xa1\x7c\xeb\x1a\x61\xb6\xdb\xaa\x72\xe8\xdb\x9c\x43\x60\x0c\x21\xa1\xe3\xef\x18\x8b\x84\xa0\x6a\xfa\x66\x84\xdf\xc6\xfa\x89\xfd\xe4\x7b\xdc\x08\x83\x9e\x9b\x60\x5f\xdf\x47\x67\xb8\xa0\xc7\xed\x2c\x7e\x6b\xa8\x56\x76\xf0\x69\x20\x68\xfb\x5e\x4b\x33\x24\x05\x72\xcf\x8f\xcf\x78\x78\x5b\x4d\xb4\xc4\x57\x93\x11\x20\x60\xd7\xab\xed\xbc\xab\xcf\x81\x6e\x99\x4c\x7a\x87\xe2\x85\xb1\xa3\x76\xe5\xc3\xd8\x2c\x24\xe9\xd5\x5f\xfd\x34\x8b\xc9\x59\xf0\x59\xe2\xba\xfe\x44\x08\xdc\x00\x9e\x20\xd6\xbf\xe6\x0a\x39\x17\x45\x68\x39\xd7\xdd\x4c\xaa\xc6\x7a\x2d\x33\x7a\xaf\xef\xe8\x4f\x27\x95\x8a\x02\x27\x13\xfd\xee\x75\x1d\x90\x2a\x04\x64\x82\xaa\x1d\x6c\x1a\xbd\x50\x99\xfa\xdc\x9c\xeb\x2f\x9f\x9b\x91\x65\x85\x54\x98\xf4\x90\x13\xdb\x4f\x1c\x84\x9a\x69\x2d\xb3\x8c\x4a\xe1\x38\xe3\x27\x16\xf5\xf8\x50\xd8\xc5\x1a\xd4\xda\x21\xe0\x4f\x9f\x64\x49\x04\x05\xe6\x88\x24\xa4\x07\xf4\x6c\xd6\x90\x25\x4e\x28\x03\xeb\xfa\x1b\x84\x74\xca\xc7\x5b\x16\xb9\x89\x91\x34\x13\xc6\x33\x54\x78\x4b\x26\x0c\xf1\x45\xe4\x9e\xe3\x5b\x4d\xb6\xfd\x4f\xbb\x48\xf0\xba\x52\xa2\x36\x37\x27\x6d\xdf\x3b\xd8\xb2\x50\x54\xb8\x89\x21\xbf\x9b\xb6\x43\x2e\x86\x52\xa0\x0f\x7d\x45\x38\xfb\x48\xb6\x2b\x47\xcd\x73\x82\x8f\x36\x0d\x69\x1b\x50\x1c\x8c\xb9\xae\x7e\x3c\xb3\xc2\x27\x22\x87\xa6\xc2\x12\x66\xd8\xc9\x71\x12\xe1\x20\x5a\x63\x76\xe7\xdb\x75\xf3\xa5\x3b\xa4\x43\x4f\x2b\x25\x2a\xf6\x2e\xf1\xd1\x55\x09\x2e\x03\x8b\x5b\x1a\x4f\x0b\xb6\xf8\xd8\x2d\x10\x84\x96\xa1\x2f\x20\xf4\xb1\x7f\xbe\xb4\x93\xd6\xa2\xdc\xd0\x8b\x57\x91\x40\xfe\xb0\xde\x4d\x99\xe4\x35\x21\x02\x5d\xd1\xb2\x3d\xc4\xec\x22\xfe\x66\x13\xa4\x65\x66\x6f\xdc\x3f\x65\xa0\x7b\xb9\x74\xd8\xcc\xe2\xd1\x39\xa1\xa7\x33\x37\xbe\x59\x04\xde\x42\xb0\x3d\x8b\xb7\xb3\xf8\xa9\x1e\x2a\x5d\x81\xbd\x02\x01\xfe\xa2\x91\x31\xcf\x8f\x41\xb6\x0e\xd9\x55\x0d\x88\x83\x56\x6d\xd5\x63\x0b\x44\x1a\x76\x0b\xca\xb9\x6a\xab\x99\xcb\x07\xb1\x8d\xf8\xfa\xaf\xdd\x93\x55\xfa\xa4\xf5\x42\x0c\x57\x0a\x26\x88\x6f\xd8\x6c\xee\x4e\xb5\x44\x14\x54\xe7\x5e\x38\x97\x6c\xcf\x7a\x27\xba\xaa\x13\x02\xf1\x69\x5d\xd7\x62\xf4\xa3\x6c\x61\xd3\xb2\x0d\x61\x23\xa8\xe7\xd1\x46\xe0\x26\x2f\x17\x82\x50\x77\x84\x23\x31\xfd\x70\x8b\x66\x5d\x9f\x9b\x5b\x55\x11\x9f\xf1\x5a\x2e\x15\x0e\xfe\x71\x5a\x4c\xa7\x67\x3e\xea\xaf\xb9\x26\xf0\x5c\x15\x98\x72\xba\xf1\x85\x12\x7e\xed\x73\x84\xc0\x79\x0a\xee\x84\x65\xed\xbd\xde\xc8\xf9\x52\xb9\x13\xb5\xca\x46\x11\xff\x4a\x58\xdc\x7f\x5f\x8e\xcb\xa9\xf2\x7d\x9f\xfb\x17\x7e\x97\x12\x11\xd2\xbc\xb0\x52\xb8\x60\xe0\x82\x60\xe6\x58\x70\x86\x1d\x7a\xeb\x9d\xdd\x90\xef\x76\x08\xa8\x34\x09\x9c\x12\x28\x88\xcd\x3d\x2a\x3d\x48\x25\xaa\x5a\x32\x3b\x20\x23\x56\x23\x47\x47\x2c\x4f\xad\xc2\x4f\x88\x40\xe7\x1c\x61\x7d\xa9\xe5\x48\x14\x05\x9f\xbe\x1d\x4e\xbf\x5c\xf1\x40\x40\xd3\xaf\x85\x96\xd0\x8b\xf4\xfc\xba\x02\x6d\x71\x8f\xb3\x8f\x46\x66\x89\x34\x28\x40\x33\x64\x98\x7b\x76\x4b\xe8\x96\x0b\x09\xcd\xa2\x5c\xb7\xf0\x53\x60\x00\x22\x60\x2e\x8d\x4c\x26\x5f\x83\x13\x88\x40\x81\x2b\x5a\xc1\xdf\x32\xe6\xfc\xbd\xdd\x77\x12\x2e\x21\xe2\x40\x5a\x58\x49\x9e\xdc\x7a\xed\x3e\xdd\xe5\x02\x59\xfe\x4c\xf7\x72\x67\x61\x4b\x19\x69\x28\x23\x4e\x48\x04\x38\xc4\x07\x37\xa2\x49\x9a\xb4\xec\xd5\x77\x73\xa0\x6c\xa6\xb4\x1c\xa8\xfd\x6a\x9f\xf9\x34\x2d\x9b\x6b\xa1\xe2\x6e\x3f\x0f\x94\x11\x08\x05\xd6\x50\x9e\xea\xe7\x88\x64\xf2\x35\x18\x97\x6a\x49\x69\x11\x7b\x79\x07\xdd\x57\x91\x0a\x59\xf4\x4b\xf7\x84\x32\xdb\x14\x18\x01\x5f\x5a\xbd\x11\xa9\x21\x03\x3d\xe0\x6e\xcf\x0a\x6a\xd4\xe1\xf7\x56\x2a\x2a\x02\x08\xa8\x50\xab\x18\x7d\xe5\xae\x38\x3b\x5f\xfe\x27\x8a\x85\x05\x66\x99\x16\x3b\xfa\x1e\x2d\x93\x49\x8d\xe0\xb7\x7e\xac\x98\xec\x29\x32\x74\x38\x59\x3a\xfe\xa1\x53\xc8\xda\x95\x8e\x8d\x0c\x02\x0f\xc9\x3c\x91\x93\xab\x9c\xd1\x31\xd2\x7d\xb3\xc9\x4c\x0e\x5f\xca\xbc\x2a\xfb\x4a\x45\x01\xc9\xfd\x7c\x17\x87\xe5\xc9\x88\x90\x3a\x47\xe1\xc4\x06\xce\x16\x4e\x18\x4e\xaf\x88\x4c\x79\x35\xa6\xe2\xd1\xdf\x5b\x88\x04\xdb\x5a\x84\xac\x1d\xa6\xdb\xbc\x46\x6f\x22\xfb\x81\x6a\xc1\x82\x12\x84\xde\xc5\x02\xcb\xab\xb5\xc9\xc4\x00\x05\x23\xe3\xea\xe4\xf3\x57\x2c\xb6\xe1\xbf\x23\x53\xcd\xa2\xc0\xeb\xe4\x13\xff\x0c\xb5\x4f\x3e\x6a\xbd\x36\x69\xce\x9a\x1f\xbe\xce\x93\xae\x21\x82\xb5\xe8\x75\x3d\x70\x4c\x90\xe3\xb6\xf8\x31\xb7\xe7\xcd\x12\x2f\x9f\xee\x73\xaa\xa6\x88\x83\x38\x58\xc3\xf5\x4b\x6a\xb4\xb2\xe3\xac\x91\xa9\x0f\x97\x75\x7b\x2c\x69\xfa\x72\x86\xae\x25\xc2\xb1\xad\x16\x06\xb1\x5b\xbe\x39\x3b\x13\x6d\x76\xe1\xdd\x9e\x98\x12\x08\x03\xbe\xfc\x2f\x64\xc9\x08\x12\x27\x95\x8d\x7d\x1f\x44\xd1\x30\xb8\x93\x74\xc6\x39\x16\x71\xc2\x25\x9b\x1e\x11\x45\xa6\x40\x27\xe9\x90\x59\xcb\x6f\x9b\x28\x4f\xc5\x68\x50\x34\xf1\x9c\x40\x81\xff\x17\xf7\x42\x09\x23\xca\x35\x41\xd1\x3b\x72\xf5\x4d\x16\xf7\xf9\x2e\x45\xa4\x56\x35\x98\x3a\xd2\x95\xcf\x13\xa1\x9e\x59\xa1\xd5\x82\x84\x88\x80\x08\x86\x70\x3f\xe2\xdc\x97\x32\xd9\x42\xf6\x7c\xc2\xd5\x4d\xae\xa0\xd8\x84\x42\x3f\xaa\x54\x81\xb3\xb9\x4c\x46\x74\x92\x06\xec\x73\x59\xc0\xaa\x02\x35\x7a\x0a\x92\x12\xf6\xbd\xc9\xd2\xf7\x45\x02\x01\x9d\x8a\x95\x10\x7e\x72\xf0\x1c\x9f\x0d\xf4\x60\x35\x54\xac\xda\xd5\xe3\x62\x81\xed\x6c\xd3\x3e\x1f\x0c\x74\xf8\x4e\x66\xdb\xd8\xcc\x57\xc6\x88\xf4\x95\xf5\x48\x83\xeb\x1e\xa6\x44\x99\x95\xe6\x3b\x19\x09\x5b\x82\x4c\x21\xcb\x47\x4a\x6c\x36\xa5\x84\x33\x89\xde\xa8\xda\x37\x8f\xd6\xd8\xce\x96\x95\xb4\xc7\x14\x78\x82\xc9\xc4\xe3\x8b\x3e\x99\x2f\xce\xdc\x83\xeb\x2c\x70\x05\x19\x4c\x36\x29\x02\x5c\xac\xc1\xc0\x0e\xa8\x37\x53\xbb\x34\xef\x7d\xe0\xbe\x93\xfe\x04\x3e\xa6\xd7\x3f\x20\x32\xe2\x54\xe4\x5d\x3c\xcd\x65\xb0\x21\x12\x8f\x59\x6f\xca\x7c\xa0\xf7\x57\x55\x18\xf7\xec\x91\xb7\x3e\x78\x79\x14\x45\xdb\x22\x61\x0c\xa9\xd0\x71\xa6\x28\x1b\x1b\x28\xd3\x91\x7e\x90\xe4\x90\x2d\x4c\xc4\x7c\x9a\x9d\xad\xf7\x4e\xb3\xd6\x98\x25\x12\x2f\x5d\xf6\x80\xe2\xff\xab\x22\x82\x3c\x97\x8c\xa1\xb9\x11\x50\x04\x3a\xec\x22\x2d\x79\x23\x16\x6c\x04\xf1\x82\x60\xed\x17\x94\x8d\xea\x50\xe8\x95\xe8\xfe\xbb\xc8\xb2\x8e\x72\x06\x04\x0d\xf3\xeb\xf9\xd0\x94\x5e\xb2\x37\x4c\x08\xa0\x4f\xe4\x46\xa0\x1e\x29\xe2\xd7\xc0\x19\x54\x42\x38\xe1\x8c\xc8\x51\xd4\xf5\xac\x95\x48\xee\x4c\xbf\xfb\x25\xa8\x9e\xb6\xaa\x42\x6c\xec\x73\x0b\x01\x8c\xec\x2a\xe5\x25\x27\x95\x96\xd9\x62\x37\xeb\x84\xd2\xef\x4b\x23\x4f\x27\x67\x57\xc4\xf4\xed\x92\xe5\x36\x06\x6b\x3f\xb0\x14\xe9\xa2\x41\x4e\x67\x94\x64\x57\xac\x68\xa6\xd7\x5f\xa1\xc2\xaf\x69\x17\xee\x5e\x3a\xda\x52\x4a\x0a\x17\x83\x18\x39\x3e\x53\x1a\x02\x0a\xd5\x49\xdb\x58\x0f\x4f\x04\xba\x13\x65\x1c\x81\xfc\x52\x5e\xaa\x09\xb7\x7e\x84\x38\xaa\xa5\x42\xed\xb3\x6d\xfe\xf9\xc0\x1b\xf9\xe5\x51\x0b\x2a\x14\x35\x9b\x69\x38\xb2\xba\x0e\x16\xab\xa1\xc0\x7c\x42\x60\x4a\x29\x8b\xa8\xc3\xa0\x16\x84\xc0\x7a\x4f\x04\xce\x90\x70\x49\x4b\x2e\x0d\x7b\x52\x36\xd6\x51\x2d\x15\x1e\x6f\x41\xdf\xfb\xd7\xe0\xd0\x31\x50\xe1\xcb\x5c\x8a\xc1\xb1\x46\xb5\xe8\xdb\x3a\xcc\x46\x19\x9f\x55\x8a\x92\x54\xa0\xe5\x23\x54\x98\x92\xd5\xd1\x8d\xa9\x06\x47\x47\x12\x0d\x4d\x1b\x58\x0a\x77\x92\xba\x97\x08\x70\x07\xa4\x33\xe3\xd6\xba\x8d\xcb\xae\x90\x6d\x0b\x2e\xf5\xcf\x31\x3b\x56\x24\x25\xb2\x9b\x64\x8a\xa9\x17\x6e\xee\x82\xa0\x07\x60\xb8\x9f\xd6\x91\xd4\x1d\x56\x9c\x79\xec\x94\x02\x9f\x08\x29\x74\xf3\xe0\xe0\xf9\x6b\x45\x94\xfd\x3a\xb0\x40\x5f\x87\x21\x4c\x54\x25\x25\xb2\xea\xa1\x2a\x06\x05\x7e\xb5\x2c\x37\x07\x6b\x0d\x48\x92\x39\x87\xd1\x0c\xd8\x1d\x8c\x82\xb8\x72\xa8\x9b\x8a\xdf\xe3\x86\x92\x57\xf4\x88\x5b\xac\x0d\x05\x5e\x1d\xde\x08\x1a\x0e\x16\x41\x73\x83\xbd\x4b\x69\xa0\x19\x52\x39\x1b\x9e\xa1\x90\xb2\x0d\x1d\x0e\x58\x76\x83\x8d\x3d\x41\xf1\xfa\xfe\x76\x44\xe0\x4a\xe0\xa5\xe0\x80\x25\x54\x21\x6b\xc8\xc1\x72\x77\x79\x7f\x4e\x85\x49\xd9\x54\x02\x61\x9a\x37\x26\x04\x41\xc1\x09\x6d\x48\x84\x7d\x87\xea\xae\xa9\x15\xde\xe5\xfa\xbf\x65\x88\x18\x68\xb0\xd1\x8d\xc0\x0b\x54\x6c\x38\x49\xb0\xc4\x7d\x58\x35\xe6\x0f\x7c\xbe\x33\x57\x47\x90\x5d\xec\x60\xe9\xad\x7d\x0f\xc2\x1d\x4a\x94\xb5\x1e\xe7\xc6\x63\x79\x87\x5f\x78\xf2\xe1\x7b\x46\x11\xf6\xe7\x10\x81\x8b\x6e\x04\x0e\x8f\x0b\x11\x01\x1d\x5e\x75\x23\xf0\x1d\x21\x30\x5c\x1e\xd2\x6b\x05\x4e\x1f\x2a\xa2\x24\xf3\xa4\x17\x4d\x26\x72\xe4\x23\xfd\xd8\x32\x0a\x0c\xcd\xa4\x52\x1c\x4e\x21\x3f\x2d\xf1\x5b\x87\xa5\x3a\x61\x68\xb1\x38\x43\x44\x99\xc4\x41\xa9\x2e\x12\x3a\x11\x3a\x09\x9d\x95\x3c\x60\x1a\xe6\x2e\x4e\x01\x0a\x5c\x12\x27\x7c\x0c\xe3\x09\x8c\x15\x7b\x41\x8f\xb5\x1e\x77\xfd\xcb\x4e\x76\x9c\x61\x63\xdd\xfa\xfb\x93\x35\x0a\x6c\x68\x28\x1c\x17\x07\x33\xee\x79\x23\xa1\x64\xc8\x19\x31\xfa\x3e\x4e\xd6\x0a\x9d\xa0\xfa\xcd\x39\x2e\x26\xbe\x2f\x54\x26\xe6\xb6\xe4\x15\x96\x68\x98\xa6\x23\x9e\x6b\x24\x1d\x5f\xff\xa9\xc0\x88\xf3\x41\xcc\x18\x90\xc5\x9d\x8a\x6c\x01\x30\xf6\xa3\x65\xa6\xcb\xd9\x9a\xe3\xf4\xff\x36\x1d\x6a\x0f\xb1\x0a\x5a\x4c\xb6\xec\xc8\x2d\x94\x31\xd7\x15\x57\x41\x67\xc6\xe7\x4c\xd4\x9b\x19\xac\x1b\x42\x00\x3b\xef\x64\x54\x1a\xcd\x7e\x0a\xfd\x0c\x32\x9f\xae\xbd\x28\x7e\xdb\x2c\x8b\x29\x63\xac\x2d\x71\xb0\xec\x53\x53\x3c\x3e\xb9\xf5\xbf\x1f\x8d\x13\x09\x3a\x74\xd6\x96\x8f\x0f\x58\x6c\xc0\x2d\x82\xa9\x0f\x8b\x50\x18\xee\x55\xf1\x84\x4f\xbf\x74\xba\x9f\x2e\x99\x33\x52\xa4\xdf\xf0\x4f\xde\x38\x52\x04\xdf\xbe\x43\x86\x61\x4c\xa8\x2c\x4c\x6f\x83\xe4\x6f\xb6\xc7\x17\x17\xfc\xe8\x94\x6a\xe0\x04\x91\x90\x21\x82\x29\x46\xbb\xdb\xf6\xfe\x5c\xf7\xfe\xa9\x47\x3e\xfb\x65\x87\x55\xf5\x80\x5e\x61\xdc\xdb\xd5\x82\x14\xfa\x70\x35\x51\x6d\x7e\xbc\x47\x91\x01\x7b\x7a\xe3\x96\xbd\xbf\xde\x7b\xf0\xd7\x7f\xf7\x4c\xb3\x5b\x0e\x1b\x22\x60\x6c\x40\x71\xad\x42\x4a\xd3\xc6\xb7\xd5\x39\x59\xbe\x33\x32\xdc\x06\x52\x3e\xcc\x50\x45\x5d\xa0\x06\xe3\xf2\x70\x6d\xec\x0e\xd3\x8a\x89\x78\x94\xe7\x59\x09\x68\xc7\xab\x2b\x4a\x31\x37\xf9\xe6\x14\xc5\xcc\x74\x85\xb5\x4c\xaf\x69\x68\x67\x8c\x95\x44\x43\xa2\x28\x46\x5a\x71\xe5\x8c\xe0\x93\x8f\xa1\xca\xe2\x38\x48\x4e\x42\x01\x32\xa4\x81\x55\x68\x82\x29\x50\xc3\x2a\x56\x25\x1c\xb2\xb7\x34\x29\x3d\xb6\x88\x1f\x58\xba\x2e\x53\x96\x1e\x33\x9a\x81\x2a\x45\xb1\x10\x19\x93\xbd\xef\xad\x22\x4b\x4a\x06\xe7\x34\xfd\x9a\x9a\x81\x68\x2e\x3b\xd6\x32\xd4\xbb\xc2\x99\x47\xf0\xe5\xee\x3a\x58\x53\x26\xa0\x47\xcc\x2f\xf2\x29\x83\xf3\x3b\x50\x05\x7c\x5b\xa7\x37\xc9\x7b\x9b\xab\x4a\x14\xf3\xa9\x18\x2b\x5a\x4b\x87\xaa\xc3\x7f\x6a\x5a\x87\xa1\xb4\x30\x9f\x80\xa2\xac\xba\x2c\x84\xb3\xc3\x55\xc0\xcb\x52\x4f\x5f\x1d\x08\x50\x16\xf0\x09\x05\xbe\xb5\xb5\xcf\x54\xf9\x4f\xbc\x14\x0a\x0e\x11\x24\x66\xb6\xaf\xcf\x73\x67\xe9\x42\xae\x2b\x84\x1c\xc6\xa1\xd0\xf9\x29\x07\xfb\x1e\xf2\x75\xd0\x27\x4f\xec\xb2\x48\x96\x50\x1b\x99\xa9\xd3\xfa\xdc\x95\x1c\x62\xbe\x9e\xd2\x1b\xf9\x2b\x1a\x1c\xe8\x35\x4b\x5a\x5c\xb1\x69\x57\xea\x14\xe9\x48\xb1\xd5\x66\x20\x27\x4f\x0b\x73\x60\x45\x81\xcf\x48\x8a\x62\xc0\x86\x0a\xa7\x5a\x16\xbd\xd1\xea\xf5\x06\x6b\xce\x3f\x7e\x21\x87\x9e\x87\x9a\x33\xd6\x74\xb1\xc2\x09\x2b\xba\xbf\x3f\x77\xee\xc1\x33\x63\x28\x4f\x4c\x02\xe0\x38\xc6\x5f\x16\x94\xcb\x89\x09\xb2\x64\xb0\x1b\xa5\xe7\x0c\xd1\x13\xc2\xdb\x0c\x28\x47\x69\xb9\xc0\xc1\xeb\x8b\x96\x6d\xa1\xc3\x5f\xd0\xa0\x8e\xfb\x36\xbc\x5b\x40\x6a\xc0\x60\xcb\x3c\xde\xa7\xcb\x93\x7f\xd7\xb6\x50\x98\xa7\x44\x5d\xec\x9a\x45\x81\x7f\x93\x41\x7d\x7f\x58\x43\x43\xdc\x30\x69\xe4\x99\x1f\x8b\xe0\xd0\xb9\x41\x8a\x06\xf5\x8f\x61\xe5\x62\x15\x3e\x2c\x46\xd6\xfa\x67\xe4\x1b\xbb\xa0\xff\x8c\x01\x80\xbe\x61\x45\x40\x87\xff\x21\x29\xfa\xf7\xc8\x1f\x04\x56\xa9\x72\xd1\x46\x65\xb7\xe1\x1b\x0a\xbc\x44\x52\xf4\xe3\xc8\x23\xc0\x15\xc1\x22\x3a\x57\x1d\x56\x26\x56\xe0\x34\x49\xd1\x68\x74\x84\xd0\xa0\xbd\xcf\x81\xea\x30\x20\x30\x04\x65\x5b\xee\xa0\xc8\x33\x31\x39\x83\x36\xcb\x1e\x0d\xd7\x50\xe1\x0a\x15\xaa\x94\xc7\x2e\x0f\x75\x28\xf0\x5e\xd9\x42\x80\x21\x0c\x6e\xba\xac\x16\x47\xca\xa3\xd0\x10\xc2\xea\x80\x70\x35\x8c\x08\xa8\xb0\xd4\x14\xb9\x81\x28\x74\x23\xc0\x7a\x3f\x69\x37\x86\x71\xce\xef\x4b\x1e\x8f\x8c\xdc\x50\xe9\x3c\x32\x9d\xe1\x08\xdb\x9c\x56\x68\xbd\x75\xe4\xf5\x18\xd2\xab\x73\x39\x8a\xa1\x73\x61\x6c\x26\x86\x09\x96\x70\xf3\x55\xe0\xa1\xc3\x36\x77\x84\x3a\x5c\x53\x4e\xf0\x39\xdf\x19\xb9\x21\x23\xd4\x61\xb4\x47\x35\xc8\x5f\x80\x9b\xda\x5b\x8d\x4a\x5b\x1a\xcb\x1e\x3d\x14\xb6\xfd\x56\xa1\x2a\x15\x91\x7c\x10\x9d\x1e\x7d\x3a\x1c\x24\x91\x11\xae\x4c\x9f\xfb\x44\xf9\x37\xd1\xe9\xe9\xa2\xc2\x2d\xb6\xf0\x8a\x21\x4b\x8a\x46\xa6\x90\xca\x67\x70\x31\x74\x67\x78\x9d\x0f\x05\x4e\x11\x51\xd6\x8d\x0e\x09\x59\xee\xdf\xd3\x61\x73\x8b\xa9\xa0\xd6\x64\xb1\x63\xa3\xd4\x98\x89\x1a\x72\xc9\x3c\x53\x78\x16\x04\x9b\xeb\x18\xec\x78\x54\xa0\x07\xdc\xf1\x63\xb2\x36\x2c\x4c\xf9\x7a\x18\x4c\xb1\xa6\xb6\x51\xa2\x20\x57\x27\x93\x2a\x61\x42\xc0\xf2\x52\xc3\xeb\xe4\x05\x19\x1a\x64\xa4\x7b\x15\x1c\x5c\xe3\x50\xa0\x2f\xed\xe8\x6b\xd1\x43\xa0\x25\x95\xd8\x86\x4b\x0c\x59\xb9\x8d\xad\x51\xe2\x61\xc4\xe0\x56\x6a\xc9\x35\x26\x3c\x18\x48\xa9\x16\x5e\x27\x35\xe8\x10\x4d\xd1\x02\x9c\x09\x2d\x07\xfc\x68\xde\x46\x25\xa8\x65\x0d\x1d\xde\x0f\xa3\xe6\x14\xee\x58\x54\x82\x5a\x6e\x04\x84\xd8\x38\x15\x16\x04\x14\xd9\x3f\xee\x77\xd1\xeb\x6e\x27\xda\x4e\x3a\xfc\x76\x4f\x2e\x0f\x02\xa7\xc9\x9b\x79\x36\x8a\xfd\xa2\xa9\x42\xd2\x64\xb9\x35\xc2\x81\x81\x8c\x77\xe7\x96\xa3\x66\xa7\xdc\x83\xce\xa2\x84\xa9\xfc\xd2\x72\x51\xff\x93\x10\x55\x04\x44\x68\x65\x6a\x18\x10\x50\x61\x32\x0b\x77\x90\xa0\xd4\xa1\xc3\xf9\xb0\x75\x95\x44\x1e\xb6\x79\xf7\xbd\x8b\xfc\xd0\x60\x67\x12\x1e\x8d\xde\x14\x86\xb9\x14\xf8\x26\xb2\x27\x8b\xfc\x0e\x15\x2e\x87\x2b\x32\x81\x27\x8b\xc3\x69\x9c\x97\x6d\xc8\xc8\x44\x18\xc2\xe1\x1a\x0c\x1a\x89\x9b\xb9\x5d\x8b\x22\x0f\x5b\x87\xaf\xc3\xd1\x20\x59\x87\x2f\x49\x29\xf6\x88\x26\x0b\xe0\xbe\x6f\x25\xd1\xd1\xec\x9a\x09\x57\xa7\xf6\x5e\x5e\x55\xa0\xd1\x18\x1a\x28\x23\x44\x0b\x85\x6b\x1d\x3a\xac\xb3\xca\x08\xa3\x89\x00\xdf\x02\xb2\xa8\x63\xaf\xf5\xc6\x0e\x11\xe2\x30\x59\x5e\xe4\xce\xe0\xfa\x1f\xa2\x50\xf8\xda\x0b\xf1\x35\xa8\x91\x8d\xb4\xb8\x39\xda\x17\x67\x58\xd5\x25\x73\xae\x11\x81\x70\xaa\xc4\x90\x06\x57\x65\xb9\xae\xf6\x8c\x25\x1e\x05\x19\x3e\xf3\x28\x70\x07\xed\x64\xbd\x68\xef\x80\x06\xea\x76\xa4\xdd\xec\x8c\x92\x0d\x99\x82\x02\xa2\x95\x6c\x5f\x4a\x05\xb0\xe1\xb2\x6b\x43\x1a\xc2\x20\x2d\xd1\x13\x8b\xca\x59\xf2\x07\x25\x07\x1a\xd4\x6a\x52\xf7\x3a\xfb\x92\x9c\x8a\x6a\xac\x57\xf4\xdb\xbd\x5b\xc4\xeb\x11\x51\xc6\x72\xb5\xb1\xf3\xae\x6f\x9e\x9b\x14\x60\xe4\xd6\x3c\x71\xfa\x6c\x2d\xcf\xca\x2b\x1d\x44\x05\xdb\xba\xe8\x5f\x7e\xa3\xc2\x83\x86\xb7\x57\xc6\x97\xff\xf6\x1e\x33\x99\x67\xa1\xa0\xef\x30\x59\x71\xdb\xee\xd4\x0a\x8b\x86\xd5\x66\xf3\xde\xe8\x23\xc0\xc7\x30\x64\x82\xc4\xc5\x56\xa3\x1e\x48\xb8\xb1\x58\x76\xdf\x0d\x34\x0c\x07\x56\x1f\x1a\x8f\x7d\x68\x6d\x9b\x0a\x2f\x86\x33\x40\x13\xd2\xb0\x12\x35\x52\x85\xea\xb0\x67\x99\x3c\xc1\x2b\x1b\x37\xfb\x0e\x71\x3e\xdb\xe6\x60\x8b\x7e\x16\xc7\x14\x54\x28\x8a\x45\x16\x48\x8b\x4e\x6e\xa9\x24\x02\xad\xc8\x88\x99\x23\xfb\x4b\x9d\x4c\xc5\x13\x19\xb2\xf6\x36\x10\x01\x89\x82\x75\x9b\xc1\x3e\x91\x6d\xb5\xae\xa3\x39\xe6\x57\x44\xbb\x7d\x0d\x32\x72\xa9\xcd\x79\x3e\x55\x21\x2f\xcd\xb3\x4a\x9f\x59\xf1\xb6\x57\xba\x76\xf2\x1e\xeb\x62\xf8\xd8\xd2\x25\xd1\x2a\x77\xb7\xb3\x97\x45\xc5\xf7\x00\xda\xc5\xa1\x15\xc2\x02\xb2\x93\x48\x62\x7f\x2c\x1e\x1e\xb7\x4c\xc2\x6f\xb0\x13\xb7\x04\xa0\x07\x0d\x56\x5c\x2f\x8f\x1c\x98\x58\xf2\xc5\x85\xd6\xc0\x05\xd4\xeb\xb7\x62\xee\x40\x13\x27\xb0\x1d\xd8\x39\x53\xe7\xc2\xc4\x2e\xd7\x3f\x71\x03\x28\xbe\x43\x34\x3f\xc6\x93\x3f\x56\x03\xbd\xd8\xdb\xf9\x0c\xbb\xa8\xaf\xd9\xe6\x8a\xb9\x32\x43\xe5\xae\x08\x9e\x25\xb8\xc2\x01\x19\x4e\x37\x69\x89\xdb\xb4\x82\xc4\x77\xf2\xe1\x73\x3a\x64\x41\xc7\x48\xde\x01\x27\x9d\xc8\x09\x77\xf9\x5a\x99\x87\xd5\xec\x79\xe5\x4e\x40\xb7\x96\x3a\xae\x63\x35\xfe\x99\xc0\xc7\x31\x35\x85\xce\x0c\x50\x17\x76\xb4\x64\xf5\x61\xb4\x21\x5f\x56\xd0\xa5\x25\xd8\xa7\x1d\xcf\xb6\x36\xa0\x5b\x0b\x18\xcb\xbc\x42\x87\xd1\x1a\x8d\x0d\xc0\x92\x1a\x4a\x5e\x3c\x38\x77\x79\x36\x7d\xef\x32\x14\x51\xa9\xe2\xc6\x0a\x81\x1e\xac\xd6\x7c\xd8\xb2\x4a\xa8\xd3\x21\x63\xed\x84\xc1\xf2\xfe\xfe\xf7\x00\x3b\x13\xd3\x51\xe0\x23\xe3\x66\xd2\xc1\x89\xc7\x45\x54\xf7\x99\x8a\xba\xb3\x44\x83\x6a\xa9\xd8\x0b\xef\x8b\xd1\x1b\x91\x94\x6c\xbb\x60\xb6\x38\x4e\x97\xb7\xc4\xff\xa5\x7f\x7b\xa9\x37\x0e\xfb\x62\x31\xfc\x83\x20\x7f\x69\x33\x1d\x2a\xbc\x58\x61\xb7\x00\x8a\xb3\x54\x06\xfb\xdd\x7f\x90\x12\xa6\x03\x5c\x58\x2e\x8e\xd9\x25\x2d\xf1\x77\x67\xde\x0d\x04\x3f\xa6\x15\xe0\x6e\x12\xb8\xc7\x3b\x23\x3f\x37\x8c\x6e\x40\xc5\x1b\xa6\xe7\x89\x09\x57\xdb\xc4\xd9\xb2\x7c\xb8\x3d\x4f\x34\x9e\x9d\xe5\x63\xdf\xeb\xf0\xae\xec\xf2\xf6\x0f\xec\x31\xb6\xc3\x3a\x83\xe6\x60\xb7\x55\xdc\x35\x8c\x1a\xec\x9b\x21\xaf\xa7\x12\xd5\xd4\x3a\x3c\xf8\x30\x62\x60\x67\xbf\x94\x80\x4a\x83\x9c\xa7\xc5\xa1\xf7\x3f\xf1\x27\xc2\xa3\x66\xe2\x94\xc6\xa4\x0a\xbc\x38\x49\x17\xf5\xaa\x84\x03\xc5\xf7\x75\xe8\x98\x26\x04\x65\x09\xb0\x14\x58\x2f\x5a\x2b\xfe\x15\xcd\x38\x61\x03\x09\xc5\xbd\x3c\x22\x5d\x36\xca\x8c\xc0\x55\x49\x0a\xb2\xb3\x2b\xff\xcd\xd1\x86\xe4\xa2\x94\x50\x4e\x74\x3e\x00\x25\x15\x99\xa1\x2a\xac\x10\x47\xea\xf8\x6f\xf6\x56\xe4\x45\x9e\x7c\x2d\x97\x59\xd7\xfc\xfd\x20\x20\xce\x97\x4d\x94\x4a\x14\x35\x6a\xd0\x05\x53\xa9\x1d\x0a\x85\x2f\xa3\x41\x3f\xeb\x28\xe5\xe4\x0a\xbd\x7a\xcb\xea\x48\xe3\xaa\x95\xd1\x60\x50\xbf\x92\xd7\xdc\x08\x88\x37\x92\xc8\xac\x22\x8e\x8d\x59\x27\x4e\x1c\xec\x5f\x15\x7b\xf9\x19\xa7\x85\x6c\xc1\x02\xc6\x52\x71\x34\xae\xea\x02\x71\x5c\xf4\xa0\x37\x65\x88\x92\x20\x8e\xda\xee\x42\x41\x69\x53\x69\x07\x1c\xec\xba\x0a\xbe\x79\x4b\x15\x07\x9b\xdd\x2c\xf0\x01\x1e\x10\xb5\xb1\x9b\xa1\x44\xb8\x05\x6a\x65\x0b\x35\x7c\x0a\xe8\xf6\x07\x3a\x0a\xcb\xed\x8e\x9c\x0a\xbe\x7e\x4e\x85\x8b\x1e\x2c\xc0\x61\x69\x41\x17\x31\xa4\xfb\xc8\x46\x6c\x3e\x63\x33\xe8\x1c\x29\x0e\x41\x52\xe1\xad\xff\x2d\xef\xe8\x42\x34\x2f\x8e\xa4\xe0\x0e\xc4\xdb\xd8\xcc\xe7\x7d\x45\x8b\x0a\x5f\x31\xc3\x16\x8f\xcd\x3e\x01\x49\xea\x87\x30\x56\x2b\x5c\xcb\xb0\x52\x5c\xe2\x50\x90\x0a\x5b\x3b\x30\x76\x6e\xab\xff\x03\xcb\x73\xb3\x19\x3b\x2c\xca\xf6\x15\x98\x47\x3b\xf0\x6b\x85\xef\x80\x08\x4e\xb8\xaa\x86\xb9\x81\xf7\xd1\xd4\x84\x40\x07\x96\x33\x8e\xd5\x91\x8d\xcc\xdd\xd7\x3f\x55\x3c\x02\x47\xbc\xaa\xf1\xe9\x72\x8a\x00\x92\x5d\x77\x5f\x5c\x61\xf5\xe0\xae\x68\x21\x24\x0e\xc7\xe3\x52\xee\x77\xf5\x8b\x51\x82\x1d\x58\x76\x5d\xbc\x46\x0d\xb5\x4c\xb6\xb6\xc2\x79\x40\xf4\xe7\x73\xf7\x8b\x29\xeb\x70\xf6\xa6\x76\x4e\x15\x7f\x1d\xb5\x06\x09\xcb\xc9\x4f\x1c\x1f\xa0\x1f\x84\x7f\xf0\xb9\x6d\xe7\x20\xc7\xbe\xe2\xaf\xf0\x54\xe0\x49\x12\x43\xcb\x2f\x94\xd2\xd9\xc8\x03\x69\x27\x34\xc9\xa3\x7d\xdb\x5f\xe1\x2c\x40\xf7\x4e\x17\x93\x52\x3d\x71\x01\x54\x25\xe8\x10\x57\x63\xe1\x11\xf0\x3d\x18\x1f\x32\xd9\xca\x0b\x15\x4e\x41\x80\xfc\xf8\x83\x70\x85\x6b\xce\x2b\x93\x69\xaf\x41\xca\xdc\x19\xc2\xac\xe8\x53\xe1\x2c\x2c\x00\xca\xd9\x4e\xf6\x10\xb7\x6c\x1a\xff\xd8\x60\xfd\xc2\x4b\x73\xfd\x8e\x35\x1f\xaf\xc2\x31\x75\xe1\x57\x94\x62\xe6\x74\x77\xa5\x92\xdc\x45\xad\xc2\x92\x2c\x32\x35\x5d\x6d\xee\x4a\x1b\xa2\x55\xdc\xc3\x2b\x2a\x01\x0b\xd3\xd0\xe1\x62\xa6\xb8\xd1\xca\xba\x04\x31\xd8\xa0\x46\x0b\x86\x9d\x75\x9e\x5c\x29\x08\x48\x62\xb0\x74\x87\xbc\x64\xaf\x2c\x83\xae\x48\x2b\x28\xaa\x3c\xf0\x23\x06\x29\xff\xc6\x6b\x0a\xc4\x6d\x94\xa5\x0c\x0c\x8d\x8e\x7c\xc1\x59\x99\xe0\xa7\x1e\x1f\xb5\x26\xbe\x63\x2f\x23\x0b\x6c\xdc\x9f\x51\xe6\x26\x11\xd1\x1a\x1a\x6a\xa4\xfe\x67\x86\x1e\x5c\xe5\x39\xae\xd6\x5b\xe3\x23\x8c\x56\x0d\x6f\xa2\x85\xd4\x44\x3a\x5a\x23\x84\xab\xed\x42\xbf\x11\x24\x5a\x38\xe8\x3e\xc3\x9f\x3e\xae\x64\xc4\xf3\xdb\xf8\x6d\xfc\x9f\x1e\xff\x0b\x29\x11\x54\x0e\xbd\x83\x97\x72\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x99\xd3\x83\x87\x08\x20\x00\x00") + +func staticImgCowyoAndroidIcon192x192PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAndroidIcon192x192Png, + "static/img/cowyo/android-icon-192x192.png", + ) +} + +func staticImgCowyoAndroidIcon192x192Png() (*asset, error) { + bytes, err := staticImgCowyoAndroidIcon192x192PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/android-icon-192x192.png", size: 8200, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAndroidIcon36x36Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x95\x69\x50\xd3\x59\xda\xc5\x1f\x41\xde\xa2\x05\x44\x5b\x54\x78\xc5\x31\x3a\x8d\x03\x48\x48\xfe\xd9\x24\x91\x2d\x61\x0d\x24\xc8\x92\x80\x08\xc1\x6c\xff\x2c\x40\x12\x08\x09\xbb\x88\x88\xc8\x16\xb6\x46\x01\x59\x54\x6c\x85\x66\x30\x46\x0b\x75\x10\x6c\x51\x64\x6c\x25\xd0\x3a\x80\xb6\x88\x8e\xfb\x8a\x8a\x82\x82\x2b\x53\xf8\x65\x9c\x9e\x9a\x0f\xe7\xd3\xfd\x9d\x73\x6f\x9d\xba\x4f\x3d\x45\xa1\x21\x01\x56\x0b\xfe\x7f\x01\x00\x58\x31\x03\x7d\xc3\x01\xe0\x87\x39\x99\x9b\x02\xc0\xb5\xdb\xb2\x36\x00\x98\x2f\xa5\xb3\xe9\x00\xc7\xca\x2d\x3e\x09\xcc\x00\x60\x5e\x4a\x78\x00\x03\xf4\x83\xf6\x4f\x01\x00\x23\x0a\x0c\x67\x03\x64\xae\x05\xc8\xcd\x07\xf8\x00\x00\xb9\x4f\x00\xb4\x78\x80\x67\x7c\x00\x5a\x2d\xc0\xf2\xa4\x86\xd3\x61\xee\x00\x26\x31\xa1\x2c\x8e\xdf\xec\xec\xec\xf4\xf4\x74\x79\x79\xf9\xc0\xc0\xc0\x93\x27\x4f\x76\xed\xda\x75\xff\xfe\x7d\xa3\xd1\xb8\x64\xc9\x92\xd2\xd2\xd2\x73\xe7\xce\x59\x5b\x5b\x1f\x3a\x74\x08\x00\x84\x42\xe1\x97\x2f\x5f\xf6\xee\xdd\x9b\x9b\x9b\xab\x50\x28\x28\x14\x0a\x8d\x46\xfb\xfc\xf9\xf3\xfb\xf7\xef\xdf\xbe\x7d\x3b\x33\x33\xf3\xe9\xd3\x27\x3e\x9f\x4f\x22\x91\xa2\xa3\xa3\xdf\xbd\x7b\x27\x93\xc9\x5a\x5a\x5a\xae\x5d\xbb\xb6\x7f\xff\x7e\xad\x56\xbb\x79\xf3\xe6\xe0\xe0\x60\x1f\x1f\x1f\x06\x83\xc1\x64\x32\xb9\x5c\x6e\x4d\x4d\xcd\xe5\xcb\x97\x27\x27\x27\x5d\x5d\x5d\xab\xaa\xaa\x42\x42\x42\x1e\x3f\x7e\x2c\x91\x48\x9a\x9a\x9a\xaa\xab\xab\xb1\x58\xec\x96\x2d\x5b\x2a\x2b\x2b\x3b\x3b\x3b\x47\x46\x46\xe2\xe2\xe2\x5c\x5c\x5c\xbc\xbc\xbc\xb6\x6d\xdb\xb6\x7b\xf7\xee\x03\x07\x0e\x14\x14\x14\xc4\xc7\xc7\xfb\xfb\xfb\x77\x77\x77\x3f\x7f\xfe\x7c\x74\x74\xf4\xec\xd9\xb3\xf5\xf5\xf5\x08\x82\x48\xa5\xd2\x0b\x17\x2e\x3c\x7d\xfa\x54\xa7\xd3\x79\x78\x78\x9c\x39\x73\x26\x2a\x2a\x2a\x28\x28\x88\x4a\xa5\xe2\x70\xb8\x8c\x8c\x8c\xbe\xbe\xbe\xd7\xaf\x5f\xdf\xbd\x7b\xb7\xa2\xa2\x82\x48\x24\x06\x06\x06\x46\x44\x44\x24\x26\x26\x76\x74\x74\xc4\xc6\xc6\x4e\x4c\x4c\xa4\xa6\xa6\x3a\x3a\x3a\xa6\xa5\xa5\x5d\xbf\x7e\x7d\x6c\x6c\x6c\xc7\x8e\x1d\x53\x53\x53\x7a\xbd\x9e\x4e\xa7\xd7\xd6\xd6\x86\x86\x86\xde\xb8\x71\xe3\xe0\xc1\x83\x18\x0c\xe6\xe3\xc7\x8f\xc5\xc5\xc5\xb7\x6f\xdf\xfe\xf0\xe1\x43\x4f\x4f\x8f\xb3\xb3\xf3\xa6\x4d\x9b\xda\xdb\xdb\xf1\x78\xfc\xcd\x9b\x37\x5f\xbe\x7c\x59\x56\x56\x66\x69\x69\xd9\xda\xda\xfa\xea\xd5\x2b\x36\x9b\x9d\x9e\x9e\x7e\xe2\xc4\x89\x80\x80\x80\xde\xde\xde\xb5\x6b\xd7\xaa\x54\xaa\xc6\xc6\xc6\x75\xeb\xd6\xf1\x78\xbc\xf3\xe7\xcf\xfb\xfa\xfa\x9e\x3c\x79\x32\x2b\x2b\xcb\xd6\xd6\x36\x32\x32\xf2\xd4\xa9\x53\x45\x45\x45\x83\x83\x83\xe3\xe3\xe3\x57\xaf\x5e\x7d\xf0\xe0\x81\x46\xa3\x89\x89\x89\xc9\xcc\xcc\xbc\x77\xef\xde\xd1\xa3\x47\x37\x6c\xd8\x20\x12\x89\x3c\x3d\x3d\xfb\xfb\xfb\x9b\x9b\x9b\x59\x2c\x16\x87\xc3\x79\xf8\xf0\xa1\x5a\xad\x16\x8b\xc5\x4e\x4e\x4e\x0e\x0e\x0e\x17\x2f\x5e\x24\x10\x08\x87\x0f\x1f\x3e\x72\xe4\x88\xbd\xbd\xbd\x89\x89\x89\xb9\xb9\xf9\xaa\x55\xab\x8e\x1f\x3f\x1e\x16\x16\x96\x93\x93\xb3\x68\xd1\xa2\xb6\xb6\x36\x6f\x6f\xef\x2b\x57\xae\x9c\x3e\x7d\x3a\x21\x21\x61\x68\x68\x28\x2f\x2f\xaf\xae\xae\xae\xa4\xa4\x24\x3f\x3f\xff\xd2\xa5\x4b\xb7\x6e\xdd\x42\x51\xf4\xcd\x9b\x37\x02\x81\x60\x78\x78\xb8\xab\xab\xcb\xca\xca\xca\xc2\xc2\xc2\xcd\xcd\x2d\x3b\x3b\xdb\xc6\xc6\x66\xcd\x9a\x35\x4a\xa5\xb2\xa1\xa1\xa1\xb0\xb0\xd0\x60\x30\xb8\xbb\xbb\xd7\xc4\x73\xcd\xe7\xfe\xa7\x30\x38\xc0\x17\x0a\xcd\x56\x06\x02\xc0\x77\x49\x81\xd1\x29\x00\x10\xf8\x55\xfe\x97\x12\x3c\x01\x4c\x8e\x31\x7d\xe9\x1c\xb7\x7e\x11\x1f\xb3\x00\x4f\x40\xee\xff\x28\x11\xa0\xa6\x55\xe3\xf6\x0d\x33\x36\xc9\xc9\x93\xc0\x5c\x1b\xe7\x99\xe3\x5e\x3c\x3f\xdd\x6c\xfb\x4f\x15\x06\x73\x0b\x06\x8b\xc3\x8a\x8d\x65\x7c\x7f\xae\xa6\xba\x6a\x4f\x25\x7a\xa7\xe6\xbe\xcd\x9e\x5d\xe6\x85\x4e\x8e\xce\x4e\x7f\x6d\x6d\xfb\x39\xc1\x5c\x1e\x2f\xf7\xb9\x50\xab\xd5\xbc\x9d\xb2\x9b\xb1\xb2\xd4\x95\xb2\x59\x03\xc6\xe8\xdf\xb1\x2e\x47\x66\xda\x15\x36\x0a\xf2\x8b\xf1\x95\x2e\x23\x2b\x1b\x1b\x78\xb1\x3b\xc7\xc6\x3c\x38\xee\x76\xb6\xdd\xdd\x5b\xb3\x35\xbb\xb3\x3f\x7f\x32\x35\xd9\x91\xb7\x5d\x3f\xb4\x4c\xca\xbf\x63\x2d\x58\xb8\xf4\x3b\x8b\xf2\xc2\x07\xa5\xc2\xf2\xc8\xef\x51\x7e\x61\x91\xae\x64\x63\x45\x35\xcb\x26\xc4\xa4\xd3\x8b\xea\x40\xd6\xad\x8e\xf6\xf4\xf0\x71\x21\xf6\x23\xf5\xfb\xb0\x7f\xf1\xfe\xf3\x72\xb1\x22\xee\x17\x7f\xba\x60\xf1\xc6\x64\x66\xaa\x53\x56\x74\x3a\xbd\x33\x6a\xe7\xbe\x63\x87\xa3\xc4\x28\x57\xab\xa3\x7b\x2b\xcc\x86\x93\x2d\xef\x69\xd1\xab\x6f\xb9\x12\x82\xb3\xb3\x95\x8e\xcc\x3e\x3f\xe0\x3f\x88\x3d\xa2\xb0\x7c\xb1\xb2\xb1\x9d\x87\xfc\x7a\xae\xf2\x16\xaf\xfe\xf9\xd0\x50\xff\x6f\x98\xab\x8f\x8d\xe6\x1a\x1f\x2f\xd3\xde\xfc\xa2\xe3\xcd\xa5\x13\x98\xe1\x90\x63\xfb\x48\x19\x97\x87\x83\x3a\xf8\x9a\x72\x6d\x13\x65\xeb\xf9\xd2\xc4\x45\x31\xc2\x47\xed\x37\x1a\x18\xcf\x4e\x98\xa5\x84\x8e\x88\x03\xfe\x46\x35\x9e\x68\xac\xa6\xe1\x4c\x7f\x65\xd6\x1f\xb5\xeb\xad\xe0\x89\x0c\xde\xf3\xb8\x61\xea\x67\xdd\x3b\xbd\x23\x82\x9a\x1f\x17\x21\x78\x56\xfd\xfc\x93\xa7\xb6\x85\xad\xac\x59\xee\x9e\xf3\x88\x83\xbb\xb6\x9c\x62\x4a\x5c\xda\xbb\xfd\xe5\xa6\x7b\xab\xea\xc1\xd2\xf5\xe2\xa1\xba\xc5\xfd\x7b\x7a\x6c\xea\xb0\x47\xd1\x38\xe4\xe7\x70\x4e\xf7\x60\xce\xb3\x20\xcc\x3e\x2f\x19\x37\x79\x2a\xbe\x33\x8f\x2c\xa7\x1f\x6e\x4a\x3a\xdb\x8e\x2a\xa3\x47\x3b\xf4\x86\x91\xf4\xd1\x4c\x19\x5e\xd1\x5a\x76\xdb\x96\xfc\x9b\xcd\x08\xbb\xa4\x45\x45\x18\xeb\x46\xb7\x52\xc2\x17\xdc\x95\xfe\x3e\x5a\xd6\x26\x8b\x69\xf9\xc1\xf4\xff\x1c\x09\xf4\xa5\x1d\xe5\x7d\x55\xf3\x4f\x45\x99\x1d\x9c\xb0\xfa\x87\xc1\x71\xef\x92\xa6\xed\xc6\xdd\x8d\x2f\x76\xf8\x55\xe6\x17\xd8\x11\xd2\xd4\x2f\x16\xba\x14\xdb\xa6\x3e\x5b\x33\xe9\x3e\x95\x2a\x88\xe0\x9c\x59\x41\xbd\x2e\xa3\xf0\x23\x7a\x43\x57\x87\x17\x27\x2a\xed\x22\xfd\xb2\x4a\xeb\xfc\xa6\x43\x92\x6a\x7e\x4c\x51\xb5\x5e\xd1\x37\x38\x97\x73\x2b\xd3\xd3\x5b\x1f\x79\x2e\x5d\xc1\xe3\xd5\xeb\x3e\xae\x30\x9a\x10\x0c\xce\x42\xbe\x87\x61\xf0\x9f\xd6\xb5\x6d\x6f\x16\x2e\xdb\x38\xfd\xd2\xd8\xab\x97\xfd\x7d\x35\x79\xa7\x96\x65\x69\xc9\xdb\x35\xfd\xa7\xbb\xda\x3e\x7d\x01\x5d\xf8\x2e\x36\xb9\xa4\xaf\x67\xcd\x4f\xda\x82\x9e\xbc\x58\xfb\x62\x5b\x75\xb5\x6f\xb4\xf7\x49\x43\xa0\x3d\xaf\x45\x17\xbc\xb8\x6b\xf6\x58\xb5\x83\x9f\x5f\x70\xd9\x64\x83\x5b\x41\xb0\x95\xe9\xb6\xeb\x8b\x7f\x91\x67\x77\xa5\xbd\x6a\xaa\x59\x66\xcc\x5d\x31\x51\x12\x94\x97\xeb\xd8\xe6\x08\xfb\x73\xda\x07\x66\x3b\x22\xb2\x00\xc0\x41\xe3\xb7\x49\x23\x16\x68\x50\x9a\x48\x8d\x0a\x34\x28\x10\xf0\x08\x05\x8b\x27\x62\x11\x2a\x07\x21\xd1\x08\x04\x1a\x81\xbc\x0e\x8f\xa7\xe1\xf1\x77\x90\xd2\x33\xff\x61\x50\xa8\xc4\x72\x49\xc6\xff\x36\x54\x26\x92\xe6\x01\x80\xff\x9c\x21\x45\x25\xd1\xa4\x09\xd4\x28\x30\x15\x02\x29\xca\x16\x48\xe5\xa2\x04\x0c\xc5\x75\xbd\xab\x1b\x96\x8a\x21\xe0\x11\x12\x16\x4f\xc6\x22\x04\x4c\x18\x42\xc1\xc8\x34\x9a\x24\x1a\x0e\x97\x96\x96\xe6\x2a\x9f\xa3\x15\x5f\x69\x57\x95\x5a\x3a\x56\xf0\x02\x00\xc0\x76\x2e\x91\x23\xd3\x2a\x84\x34\x9a\xaf\x4a\xa4\x55\xa0\x4a\x0d\x8d\x16\x2a\x90\xa2\x29\x80\xb4\xcc\x76\xe1\xfe\xc0\x7c\xbd\x93\x46\x93\xa1\x72\xa9\x4c\x03\x08\x95\x60\x0d\xea\x9d\x00\xb0\xfc\xbf\x99\x28\xb9\x58\x23\x9b\x43\x86\xda\x57\xcf\x4d\xbf\xdd\x37\x08\x5b\xae\x40\x35\x19\x49\x28\x7c\x7d\x15\x2e\x49\x29\xf5\x3a\x1e\x19\xf2\x87\x1c\x36\x47\xae\x40\x01\x21\x91\xdd\x88\xd4\xf5\x44\x12\x39\xea\xa1\x61\x6e\x0d\x5a\x7f\x83\x44\xc8\x33\x51\xc0\x33\x18\xd5\xcd\x9e\xe3\x00\x10\xf9\xcd\x11\x37\x9c\x09\x12\x79\x22\x4a\xc3\xe1\x70\x0a\xa5\x26\x51\x25\xc5\x49\x04\xa9\x72\x91\x4a\x99\x82\xfb\x77\xcf\x38\x09\x4a\x45\xa9\xa4\xf5\x02\x84\x40\x20\x12\xc5\x62\x09\x2a\x21\x0a\x84\xe2\xf5\x88\x80\x8c\x20\x28\x51\x4c\x76\x95\x8b\x54\xae\x49\x4a\x69\xb7\xb8\xe8\xd2\x5c\x61\x4c\xbf\x10\x5f\x3d\x83\x9f\xf7\xaf\x00\x00\x00\xff\xff\x84\xe8\x95\x64\xa0\x07\x00\x00") + +func staticImgCowyoAndroidIcon36x36PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAndroidIcon36x36Png, + "static/img/cowyo/android-icon-36x36.png", + ) +} + +func staticImgCowyoAndroidIcon36x36Png() (*asset, error) { + bytes, err := staticImgCowyoAndroidIcon36x36PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/android-icon-36x36.png", size: 1952, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAndroidIcon48x48Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x96\x79\x34\x14\x7a\x1f\xc6\x7f\xf6\xe5\x35\xc8\x4e\x48\x21\x89\x59\xcd\x60\x86\x6c\x91\x25\x23\xc3\x58\x8a\x6e\x33\xcc\x18\x73\xcd\x62\x19\xfb\xad\x68\x11\xa1\x10\x26\x92\xb4\x30\xca\xbe\x4c\x97\xb4\xdb\x9a\x8b\x90\x91\x94\x52\xf6\xbd\x44\x8a\xea\xf6\x1e\xfd\xf3\xf6\xde\xf7\xbc\x7f\x3c\x7f\xfd\x3e\xcf\xf3\xfb\x9e\xe7\x9c\xef\x39\xdf\x34\x4f\x0f\x67\x88\xac\x96\x2c\x00\x00\xe2\xea\xe2\xe8\x05\x00\x40\x6c\x4a\x5a\x0c\x00\x40\x1a\x91\xe1\x03\x00\xc4\x69\xf6\x78\x7b\x00\xea\xce\xff\xeb\x1b\x59\x02\x00\x20\x12\xe5\xe5\xec\x00\xaa\x9f\x6a\xcf\x02\x00\xf4\x82\x5d\xbc\xf0\x00\x24\xec\x04\x20\xe9\x14\x00\x1b\x00\x80\xa4\x19\x00\xa2\x11\x00\xcc\x91\x00\xc0\x5d\x04\x40\x3d\xbc\xe8\x0e\xc1\x1a\x00\xd1\x36\x4f\x77\xa2\xd3\x8f\x1f\x3f\xbe\x7d\xfb\xf6\xea\xd5\xab\x95\x95\x95\xaf\x5f\xbf\xbe\x7c\xf9\xf2\xd3\xa7\x4f\x42\xa1\x10\x06\x83\x55\x55\x55\x0d\x0f\x0f\xc3\xe1\xf0\xb2\xb2\xb2\xe3\xc7\x8f\x03\x00\x12\x13\x13\x6f\xdf\xbe\x2d\x25\x25\xe5\xec\xec\xfc\xf1\xe3\x47\x5b\x5b\x5b\x07\x07\x87\x3f\xfe\xf8\x43\x43\x43\x63\x64\x64\x64\xc7\x8e\x1d\x06\x06\x06\x6f\xde\xbc\xf9\xf2\xe5\xcb\xfe\xfd\xfb\x35\x35\x35\x95\x95\x95\x6b\x6b\x6b\x1f\x3d\x7a\xa4\xa3\xa3\x73\xfa\xf4\x69\x6d\x6d\xed\xe6\xe6\xe6\xbf\xff\xfe\x7b\x7d\x7d\xfd\xfd\xfb\xf7\x33\x33\x33\x13\x13\x13\x6f\xdf\xbe\x1d\x1d\x1d\x1d\x1f\x1f\x9f\x9e\x9e\x5e\x5c\x5c\xfc\xfc\xf9\xf3\xf7\xef\xdf\x8d\x8c\x8c\xd8\x6c\xb6\x89\x89\x49\x6a\x6a\x6a\x65\x65\xa5\xae\xae\x6e\x4b\x4b\x0b\x02\x81\xf8\xed\xb7\xdf\xe6\xe7\xe7\x79\x3c\x5e\x68\x68\x28\x06\x83\xd9\xb9\x73\xe7\xf6\xed\xdb\x0d\x0d\x0d\x77\xef\xde\x8d\x44\x22\x03\x03\x03\xf3\xf2\xf2\xfa\xfa\xfa\xd6\xd6\xd6\xd4\xd5\xd5\xff\xfc\xf3\x4f\x2b\x2b\x2b\x2a\x95\xba\x75\xeb\xd6\x9e\x9e\x9e\xf3\xe7\xcf\x9b\x99\x99\x85\x85\x85\xd5\xd4\xd4\x4c\x4d\x4d\x2d\x2f\x2f\x0b\x04\x02\x1f\x1f\x9f\x6d\xdb\xb6\x39\x3a\x3a\x66\x66\x66\x16\x16\x16\x5e\xbb\x76\xed\xfa\xf5\xeb\x97\x2f\x5f\xce\xce\xce\x8e\x89\x89\xc1\xe3\xf1\xa6\xa6\xa6\x5a\x5a\x5a\x76\x76\x76\x1b\x1b\x1b\xab\xab\xab\xb3\xb3\xb3\xf7\xee\xdd\x3b\x76\xec\x98\xbd\xbd\x3d\x1a\x8d\x66\x32\x99\x03\x03\x03\x87\x0e\x1d\xda\xb5\x6b\x97\xa5\xa5\xa5\x9b\x9b\x5b\x57\x57\xd7\xf3\xe7\xcf\x4b\x4b\x4b\x55\x54\x54\xdc\xdd\xdd\x3d\x3d\x3d\xad\xad\xad\x9d\x9c\x9c\x4a\x4a\x4a\x96\x96\x96\xee\xdf\xbf\xaf\xa4\xa4\x14\x1f\x1f\xff\xd7\x5f\x7f\x55\x57\x57\x67\x65\x65\x05\x07\x07\xf7\xf7\xf7\xa7\xa4\xa4\xc8\xca\xca\xca\xcb\xcb\x13\x89\xc4\xc7\x8f\x1f\x17\x17\x17\x9f\x38\x71\xa2\xb7\xb7\x37\x2a\x2a\xaa\xb3\xb3\xb3\xa8\xa8\xc8\xd7\xd7\xf7\xc9\x93\x27\x47\x8e\x1c\xd1\xd3\xd3\xf3\xf6\xf6\xae\xab\xab\x7b\xfd\xfa\xb5\xaa\xaa\xaa\x84\x84\xc4\x95\x2b\x57\x6c\x6c\x6c\xba\xbb\xbb\x13\x12\x12\x82\x82\x82\xd4\xd4\xd4\x1a\x1a\x1a\xce\x9c\x39\x43\x22\x91\x0a\x0a\x0a\x64\x64\x64\x50\x28\x54\x6e\x6e\xee\x96\x2d\x5b\x38\x1c\x4e\x5b\x5b\xdb\xdc\xdc\x9c\xb1\xb1\x71\x72\x72\xf2\x87\x0f\x1f\x22\x22\x22\xe4\xe4\xe4\xc2\xc3\xc3\x9b\x9a\x9a\xde\xbd\x7b\xb7\xb0\xb0\xe0\xe2\xe2\x42\xa7\xd3\x8f\x1e\x3d\xea\xe7\xe7\x17\x10\x10\x60\x61\x61\x51\x5f\x5f\x7f\xee\xdc\xb9\xf2\xf2\xf2\xfc\xfc\xfc\x8c\x8c\x0c\x1c\x0e\xb7\x77\xef\xde\xbb\x77\xef\x4e\x4e\x4e\x3e\x7c\xf8\x70\x68\x68\xa8\xb1\xb1\x31\x32\x32\xf2\xe4\xc9\x93\x57\xaf\x5e\xe5\xf3\xf9\x97\x2e\x5d\xaa\xa8\xa8\x78\xf6\xec\xd9\xd3\xa7\x4f\x93\x92\x92\xe2\xe2\xe2\x0e\x1e\x3c\x38\x36\x36\x26\x2a\x2a\x2a\x26\x26\xd6\xde\xde\x4e\x20\x10\xb0\x58\x6c\x47\x47\x07\x8b\xc5\xca\xc9\xc9\x19\x1c\x1c\x34\x37\x37\x7f\xf0\xe0\x01\x85\x42\xb9\x70\xe1\x82\xbf\xbf\x7f\x6b\x6b\xeb\xd9\xb3\x67\xf7\xec\xd9\x93\x96\x96\x46\x26\x93\x6f\xde\xbc\x99\x9e\x9e\x0e\x81\x40\x14\x15\x15\x19\x0c\x86\xb8\xb8\x38\x97\xcb\xd5\xd7\xd7\x17\x11\x11\xf1\xf2\xf2\x82\x42\xa1\xdc\xa4\xbd\xda\x9b\x8b\x10\xb4\xdf\xd9\x11\xa4\x4a\xe8\xb8\x00\x00\x64\xc2\x5d\x0e\x46\x01\x00\x5c\x7e\x6a\x9f\x20\xcc\x06\x00\x71\x2b\x57\x47\x7b\xa2\x4b\x67\x30\x49\x4f\x07\x81\x42\x2a\xf3\xb2\x4e\xe7\x41\xdc\x1b\xa2\xc2\x95\x78\xc9\xe9\x97\xa4\xdc\x57\x3e\x2e\x2b\xf3\xec\xed\x3c\xa5\x27\xd4\xc8\x5b\x6c\x08\x63\x23\x06\x1d\x46\x4f\xe5\x6f\x18\x18\x94\xde\xb8\x91\x46\x80\xeb\x9b\x18\xd5\x80\x1b\xaa\x79\xb9\x3e\xc4\x6c\x43\xa1\x10\x83\xe6\x37\x46\x73\x3e\xad\x42\xe4\xb2\xdb\xa3\x33\x33\xf0\xee\xc9\x8d\x05\xcd\xa7\x4b\xf3\xf8\x5a\xdd\x1a\xbe\x5b\x03\xb6\x5b\x29\x27\xba\x4a\x39\x1b\xd1\x08\xea\x7e\x16\xe4\x8b\x09\xb1\x7e\x0a\x07\xe0\x6c\x35\x49\x49\x89\x6d\x47\x6c\xe3\x7f\x24\xd9\xad\x95\x90\xa2\xf3\xb3\xfa\x10\xd8\xaf\x1f\x92\x52\x9f\x94\xcf\x5c\x7c\xd1\xf4\x45\xfc\x4a\x9b\x81\xc7\xc9\x89\x5c\x62\x75\xe3\xaa\x5c\xbc\xfa\xeb\x6e\xd3\x92\xcb\xc3\x36\x5b\x18\xb7\xb0\x5e\x91\xbb\x9b\xe3\xd7\xaf\xba\x79\x1c\x93\xb0\x5f\xf2\xe4\x96\x0b\x66\xd4\xd5\xa8\x2a\xdc\xdc\x7c\xc3\x53\x82\x02\xae\x1f\xd1\x37\xcd\x39\x59\x9b\x1c\x70\x58\x39\x57\x9b\x18\xe0\x37\xaa\xd8\x31\xbd\x03\x12\x11\x10\x79\xdd\x3c\x35\x47\x9e\x2c\x0c\xfd\x9d\x45\x67\xd6\xd3\x07\x22\xd4\x59\xb1\x1f\x9e\x49\xa4\xcd\xa5\xa7\x59\x45\xbb\x00\x1d\x5e\x81\xf1\x2d\x29\x5f\x56\x1f\x7d\xfe\x51\x4d\x87\x62\xe0\x84\x01\x45\x87\xd1\x37\xd9\xdf\xf3\x90\xa4\x21\x1c\x37\x1c\xed\x92\xa8\xc3\x35\xd7\x1c\x61\x3d\x76\xf4\xb8\xe7\xaa\x2b\x6a\x17\x7b\xc3\xfd\x1c\x8c\x50\x80\xe2\x3b\xb3\x5f\x72\xd6\xbf\x68\x6e\x59\x4f\x78\xb9\x66\xe6\x0d\x0d\xd1\xec\x51\x2b\x14\x53\x00\x92\x27\x3b\x9a\xf3\x1b\xa2\x4a\xb5\xf9\xd0\xb8\x69\x7c\xac\x62\xef\xa5\x6d\x75\x24\xf2\xd2\x82\x9c\x47\xa6\x53\x7a\xe6\xeb\x0b\xfb\x6f\xe1\xad\x17\xb8\xa6\x90\x7d\x69\xaa\x7c\xea\xd9\x59\x9b\x2e\xfe\xb4\x31\x36\xef\x4e\x0a\x11\x25\x8c\x88\xab\xf2\xbf\x93\x93\x1c\x21\xb8\xe5\x26\x99\x9f\x56\x31\x54\x39\x18\xd4\xa6\x94\x87\x91\x9f\x7f\x1e\x06\xbf\x20\xd2\x82\xc2\x68\x68\x13\x19\x76\xc5\x1b\x92\xfd\x2a\x29\x14\xb2\x1a\x65\xdc\x5b\xd5\x9c\x55\xd8\xdd\x77\x9d\x98\x0a\x75\x6d\x4a\x67\x78\xb0\x46\xea\x31\xb4\x00\x43\x77\xca\xf7\x18\x96\x82\xf1\xf2\x29\x1d\x2b\xe5\xa3\x75\xf4\xbe\xcf\x0a\xaf\x0d\x67\x2f\xb6\x22\x13\x2d\x8c\x5e\xc4\xa4\x3c\xdd\xf3\x11\x9b\xf8\x59\xb5\xed\x40\x41\x7d\x82\xad\x39\x24\xc1\xa3\x62\x32\x50\xbe\xf6\x86\xee\x88\xf7\x51\x69\x15\x8f\x3b\x01\x78\xf9\x3b\x62\xf4\xcc\x5b\xa9\xc3\xb2\x2f\xd0\x08\xbc\x65\xd1\x65\xd1\x20\x62\xa1\xef\x36\x11\x2f\xe7\x74\x31\xb2\xa0\xbf\xee\xcc\xd5\xb5\x8b\xba\xf5\x41\xcf\x0d\x3b\x07\x71\x3e\xcf\x1d\xe2\x8d\xba\x69\xa2\xca\xa2\xdc\xec\x19\x57\x97\x31\x99\x43\xc7\x76\x3f\xc9\x81\x03\x63\x4b\x8d\xe9\x65\xfc\x45\x06\xc1\x14\x4c\x95\xbf\xe7\x37\xd8\xca\xc8\xee\xf0\x51\x5e\x19\x58\xe8\xce\x30\xbd\xc9\xe3\x15\x63\xc3\x62\x97\x14\xbd\x52\x2b\xaa\xfc\x0f\x97\x61\x7f\xdc\x6d\x98\xae\x77\x3b\xdc\xfb\x66\xb8\x05\x9e\xe4\x5d\xa8\x55\x51\x77\x36\x67\xa8\x2d\x5d\xdb\xfb\x10\xac\xaa\xfb\xcd\x6d\xb9\x61\xd7\x6e\x6e\xb4\x46\x35\x31\x2a\xce\xc0\x94\xb3\xea\xd2\x24\x1b\x5b\xb5\xc1\x2f\xee\x29\x18\x62\xb2\x47\x1a\x15\x1e\xaf\x9a\x75\x39\x59\x55\x33\xcf\x8c\xb3\x16\x21\x0e\x82\xe3\x73\x26\x27\x0f\x6a\x4c\x99\x1c\x6e\x15\x66\x79\xc5\x58\x69\xce\xc8\x31\xde\x75\xd6\xda\x2e\xcb\x97\x95\x94\x09\x02\x25\x03\x4b\x3c\x67\x2d\xcb\xf4\xb8\xeb\xf2\x45\x5a\xab\x45\x4b\x41\xb2\xb7\x0d\x77\x8f\x09\xb3\x22\xe1\x44\x9d\xbd\x7d\x3e\xa5\x8a\x3c\xc9\xd6\x57\xda\xf3\xfd\xed\xc2\x10\xe8\x81\xf6\x9b\xc9\xef\xee\x63\x4d\xee\x64\xb5\x94\x57\x8a\xb0\x20\x3e\x91\x1a\x4b\x83\x51\x5e\x1d\x55\xc5\xf6\x41\x8f\xd1\x9c\xab\xfb\x54\x25\xac\xb5\xd0\x0b\x5a\xfe\x7d\xa7\xae\x29\x59\x2d\x87\x92\xac\x5b\xc9\x99\x53\xd3\x52\x5d\x98\xe5\x50\x52\xaa\x3b\x83\x42\xe2\xcc\xbf\x90\x96\x0c\x3a\xcb\x90\x7b\x14\x1f\x90\xb3\x4c\xb7\x7c\xb7\xe2\xb9\x48\x18\x0b\xfe\x3a\xd9\xdc\xdc\xbc\xd6\x7e\xa0\xb2\xb2\xb9\xfb\xfc\x5b\xef\x5e\xcf\x82\xf5\x12\x8f\xe2\xf7\x37\x43\x7e\xff\xfd\xd6\x54\xbd\x7e\x4f\xaf\xef\x1e\xee\x4a\x7b\x85\x3d\xd4\x4e\x70\x45\x7f\xdc\x49\xcb\xd2\x6e\x7c\xb1\x4a\x89\x3b\xed\x33\x36\xf8\xb0\xf6\xc1\x06\x75\x60\x22\x51\x9b\x96\xdc\x7f\xbf\x2c\x2e\x80\x27\x35\x0a\xfb\x36\xa7\x89\x8e\x39\x70\xf8\x92\x35\x41\xc6\xdf\xbd\xa1\x68\x79\x46\xe8\xbf\x6b\xd4\xd5\x4e\xac\x55\x56\x21\x66\x4a\x6a\x4f\xc9\x0b\xcb\x88\x88\x07\x2f\x2b\x86\xe6\x65\xe8\xe5\xca\xec\x60\x44\x52\xae\x18\x23\xc3\xf8\x5a\xe2\x0b\x69\x7a\xdf\x24\xec\x55\x62\xa6\x8e\x78\xb5\x8e\x25\xa1\xa1\xe9\x44\x56\x82\x64\xca\xbd\x7c\x5d\x37\x45\xd2\x92\x7e\xe7\x01\xc7\xbc\x9a\xb2\xb0\x3a\x88\xb4\x4a\x12\xc9\x83\x27\x47\xfe\x74\x0a\x00\xbd\xaf\x50\xb7\x50\xae\x95\x31\x00\xc0\x90\xe3\xe4\xcf\xa1\x90\x39\x54\x5c\x70\x24\x95\xcc\xa1\x02\x14\x02\x69\x0e\x45\x98\x41\x91\x58\x22\x12\x8d\x43\xa1\x70\x28\x8c\x09\x02\x81\x43\x20\xde\x22\x33\xee\xfd\x97\x81\xc9\xa6\xd0\x43\xe2\xff\xbf\x21\x9b\x81\x16\x01\x00\xec\xdb\x34\x44\xb1\x43\x38\xb1\xe4\x48\x2a\x70\x65\x92\x69\x54\x3c\x99\x46\x0f\x0e\xd3\x33\x87\x59\xc0\x2c\xa1\x58\x3d\x14\x02\x89\x86\x22\x30\x50\x24\x4a\x8f\x80\x34\xd7\x0b\xe5\x70\xc2\x71\x70\x78\x6c\x6c\x2c\x8c\xbe\x49\x33\x7f\xd2\x30\x76\x24\x6d\x24\x65\x11\x00\x00\x34\x36\x13\x89\xa1\xd1\xcc\x20\x1c\xce\x91\x1d\x1c\xcd\xa4\xb2\x38\x38\x9c\x27\x99\x46\x8d\x02\x48\xde\x8f\x16\xf8\x3f\x98\x9f\x7f\xe2\x70\xa1\x54\x3a\x2d\x94\x03\x90\x58\x94\x02\x88\x3c\x0d\x00\x50\xff\x5f\xc6\x8f\x4e\xe1\x84\x6e\x22\x03\x95\xdb\xa5\x01\x00\x9a\xbf\x20\x78\x3a\x93\xca\x89\x0f\xa7\x82\x9f\x53\xc1\xc3\x59\x34\xdb\x7a\x5f\x8f\x7f\xe4\xe0\x89\x74\x26\x15\x20\xd1\x18\x4b\x33\xac\x85\x19\x1a\xe3\x37\x59\xbb\x79\xf9\x28\xfc\x82\x78\xd3\x13\xa8\x00\xe1\xe0\x90\x7b\xcd\x66\x01\x00\xe0\xfb\xcb\x93\x8f\x97\x2b\x08\xa1\x33\xa8\x38\x38\x1c\xce\x64\x71\x18\x6c\x1a\x3c\x84\x1c\x43\x0f\x66\xb3\xa2\xe0\xff\xe9\x19\x1e\x42\xc5\x52\xb1\x68\x0b\x32\x12\x85\x32\x33\xa3\x50\x42\xa8\x21\x66\xe4\x20\x8a\x05\x92\x8c\x41\x22\xa9\x66\x14\x0c\x8c\x1e\xcc\x86\x85\xb3\x68\x77\x29\x69\x82\xcd\xc2\x5c\x9d\x3c\x1c\xab\x1d\x48\x27\xfe\x1d\x00\x00\xff\xff\x27\x73\xdf\x08\x93\x09\x00\x00") + +func staticImgCowyoAndroidIcon48x48PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAndroidIcon48x48Png, + "static/img/cowyo/android-icon-48x48.png", + ) +} + +func staticImgCowyoAndroidIcon48x48Png() (*asset, error) { + bytes, err := staticImgCowyoAndroidIcon48x48PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/android-icon-48x48.png", size: 2451, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAndroidIcon72x72Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x97\x67\x50\x13\xea\x9b\xc5\x5f\x40\x7a\x91\x22\xa2\x82\x5c\xa4\x28\x4a\x49\x42\x4f\x2e\xc5\x84\x6e\x08\x44\x04\x41\x7a\x80\x10\x42\x27\x84\x2e\xc5\xd0\x8b\x02\x82\x48\x15\x10\x10\xa4\xf7\x12\x94\x2a\x22\x20\xdd\x82\x05\x08\x52\x54\x3a\x4a\x13\x05\x76\xb8\x33\x3b\x7b\xf7\xbf\xb3\x1f\xde\x4f\xef\xef\x9c\xe7\x99\x33\x73\x3e\x3c\x71\x58\x43\x5d\x4e\xb6\x73\x6c\x00\x00\x4e\x7d\x3d\x2d\x63\x00\x80\xde\xf1\x63\x61\x00\x00\xd8\xcb\x6b\xfa\x02\x00\x4e\x10\x90\x18\x24\x00\xb5\x49\xec\x7f\x70\x8c\x00\x00\x3a\x1f\x63\x5d\x14\xa8\x1a\x16\xfa\x0e\x00\x10\x71\xd0\x33\xc6\x00\x10\x74\x11\x80\xf0\x48\x00\xf6\x01\x00\xe1\xdf\x00\xf0\x85\x02\xb0\x64\x07\x00\x22\x03\x00\x01\xaf\x1c\xea\x75\x55\x00\xe8\x37\xb1\x06\x26\xda\x47\x47\x47\xeb\xeb\xeb\xdd\xdd\xdd\x2b\x2b\x2b\x7f\xfe\xfc\x19\x19\x19\x99\x98\x98\x38\x3c\x3c\x8c\x8d\x8d\x3d\x79\xf2\x64\x4c\x4c\xcc\x87\x0f\x1f\xa4\xa5\xa5\x15\x14\x14\x66\x66\x66\xbe\x7e\xfd\x0a\x00\xc0\x62\xb1\xfb\xfb\xfb\x4d\x4d\x4d\xec\xec\xec\xf4\xf4\xf4\x59\x59\x59\xf5\xf5\xf5\x6c\x6c\x6c\x72\x72\x72\xdf\xbf\x7f\x4f\x49\x49\xb9\x7e\xfd\xfa\xce\xce\x0e\x89\x44\x12\x10\x10\x18\x1d\x1d\x3d\x38\x38\x20\x10\x08\xc2\xc2\xc2\x6f\xdf\xbe\x5d\x5d\x5d\xfd\xfb\xef\xbf\xe9\xe8\xe8\x98\x98\x98\x4a\x4a\x4a\xd4\xd4\xd4\x18\x18\x18\x18\x19\x19\x8b\x8a\x8a\x4e\x9f\x3e\xad\xa2\xa2\xe2\xeb\xeb\x3b\x3e\x3e\x7e\xf6\xec\xd9\x53\xa7\x4e\x29\x2b\x2b\x57\x57\x57\x2b\x29\x29\x69\x68\x68\x14\x14\x14\x50\x28\x94\x6b\xd7\xae\xed\xed\xed\x25\x27\x27\xdf\xbc\x79\xb3\xaf\xaf\x8f\x97\x97\xf7\xe5\xcb\x97\xbf\x7e\xfd\x7a\xf7\xee\x5d\x57\x57\x57\x69\x69\x69\x6e\x6e\xee\xfd\xfb\xf7\xa3\xa3\xa3\x43\x43\x43\x6f\xdf\xbe\x9d\x98\x98\x98\x91\x91\xd1\xd0\xd0\x30\x3c\x3c\x3c\x3d\x3d\xfd\xe3\xc7\x0f\x1b\x1b\x1b\x1f\x1f\x9f\xda\xda\x5a\x79\x79\xf9\xa5\xa5\x25\x1c\x0e\x67\x60\x60\xb0\xbc\xbc\x3c\x3b\x3b\x1b\x12\x12\x62\x64\x64\x04\x81\x40\x98\x99\x99\xf9\xf8\xf8\xc4\xc4\xc4\xf0\x78\xfc\xeb\xd7\xaf\x7f\xfe\xfc\xf9\xfb\xf7\xef\x96\x96\x96\x57\xaf\x5e\x71\x70\x70\x5c\xbc\x78\x91\x46\xa3\xc5\xc7\xc7\x5b\x5b\x5b\x3f\x79\xf2\x44\x55\x55\x35\x22\x22\xa2\xad\xad\x6d\x6b\x6b\x6b\x68\x68\xc8\xcb\xcb\xeb\xca\x95\x2b\x2c\x2c\x2c\x97\x2e\x5d\xd2\xd7\xd7\xbf\x71\xe3\x86\x93\x93\x93\xbd\xbd\xfd\xad\x5b\xb7\x30\x18\x8c\xa6\xa6\x26\x0c\x06\xe3\xe4\xe4\x44\xa3\xd1\x85\x85\x85\xf9\xf9\xf9\xe7\xce\x9d\xeb\xec\xec\xbc\x7c\xf9\xf2\x97\x2f\x5f\xf2\xf2\xf2\xd6\xd6\xd6\x44\x44\x44\xc4\xc5\xc5\xf5\xf4\xf4\x5c\x5c\x5c\xee\xdd\xbb\x37\x39\x39\x39\x37\x37\x77\xfe\xfc\x79\x49\x49\x49\x4b\x4b\xcb\x8d\x8d\x8d\xed\xed\xed\x6f\xdf\xbe\x7d\xfc\xf8\xf1\xc5\x8b\x17\x86\x86\x86\x03\x03\x03\x9f\x3f\x7f\x1e\x1b\x1b\xcb\xc9\xc9\x09\x0e\x0e\xce\xce\xce\x56\x57\x57\xdf\xdc\xdc\x94\x90\x90\xe0\xe2\xe2\x12\x14\x14\x94\x92\x92\xd2\xd1\xd1\x29\x2e\x2e\xfe\xeb\xaf\xbf\x2e\x5c\xb8\x00\x87\xc3\x3d\x3d\x3d\x1b\x1b\x1b\x51\x28\xd4\x99\x33\x67\x92\x92\x92\xda\xdb\xdb\x1f\x3e\x7c\x88\x40\x20\x78\x78\x78\x76\x77\x77\xb5\xb5\xb5\xcb\xcb\xcb\x17\x16\x16\xcc\xcd\xcd\x4f\x9c\x38\xa1\xab\xab\x5b\x55\x55\x15\x1e\x1e\x9e\x96\x96\xb6\xb8\xb8\xe8\xed\xed\xdd\xd1\xd1\xf1\xfe\xfd\x7b\x7f\x7f\xff\xb2\xb2\xb2\x47\x8f\x1e\x79\x78\x78\x34\x37\x37\x5b\x58\x58\x54\x56\x56\x72\x73\x73\xf7\xf4\xf4\xb8\xba\xba\xf6\xf6\xf6\x12\x89\x44\x51\x51\xd1\xd4\xd4\x54\x2d\x2d\xad\xc7\x8f\x1f\x93\xc9\x64\x56\x56\xd6\xb0\xb0\x30\x63\x63\x63\x21\x21\xa1\x80\x80\x80\x37\x6f\xde\x24\x24\x24\xa4\xa7\xa7\xf3\xf3\xf3\x9b\x98\x98\x58\x59\x59\xd9\xd9\xd9\xdd\xb9\x73\x47\x56\x56\x36\x28\x28\x68\x7e\x7e\xbe\xae\xae\xee\xe9\xd3\xa7\x53\x53\x53\x8a\x8a\x8a\xfd\xfd\xfd\xee\xee\xee\x83\x83\x83\x81\x81\x81\x0f\x1e\x3c\x88\x8b\x8b\x8b\x8c\x8c\x74\x76\x76\x7e\xfe\xfc\x79\x4d\x4d\x8d\x8c\x8c\x4c\x66\x66\xa6\x83\x83\x83\x99\x99\x99\xa3\xa3\x23\x14\x0a\x7d\xf6\xec\xd9\xa7\x4f\x9f\xae\x5e\xbd\x8a\x44\x22\xa9\x54\xaa\x9b\x9b\x5b\x54\x54\x94\x9f\x9f\x9f\x77\x09\xab\xd7\x71\x6b\xec\xd1\xba\x5a\x20\x96\xf1\xfc\x71\xbf\x58\xbd\xf4\x6e\xf9\xfc\x77\xd7\x80\x4e\xbf\xab\x3a\x00\xcc\x5e\xfa\x5a\x48\x13\xf3\x9e\xa1\x8c\x60\x2b\x3e\xb3\xd3\x7d\x9e\x8e\x76\x45\x74\x70\x46\x26\x51\x5e\x54\x1a\x94\x18\x81\xa4\x84\xab\x0e\x94\x9b\x5b\x5d\xc7\xe6\x53\x78\xd1\x1c\x4c\x35\xa3\x65\xb5\x7a\xc8\x0a\xba\x82\xab\x12\xa7\x2b\xa4\x1a\xf9\x6b\x55\x5f\x54\xa9\x7e\x11\xdb\x8e\xe2\xb7\x66\x38\xad\x2d\x63\x5c\x50\x99\x50\x49\x35\x25\x7e\xaf\x5a\xf3\xb3\x0d\x5b\x35\xe8\xae\xcf\x48\x9e\xcf\xdb\xd9\x1d\xc9\x69\xfd\xfa\xda\x7f\x4d\x6d\x77\xb8\x75\x57\x9e\xe5\x40\xb6\x37\x03\x87\x3b\xec\xc9\x28\xe6\x57\x77\x19\x69\x08\x1d\xbe\xcd\x3d\xf1\xd2\xef\x5d\x2c\x91\xc0\x3e\xf2\x29\x9b\x93\xe4\x25\x9e\xa3\x63\x40\x38\xfd\xda\x0f\x26\xa8\xc0\xdc\xf9\xa0\xb2\xd1\x4b\x19\xdc\x6b\x6b\x15\x5a\xb3\x0a\x0f\x14\xb6\x48\xfd\xca\x2a\x7e\xc4\xe8\x83\x4c\x14\x40\xd2\x14\x6d\x5d\xa9\x3e\x91\xd3\x35\x40\x99\x6f\x5e\xec\x87\x35\x8b\x87\xc5\x44\xd2\xba\x46\x2a\x87\x5d\x06\xab\x85\x56\x00\x13\x0a\x0b\x75\x8f\xee\x44\x17\xe4\xd4\x6c\x5c\xbe\x10\x10\x69\x3d\x3f\x78\x3d\xc1\x36\xce\xe6\x47\x4c\x67\x31\x2c\x21\x5d\x26\xe9\xee\x9c\x21\x6b\x9d\x2d\x9d\xd4\xdc\x2f\xd6\xb8\x06\x35\x3e\x1b\x7c\x05\xa5\x55\x3f\x95\xbe\x66\x7e\xef\xad\xab\xb1\xd6\x3d\x7a\x5e\xb2\xe8\x0b\x57\x5b\x76\xbd\xbb\x29\x15\xd9\xa7\x2e\x62\xf8\xe0\x4f\x2a\x1f\x16\x13\x46\x95\x33\x6b\xe8\x82\x73\x25\x86\x07\x42\xc5\xe6\x30\x6e\x27\xea\xbd\x27\x9c\xe0\xe1\xe6\x2d\x12\xcb\x95\x39\xfc\x4f\x2d\x7d\x66\x86\x07\x67\x94\xaa\xc3\x01\xaa\xe5\xe0\xfc\x4b\xe7\x98\x54\x69\xff\x0a\x6c\xe7\x4e\x0b\xea\xe6\x98\x21\xb5\x38\x63\x4b\x1a\x47\x68\x47\xd3\x97\x37\x54\xfc\x79\x5e\xba\x61\xcd\xef\x97\x79\x8d\xb6\x1e\x1a\xf6\xb4\xde\x94\x84\xaf\x49\x43\xb3\x26\x94\x7e\xfc\xd9\x35\x6d\xdf\x1c\x0e\xe5\x3e\xf2\xb6\xb5\xdf\x8e\xe1\xfa\xad\x11\xf4\x37\x52\x0f\x48\x8d\x9c\x0f\x31\x10\x2e\x1d\x1b\xce\xa2\x34\x32\xf4\x89\x6a\x3e\xd2\x90\x2c\x7c\x79\xa1\x54\x6d\xab\x5f\x09\xde\x51\xa5\x0e\xb7\x77\x71\xda\x1c\x18\x65\x8c\xc9\xef\x6a\x1a\x33\x33\x88\x0a\xf2\xe6\x52\x3e\x8f\xcb\x8f\x37\xc2\x15\xfb\x0d\xaf\x66\xd3\x8c\x74\xd1\xdc\xf6\x23\x2e\x1e\xb7\x68\x1f\x2d\x96\xd0\x28\x4b\x05\xcf\xee\x39\x6f\x53\xb1\xe8\x01\x46\xcd\xc9\x44\x69\x90\x2e\xb7\x60\xbe\xe6\xd3\x37\x15\x68\x15\x19\xc5\x84\x2c\xd4\xfa\xaa\xe1\x6d\x3c\x74\xb4\x92\xd6\xe4\xdf\xa2\x26\x36\xd7\x90\x4f\x4b\x24\x0b\x15\x92\x24\xa5\xde\xe3\xf7\x56\x5a\x23\xfd\x96\x48\xea\xec\xbc\xef\x3e\xd5\x36\xca\xc7\xde\x0a\x31\xdc\xde\xe8\xfe\x26\x3a\xaf\x3d\xc2\xd0\x47\xbd\x97\x6b\x61\x6b\x7f\xda\x8a\x43\xb8\xc7\xc4\x66\xdf\x47\xb0\x68\x72\xec\x80\x7a\x3b\x7c\x54\xba\xe7\xec\x99\x25\x55\xf1\x50\xdd\xe5\x0a\xe2\x9a\x8b\xc8\x42\xa0\xd9\x4b\x33\xc6\xa6\x4d\x76\x9e\x80\x0f\x15\x6e\x8b\xb3\xdf\xd2\x5a\xfe\x26\x35\xc8\x0b\x9b\x55\xf3\x03\xd6\x4b\xc5\x01\x5f\x36\x55\xcf\x16\x09\x30\xef\x3a\x5a\x5f\xfd\xbc\x9c\xdc\xa7\xe3\x96\x97\xec\x70\xae\x85\x67\x54\x3e\xf0\xf2\x27\xb4\xfa\x4c\x45\x34\xa5\x22\x3b\xca\xe7\x82\x59\xbc\x57\xa2\xf5\x58\xe0\xd6\xa0\x0d\xfd\xa9\x75\x81\xae\xca\xe7\x77\xa6\x49\xdc\xe9\xbb\xde\x46\x97\x69\x52\x91\x4e\xe6\xbb\xfb\x53\x7e\xa6\xc9\xa3\x1a\x5e\x39\x31\xa1\x32\xd2\x85\x2a\xba\xc8\xab\x95\x89\x2d\xf1\x6c\xd9\xed\x55\x52\x65\x12\x05\xef\xe4\x3f\xe5\x66\x72\x89\x72\x72\xaf\xa7\xc7\xe8\x8a\x68\x30\x72\x60\x19\x2f\x39\x28\x13\x31\xe1\x8d\x04\x9a\xfa\x4e\x7d\x87\xe0\x4e\x8c\xd9\x7b\x49\x56\x5f\xe6\x43\x4e\xd0\xef\x22\xfd\xbb\xe9\x03\xbd\xae\xfa\x35\x54\x95\x95\xe2\xa5\xfb\xc3\x47\xc4\x50\xae\xe7\xd1\x46\x9f\xef\xd4\x30\x94\x13\x4b\x42\x9f\xee\xdb\x44\xca\x7f\x1b\xb0\x7d\xbc\xdb\x71\xbd\x32\x7b\x9b\x16\x50\xb2\x67\x2d\xc6\x6e\xb7\x51\xb5\x53\x38\x30\x49\x72\x08\x1d\x22\x2f\xd0\x87\xf1\xd7\x95\xb0\x22\x0d\x8a\x6b\x92\xb8\x38\x17\xd5\x07\x2d\x5b\xd7\xdb\xf6\x90\x4b\x54\x20\x6b\xb8\x5b\xa7\x6e\x08\xe1\x9b\x55\x6f\xb6\x1a\x0c\x6e\x7f\x68\xe8\x37\x7b\xd6\xec\xe7\xfb\xfb\x36\xbb\xb2\x5a\xa3\xbd\x76\xd4\xdc\xfc\x89\x5a\x67\xac\xe9\xed\xe4\x32\x56\x4a\x44\xf6\x9a\x91\x56\xeb\x33\x82\x98\x08\xfc\x91\xa5\xde\x32\x73\xd8\x01\x5d\xbb\x09\x86\x81\xfa\x7a\x3d\xb4\x05\xa9\x73\x42\x95\xaa\x62\xc9\xf5\x78\xb9\xd6\x61\x2a\x33\xa5\xfa\x74\x91\x6a\x7a\x1a\x34\x86\xed\x55\x8d\xc5\x46\x45\x26\x53\x83\x39\xa6\x72\x5c\xa9\x99\x2f\x36\x58\xe9\x4a\xac\xf6\xfe\x91\xca\xf8\xe1\x0d\x06\xb2\xc6\x47\xfd\x4b\xd1\x07\x53\x8a\xbd\x16\x92\x08\x18\xa7\x24\xdf\x29\xba\xd6\x87\xe4\x99\xeb\x98\x91\xf3\x92\x53\xe5\x8a\x62\x09\xf9\x06\x72\x59\x33\xd7\x92\x24\x31\x0c\x13\x50\x66\x4f\xca\x13\xdf\xb9\xc0\x95\xc1\x18\xa1\xd5\x6e\x55\x86\xa6\x5a\xbe\x6e\x39\xaa\xe2\x2c\xcb\x2d\x73\x75\xd7\xc1\x17\x99\x0f\x25\xce\xd4\xcd\x80\xa4\x8b\x77\x4d\xa0\x15\xe7\x7b\x46\xb0\xe2\x99\xa3\x6e\xb3\xd5\xea\x94\x0c\x7c\xb7\x51\xc8\x13\x8a\xf4\x0d\x96\x05\x6b\x13\x53\xe6\x5e\x3e\x9a\x19\x2f\x4d\x70\x15\x9a\xaa\x86\xdb\x7b\x13\x30\x5b\xe3\x1c\xc5\x75\x4a\x0f\xb3\x5a\xf9\x34\xbf\xcf\xc4\x47\x76\x51\xce\x60\xf8\xac\xeb\x95\xd6\x29\x96\xa6\x9b\x88\xdf\x87\x28\x67\xb4\x75\xf5\xf8\x54\x69\x3a\xa2\x9b\x98\x86\x51\xdb\xec\x31\xc1\x32\xe7\x79\x54\xad\x45\x07\x42\x9c\x7b\x6a\xeb\xb7\xfb\x5e\x50\xa8\x0b\x85\x87\x4b\x1d\xfc\xe1\x1b\xeb\x09\x32\x52\xf7\xfd\x9a\x34\x52\xe8\xc8\x05\x4b\xaa\xda\xb9\x7d\x26\xdc\x73\x85\x91\x6f\x1c\x4f\x09\x33\xd9\x85\x8c\x13\x3f\x58\x97\x54\x95\xdc\xc6\x4e\x37\x08\x9e\x2c\x8d\xb7\xc5\x73\x52\x0e\x87\x76\xe3\x5d\x0a\x56\x2f\x5b\x37\x5d\xdb\x7f\x14\xb8\x73\x3f\x1d\x0b\x6f\x59\x6e\x8c\xba\x92\x2d\x9e\x67\x44\x31\xdb\x6f\x5d\x98\x2c\x8a\xcd\x0a\xab\x70\xe3\xaf\xdd\xbb\xc7\x09\x1f\x7c\x7c\x62\x3a\xfa\xa4\x57\x33\xae\xad\x37\xc9\xe3\xbd\xdb\xfa\x5b\xdf\xa1\x23\xe1\xec\x2f\x8b\x3f\x44\xb3\x73\xd9\x8f\xfa\x75\x66\xdf\xdd\xad\x65\x42\x36\xd3\xd8\x5d\xea\xca\x78\x53\x27\xad\x22\xbc\xdf\xde\x75\x2f\x88\xfe\x33\xce\xc9\x1d\x9b\x98\xd2\xeb\xd6\x9e\x77\x21\x6c\x01\x02\x9d\x91\xc4\x7a\x71\x09\x29\xce\xff\x25\x6d\xaf\x28\xc8\xd8\x0d\xe9\xbe\xa8\x59\x8c\xa9\xbb\x19\x38\x2d\xc9\x1d\xc4\xf8\x43\x94\xa3\x65\xae\xd7\x88\xef\x2e\xc3\xaf\x4d\x4e\x61\x52\x12\xa5\x7c\x40\x25\x39\xb8\x43\xd4\xb8\x43\x20\xcc\x2e\x60\x9e\x4f\xc1\x59\xcc\x7f\x74\xdd\xf4\x41\x97\xfb\x9c\x8a\x1e\xbf\x96\xbb\x7b\x90\x69\xed\x2f\x9d\xac\x14\x11\x32\x17\x75\xab\xfa\x96\xbe\xf9\xba\xac\x03\x52\x06\xbb\xfb\xc4\xe6\xeb\x32\xbd\xe7\xa3\xda\xfc\x45\xca\xf8\xad\xa0\x5c\x34\xcd\xf5\xb5\x39\x76\xc5\xb5\x0e\x15\xd2\x4e\xa3\xcb\x20\x4a\x33\xf7\xbe\xed\xd2\x0c\x69\xaf\x57\x22\x11\x0a\x91\xaf\x38\x17\x97\x06\xfd\x5a\x74\x88\xe4\x2a\x9e\xa5\x0b\x96\xdb\x12\x6f\x58\x0f\x15\xa7\x74\x54\x91\x82\xbf\xe1\xe9\x5b\xbe\x53\xa4\x18\x31\x31\x12\xcb\x8c\xa6\xff\xfd\x36\x7e\xa5\xb3\x23\x48\x55\x4f\x7b\x9e\x46\xdd\x3f\xc1\x9c\x7d\x68\x35\x51\x08\x06\xa5\x60\xba\x90\xfa\x27\x2e\x88\xef\xea\xe7\xa3\x4e\xee\x87\x6d\x79\x0c\x5a\xc4\xf2\x9b\xd3\xec\xeb\xaf\xae\x72\x6f\xd1\x35\x46\x48\x56\x18\x80\x82\xa0\xae\x95\x22\x3f\x9e\x4e\xa5\x24\x5e\x61\x19\xf6\x84\x17\x47\x65\x74\x4c\x5f\x50\x34\xf3\x9c\xcb\x22\x4e\x9a\x77\x7e\xa2\x47\xa5\x26\xd5\x9a\x3c\x1d\x92\xe2\x6c\x6c\xbd\xfb\x40\x63\x70\x96\x68\xd9\x67\xea\x4e\xd3\xea\x46\x74\x4f\xba\x58\x4e\xba\x92\xef\x22\xbc\xc5\xbf\xb4\x69\x4a\x9c\x3b\x9e\x27\xb6\x2b\xef\x3d\x9c\x03\x4f\x55\xab\x4a\x16\x3b\x63\xe1\xdf\x9f\x12\xd9\x73\xf1\xb0\x41\x65\x86\x73\x23\x32\x41\x48\x21\x4b\xea\xe3\xef\xb7\x1b\x09\xec\x59\x0f\xb8\x36\x2a\x89\x42\x8e\x79\x6c\x5a\xec\xf6\x1a\x22\xe7\x7c\x7b\xeb\xa2\xb8\xdf\x89\x99\x72\x49\x8a\x5f\xa4\x60\xb3\x0c\x26\xe2\xce\xfc\x3a\x38\xe9\x9b\x17\x34\xce\xf6\xcb\x57\x48\x3b\x5b\x85\xd0\x20\xfa\xa0\x5d\x90\x67\xcd\x3b\x6c\x2b\xb6\x0f\x5d\xc8\x35\x0b\xab\x29\x1b\x30\x19\x7d\x54\xb2\xf4\xc5\xb6\x59\x7b\x1e\xd5\xda\xaf\x71\xae\xe5\x28\x62\xd6\xef\x01\xd9\xe0\x8c\x40\x42\xc2\x98\xca\xa1\xe3\x95\x18\x04\x3a\x20\x42\xf2\xd2\x6e\x7f\x69\x13\x97\xfb\x81\x81\x0e\x47\xa6\xaa\xdc\xb5\x35\x57\x47\xa8\x7e\xd1\xe8\xd0\xb3\x0e\xcd\x44\xb4\x2d\x7e\x82\xed\x99\xbe\x6b\xff\xf7\xe4\x51\xbb\x7a\x95\x8e\x94\xc3\x93\x77\xfb\x54\x63\x92\xa5\x0a\x83\x01\x00\x12\x64\x6d\x73\xb2\x23\x8e\x8c\x47\x38\x90\xf0\x38\x32\x1e\xc8\x41\x61\x4a\x32\x50\x79\x19\x18\xdc\x04\xa6\x80\x90\x93\x43\xc8\x29\x4a\x41\xa1\x08\x28\x94\x06\x4b\x7c\xfe\xbf\x04\xee\x9e\x8e\x44\xa7\xc0\xff\x5f\x90\xe2\xa6\x40\x07\x00\xd0\x39\x16\xf8\x78\x3a\x91\xfd\x71\x24\x3c\xd0\x77\xc7\x11\xf0\x18\x1c\x81\xe8\xe0\x2a\xa2\x24\xab\x2c\xab\x22\x03\x17\x91\x83\xc2\x14\x64\xa0\x8a\x32\x30\x39\x91\xeb\x30\x25\x11\x67\x32\xd9\x0b\x01\x81\xf8\xfb\xfb\xcb\x12\x8f\x69\xf7\x7f\x68\x59\x4f\x12\xe1\x73\xf4\x2a\x00\x00\x9c\x39\x76\x34\x71\xf6\x75\xb7\x47\x20\xb4\x3c\x1d\x7c\xdd\xf1\x1e\x64\x04\x02\x8b\x23\xe0\x7d\x00\xac\xe4\xa8\x0d\xf2\x1f\xcc\x3f\x33\x11\x08\x67\x3c\x91\xe0\x4c\x06\x30\xb8\xdc\x49\x40\x8a\x02\x00\x08\xfc\x5f\xc6\x8c\xe8\x48\x76\x3e\x46\x26\x2a\x2e\xb0\x00\x00\xce\xfe\x0b\xc1\x10\xdd\xf1\xe4\x40\x2f\x3c\xf8\x67\x2b\x88\x97\x07\x41\xa3\xee\xa6\xe1\x7f\xf8\x60\x4c\x88\xee\x78\x00\x53\x50\x54\x91\x87\x2b\xcb\x2b\x28\x9a\x2d\xd4\x1c\xdf\x16\x27\xff\x85\xdc\x20\x06\xe1\x01\x14\x85\x4a\x7b\xac\xbe\x02\x00\xb8\xf9\xaf\x2f\x53\x63\x7d\xe0\x44\x74\xc3\x23\x20\x10\x88\xbb\x07\xd9\xcd\x93\x00\x71\xc2\xf9\x11\x1d\x3c\x3d\x7c\x20\xff\x93\x33\xc4\x09\x0f\xc7\xc3\x15\x94\x71\x30\x39\x39\x79\x79\x47\x47\x27\xbc\x93\x3c\xce\xde\x51\x19\x86\x53\x84\xc1\xf0\xf2\x8e\x8a\xb2\x44\x07\x4f\x59\x2f\x0f\xc2\x33\xc7\xb8\xfe\xe3\xc0\xf4\xb5\x0d\xb5\xaa\x50\x76\x94\xff\x0a\x00\x00\xff\xff\x4f\xb0\x83\xb1\xf5\x0c\x00\x00") + +func staticImgCowyoAndroidIcon72x72PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAndroidIcon72x72Png, + "static/img/cowyo/android-icon-72x72.png", + ) +} + +func staticImgCowyoAndroidIcon72x72Png() (*asset, error) { + bytes, err := staticImgCowyoAndroidIcon72x72PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/android-icon-72x72.png", size: 3317, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAndroidIcon96x96Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x97\x77\x38\x15\xee\xe3\xfe\x1f\x2b\x23\x33\x5b\x99\x95\x55\x38\xc7\x76\xc8\xde\xe3\xd8\x5b\x71\x1c\x67\x58\xe7\xe0\x38\xf6\x8e\x50\x59\xf5\x0e\x25\x1c\xd9\x32\x42\x24\x24\xb2\x0e\x2a\xd9\x22\xa2\xec\x3d\x2a\xbb\x7e\x57\xef\x7f\x7e\x9f\xef\xe7\x7b\x7d\xff\xb8\xff\xba\x5f\xf7\xfd\x3c\xd7\x7d\x5d\xcf\x1f\x4f\xb2\x05\xdc\x80\x89\x81\x8f\x01\x00\xc0\x64\x64\xa8\x6b\x05\x00\x70\xfb\x2b\x3a\x2a\x00\xc0\x98\x7e\xe2\x5f\x83\x1a\xa3\x65\xa6\x05\x40\x6d\xda\xf9\x53\x04\x0d\x00\x80\x82\x60\x65\xa0\x0d\xaa\x3f\x5e\x5a\x05\x00\x08\x21\x0d\xad\xcc\x00\x08\x13\x05\x20\x26\x1e\x80\x63\x00\x40\xcc\x0a\x00\x44\x08\x00\x6b\x6e\x00\xc0\xb2\x01\xe0\xf6\x7b\xda\x6c\xa9\x06\x00\xe5\x99\x85\xa9\x8d\xde\x9f\x3f\x7f\xc6\xc7\xc7\xab\xaa\xaa\x96\x96\x96\xce\xce\xce\x3e\x7e\xfc\xf8\xe2\xc5\x8b\xf5\xf5\xf5\xef\xdf\xbf\x6b\x68\x68\xd0\xd3\xd3\xfb\xfb\xfb\x1f\x1d\x1d\x4d\x4f\x4f\xcb\xc9\xc9\x31\x32\x32\x46\x45\x45\x9d\x9c\x9c\x14\x14\x14\xd0\xd1\xd1\x01\x00\x14\x14\x14\xd6\xd6\xd6\x1a\x1a\x1a\x98\x99\x99\x25\x24\x24\x66\x66\x66\x7e\xfe\xfc\x69\x67\x67\xc7\xcf\xcf\xff\xf9\xf3\xe7\x87\x0f\x1f\x52\x53\x53\xd3\xd2\xd2\xe6\xe7\xe7\x0f\x0f\x0f\x9f\x9e\x9e\xfa\xf8\xf8\x38\x38\x38\x3c\x79\xf2\x84\x86\x86\x86\x92\x92\x32\x3d\x3d\x7d\x67\x67\xc7\xc0\xc0\xe0\xf2\xe5\xcb\x07\x07\x07\x37\x6f\xde\x44\x22\x91\x22\x22\x22\x0c\x0c\x0c\xa5\xa5\xa5\x8b\x8b\x8b\x10\x08\x04\x06\x83\xb1\xb2\xb2\x06\x04\x04\x74\x76\x76\xb2\xb3\xb3\xeb\xe9\xe9\xdd\xb8\x71\x83\x9b\x9b\xbb\xbf\xbf\xff\xce\x9d\x3b\x14\x14\x14\x4e\x4e\x4e\x3c\x3c\x3c\xcf\x9e\x3d\x0b\x09\x09\x09\x0e\x0e\x3e\x77\xee\x5c\x76\x76\xf6\xfe\xfe\xbe\x85\x85\x05\x1b\x1b\x5b\x49\x49\x89\xa2\xa2\xe2\x95\x2b\x57\xe6\xe7\xe7\x23\x22\x22\xce\x9f\x3f\xff\xeb\xd7\xaf\xad\xad\xad\xa9\xa9\xa9\xd9\xd9\xd9\x95\x95\x95\x8d\x8d\x8d\xdd\xdd\xdd\xd1\xd1\x51\x21\x21\x21\x28\x14\x6a\x6e\x6e\xce\xc9\xc9\x39\x30\x30\xe0\xed\xed\xcd\xc2\xc2\xd2\xd4\xd4\x34\x37\x37\xf7\xfb\xf7\xef\x1f\x3f\x7e\x2c\x2c\x2c\x14\x17\x17\x13\x89\x44\x2d\x2d\xad\x6b\xd7\xae\x09\x0a\x0a\x8a\x8a\x8a\x4a\x4b\x4b\xeb\xea\xea\x9a\x9a\x9a\xc6\xc4\xc4\x64\x65\x65\xd5\xd7\xd7\xff\xf3\xcf\x3f\x5e\x5e\x5e\x87\x87\x87\x58\x2c\x96\x89\x89\xa9\xae\xae\xae\xa5\xa5\xc5\xd3\xd3\x93\x8a\x8a\x0a\x8f\xc7\x2f\x2f\x2f\x37\x37\x37\xc7\xc5\xc5\x59\x5b\x5b\x73\x71\x71\x5d\xbc\x78\x51\x49\x49\xc9\xc3\xc3\x23\x33\x33\xf3\xc3\x87\x0f\xc7\xc7\xc7\xb5\xb5\xb5\x41\x41\x41\xad\xad\xad\x1c\x1c\x1c\xaa\xaa\xaa\x09\x09\x09\xef\xde\xbd\x1b\x1a\x1a\x8a\x8e\x8e\xbe\x70\xe1\x02\x1f\x1f\x9f\x98\x98\x98\xac\xac\xac\xa6\xa6\xa6\xba\xba\xba\xb2\xb2\xb2\x8c\x8c\x0c\x1c\x0e\x27\x91\x48\xe5\xe5\xe5\x45\x45\x45\xae\xae\xae\x35\x35\x35\xdb\xdb\xdb\xb7\x6f\xdf\x96\x94\x94\x34\x31\x31\xf1\xf3\xf3\xcb\xc8\xc8\xe8\xe8\xe8\xf8\xfa\xf5\xeb\xe6\xe6\xe6\xea\xea\xea\xb7\x6f\xdf\x06\x07\x07\x5f\xbd\x7a\x95\x9b\x9b\x9b\x94\x94\x84\x40\x20\x04\x04\x04\xaa\xab\xab\xdb\xdb\xdb\xdf\xbe\x7d\x8b\xc1\x60\xa4\xa4\xa4\x22\x23\x23\x5f\xbf\x7e\x6d\x68\x68\x68\x6c\x6c\x9c\x98\x98\x38\x36\x36\x56\x51\x51\x11\x16\x16\xd6\xd3\xd3\x93\x93\x93\x93\x9a\x9a\x6a\x65\x65\x85\x46\xa3\x79\x79\x79\xdb\xda\xda\x62\x63\x63\x51\x28\x94\x8b\x8b\xcb\xc8\xc8\x08\x81\x40\x10\x16\x16\xce\xcb\xcb\x6b\x6c\x6c\x0c\x0c\x0c\xc4\xe1\x70\xb7\x6e\xdd\xda\xdb\xdb\x9b\x98\x98\xe8\xeb\xeb\x4b\x4e\x4e\x7e\xfa\xf4\xa9\xaf\xaf\x6f\x59\x59\xd9\x97\x2f\x5f\x2e\x5d\xba\x74\xf7\xee\xdd\xeb\xd7\xaf\xdf\xbf\x7f\xff\xc1\x83\x07\xe2\xe2\xe2\xce\xce\xce\x95\x95\x95\x3a\x3a\x3a\xf6\xf6\xf6\xe1\xe1\xe1\x2a\x2a\x2a\x6f\xde\xbc\x51\x53\x53\xeb\xea\xea\x0a\x0d\x0d\x75\x73\x73\xeb\xee\xee\x4e\x4b\x4b\xb3\xb5\xb5\x8d\x8f\x8f\x7f\xfc\xf8\xb1\x8d\x8d\x0d\x99\x4c\xd6\xd6\xd6\xd6\xd7\xd7\xb7\xb4\xb4\x7c\xf9\xf2\xa5\xbb\xbb\xfb\xa3\x47\x8f\x8c\x8c\x8c\xae\x5e\xbd\x5a\x58\x58\x98\x92\x92\x32\x39\x39\xf9\xe9\xd3\xa7\xde\xde\x5e\x47\x47\xc7\x7b\xf7\xee\x99\x99\x99\x3d\x7f\xfe\x5c\x5e\x5e\x9e\xa4\xfa\x07\xfa\xf7\x05\xb9\x9b\x18\xe8\x82\x24\x1a\x7e\x43\x00\x00\xbd\x9f\xa1\x23\x01\x00\x60\xf8\xaf\xf4\xfb\xbc\xd5\x01\x38\xaf\x64\xa4\xab\x65\x83\x9d\xdd\x74\x0c\x75\xb0\xb6\xe7\x8a\xd6\xe6\xa0\x17\xef\xb9\xf4\xc8\x96\xdd\xd4\x3b\xcf\xd0\x86\x41\xbf\x70\x9c\xd6\xeb\x2e\x87\xb0\x2e\x1d\x89\x4e\xa7\x9d\x86\xe6\x9e\x66\x57\x53\xad\x82\x64\x19\x13\x43\xc3\xdd\xa2\x54\x4a\x7d\xfe\xa1\x46\x5c\x93\x8d\xe7\x0c\x77\x11\xd1\xb7\xd6\xeb\xd1\x38\xca\x87\x5f\x69\x14\x96\x7b\x14\xf6\xd5\x44\x9b\x92\x7a\x8f\xee\x54\xee\xab\xd2\xdb\xe8\x07\xfb\xb3\xaf\x97\xbf\x2c\x56\x1e\x20\x26\xff\x68\xb1\xdc\xf4\xf1\x51\xb5\x17\x2a\xf4\x56\x52\x65\xaf\x6b\xb9\x31\xd2\x51\x6b\xcd\xf9\x63\x65\x75\xf4\x1e\xea\x4a\x78\x7d\x81\xf9\x57\xb8\xed\xa7\x41\x5e\x17\x97\x8b\x12\x4a\xc1\x20\xed\x77\x6e\x85\x1b\xa0\x6d\xca\x4b\x19\xd5\x64\x01\xcb\x51\xb9\x12\xf9\x07\xcc\xa0\x75\x1d\x2d\x44\xbb\x4b\xb1\xd3\x91\x5b\xde\xee\x4d\x67\x35\xe7\x3b\xc9\xd1\x61\xa1\xdb\xf1\xe2\xa3\x1a\x6a\x62\xde\xf0\xd9\x60\x78\x58\xff\x04\xcb\xa4\x0b\x0f\x62\x42\x38\xc3\x2c\xf6\xa3\x03\x39\x31\x83\x91\x5f\xc1\x98\xba\xb0\xb7\x7d\xf2\x40\xd5\xb2\x43\x39\x6e\x5b\x10\xe8\xb4\x06\x8e\x86\x28\x9a\x66\xd3\x7d\x63\x81\x99\x47\xcd\x5d\xa1\x3b\x86\xf0\x88\x26\xae\x90\x2d\x58\xc3\x83\x1e\xc6\x44\x3b\x38\x23\x79\x10\xb7\xac\x54\xa7\x59\x27\x24\xe6\x67\x2e\x7b\x0c\x93\x1b\x59\xae\x4b\xf2\x95\xfc\xca\x3f\x07\x1d\x91\xb8\xcb\x7d\xde\x3f\xfa\x5e\x70\xec\x8a\xf8\xfe\x97\xbd\xf8\xae\x03\x0c\x63\xde\xaa\x86\x87\x5d\xfe\xe7\x59\x23\x81\x21\xc2\x52\xaa\x21\x9c\x57\x71\xbb\x70\x54\x3a\xd2\xd9\x5a\x2e\x9f\xc5\x73\x95\x97\xe4\xa0\x69\x59\xc9\xc8\x8a\xae\xe3\x8a\x0b\xb0\x8c\x6f\xa5\xb9\x86\xdf\x7d\x50\x3c\xe0\x52\x97\xad\x2c\x4f\x6b\x90\x91\xfb\x30\xe7\xc0\xdf\x63\x00\x5a\xb1\xaa\x42\x72\x48\xad\x02\x4b\x8c\xb9\x71\x09\x42\x2e\x71\x55\xef\x69\x83\x3a\x2a\xc6\xee\x8d\x98\x39\x3a\x7a\xab\xf7\xb1\x59\xd5\xf9\x97\x34\x43\xc2\x36\x9b\xd9\x7e\xe9\x75\xe7\x57\xe7\x3f\x95\x57\x84\x9b\xa6\xa7\x75\x27\xe4\xfb\x26\x61\xeb\x1e\xc6\xce\x2b\xd6\xce\x52\xdf\xcf\x44\x30\xcf\xd5\x5b\xbe\xa2\xb9\x1c\xeb\x18\x57\x3c\x48\x38\x67\x71\xb7\x04\xc7\x67\x7f\xdc\x56\xa5\xaf\xf9\x61\xe0\xd7\xfe\xbc\x61\xb3\x55\xd3\xd1\xb6\x73\xe3\x47\xf1\x75\xab\xbc\x49\x7b\x3b\xe1\xaa\x17\xd3\x25\xc4\x99\x36\xe4\xb2\x46\x10\xa7\xad\x71\x3a\x57\xe3\x19\x2e\x16\x1e\x98\xb0\x9e\xb7\x7b\xad\x24\xd4\x24\xdd\x3d\xeb\x91\xc7\x29\xfd\xb1\x76\x29\xb1\x94\xa7\xcd\x06\x81\xbb\x98\x58\xd6\xe7\x38\x0f\x87\xba\xa6\x08\x34\x07\xb7\x1f\xbe\x8f\x3c\x39\xd2\xec\xba\xa4\xdc\x64\x75\xb1\x4f\xae\x7e\x68\x75\xb8\x42\x87\x79\x3d\x1b\xac\x75\x1a\x64\x0a\x9e\x4d\xcd\x3b\xd4\xbe\x7a\x62\x26\x7d\x2f\x3f\x30\xa2\xf9\xd2\xfa\x3c\xe5\xec\xb1\x9f\x12\x84\xaf\xc2\x7a\xa8\x66\x29\x07\xcf\xc2\x18\x6c\xb7\xd6\xe8\xd0\xc7\xc5\x40\x6f\x91\xef\xe0\x8b\x7e\x68\x96\x4a\x7e\x55\x64\xc8\xe8\x9e\x11\x57\xa3\x71\xa5\x1a\x7b\xd6\xd7\x6a\x8d\xcd\xa7\xb2\xf7\xe3\xdb\xb4\x22\x3e\x89\x91\xc3\xb0\x93\x51\xfa\x70\x95\x03\xa2\x53\xff\x92\x8f\xb0\xbd\x51\x35\x7a\x6b\x4b\xd1\x2c\xcb\x29\xcb\xb7\x2c\xdd\x45\xa9\x57\x4c\xa3\x7c\xb0\x65\x79\x30\x75\xaf\xf8\x4e\x97\x6b\x7a\xcc\xca\xd3\x58\x68\x94\x46\xcc\xb7\x6f\x6c\x67\x47\x75\x5e\x11\x32\xa8\xb0\x28\x55\x2e\xa1\xd2\xc6\xd7\xe4\x9d\xed\x36\x3c\x63\x46\xc5\xf0\x80\x09\x79\x8c\x7e\x4f\x17\x74\xef\xd7\x5c\xf2\xdf\xbc\x58\x92\xc6\x54\xb7\xab\x62\x9c\x1e\x81\x93\xcf\x7e\xfe\xdb\x54\xa8\xba\x5b\x00\xfa\x78\x5b\x48\xd0\x4f\x65\xd8\x34\xc2\x75\xf0\x92\xcb\x1b\x73\x73\xdd\xca\xfe\xe1\x5e\xca\x31\xa2\xe8\x97\x26\x8f\x1f\x39\x49\x0f\x84\x57\x48\xe7\xa3\x0d\x21\xbc\x15\x47\xb5\xcc\xb4\x22\x73\xe8\x55\xc5\xb3\x54\xef\x93\x98\x05\x9f\x91\xb3\x24\x41\x9b\x78\x38\x87\xa3\x3c\x7d\x4d\x3e\x2e\x59\x2b\xd4\xb1\x3d\x5d\x84\xfd\x6e\x2b\x53\x17\xff\x1b\x7e\x3a\xf8\xcd\x3f\xbc\xb5\x50\x96\x2f\x28\x05\xde\x8f\x49\xb0\xfc\xf8\x8f\x46\xfe\xf8\xb1\x1f\x9a\x0f\xf2\x3a\xe2\x39\x64\xbe\x7b\xbf\xb6\x3f\x43\x68\x48\x87\xde\x25\x3a\xe9\xf6\x45\x1d\x33\xf2\x36\xf8\x79\xc4\x9f\xf6\x57\xba\xb2\x46\x7f\x76\x38\x34\x36\xd9\xc2\x7d\x2b\x70\x1d\x24\x2d\xbc\x93\x9e\x94\xf0\xf6\x77\xaf\xd8\x64\x77\xe9\x22\x87\x55\x88\x7d\x70\x65\x2f\x83\x51\x6c\x30\xa5\xe0\x37\xb6\xa2\x5f\x69\x9c\x2b\x4f\xdb\x5f\x8a\x09\xcf\x76\x1e\xbd\x2d\x22\xb6\x80\x44\x46\x31\x74\x7e\xbc\xaa\x35\x2f\xc1\x68\x12\x42\x07\x2f\x6e\xdd\x1a\xe0\xae\x3a\xa0\x10\x8a\x3f\xb9\xc1\x9d\xa3\x70\xc3\x2e\x8d\xa2\x8f\x2c\xaf\xe5\x12\xba\x31\xe4\x53\x56\xf9\x6e\x01\x37\xec\x3b\x8f\xfa\xd3\xea\xc2\xda\xa9\x15\x74\x61\x0e\x57\xcf\x9d\xd8\xeb\x3c\x53\x38\x74\xa9\xdb\x9a\x56\xcc\x7d\x2f\x92\xa8\xe9\x72\x5f\x57\xe7\x95\x64\x72\x62\xd6\x19\x07\x16\x12\x1d\xd0\xa3\xe2\xf9\x3c\x53\x2a\x0b\x9d\xf7\x8b\xa0\xed\x43\x36\xdc\xee\x7b\xf1\xf5\x34\x3a\x9f\xaf\x4a\xff\x5b\x0c\x9d\x64\xb6\xfd\x7a\x66\xaa\x95\xe0\xc5\x55\x91\xa7\x9b\xcb\x89\x42\xc2\x5f\x49\xad\x3f\xe3\x03\x4a\x66\xe0\x31\x0f\x87\xeb\xff\xfc\xd4\x8a\x3e\xff\xd8\x72\x2c\x32\x78\x23\x2c\x40\xb2\x8f\xaf\x47\xa4\x3f\x98\x2e\x28\x68\x6f\xf6\x7d\x1b\x99\xb2\xb8\xde\x70\xd8\x93\xd0\x43\xa9\xea\x95\xba\xef\xdf\x64\xab\x97\xa2\xcd\xcb\xd8\x25\xf0\xf0\x5c\x70\x55\x06\x32\xb3\xc0\x38\xa2\xd9\x90\xe2\x40\xf2\x85\x0e\xa1\x4e\x89\x5b\x63\xcb\x36\xc0\xb8\xb0\x1e\x3f\x4b\x0a\xaf\x17\x18\x74\x16\x78\x36\x2c\xf7\x2b\x3a\x68\xbe\x62\x4b\xd0\x49\x6b\xe7\xc0\x32\x56\x3e\x7e\x1d\x11\x4e\x75\xda\x88\xa8\xd8\xfb\xdd\xc6\x49\x2f\x4a\xb0\xb2\x35\x34\x33\xba\xfe\x7e\xce\xb8\x2c\x60\xda\xc4\x15\x16\xb7\x21\xc0\x28\x83\xa7\x8d\x16\xa0\x8d\x26\xa9\xea\x71\x16\x4a\xb5\x41\x7c\x27\xc4\x99\x8e\x4a\x97\xe4\xc8\x53\xb3\xcc\x34\xce\xfe\x8b\x84\x1f\x9d\x65\xcd\x79\xe1\xbf\x4f\x62\xe9\x97\x1e\x87\x2c\xe6\x89\xad\xd7\x55\xb8\x4e\x92\x62\x32\xda\x9e\x43\xb3\x47\xb4\x65\xdc\x0e\xf4\x47\xfa\x9f\xeb\xd4\x3a\x44\x6c\x22\x92\xab\x1e\x7f\x99\x5c\x7c\xf8\xda\x46\x9e\xb6\x40\x47\xad\x27\x84\xf6\x5b\xd0\xa7\xac\xc1\xe3\x0b\xc5\xc4\x4a\x93\x6a\xea\xcf\x3c\x12\x5d\xcb\xcb\xcb\xf7\x72\x6a\xb1\x82\x6f\x74\xfb\x23\x5d\xac\xe2\x5e\x93\x2e\x0d\x85\xcf\x59\xe8\x68\x17\x27\xb4\xa3\xda\x5b\xfd\x42\x14\x29\x1e\xe4\x14\x33\x71\x8f\x17\x3a\x74\x49\xad\x89\x42\x10\x16\x3f\xaf\xcd\x91\x16\x88\x27\x9d\x3b\x4f\xba\x06\xa9\x2c\xca\x18\x76\x28\xce\xca\x87\xe2\x44\x79\x8f\x68\xf7\x72\x8b\xaa\xc8\x55\xb6\xc2\x6f\x5c\x49\x16\x22\xc7\xdd\x3c\xa9\xef\x6e\xa1\x0a\x68\x5b\xfa\xcb\x2c\x6a\x9c\x1e\xbc\x2f\x6a\xf4\x12\x8d\xa4\x09\x52\xd1\x9c\x7b\xca\x73\x10\x16\x69\x38\xe6\xf3\x72\x99\x2a\x3a\xab\x60\xd1\xed\x86\x45\xcc\xf0\x6f\x4f\xa4\x68\xf2\xe4\x0b\x89\xd0\x78\x1e\xae\x3a\xec\x35\x3a\x0d\x2a\xe2\x77\xf5\xb2\x1a\xa8\xfa\x2e\x13\x13\x25\xbc\x6c\xf6\xf2\x76\x38\x90\xb3\xf3\x86\x69\xce\x11\xed\xa9\xb7\x70\x2f\x39\x47\x97\x3a\xbf\xa3\xbf\xac\xde\xde\x63\x2a\x7e\x7a\x0a\x99\xe3\xcd\xf8\x70\xc7\x25\x45\xb4\x90\xdf\x29\xb7\xa4\xaa\xf2\xfd\x4e\xca\x33\xca\xfd\x0b\xc2\x11\x9f\x23\xde\xe0\x06\x2c\xe8\x4a\x7f\xef\x0e\xc7\xe4\x4c\xb8\xdb\xdf\x46\xc0\x83\x47\xf9\xef\x88\x7e\x75\xf9\x5c\x81\xdf\x43\x1f\xa6\x30\xdd\x4a\x95\x6f\x5d\x1e\xf9\xd6\xb5\x50\x6e\x64\x51\x25\x33\x99\x16\x30\x8f\xf2\xaa\xef\x37\xd8\xa7\xae\x7e\xd3\xf3\x2e\xb5\x50\xde\xfa\xc0\xdf\x9b\x61\x36\xdd\xb7\x27\x45\x80\xe7\x17\x55\x2c\x0b\x56\x31\x7a\x50\x4e\xb3\x6b\x4d\xca\xb6\x91\xb1\x78\x65\xdd\xec\x84\x65\x95\xdd\x22\x0b\x61\x3b\x41\x3e\x3c\xad\x50\xa0\xc1\x58\x9e\xbb\x72\xc3\x74\x0b\x74\x71\x59\xd7\x63\x6c\x8a\x0b\x0e\x23\x85\x66\x35\x0f\xa2\x63\xa9\x4e\xf4\x2a\x92\xd9\x94\x71\xb6\xe9\x79\xe3\xc5\x0f\xae\x87\x3a\x11\x93\x08\xfe\x2b\xc4\x71\xc1\xec\xef\x72\xa3\xba\x51\x13\x3c\x95\xb6\x35\x82\x63\x6c\xed\x91\xe1\x63\xe4\x72\x33\x6b\x12\x2b\xb4\xbc\xc0\x45\x89\xe9\x4e\x50\x1e\x1f\xaa\x81\x22\x5b\x88\xeb\xf5\x41\x8a\x52\x95\x44\x99\xca\x47\xea\xd2\xc7\xb8\xe6\x4c\x73\xd9\x1f\xd5\xb9\x39\x92\xa6\x84\x31\xd1\xcd\xab\xfd\x61\x8f\xbe\x17\x95\x54\xd2\x33\x75\x88\xcb\xc9\x62\x5c\x23\xfc\xb0\x83\x79\xd7\xc2\x4f\xd2\xbd\x13\x55\x3d\x8e\x72\x64\x7d\x88\xeb\x46\xc6\xe3\x7e\x18\xe4\x95\x47\x37\x9a\x7c\x84\x74\x2f\xe3\x96\x8f\xc5\xcc\x45\xaf\xb9\xff\xec\x3b\xf9\x50\x69\x2c\xb0\xb7\x9d\x57\x44\xf5\xfd\x42\xc3\x93\x64\x65\x5d\xda\xa7\x73\xa2\x75\x16\xb7\xcc\x60\x68\x36\x6b\x35\x92\xdb\x98\x53\x71\x01\x81\xd5\x40\xc3\xd9\xbd\x27\x91\x67\x6a\x16\xff\x26\xb7\x8c\x2f\x93\x7d\x7f\x39\x4e\xe9\x33\xc4\x09\xe9\xa8\x98\x20\xab\xf0\x85\xb9\xd2\x89\xf8\xdc\xea\x8a\x0d\xe6\xe4\xe6\x7b\xd5\xab\xd8\x04\xe8\x86\xd7\xea\x73\xbd\x1c\xc5\xdc\xa8\x28\x8d\x0b\xfb\x44\x8a\xb7\xdd\xf2\x9c\xf2\x2f\x10\x22\x4f\x0a\x4a\x7a\x33\xde\x5b\x66\x71\x9d\x9f\x42\xa3\x8b\x4a\xad\x53\x17\x7f\x52\x53\xce\x7e\xca\x48\xdd\x01\xf6\xcc\xa4\x3e\xaf\xf8\xef\x10\x1d\x5e\x2f\xb6\xfb\x52\x73\x84\xe2\x19\x86\x17\xf4\x36\x5c\x45\x54\xa3\x9c\xcb\x13\xc3\x48\x85\x6e\x4b\xe8\x8c\xb1\xae\x1d\xc0\x4c\x59\xc7\xad\xd4\x5e\x66\x86\x97\x61\xfd\xe1\x46\x71\xf9\x55\x4d\x2b\x93\x02\xc0\xbc\x15\xeb\x1f\xc5\xa6\xfb\xda\x34\x9c\x0d\xca\x39\x1e\x54\xda\x9d\x1c\x96\x3c\x12\x68\x3c\x8c\x4e\x52\x03\xc8\x96\xe1\x6f\xa7\xd4\x87\x82\x0d\xae\xea\x3d\xc6\x54\xf9\x3a\x81\x3c\xfc\x84\x69\x5b\x1d\xde\x5d\xd0\xfb\xb6\xa4\x33\xf1\xee\xf1\x9a\xc2\xb8\xf8\x61\x1a\xb5\xec\x4a\xb6\xe5\x6b\x25\x6a\x67\xa2\xd8\xf1\xb9\xc7\x6c\xb9\x7e\xaf\x9c\xa8\x7b\xa7\x86\x78\x79\x10\x27\x9c\xa3\x09\x9f\xe6\xa6\x25\xee\x74\x8e\x93\x7b\x2f\x08\xdc\x0e\x53\x60\x6a\xb3\x60\x15\x6c\x30\x8e\x3d\x95\xaf\xc2\x72\x84\x30\x8e\x86\x57\x5a\xc5\xe4\x2e\xbe\x63\x18\x60\xe6\xa8\x65\x16\xed\x1d\x49\x47\x9f\x7b\x3e\xe6\x77\xbd\x43\xc4\xde\x97\x71\xa3\x94\xdb\xca\x49\x53\xf5\xa2\xcb\x05\xa9\x80\x48\x72\xfc\x79\x35\xbe\xe1\xf7\x40\xc1\xeb\x99\x65\x66\xf6\x02\xbb\xa6\x1a\x19\x76\xc4\x13\x44\x7b\xc8\x85\xf7\xa6\x2a\x8d\x4d\x4a\xad\x7a\xac\x47\xcf\xee\x2e\xa5\x40\xbf\x2b\x83\xa8\x5e\x8c\xf4\xa1\xf1\x66\xe8\x68\x7b\x47\x39\xd8\xa6\x1c\x62\xf8\x36\x03\x7b\x6e\x34\x95\x7b\xad\x05\x15\x4a\x52\x6c\x6d\x65\x9b\x17\xe6\xbc\xf3\xe8\xa6\x58\xd2\xed\xf1\xfe\x5e\x87\xda\x76\x1f\x52\x57\xef\x1f\x65\x5f\xf8\x4b\xfa\xd6\x5e\x97\x49\xad\x6e\x41\xa5\x03\xe6\x48\xd5\xcf\xed\x09\x03\x64\xea\xd0\xf3\xea\x8b\xaf\x9a\x9c\x98\xa7\x74\x6f\xbd\xec\xc2\xdf\x69\xb0\x6b\xe6\x4d\xae\x4e\xf0\x80\x61\xe4\x6d\x2e\xc7\xae\x41\x0b\x1f\x12\xb3\x6d\x6d\xd4\x12\x6d\x0e\x25\xbc\xdc\xf2\x60\x9d\xbe\xcf\xd3\x62\xd6\xa2\xf7\xb7\x91\x3f\x31\x64\x75\x64\x44\x82\x3e\x4b\xb9\xcd\x5a\xf3\xbd\x56\x3b\xa9\xbb\x06\x19\xf0\xa3\xfe\xb0\xa3\x6c\x35\x8e\x1d\x41\x0b\x9b\xab\x7e\x74\xd8\x30\x25\xd9\x7c\x9d\x1d\xfa\xd6\xac\x0d\xae\x85\x89\x60\x4d\x8a\xc6\x4e\xde\x92\xe2\xa5\xce\x14\x8f\xf6\xaf\x4f\x32\x79\x46\xc2\xe3\x46\xde\x79\x35\xd5\x42\x41\x0f\xb9\x32\x33\xd5\xed\xc4\x75\x67\x67\x99\xd5\x64\x40\x92\x22\xdf\x43\xed\xfd\xa6\x0a\x78\xf5\xce\x3c\xce\x9d\x91\x7b\xcb\xc1\xb2\x96\xa7\x83\x00\x8a\xe3\x2b\xe3\x4c\x18\x62\x95\x71\x74\x55\x75\x1c\x31\xc4\x86\x49\xb8\xf4\x9c\xd0\xfb\x8d\xa4\x88\x8a\x98\x22\x69\x24\xaf\xa2\x00\x2b\xb2\xc9\xab\x31\xa3\xfd\x58\xe3\x93\x3a\x0d\x29\xb8\x9b\xff\x14\x86\xb6\xbf\x1f\x9f\x5e\xdb\x7e\x10\x5c\x68\x10\xd9\x45\x11\xfd\x0f\xa5\xe4\x27\xd5\x08\x97\xde\x85\x42\x81\x8b\x0d\xb7\x4c\x32\x7a\x05\x96\x75\x66\xbc\xcf\xea\x8f\xbd\xdc\xcc\x4d\x7b\x43\x9c\xc1\xb3\x69\xc2\x2e\x9a\xab\xc6\x35\x4e\x84\xf3\x43\x23\xd8\x4b\xe3\xdb\xe2\xb8\xc4\x22\x49\x72\x30\x8e\x8c\x09\xc7\xaa\x2c\x3a\x6a\x7e\xc8\x4f\x4f\x53\xcb\xb4\x7f\xd2\x32\x1d\x52\xbc\x1e\xf4\x6b\x66\xc6\x70\x5a\xbc\xc1\x16\x45\xb4\xa6\x83\x6b\x7f\xba\xf9\xe3\x5a\xb0\xbc\x82\x41\x28\x8f\x91\x94\x85\x26\xae\x57\xa3\xf6\x17\xe5\x69\xea\xd1\x09\xd7\xb8\x48\xbb\xea\x05\xb1\x1f\xe2\x03\x71\x3e\x17\x09\xa1\x66\xb6\x0f\x68\x26\x4a\x82\x5d\x62\xe7\x64\x29\xc6\x96\xf3\xd1\x51\xf5\xcb\xf7\xf4\x37\xca\x6b\x04\xc7\xf0\x1e\x5c\xe2\x62\xc3\xde\x75\x53\xfa\x11\x0c\xcc\x4d\xf5\x10\x32\xb5\x57\x86\xe1\xc2\xfd\xdb\x7b\x05\x78\x31\xb2\xc1\xcf\xa1\x4c\xed\xab\x2f\xe3\x65\x4f\x22\x96\xc9\x06\x2d\x3f\xa6\x3b\xee\x63\x5a\x0c\xd5\x4e\x88\x65\x14\x62\x3d\x63\x0c\x30\xe9\x29\xa0\x32\x60\x99\x18\x18\x4b\x51\xc1\xac\x37\xf4\x47\xf8\x94\xa6\x3a\xc8\x8f\x56\x51\x69\xa8\x02\x00\x70\x35\x50\xcf\x21\xd0\x03\x11\x88\x82\x21\x03\x50\x88\x40\x14\x90\x85\x40\x15\xa5\x20\x72\x52\x50\x15\x1b\xa8\x3c\x4c\x56\x16\x26\xab\x70\x0d\x02\x81\x41\x20\x73\xd0\xfb\x6f\xfe\x47\xc0\x17\xef\xe1\x89\x0e\xfd\xbf\x03\x19\x3e\xf2\x14\x00\x00\xfd\xbf\x01\x02\x1e\x1d\x18\x8c\x08\x40\x01\x23\x5f\x04\x06\x65\x86\xc0\x78\x22\xbd\x85\x14\xa5\x95\xa4\x95\xa5\x54\x84\x64\x21\x50\x79\x29\x88\x82\x14\x54\x56\xc8\x12\xaa\x28\x84\x0d\x0c\xf4\x83\xc9\xc8\x04\x07\x07\x4b\x7b\xfe\xa5\x7d\xff\xa5\xa5\xf1\x01\x98\x2f\x77\x36\x01\x00\x80\xe7\x6f\xa3\x0d\x96\xe8\xeb\x0e\x83\xe9\xe2\x91\x44\x5f\x14\x2e\x10\x06\xb3\x40\x60\x50\x04\x00\x2d\xfd\xd3\x22\xf3\x5f\xcc\xbf\x67\xc2\x60\x58\x94\x27\x06\x1b\x08\xa0\x2a\xb2\x2c\x20\x20\x01\x00\xc0\xfd\xbf\x19\x7b\x4f\x8f\x40\xec\x5f\x64\xa4\x52\xf8\xef\x47\x9a\xf7\x3f\x10\x33\x4f\x5f\x54\x60\xa8\x1f\x0a\xfc\x7b\x2b\x19\x3f\x1c\x46\xa3\xce\x0e\xfe\x5f\x3d\x66\x36\x9e\xbe\x28\x00\x95\x57\x50\x96\x53\x51\x92\x93\x57\xb0\x5f\x7c\x61\x05\x00\x60\xf9\x0f\xc4\xda\x33\x0c\x05\x20\xda\xda\xff\x3c\x53\xdf\x00\x00\xd8\xfd\x87\x65\x6b\x65\x04\xd0\x9e\x3e\x28\x98\x8c\x8c\x8c\x2f\x2e\xd0\x07\x8f\x91\x41\x23\x82\x3c\x91\x78\x1c\x41\xe6\xff\xef\x2c\x83\x46\xa9\xa0\x54\xe4\x95\x10\x50\x59\x59\x39\x39\x0f\x0f\x34\x0a\x2d\x87\x70\xf7\x50\x82\x22\x14\xa0\x50\x94\x9c\x87\x82\xb4\x27\x12\x2f\xed\x87\xc3\xb4\x7a\x24\xf7\xfd\x1d\xcc\x48\x0f\xae\x5b\xad\xed\x16\xf7\xff\x02\x00\x00\xff\xff\x29\xe2\xb4\xa5\xc8\x10\x00\x00") + +func staticImgCowyoAndroidIcon96x96PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAndroidIcon96x96Png, + "static/img/cowyo/android-icon-96x96.png", + ) +} + +func staticImgCowyoAndroidIcon96x96Png() (*asset, error) { + bytes, err := staticImgCowyoAndroidIcon96x96PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/android-icon-96x96.png", size: 4296, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAppleIcon114x114Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x57\x34\xdc\x7d\xbf\xc5\xff\x06\x89\x1a\x84\x68\x51\x46\x4f\xd4\x31\xfa\x10\xbd\xf7\x32\x3a\xc1\x30\xcc\xe8\x65\x10\x11\x0c\xc2\x68\xd1\x89\x12\xa2\x13\x21\x7a\x90\xe8\x5d\x94\xe8\x3d\x4a\xa2\x47\x4b\x22\x3a\x39\x2b\xcf\xcd\x79\xce\x7b\xd6\x7b\xb1\xaf\x7e\x9f\xbd\x7f\x7b\xed\xb5\xbe\xd1\xfa\xba\x6a\xe4\x24\x8c\x24\x00\x00\x90\x6b\xa8\x2b\x1b\x02\x00\xe0\xfd\x57\x44\xf8\x00\x00\x34\xe1\xfb\xea\x01\x00\x40\xe0\xa4\xa0\xa3\x00\x00\x35\x09\xa4\x57\x76\x84\x00\x00\xe0\xf9\x18\xaa\x29\x02\xef\x46\x99\x76\x00\x00\x00\xdb\xab\x1b\xea\x00\xc0\x53\x6e\x00\xc0\x3e\x07\x80\x0b\x00\x00\xb0\xdb\x00\xe0\x0b\x01\x80\x5d\x5b\x00\x80\x65\x00\x00\x9d\xe7\xab\x0f\x06\x32\x00\x80\x0f\xe8\x6b\xc3\x55\xfe\xfc\xf9\x73\x73\x73\x73\x79\x79\x79\x7d\x7d\x7d\x75\x75\x35\x38\x38\xe8\xe5\xe5\x95\x94\x94\x74\x78\x78\xb8\xb2\xb2\x12\x12\x12\x12\x14\x14\xf4\xe5\xcb\x97\x9d\x9d\x1d\x45\x45\xc5\xbf\xb5\xc8\xc9\xdf\xbc\x79\x73\x7e\x7e\xee\xe7\xe7\x07\x02\x81\x3c\x3d\x3d\x4f\x4f\x4f\xdf\xbd\x7b\x47\x41\x41\x81\x87\x87\xe7\xe3\xe3\x73\x70\x70\xa0\xa3\xa3\xc3\xc1\xc1\x31\x3b\x3b\x7b\x72\x72\xe2\xe8\xe8\x68\x6c\x6c\x7c\x71\x71\xf1\xf5\xeb\x57\x21\x21\xa1\x5b\xb7\x6e\xa5\xa4\xa4\x2c\x2c\x2c\x70\x71\x71\xc1\x60\xb0\xad\xad\xad\xfe\xfe\x7e\x4a\x4a\x4a\x5d\x5d\xdd\xa3\xa3\xa3\x82\x82\x02\x22\x22\x22\x26\x26\xa6\xe1\xe1\xe1\xb2\xb2\x32\x66\x66\xe6\xd1\xd1\x51\x62\x62\xe2\xda\xda\x5a\x7f\x7f\x7f\x7c\x7c\xfc\x8c\x8c\x8c\xd5\xd5\x55\x28\x14\x8a\xc5\x62\xf5\xf5\xf5\xad\xad\xad\xcf\xce\xce\xba\xba\xba\xa8\xa9\xa9\x09\x08\x08\x16\x17\x17\x05\x04\x04\xee\xde\xbd\x2b\x28\x28\xb8\xbe\xbe\x9e\x9a\x9a\xca\xcd\xcd\x6d\x6a\x6a\xfa\xf0\xe1\xc3\xe5\xe5\xe5\x8f\x1f\x3f\x52\x51\x51\xd9\xda\xda\xd2\xd3\xd3\x2b\x29\x29\x95\x97\x97\x93\x91\x91\x35\x34\x34\x44\x46\x46\x12\x12\x12\x66\x67\x67\xab\xab\xab\xdb\xd8\xd8\xf0\xf0\xf0\x3c\x7b\xf6\xec\xf8\xf8\x58\x5c\x5c\x3c\x34\x34\xf4\xf9\xf3\xe7\xe6\xe6\xe6\x72\x72\x72\xbb\xbb\xbb\x93\x93\x93\xbd\xbd\xbd\x4d\x4d\x4d\x55\x55\x55\xc5\xc5\xc5\xb9\xb9\xb9\x69\x69\x69\x59\x59\x59\xaf\x5f\xbf\xae\xa9\xa9\x69\x69\x69\x99\x9b\x9b\xdb\xdb\xdb\x1b\x19\x19\x61\x61\x61\x89\x8e\x8e\xfe\xf1\xe3\x07\x12\x89\x5c\x5b\x5b\x7b\xf0\xe0\x41\x66\x66\xe6\x9d\x3b\x77\xde\xbf\x7f\xff\xfb\xf7\xef\xd2\xd2\xd2\xc0\xc0\xc0\xc7\x8f\x1f\x6b\x6a\x6a\x72\x72\x72\x32\x32\x32\x92\x90\x90\xdc\xbe\x7d\x5b\x42\x42\xc2\xde\xde\x7e\x68\x68\x68\x63\x63\x03\x87\xc3\xdd\xbb\x77\xaf\xaf\xaf\x4f\x4f\x4f\xef\xd5\xab\x57\x1a\x1a\x1a\xd3\xd3\xd3\xdf\xbf\x7f\xef\xec\xec\x8c\x8a\x8a\x82\x40\x20\xd2\xd2\xd2\x2f\x5f\xbe\xe4\xe3\xe3\xf3\xf0\xf0\x50\x56\x56\xe6\xe5\xe5\xf5\xf5\xf5\xad\xaf\xaf\x9f\x99\x99\x89\x89\x89\x21\x25\x25\xa5\xa3\xa3\x63\x65\x65\x35\x30\x30\xc8\xcb\xcb\xdb\xdc\xdc\xb4\xb3\xb3\xbb\x7f\xff\x7e\x7e\x7e\xbe\xb3\xb3\xb3\x9a\x9a\xda\xfe\xfe\xfe\xb7\x6f\xdf\xc4\xc4\xc4\x84\x85\x85\x2d\x2c\x2c\x12\x13\x13\xc3\xc3\xc3\x11\x08\x44\x47\x47\xc7\xe7\xcf\x9f\xa7\xa6\xa6\xba\xbb\xbb\xdb\xdb\xdb\xab\xab\xab\x7f\xfe\xfc\x59\x51\x51\x11\x11\x11\x61\x69\x69\x09\x87\xc3\x7f\xfd\xfa\x65\x64\x64\xf4\xe8\xd1\xa3\xed\xed\xed\xe6\xe6\x66\x59\x59\x59\x6d\x6d\xed\xca\xca\xca\x81\x81\x81\xa5\xa5\x25\x5a\x5a\x5a\x2b\x2b\xab\x9e\x9e\x9e\xa2\xa2\x22\x6f\x6f\x6f\x29\x29\xa9\xa7\x4f\x9f\xd2\xd0\xd0\xa8\xaa\xaa\x82\xc1\x60\x77\x77\x77\x76\x76\xf6\x92\x92\x92\xb6\xb6\x36\x2d\x2d\x2d\x15\x15\x15\x05\x05\x85\xe4\xe4\x64\x7e\x7e\x7e\x19\x19\x19\x49\x49\xc9\xb0\xb0\xb0\x9c\x9c\x1c\x06\x06\x86\xf9\xf9\xf9\x4f\x9f\x3e\xc5\xc5\xc5\xa5\xa7\xa7\xa3\xd1\x68\x51\x51\x51\x43\x43\x43\x57\x57\x57\x13\x13\x93\xf1\xf1\xf1\xe0\xe0\x60\x07\x07\x87\xd6\xd6\xd6\xb1\xb1\xb1\xd8\xd8\x58\x79\x79\x79\x11\x11\x91\x80\x80\x00\x36\x36\xb6\xb7\x6f\xdf\x9a\x99\x99\x3d\x79\xf2\xc4\xc5\xc5\xa5\xb1\xb1\x11\x83\xc1\x7c\xf8\xf0\xa1\xae\xae\xae\xb0\xb0\x30\x21\x21\xc1\xcd\xcd\x0d\x85\x42\xbd\x78\xf1\xc2\xc9\xc9\x29\x3e\x3e\x7e\x62\x62\x22\x79\xef\xcb\xe8\xdf\x23\x42\x68\xa9\x29\x03\x51\x84\xcc\xea\x00\x00\x10\x7b\xaa\x9b\xfb\x00\x00\xa0\xfe\x8f\x54\x07\x5d\x64\x01\xe0\x0e\xbe\x86\xb2\x02\x1c\xb5\xbc\x6f\x89\x96\x37\x32\xa5\x0d\x66\xf3\x52\xe8\xc5\x5f\x8b\x96\x31\x60\xb7\x8d\x03\xf1\x12\xf5\x94\xb8\x87\x0e\xf0\xaa\x53\x89\x82\x10\xd6\x00\x1d\x9c\x92\x23\x4a\x33\x02\x60\xd7\x54\xf1\x2a\x64\x5f\x05\x91\xc4\xa8\x28\xdb\xd2\xd4\x9b\x15\xbf\xf7\x55\xa8\xe4\x30\x21\x9c\xdd\x85\xbf\x6d\x32\x96\x5e\xb8\xe3\xb3\x32\xa4\x08\xc2\xbb\x0b\x12\x91\x73\x6c\x93\x6b\x59\x0a\x3c\xb8\x3e\xf0\x3e\x30\x3f\x08\xb4\x9d\xfb\x43\x83\xfa\x13\xa0\xc9\xfc\x94\x8e\x1a\x42\x3f\xb2\x39\x57\x19\x98\x90\x6b\xfd\xa9\x6c\xf1\xad\x3f\x6b\x31\xa8\xb5\x2d\xcf\x63\x2c\x2d\x4e\x5b\x89\xe9\xd0\xa9\xc8\x6c\x62\x85\x3e\x0a\xcf\x5a\x03\x0d\xa5\xb4\x4d\x7c\xa3\x88\xe7\x02\x01\x32\x32\xfd\xd9\x8a\x7b\x29\x81\x13\xfd\x08\xd0\x28\x44\x59\x6a\xa9\x96\xf4\x61\x65\x05\x55\x77\x54\x92\x0e\x61\xa1\xab\x7e\xe8\xfe\xb6\x60\x51\x3d\x07\xc3\x1e\xf3\x7a\xbb\xef\x2d\xea\x32\xac\x74\x09\xe9\x43\xb9\x4e\x2a\xfc\x43\xa3\xf3\x1d\x56\xe9\x3b\xea\x71\x4e\xa8\x49\x74\x36\x24\x4b\x5e\x58\x7b\x7d\x88\x84\x29\x47\xbe\x83\xab\x63\x58\x3d\x56\x77\xb1\x8f\xd3\xa9\xc3\xda\xd3\xd3\x37\xe5\xa6\xa4\xf9\xdb\xaa\x70\x26\x79\xee\x63\x6b\x55\xa9\x5e\xfa\x16\xb9\x6f\x61\x09\x85\xc7\x12\x85\xd2\x78\x46\x41\xd7\x1d\x48\x0b\x53\xe1\x89\x52\xea\xd5\x1d\x17\x8a\x2e\x86\x09\x50\xba\x9c\x3c\xc0\x43\x19\x95\x69\xdd\x90\xa9\x30\x40\xa9\xbd\x3a\x0c\x3a\xb3\x2a\x97\x4b\x1f\xed\xc8\x1e\xc9\xc2\x87\xf8\x3f\x0e\x2c\x2c\xbe\x6f\x7e\x0b\x27\x19\x39\x6a\x53\x7d\x34\xa9\x62\x17\xbb\x9f\xce\xef\x5b\x4f\x92\x00\x29\x6d\xdc\x8a\x4c\x57\x01\x79\x34\x13\xfd\x78\x97\x58\xae\x05\x17\xad\xee\xae\x4e\xb3\x8a\x32\x9f\x56\xad\x9b\x7e\xcc\xe6\x82\x68\x37\x93\x16\x14\x5c\xee\xb7\xe4\xef\x21\x06\x3f\x21\x0e\xd6\x95\x7d\x1f\x1a\x4d\x9d\x5c\x22\x64\xfe\x72\xd8\xb5\xf5\xa1\x5b\x2b\x60\x28\x0e\x49\x06\xc4\x35\x83\x70\xa6\xe0\x6a\xa3\x9a\x23\x14\xb8\x6d\xa9\x68\x61\x7b\x7c\x52\xdc\x43\x58\x4b\x82\xf6\x6e\x1e\xa3\xa4\x34\xd2\xa5\x43\xfc\xb6\x01\x5f\x78\x4e\x2d\x73\x52\xe6\x98\x1f\xb0\x17\x97\x48\xb3\x63\x98\x3a\x7c\xb0\x5d\xe1\xf8\xac\x81\x6f\xbe\xe5\x1c\x3a\x2e\xe2\x7f\xaa\x43\x35\xf0\x74\x8b\xcb\xa1\xd7\x61\x8b\xec\xd7\x71\x5c\x7c\x9d\xde\x38\x1d\x69\x40\xad\xd7\xdc\xdc\xc1\xfc\xc7\xaa\x5e\xdb\x73\xa6\x8f\xd7\xcd\x80\x79\x80\x68\x1f\x1e\x36\xfc\x3c\xf9\x6b\x18\x19\xe5\x5e\x5f\xf5\xaa\x92\x83\xd2\x61\x77\x84\x5a\x09\xd2\xa2\x36\xcb\xc2\xfc\x19\xf3\x48\xe1\xc5\x70\xed\x23\x99\xfc\xb2\xd9\x2e\x63\x35\xa5\x98\x84\x08\x1f\x49\xa6\x49\xfb\x21\xcd\xf8\x97\xee\x97\x9c\x1d\x72\xdd\x38\x1d\x0d\x4f\xdc\xa1\xf1\xd1\x07\xa4\xfb\x9d\x8d\x90\xfb\xf4\x02\xdc\xfb\xa3\xd1\xcf\x2a\xf6\x38\x3b\xa2\x49\x34\x8c\x7b\x75\xb1\x83\x28\x9b\x59\x63\x0b\x2d\x6e\x04\xb5\xff\x27\xd7\x92\xc0\x73\x54\xec\xe4\xb9\xc2\x95\x47\x39\x81\xbc\x7c\xd8\x75\x66\xe6\x4a\xae\xaf\x48\x69\x23\x19\xcb\x36\x66\xa6\x39\xb9\x25\xd8\x78\x7a\xbd\xa3\x67\x05\x09\x1d\x9a\xe0\x6f\x1d\x0d\x09\x59\xc7\x85\xca\x2d\x68\x36\x76\x39\xdd\xae\xc5\xfb\xb0\x03\xb4\x72\x8d\xa0\xe3\x48\x01\x29\xa7\xf1\xc9\x81\x89\x6b\x16\xab\x1d\xd8\x1a\x71\x30\x1d\x7e\xbf\x35\x89\xa4\x27\xc3\x75\xd4\xf9\xc4\x23\xb3\xa9\x13\x62\x44\x49\x44\x9c\x9e\xb2\x0f\x97\xe3\xf4\x70\x66\x76\x70\xaf\x74\xac\xc0\x22\x71\xbb\x17\x3e\xd3\xa0\x8a\xe5\x30\xe1\x0f\xe3\xcc\xb3\x86\x58\xf9\xab\x1e\xb6\xd7\x71\x92\x6d\x36\xd6\xa7\x18\x03\x93\x3b\x9d\x2b\xed\x23\xfd\x0b\xf8\x6f\x00\x77\x09\x68\xea\xbd\xb8\xad\x6f\x32\x6b\xbf\xc6\x1e\x38\x57\xf7\xbb\xe0\xf5\xa9\x0c\xf6\x84\x9b\x50\x62\x57\xae\x54\x0b\x36\x45\x0d\xce\x52\x55\x6a\x78\xfa\x7b\x91\x97\x1a\x70\x0e\x47\xac\xe5\xc7\xe7\x13\xa8\x17\x9b\xd5\x38\xb8\x88\x62\x87\x78\xfc\xe9\xd9\x79\xac\x65\xe3\xe7\x53\xbb\xf1\xb2\x1f\x71\x2d\xfb\x78\x89\x63\x85\x1a\x22\xdd\x6f\x13\x57\x73\xf4\xb4\x37\xee\xf7\x12\x69\x4e\x92\x37\xc3\x30\x2a\x20\x84\x15\x6b\x51\x58\x81\xbb\x56\xc6\xd7\xa4\x32\x56\x4f\xd3\x82\x9b\xc1\xcb\xf1\x78\x93\xcf\x2d\xb3\x21\x98\x50\x62\xad\x65\xe6\xf6\x22\x08\x69\xa5\x89\xe1\xf3\xae\x72\x82\xd7\x0a\x85\xdf\xa6\x83\xdd\xca\x8b\x98\xaf\x2e\x25\xe7\x8e\x2d\xbe\x24\x7b\x2e\x77\xdd\x6e\x92\x34\x96\x75\xe0\xb0\x71\xa2\x3c\x4c\x93\xe1\x91\xe3\x94\x97\xd3\xd6\xc8\x32\xf6\x5e\xa1\xd5\x19\x3c\x4c\xf2\x9e\xb3\x63\x08\xc4\x2d\xed\xa2\xba\xeb\xee\xe9\x44\xe4\x3f\x94\xbf\x42\x4c\x20\x66\x93\x7f\x95\xc4\x84\x82\x8b\x16\x70\x3b\x32\x6d\x09\xe2\xaf\xb3\x79\x2b\xef\xa8\x1a\x8c\xae\x71\xbf\x56\x96\xb6\xb6\x50\xf7\xcd\x49\xb2\x18\xaf\xe0\xd8\x9c\xc0\x5d\xac\x8b\x9f\xbd\xaa\xd6\x4a\xdf\xe5\x26\x35\x7f\x10\xf8\x76\xd3\x3b\xfb\x60\x79\x3d\xb9\x3c\x09\x62\x53\x4b\x98\x9d\x4b\xa6\x24\x3d\x7a\xdd\x8f\xde\xab\xef\xac\x52\x67\x46\xf1\xd5\x61\xf7\x05\xb3\x57\x27\x9d\xda\xcf\x93\x26\x7e\x48\x87\x19\xd3\x23\xa8\xc3\x85\xec\x07\x2c\xae\xb7\x84\xe2\xb7\x52\x7e\x97\x98\x02\x55\x6b\x7c\x31\x10\xfe\xcd\xaa\x28\x6a\xcd\x7a\x61\x68\xc6\x5e\xed\x8d\x0a\x38\x80\xc9\xc7\xef\xb4\x67\x42\x76\xb2\x91\x35\x7c\x21\x47\x96\xd0\xb3\x84\xcc\x38\x4b\xcf\x42\x7f\x4e\x5e\x93\xfa\xbd\x06\x57\x65\x53\x48\xca\xc4\xa0\xff\x03\x81\xf6\xb3\xd3\xaa\xcf\xdf\xed\x6e\x11\xaf\x1e\xeb\x18\xed\xab\x8f\x0e\xa9\x7d\xae\x7b\xc0\x21\xf2\x9d\x04\xdb\x1e\x75\xd8\xb0\x99\xf6\x08\x59\x43\x22\x01\xa9\xae\x3d\x28\x3b\xdd\x88\x4a\x3e\x21\xc3\xbd\xea\xe7\x1f\x9d\x2e\x58\x20\xa8\x4d\xdf\x47\x3f\x49\x4f\x68\x88\x99\xe6\xaa\xca\x71\x2b\xa3\x4e\x9b\xf0\xbf\x52\x62\x9a\x48\x1a\x2f\xaa\x09\x53\xb5\x90\x7d\x2c\x72\x69\x07\x6e\xc8\x5b\x6d\x3d\x39\xa9\xdd\x02\x5c\xe4\xac\xd7\xf8\x4b\x4c\x36\x4a\x6f\x50\xba\x8f\x6c\xf2\x58\x71\x09\x49\x39\xae\x7e\x78\x07\xd9\xd7\xb9\x70\xb9\xe7\x8d\x7f\xc6\x60\xcc\x15\x3a\xdb\xdb\x07\x41\xbe\x99\xb5\x6f\x24\x0d\x11\x22\xb2\xb4\xa2\x1c\xb6\x9f\x47\xc8\x2c\xe5\xac\x10\x2a\x93\xfe\xfc\x23\xfd\x15\x86\x89\xe8\x14\x4c\xa6\x9b\xea\x3c\xf1\x38\x87\x68\xee\xab\xc6\xa9\x60\x37\x45\x35\x7d\x44\xda\xb5\xe3\x75\x70\x65\x10\x9f\xa2\xbb\x7e\xcd\x65\x14\x53\xf4\x96\x3a\x02\x71\x18\xb7\xd1\xd7\x83\x1c\xb8\x7e\x19\xa4\xfe\x25\x8b\x4d\x2c\xf6\x02\x47\x2e\xa1\x75\x0c\x99\xbb\xbd\xff\xae\x4a\xf9\xf0\x82\x2c\x9f\xb7\x92\x62\x96\xbf\x46\x5f\x0e\x47\xc6\xfb\x58\x34\x80\x72\x21\x1b\x90\x7d\x9f\x5a\xff\x5b\xf1\xdd\xe4\xc9\xa7\xdf\x6f\x97\x8a\x0e\x30\x69\x09\x58\x81\x93\xf3\x9a\xc0\xe6\xec\xe1\x23\xee\xd3\x7b\xd2\x42\x49\x37\x65\x4a\x07\xe3\x81\xdf\x63\x4f\x07\x61\xce\xbf\x34\xf4\x4d\xfc\x29\xf3\x92\x13\x8c\x9b\xda\x49\xe8\x8f\x5c\xd7\x6e\x49\x10\xba\xd8\x1f\xef\x1f\xb3\x84\xd0\x7c\x36\x3a\xda\x3a\x3e\x92\x39\x7f\x48\xc4\x72\xab\xe7\x42\x54\xe7\xfc\xc1\x14\x60\xc5\x63\x0d\x18\x75\xcf\xfc\xfe\x91\x38\xd6\x39\xf0\x87\x98\x82\xa5\xac\xe1\x7c\xc4\x73\x99\x38\x2e\x41\xeb\xf5\xc8\x34\x11\x23\xc3\x3d\xc2\xd2\xe2\xa4\x49\x72\xf1\x27\x71\xfb\x40\x71\xa1\x44\x53\xaa\xbe\x9e\x2f\x5f\xc8\xe1\xa3\x72\x4b\x7d\xcb\xae\xe3\xb2\xf3\xeb\x72\xe7\x49\x9e\x48\x43\x2f\xa2\x4f\xe9\xec\xaf\xfd\xb0\x3f\x5b\xc9\x97\x76\x22\x6f\xb2\x9a\xa4\x39\x5a\x9d\x16\x2f\x57\x24\x67\x2c\xce\xfa\xf9\x0f\xc4\xb4\xbc\x17\x84\x66\xb6\xd9\x59\xe9\x78\x23\x97\xea\x98\xf3\xb4\xb9\xc0\x30\x6a\xe6\xcf\xd1\xe2\x50\xbd\x7d\x03\xfb\x5e\x53\xb1\xee\x52\x7c\xc6\x32\x7c\xed\x0b\xe4\xf2\x1b\xf4\xb3\x3d\x14\x2d\xdc\x66\xf2\x55\x92\x2c\xf3\x6a\xe8\x6c\x4b\x4b\x77\x19\x6b\xfb\x5a\x34\xdc\x55\x7d\x7d\xa6\x5e\xf4\x3b\x61\xdd\xa0\x36\x63\xcf\x3b\x8d\xa1\xcb\x8d\x3c\xdc\x5e\x81\x81\x9e\xab\xfc\x8a\xa9\xbd\x6a\x96\xd4\xc4\x71\x46\x4e\x9d\x7a\x3b\x3c\xfb\xa5\x95\x7e\xc8\xe9\x5d\x86\x39\xca\xdc\x83\x4f\xa6\x82\x30\xad\xcb\xe4\x70\xaf\x72\xab\x31\x35\x5c\x89\xcf\xf1\x5d\xf4\x1f\x2f\x87\xaf\x04\x07\x8c\x46\x88\x61\xf6\x9d\xa7\xde\x7c\x5c\xe6\x75\x83\x8b\xd7\xf3\xeb\xae\x20\x1a\x0f\xbb\x33\xbb\x22\xb5\xea\x5c\x6a\xde\xdf\x05\x97\xb9\x73\x9a\xd9\xbd\xce\xc1\xf8\xbd\x55\x45\x16\xb5\xd6\x7f\x18\xd8\xf8\xa0\x30\x59\x86\x00\x9d\xa5\xd7\x1c\x74\xd0\x76\x5c\x49\xbc\x69\x9a\xc4\x3c\x9d\xe3\x40\xb6\x92\xd4\xcb\x24\xdf\xca\xf1\xab\x2c\x65\x51\xa6\xa3\x9e\x6b\x56\x5a\x6f\x1a\xb5\x45\x1f\xe1\xda\xb0\x1e\xa6\x80\x28\x2f\x72\x95\xa3\x19\x39\xe5\x87\x62\xa2\xfe\xf7\xdd\x22\x0c\x8b\x3f\x9b\xbc\x1d\xe2\xc4\xbd\xbb\x4d\x94\x50\xdf\x42\x5d\xf1\xe7\x05\xe0\x95\x5b\x9f\xe1\x0b\xca\x5c\xe3\x10\xf8\x22\x7e\x8d\xaf\xc9\xce\xbe\x60\x8f\x0a\x45\x9e\x74\x08\x98\x7a\x91\xef\xac\xc6\x2c\x3d\xc7\xdc\xa2\x65\xc0\xb6\xaf\xbd\x45\xb5\x58\xa5\x7f\x51\x8b\x93\xed\xeb\x5a\x08\xcd\xee\x7c\x6f\x3c\x35\x9a\xba\x84\xf7\x43\xfa\x1e\xe8\x97\x60\xfe\x95\x8b\x03\x35\xd2\x30\x82\x24\xdf\x60\x80\x76\x2a\x7f\xbe\x4d\x3a\xe3\x9b\xb0\x59\xa3\x5b\x5f\xbf\xf4\x3c\xa5\x0f\x56\x74\xf0\xfa\x45\xe7\xc7\xb6\x62\xec\xb6\x18\x1d\x72\xb4\x56\xfd\x80\x14\xe3\x68\x6f\x6c\x05\x3f\x69\xbc\x55\x8a\x7c\xb0\xa7\xc9\xf3\xd9\x38\xa9\x4c\xa0\x2f\x8f\x93\x77\x85\x54\x89\xf7\x9b\x20\x90\x90\xfe\x6d\xf2\x3a\x8a\x6c\xf1\x17\x6c\x5e\xef\xad\x24\x26\xaa\x8d\xd4\x9d\xed\x64\x86\xf8\xca\xcf\xae\x5e\x25\xd5\xe0\x13\xb9\x7b\xec\xcf\x57\x3c\xbe\x50\xd9\x9f\xe8\xe3\xd9\x07\xec\x3b\x33\x15\x0b\xdb\x41\xf7\x76\x7b\x82\xa3\x9f\xe1\x18\xfc\xd6\x85\x31\xcb\x25\xa5\xfc\x74\x06\x9c\xd8\xe7\x2a\xf4\x41\xef\x39\x49\xcc\x67\x69\x37\xcc\x34\x8e\x7e\x44\x69\xd8\xb7\x29\x68\x79\x43\xac\xa2\x3d\xbb\x57\x63\xcb\x26\x0a\xad\x3a\x53\x76\xf8\xbd\xb8\x5f\x22\xb7\x96\x1d\x22\x14\x87\x18\x53\xab\xd6\x6a\x50\xb5\x70\xee\x74\xb3\x31\x5a\xae\x5f\x84\xe8\x56\xab\x4f\xe8\x8c\x6d\xce\x87\xd7\x8b\x55\xd0\x20\x91\xd9\x6c\x13\x1a\xbd\x4d\x8f\x97\x15\xa9\xf5\x19\x26\xae\xaa\x17\x94\x5e\x5f\xcf\x8a\x2f\xe9\x51\x72\xa8\xe3\xa8\x89\x06\x78\xdc\x55\x68\x24\x21\xc3\x05\xd5\x93\x70\x8f\x45\xbf\x81\xfd\x42\x8a\xc5\x70\x19\x74\x7a\xf4\xd4\xb3\x43\xce\xd6\x8a\x43\xfb\x24\x06\xc4\xd1\xa5\x27\xaf\xc1\xfb\x90\x09\xc4\xc0\xb9\x08\x8b\x7e\xa8\xef\xa7\x70\xc5\xee\xfb\x22\x07\xc1\x15\xec\x84\x49\x42\x73\x51\xba\xc9\xa8\xe0\xbd\x8b\xba\xfd\xe6\xd3\x18\xf7\xc9\xb2\xa1\x17\x1a\x52\xe0\x01\xae\xd2\x57\xf7\x9a\xbf\x4c\x73\x3c\xfe\x4a\x1e\x14\x23\x5e\x06\xb5\xff\xf0\x99\x45\x3f\x1f\x42\x29\x13\xda\x13\xfb\x45\x26\x7c\x26\x05\x96\xb1\xbf\xbc\x27\xda\xb9\xc6\x6e\x46\x21\x16\x67\xaa\xee\xda\x3c\x2e\x96\x6d\x39\x48\xb1\x6d\x10\xc8\x63\xe3\x38\xf4\xd3\x56\x61\x55\x5b\x68\xdd\x15\x5f\x64\x9a\x3b\x65\xb5\x95\x15\xce\xba\x21\x3d\xc3\x04\xa5\xfd\xf9\xa4\x85\xe0\x50\xc9\x66\xe9\xdd\xb7\x46\x36\x56\x1a\xd7\x31\x0f\x3d\x44\x65\xa9\xcb\x4a\x01\xdc\x88\xb9\x42\xee\xfe\xd7\xd9\x37\x43\x5c\xbd\x54\xe2\x64\x30\x9c\x28\x74\xf7\xd9\x79\x2b\x4b\xa3\x7f\x4e\xc3\x6a\xe3\xe2\x73\x77\x96\xb5\xde\x9a\xb2\xbc\xd4\x8d\x67\x62\x9c\xa9\xce\xea\xe7\x59\xd8\x4a\xe8\xdb\xf1\xd0\xd3\x47\xaf\xf6\xe5\x99\xc6\x2b\x98\xf1\xa5\xb6\x45\xf6\x19\xd7\x67\x92\xde\xa7\xb5\xb4\x4d\x45\x89\x84\xf0\x76\xe0\x95\x70\x0b\xa4\x76\x2a\xf2\x5e\xe6\x38\xea\x3e\x35\x14\xc0\x46\x92\x16\xc6\x05\x13\x5c\x55\xcc\xc7\xbe\x29\xdd\x36\x73\xfe\xfd\x78\x27\x92\x12\xe4\x2b\xe6\xfc\xc3\x84\x6c\xb9\xdd\x59\x29\xda\xfb\xd4\x8a\x4f\x87\x71\x2c\xb2\xa0\x69\x1e\x9e\x42\x3b\x62\x70\x48\xf0\x55\x2c\x0b\x02\x45\x10\xd3\x2f\x2f\x6f\xf8\x66\x8f\xf9\xde\xfa\xaa\xa7\xc3\x08\xb1\xc1\x8b\x1b\xdb\xdd\xc0\x3d\xb6\xc1\x32\x67\x95\x3d\x5b\xf0\xe9\x20\x6f\xb0\xeb\x89\x1b\xeb\x3c\x91\x18\xcf\x53\xb0\x66\x22\x6a\x44\xab\x44\xeb\xa8\x29\x2c\xcb\x92\xaf\x97\x16\x01\xa7\xad\x7e\xa9\xb1\xbd\x89\xfb\x79\xa1\x57\x9a\x78\xca\xce\xbb\x81\x59\x6c\x9c\xf7\x6b\xdf\x95\x0b\x8d\x6e\xbf\x90\x71\xad\xf5\x4b\x25\x0c\x05\x2f\x55\xb6\x49\x32\x9c\xbd\xe2\x9f\x8c\x37\xac\xa7\xb6\x6d\xbf\x30\x39\x39\x96\x04\xe7\xa2\xce\xa3\xc3\x02\xfc\x69\x2a\x77\xde\x08\xb0\x30\x51\x88\x8b\x4c\xa5\x9b\x90\x2f\x50\x61\xb7\x3d\x1b\x7a\xf7\x6b\xc1\x1b\x65\xe9\xa9\x73\xbc\xf6\x94\xb8\x72\x81\x56\x15\x60\x9c\xd0\x59\xab\x31\x4c\x87\x05\xbb\x62\x64\x9a\x91\x30\xd1\xa7\xc5\xee\x5b\x6c\xa9\xd4\xa3\x03\x96\x2d\xbf\x7c\xec\xb3\x62\x02\x74\xdf\xb1\x5e\x7e\x18\x76\x43\x87\x67\x7c\xcf\x99\x84\x4e\x0d\xe4\x51\xfc\x3e\x8e\x7e\xdf\x46\x86\x1e\xa3\xad\x63\x67\xc3\xe6\xf0\x12\xa5\x13\xcd\x9c\x80\x17\x24\x86\xaf\xb5\xf0\x04\x64\x25\x46\xca\x0e\x47\x24\xdf\xa6\xb4\x9c\xfa\x18\xb3\x46\x41\x50\xb6\xf7\x5c\x88\x50\x55\x17\x80\x18\x79\x88\xf4\xcf\x80\x96\xdf\x52\xcb\x26\x14\x58\x83\x3b\xe6\x15\x05\xc6\xf5\xe9\x56\x05\xc7\x73\xa9\xba\x1f\xef\x86\x9f\xd2\x30\x84\xf4\x44\xbe\xf4\xbb\x45\x52\xfd\x2b\xa7\x2b\xa9\x77\x13\x53\x84\x26\xb7\x88\xb0\x80\x3a\xa8\x82\x02\x1b\x1d\x9a\xfb\x96\x73\x02\xd5\x1e\xe8\x87\x8d\x3d\xb9\x14\x6a\x4b\xd6\x6f\x44\x40\x3b\xf4\xb2\x9e\x53\x56\x16\x90\x45\xec\x39\xae\xdf\xa3\xe2\x38\x4e\x05\xe0\x9d\x87\x2f\x91\xeb\x89\x98\x46\xfc\xe0\x7c\xa3\x36\xcc\xa4\x82\xfb\x6c\x4a\x38\xfd\xac\xb2\x61\xd5\x2c\xa3\x8c\x03\xbd\x5f\x71\x7e\x67\xc4\x27\xb5\xc9\x41\xd4\x79\xab\x70\xcf\xf0\x21\x99\x2a\xd9\x22\x92\x5c\xdc\x7e\x0c\xaf\x55\xbb\x78\x55\xe9\xbe\xc4\xe0\xf8\xdc\xdc\xf6\x13\xec\x07\x4b\x16\x28\x63\xa1\xcd\x6a\x67\xb5\x4f\x8e\xd2\x7c\x29\x6d\x14\x9e\x68\xab\xd6\x14\x7b\x3c\x8a\x05\x51\x90\xa2\x50\x50\xeb\x74\xe3\x8b\x55\x1c\xf1\x60\x30\xae\xda\x53\xc6\x66\x53\x05\x20\x28\xe9\x0b\xb9\x5c\x0f\x64\x98\x7d\x14\x32\xf8\x08\xe4\xc2\xc7\xa7\xc1\x4c\x0b\xe6\xac\x02\xcb\xb4\xf2\xbe\x0f\x63\x9c\xef\x06\x72\x01\x6d\x26\x52\x58\x9f\x26\x0d\xf9\x83\xaf\x6c\x80\x8f\x1f\x69\xc7\x7b\xcb\xdb\x0c\x16\xe0\x26\xbc\xa3\x68\x2f\x70\x53\x31\x8e\x9f\x11\x2e\xc6\x0b\x17\xcb\x05\x75\xfc\x29\xdf\x56\xe9\x40\x9a\x82\xae\xa6\x7d\xa5\xf6\xd9\x07\xc8\xc0\xaa\x44\x82\xf9\x66\xdf\xac\x7a\x9a\x4b\x1f\x8e\x0c\x56\x71\x62\xe7\x24\x69\xb3\xbf\x82\x08\xe2\x5d\xbd\xb6\x82\xc8\x18\x55\xad\xe9\x91\x4d\x6c\x1f\xab\xd3\x6f\x13\x17\xae\x3f\x5a\x3c\xc7\xf3\xe0\x98\x30\xb4\x36\xd5\xcc\xfe\xde\xc0\x66\x70\x0b\xf7\x01\x57\xb4\xa7\xf0\x03\x8c\x35\x3b\xff\xdd\xe9\x02\x7a\x97\x28\x14\x97\xc1\xa3\x1e\xfa\xc8\xa2\x1f\xac\xb3\x2a\xc7\x1e\xf8\x2a\xde\x2a\x63\x3b\x5d\x98\xf2\xfb\x46\x9b\x2b\x8c\xe2\x38\x30\x45\xfc\x40\x2f\xb7\x2b\xf0\x46\xb7\xf3\x63\x2c\x4a\xc2\x3f\x1f\xe7\x8d\xd1\x15\x94\xd8\xd9\x80\x8a\x3a\x1d\xb0\x1f\x7b\x2e\x13\xae\x06\xa8\x2d\x0f\x36\xc4\xc4\x50\x81\x07\xfb\xab\x62\x3a\x9d\x54\x8d\xe4\x8b\x7f\xe1\x04\x56\x1b\xc7\x94\xa6\x24\xb1\x97\x57\xa3\x45\x45\xa7\xdc\xab\x94\xe7\xad\xbd\x2d\x3c\x11\xf6\x34\xbf\x08\x73\xd0\x69\x7c\xdc\xf9\xed\xec\xeb\x03\x72\x7e\xbb\xa5\xe1\xf5\x1b\x92\x45\x46\x42\x86\xc3\xd9\xed\x2f\x68\x0c\x08\xa9\x06\x98\x82\xb7\xa7\xcc\x11\xa4\x89\x78\x16\x0b\xaa\xad\xe1\x8f\x8e\x9e\x62\x0e\x78\x16\x12\xee\x27\x6a\xb8\x5c\x4f\x44\x1b\x77\x87\xef\x16\xe6\x7c\x8a\xaa\xb9\xe9\x0a\x5d\x6c\x6d\xa0\x7c\xe0\x26\x6e\xb8\x8e\xb3\xd8\x4c\x13\x28\xdd\x21\x03\x9f\x9d\x9b\x38\x3b\x2f\x3f\x50\xb9\xaa\xe9\x1b\x3d\xb8\x94\xab\x4a\x79\xad\x8b\xf9\xc9\x99\x04\x4a\x4b\x66\xc9\xea\x77\x8f\x27\x20\x80\xca\xbc\xd1\xdd\xbf\xa2\x80\x32\x1c\x6e\xd6\xe6\x8b\x1d\xe5\x5e\x3a\x7b\xb1\x2d\xc0\x48\xba\xb8\x9f\xdc\x89\x4d\x41\xe8\x87\x33\x99\x82\x4a\x97\x37\x50\x2b\xad\xce\x15\x82\x65\x22\x69\xec\x75\x06\xf1\xb6\x42\xe3\x21\x6b\x72\xf4\x37\x09\x9b\x67\x12\x93\x65\x84\x72\x49\xfa\x6b\xeb\x00\x00\x70\x61\x54\xcc\x30\x0e\x76\x18\x24\xcc\xde\x1b\x69\x87\x41\x02\x50\x88\xb0\xb8\x00\x44\x44\x40\x58\x0a\x2e\x2c\x0a\x83\x42\x61\x50\x31\x3e\x08\x04\x06\x81\xac\x0a\xc7\xb5\xfe\x1f\x83\x9b\x87\x03\xda\x31\xe0\xbf\x1b\x92\x5c\x45\xf1\x00\x00\x50\xfd\x6b\xf0\xf1\x70\xc4\xf8\xdb\x79\x23\x01\x0d\x37\x3b\x27\xa4\x8e\x9d\x13\xda\xde\x05\x2c\x2e\x28\x21\x28\x29\x20\x05\x86\x42\x84\x45\x05\x20\x62\x02\xc2\x50\xb0\x81\xb0\x38\x18\x85\xc1\x78\xc2\x84\x84\xfc\xfd\xfd\x05\xd1\x7f\x69\xb7\x7f\x68\x41\x0f\x6f\xa7\xa5\xc8\x7d\x00\x00\x00\xfa\xbf\x89\x70\x94\xaf\x1b\x02\x06\x53\xf6\xb0\xf7\x75\x43\xba\x63\x60\x30\x7d\x3b\x27\xa4\x0f\x20\x5c\xfa\xe7\xa3\xd0\x7f\x30\xff\xfc\x09\x83\xa1\x90\x68\x27\x14\x06\x10\x96\x82\x52\x00\xde\x11\x00\x00\xd0\xfd\x7f\xc6\x14\xed\x80\x41\xfd\x45\x26\x2b\xd8\x88\x00\x00\x60\xf8\x17\xa2\x83\x76\x43\x62\x02\x3c\x91\xc0\x3f\xad\x84\x3c\xdd\x9d\xe4\x6a\x4d\x74\xff\x23\x47\x07\x8e\x76\x43\x02\xc2\xa2\x62\x92\x22\x52\x12\x22\xa2\x62\xa6\x1b\xd5\x86\x00\x00\x50\xfc\x0b\x31\x42\x3f\x45\x02\x10\x45\xc5\xd4\x02\xd9\x3d\x00\x00\x4c\xfe\xf5\x64\x6c\xa8\x01\x38\xa2\x5d\x91\x30\x21\x21\x21\x37\x77\x8c\xab\x87\x93\x90\xa3\x9d\x1f\xda\xde\xc3\xdd\x47\xe8\x7f\x77\x16\x72\x44\x4a\x21\xa5\x44\x25\xec\x84\xa1\x50\x11\x11\x07\x07\x47\xa4\xa3\x88\x1d\xc2\x41\x42\xd8\x4e\x4c\x58\x18\x29\xe2\x20\x26\x88\xb6\xf7\x10\xf4\x74\x77\x6a\x71\x88\x1e\xfc\x3b\x98\x86\x8a\xae\xf2\x3b\x45\xdb\xb0\xff\x09\x00\x00\xff\xff\xee\x6f\x32\x86\x97\x13\x00\x00") + +func staticImgCowyoAppleIcon114x114PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAppleIcon114x114Png, + "static/img/cowyo/apple-icon-114x114.png", + ) +} + +func staticImgCowyoAppleIcon114x114Png() (*asset, error) { + bytes, err := staticImgCowyoAppleIcon114x114PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/apple-icon-114x114.png", size: 5015, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAppleIcon120x120Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x65\x54\xd4\x0d\xd7\xf5\xff\x20\x28\x25\xa5\x94\x82\x80\x84\x80\x0c\x13\x74\x77\x77\x77\x0e\xc3\x30\xc0\x80\xd2\x08\x0c\x43\x77\x28\x48\x37\x48\xa7\x94\x34\x4a\xa3\x74\x23\x0a\x88\x20\xdd\x8d\xc0\xbb\xae\xeb\xcb\x7b\x3f\xf7\xb3\x9e\x0f\xfb\xd3\xf9\xed\x7d\xce\xda\x6b\x9d\x48\x2d\x0d\xc5\x87\x44\x4f\x88\x00\x00\x78\xa8\xac\x24\xa7\x03\x00\x80\xf7\x3f\x22\xb8\x07\x00\x00\x69\x4b\xdf\x32\x00\x00\x78\x48\x69\x75\x69\x00\xa8\x8d\x27\xfe\x6b\x8d\x0f\x00\x00\x8e\x9b\x8e\xa2\x0c\x50\x35\x42\xbf\x09\x00\x00\x13\x5c\x49\x47\x1d\x00\xde\xb0\x03\x00\x36\x04\x00\xae\x00\x00\xc0\x6e\x00\x80\x07\x04\x00\xb6\xac\x00\x40\x24\x15\x00\x68\x5e\x65\xb6\x68\x8b\x01\xc0\x3d\x40\x4b\x4d\x4f\xfe\xee\xee\xee\xfc\xfc\xbc\xb1\xb1\x31\x2b\x2b\x6b\x69\x69\xe9\xf6\xf6\x76\x62\x62\x22\x3d\x3d\xbd\xbb\xbb\xfb\xfa\xfa\xfa\xc3\x87\x0f\xb4\xb4\xb4\x84\x84\x84\x96\x96\x96\x07\x07\x07\xa2\xa2\xa2\xec\xec\xec\x03\x03\x03\xbb\xbb\xbb\xea\xea\xea\x00\x00\xb0\xb0\xb0\xd4\xd5\xd5\x91\x92\x92\xe2\xe0\xe0\xbc\x7e\xfd\xfa\xe6\xe6\xe6\xcb\x97\x2f\x8f\x1e\x3d\x22\x21\x21\x69\x6b\x6b\x4b\x49\x49\x21\x20\x20\xe0\xe1\xe1\xf9\xf1\xe3\xc7\x9b\x37\x6f\x70\x71\x71\xef\xdd\xbb\x97\x97\x97\xe7\xe4\xe4\x44\x4c\x4c\xbc\xb9\xb9\xe9\xea\xea\x7a\x78\x78\xa8\xa6\xa6\x66\x65\x65\x75\x76\x76\x46\x45\x45\xa5\xaa\xaa\xba\xb8\xb8\x08\x81\x40\x38\x39\x39\x7f\xfe\xfc\xf9\xf7\xef\xdf\xb0\xb0\x30\x2e\x2e\xae\x95\x95\x95\xce\xce\x4e\x72\x72\xf2\x8a\x8a\x0a\x4d\x4d\xcd\xc7\x8f\x1f\x37\x37\x37\x67\x66\x66\xb2\xb1\xb1\xd1\xd3\xd3\x3f\x78\xf0\xe0\xdd\xbb\x77\x57\x57\x57\x08\x04\x82\x91\x91\x51\x49\x49\x69\x6f\x6f\x8f\x8c\x8c\x0c\x06\x83\x99\x9b\x9b\x9f\x9c\x9c\x08\x0b\x0b\x2b\x2a\x2a\x5a\x58\x58\x4c\x4d\x4d\xbd\x7f\xff\xbe\xa9\xa9\xc9\xd0\xd0\x10\x0a\x85\x2e\x2f\x2f\xd3\xd1\xd1\xf9\xfb\xfb\xb7\xb6\xb6\xa2\xd1\x68\x26\x26\xa6\x85\x85\x85\xc8\xc8\x48\x7c\x7c\xfc\x86\x86\x86\xb8\xb8\xb8\xfb\xf7\xef\x13\x11\x11\xd5\xd7\xd7\x53\x50\x50\x14\x14\x14\x9c\x9e\x9e\x6a\x6b\x6b\x4b\x4a\x4a\x6e\x6d\x6d\x7d\xfe\xfc\xf9\xe2\xe2\xe2\xcf\x9f\x3f\xe3\xe3\xe3\x2d\x2d\x2d\xd5\xd5\xd5\x65\x65\x65\xd9\xd9\xd9\x89\x89\x89\x81\x81\x81\x7e\x7e\x7e\xde\xde\xde\x41\x41\x41\x31\x31\x31\xc9\xc9\xc9\x35\x35\x35\x1d\x1d\x1d\x33\x33\x33\x3b\x3b\x3b\x97\x97\x97\x1a\x1a\x1a\xc3\xc3\xc3\xa1\xa1\xa1\x47\x47\x47\x5a\x5a\x5a\xfb\xfb\xfb\xdb\xdb\xdb\x52\x52\x52\x45\x45\x45\x06\x06\x06\xf2\xf2\xf2\x20\x10\x88\x86\x86\x86\x99\x99\x59\x59\x59\xd9\xcc\xcc\x2c\x3c\x3c\xbc\xb2\xb2\xb2\xbf\xbf\x7f\x6d\x6d\x0d\x0e\x87\x3b\x3b\x3b\xab\xa8\xa8\xb8\xb9\xb9\xe9\xeb\xeb\xf3\xf1\xf1\x89\x89\x89\xa5\xa6\xa6\x8e\x8c\x8c\xcc\xcd\xcd\xe9\xe9\xe9\x6d\x6c\x6c\xd8\xd8\xd8\x8c\x8d\x8d\xb1\xb2\xb2\x46\x44\x44\xc4\xc6\xc6\xca\xc9\xc9\x51\x53\x53\x3f\x7d\xfa\xf4\xc9\x93\x27\x78\x78\x78\x3a\x3a\x3a\xb9\xb9\xb9\xbf\x7f\xff\x7e\xf9\xf2\xa5\x8c\x8c\x8c\x9d\x9d\xdd\xf1\xf1\xb1\xb8\xb8\xb8\xbd\xbd\x7d\x70\x70\x30\x2f\x2f\x6f\x40\x40\xc0\xb7\x6f\xdf\x46\x47\x47\xbf\x7e\xfd\xda\xdb\xdb\x5b\x5e\x5e\x6e\x6c\x6c\xfc\xf0\xe1\x43\x01\x01\x01\x4a\x4a\xca\x67\xcf\x9e\xa1\x50\x28\x06\x06\x86\xd2\xd2\x52\x09\x09\x89\xa1\xa1\x21\x0f\x0f\x0f\x7e\x7e\x7e\x17\x17\x17\x07\x07\x87\xda\xda\x5a\x05\x05\x05\x24\x12\xf9\xe2\xc5\x0b\x4f\x4f\xcf\xd9\xd9\x59\x1f\x1f\x1f\x6e\x6e\x6e\x5d\x5d\x5d\x11\x11\x91\xf9\xf9\x79\x77\x77\xf7\xc9\xc9\x49\x53\x53\xd3\xbe\xbe\x3e\x23\x23\xa3\xa8\xa8\x28\x47\x47\xc7\xd5\xd5\xd5\xef\xdf\xbf\x87\x84\x84\x24\x24\x24\x7c\xfc\xf8\xf1\xf9\xf3\xe7\x60\x30\xd8\xd7\xd7\x57\x50\x50\x70\x7d\x7d\xbd\xaa\xaa\xca\xda\xda\xba\xa7\xa7\x47\x48\x48\xa8\xa4\xa4\x64\x7a\x7a\x7a\x70\x70\x30\x3a\x3a\xba\xb8\xb8\xf8\xd7\xaf\x5f\x19\x19\x19\x39\x39\x39\xf9\xf9\xf9\x58\x2c\xd6\xd6\xd6\xd6\xc4\xc4\xe4\xd5\xab\x57\x85\x85\x85\x5e\x5e\x5e\x1c\x1c\x1c\xf1\xf1\xf1\xb2\xb2\xb2\x18\x0c\xe6\xd3\xa7\x4f\xed\xed\xed\x69\x69\x69\x6f\xdf\xbe\x4d\x4a\x4a\x92\x96\x96\xee\xea\xea\x5a\x17\x4f\x22\xf9\xe7\x89\x6c\x54\x15\xe5\x80\x08\x7c\x06\x25\x00\x00\x08\x5f\x29\x19\xbb\x01\x00\xa0\xf4\xaf\x14\x06\x1d\x25\x00\x80\xcc\x5a\x59\x4e\x5a\xcf\xfe\xe7\xae\xa9\xaf\x91\xae\x61\x23\xd9\x80\x36\x0b\x2d\xda\x6c\x40\x80\x5c\x5e\xd9\x21\x89\x5a\x2e\xb2\x9e\x83\x83\x99\x06\x47\x7b\xfc\x39\xd7\x13\x3c\x68\x04\x85\x76\x79\x83\xbe\x14\x67\x44\x14\x99\x1c\x6d\xfd\xf3\xfc\x20\xb9\x68\xad\x25\xb2\xa8\xe0\xde\xcf\x65\xf2\x7e\xb9\x06\x65\xd3\x06\x95\x3f\x51\xbb\x73\xfd\x95\x1e\xeb\x1a\x7f\x7e\xb6\x9e\x0d\x06\x4b\xe1\xb2\xe2\xdc\xb6\x1c\x5f\x4b\x48\x68\x9e\xcd\x3b\xde\x9d\xc1\x2b\x1b\x66\x17\x90\x5f\x57\xfe\x3e\xbd\xb3\xb4\x82\x7f\x1f\xae\xda\x36\x4e\xdd\x13\x7f\xe3\x9a\x91\x72\xf2\xd1\x6b\x63\x78\xdb\xd5\xa6\x55\x82\xd4\xdf\xd2\xd1\xe0\xcb\xfe\x83\xe5\xb9\xf6\xaf\x91\xd7\xa2\x14\x30\x29\x2b\xa3\x5f\x3b\xb8\x4c\xf4\x73\x6b\x3d\xc1\x66\x38\xf7\xc9\xa0\x1c\xe4\x9f\x22\x81\x9e\x6a\x2f\xfe\x6a\x2b\x0e\x9c\x84\x13\x9b\x74\x95\xb0\x53\x1c\x00\x96\xf9\xd5\x68\xa9\x44\xf8\x55\xc0\x3d\xd4\xb2\x7a\x7c\xd1\xbb\xc0\xec\x7a\xdb\x10\x75\x9a\xf8\x39\x47\xd6\x0f\x74\x6b\x95\xe0\x84\x38\xea\x71\xca\x9c\xa6\x96\xd4\x0b\xb4\xa5\x0a\x0b\xfd\x24\x1f\x3e\x1c\x85\x73\x71\xe9\x05\x02\xf3\x6a\xa8\xa1\xe4\xba\x3f\x5c\x71\xd2\x92\xe5\x03\x84\x03\xb8\xad\x9e\xb1\x6b\x77\x38\xcb\x74\x78\x10\x66\x23\x43\x9b\xa7\xb8\x55\xce\x79\xc0\xa3\xee\x96\xa4\x54\x49\x42\xab\xa3\xc7\xd8\x8e\x95\x96\x77\xa5\x55\x72\xb0\x5d\x06\x6c\xc4\xa6\xb9\xca\x0e\x3d\x21\x04\x5e\x16\x43\x80\x74\x20\xc6\xab\x23\x88\x4c\x17\x57\x94\x66\x1d\xdf\x25\xe2\x5d\xbf\x81\xe0\x7f\x5e\xa4\x8d\xc8\x12\x04\xc7\x45\xac\x3b\xaa\x26\x1d\x02\xc4\x94\xd4\x2d\xd8\x92\x66\x51\x5e\xfc\xd2\x21\xb8\xf6\xaf\x5f\x85\x6c\xaa\x29\xc3\x3e\x5e\x97\x51\x74\xfb\x95\x7e\x77\xa7\x50\xc6\x0a\x93\x2c\xa7\xc4\x89\x2a\xfb\x57\x5c\x2d\xa0\x7d\x7e\x1c\xa9\x19\x22\xbe\x76\x35\x59\xc5\x1b\xeb\x37\x7d\x22\xd8\xb7\x3f\xd1\xca\x5c\xed\x34\x76\x23\x46\x9d\xd6\xf0\x04\xa4\x59\x44\x70\x50\x4d\x32\x93\x4e\xcf\x55\x1f\x02\x4d\xf4\xa3\x0d\xe1\x78\xd6\x98\x99\xd4\x58\xe4\x90\xf7\x22\x61\x97\xd3\x73\x35\xf0\xf7\x10\x7f\x4f\x9b\x18\xf6\xc2\x6a\xcf\x00\x3a\x70\x9b\xc4\x02\x01\xf5\x1e\xf8\x56\x7d\x5b\xa2\x78\x31\x33\xa6\x2d\x59\x7c\x6d\x78\x97\x3b\xb0\x20\xbc\x56\x60\xbe\x57\x49\xfe\x95\xd8\xf3\xd1\xab\xa1\xf5\xc7\xce\x78\x1f\x5f\xc8\xcb\xaa\x89\x1b\xfb\x89\x14\xdb\x83\xb1\xdb\x85\xfe\xc4\x89\xb1\xcd\xf8\xe5\xe7\x34\x29\x3d\x1b\xc2\x91\x32\xec\x27\xa2\xe4\x0d\x5e\xfb\x3f\x4b\x74\x68\x22\xd5\x2a\x5f\x3c\x08\xc7\x06\x87\x4b\x08\xec\x35\xf1\x21\x17\xa2\x60\x7c\xbf\xba\x09\x33\xe9\x19\x99\xd6\x4c\x7e\x11\x9d\x30\xf6\x76\x0b\x2d\x56\x52\xd2\x87\x0b\x1d\x25\xb2\x84\x67\xee\x5e\x70\x65\x91\xcf\xa4\x61\x92\x54\xac\xb7\xf3\x13\xb0\x70\x1f\xdd\xb8\x73\xa5\xa8\x67\x9f\x76\xe5\xb4\xcf\xf7\x7e\x68\x66\x8b\xb4\x0b\x5d\x7d\x9b\xa2\x42\xbe\x70\x89\xa9\x98\xfa\x16\xdc\x5d\xf8\xda\x2f\x69\x62\x33\x1d\x06\x3f\xeb\x3a\x7f\x81\x31\x91\x3f\x30\x47\x35\x62\x75\xdd\x49\x23\x32\xf4\x8e\x93\xaf\x91\xd8\x2d\x39\xfa\xcb\x4c\x0e\xf5\x59\x78\xe6\xfd\xe2\xe4\x7d\xc9\x4e\x6f\x8f\x9a\x58\x15\x9e\xe5\x05\x0c\xbb\x9d\x29\xb7\x2f\xf2\x24\x35\x9d\x44\x3f\x6a\xca\x5e\xc9\xec\xbd\x62\x9c\x5b\xd1\xf7\x39\x0e\x4f\x03\x9b\x63\x4d\x18\x6e\xf3\x90\x9d\xd1\x5b\x74\x75\x83\x8b\xf3\xde\xd3\x72\x2b\x53\x2a\xb2\xbd\xd0\x71\xc5\x46\x70\x44\xf2\xd6\xef\x16\x61\xf2\x5e\xb3\x9d\x82\xbf\x3d\xa1\x63\x2a\x3f\x5a\x22\xb3\xc4\x04\x6f\x10\x6e\x98\xdd\xa1\xd5\x92\xf0\xdc\xb3\xe6\x8b\xe6\x94\x56\x0c\xa9\x89\xda\x87\x22\x39\x72\x7a\x89\x3b\x27\x72\xd2\x58\xb9\x0a\x7a\x7f\xe8\xed\xc4\x00\x93\x24\xf3\xb8\x80\x62\x99\xa7\x33\xa8\xeb\x99\xaf\x19\xb5\xf4\xb4\x4c\xd6\xf2\xd6\x21\x60\x38\x67\x19\xb4\xa9\x6c\xe9\x54\xe2\xa9\x03\xf0\x81\x38\xa8\x9e\x76\x36\x8e\x78\x67\xf6\x71\x0d\xac\x94\x38\x38\xd4\xb9\xeb\x88\x0c\xc8\x9c\x9d\xf9\x8e\x06\xd0\xfa\x83\xb2\xf6\x07\x79\xca\xa9\xcb\xca\x85\x52\x10\x70\xbe\xd6\x7c\x31\x71\x31\xd4\x52\xf2\xe0\xa9\x3e\xf4\x79\xfe\xf4\xcf\x54\xc7\xe2\x85\xe2\xe9\xcf\xec\x57\x2d\x1d\x93\xcf\x8d\x95\xed\x7f\x9e\x49\x99\x82\xbd\x38\xbf\x83\x2d\x96\x71\xcc\x22\x3f\xa8\xeb\xda\x79\xd1\x12\x8a\x85\x0b\xc6\x72\x85\x06\x74\x5f\x1e\x4b\x0b\x1e\x1f\x97\x69\xff\xf4\x30\xc8\xe3\x0c\x8b\x9a\x7d\xf2\x3b\x6c\xf5\x74\x6b\x29\xb7\x36\xfc\x40\xaf\x2c\x0a\xc1\xe2\x0c\xda\x17\xd8\x3f\x23\xcf\x96\xa8\xd0\xcb\xea\x60\xc1\xd3\xea\x1c\x14\x4c\x58\x68\xc0\x6e\x39\xdd\xa4\x78\x0e\xcf\xc4\x67\xc0\x6c\x5f\xc4\x9d\xf3\x2c\xe1\x55\xe6\xae\x44\x44\x17\xa0\x75\x3d\xfa\x7c\x8a\xb9\xf9\xb4\x8f\x77\xda\xd3\xee\x3f\xf9\x3c\xdc\x90\xd0\xba\xcd\xce\x10\x7a\x61\x00\xaf\x5b\xbb\x74\xd0\x64\x23\x35\xa1\xae\xe5\x5f\x64\xda\x43\x14\xbe\x84\x63\x7b\xc0\xb0\xa2\xf7\xd4\x8b\x4f\x43\xbb\x5b\x38\x66\xa1\x34\x3f\xbd\xf0\x4a\xc4\xaa\x6f\x3c\x60\xb8\x5d\x6b\x8e\xb2\xe7\x59\xeb\x99\xd7\x52\x21\x24\x67\x5f\x4d\x1b\x93\x67\x40\x7a\xb1\x60\x39\x43\x57\xc3\x0f\xdb\xc4\xe1\x62\x78\xde\x35\xc3\x11\x06\xcd\xeb\x19\x6f\x5a\x8a\x13\x2b\x4d\x8a\x33\x30\x76\xb0\x33\xf2\x8e\xca\x55\x02\x6f\xaa\x7a\x2b\x89\x91\xcd\x37\xed\x8f\x56\x05\xec\xd6\x91\xb5\x61\x02\xc2\x26\xce\x53\x4f\x56\x3d\xfe\x12\x3d\xc5\xf1\x89\xa3\x7d\x5c\xe5\x1f\xeb\xc9\x7e\x55\x14\xca\x02\x7f\x26\x8e\x71\x8d\xe3\x77\x8a\xc8\xea\x4b\x3e\x18\xf5\xa3\x95\x01\x39\xbb\x3d\x64\xb9\x60\x72\x19\x72\xe0\x26\x92\x20\x48\x38\xcd\x52\xc0\x9e\x9f\x1d\xc1\x65\x16\x6a\x6c\x26\x14\xbb\x85\x8a\xba\xd0\xa9\x2b\xb2\xa2\xa4\x51\x2f\xdb\x53\x48\xa4\x19\x0c\xb3\xf1\x09\x44\x4a\x91\x3d\x92\x97\x05\xfa\xce\x9a\x59\x25\x55\xfd\xb9\xd5\x1c\x2f\xa5\x62\x9b\xa1\x25\x42\x21\xd4\x78\x0c\x8a\x96\xc2\x6e\xe0\x04\xe2\xfa\xd9\xd1\x4c\x6c\x4c\x1f\xff\xfa\x6c\x45\x9b\xad\x66\x3b\xb5\x10\x88\xf6\xc4\xa0\xdc\xb4\xd8\xea\xec\x16\x9f\x72\x26\xc4\x4c\xf0\xf6\x32\xcd\x1c\x87\x47\xbf\x03\xf3\xe5\xf7\xd0\x9d\x19\xec\x6f\x22\xb9\xa7\x81\x59\x67\x7b\x54\x63\xce\x90\xcb\xb7\xec\xb5\xee\x27\xfe\x8b\x3d\xd9\x4a\xc7\xb3\x04\x4c\x5b\x05\x7a\xaa\xae\x5a\xee\x4e\x32\xa3\xfb\xba\xbb\xd3\x3b\xec\x06\x1f\x6f\xc3\xf1\x34\x4c\xad\x9e\xf9\x43\x10\xd5\xe9\x6b\x9e\x0b\x46\xdc\x78\x87\x06\x3b\x6c\x9d\xb9\xd7\xa8\xef\xaf\x65\xc1\xbb\x88\x7e\xa2\x42\xbe\xd3\xd3\xbe\x7d\xc8\xb9\x90\xe7\x59\x1e\xd8\xf4\x57\xb3\x6f\xb6\x68\x38\x45\xc5\x42\xe0\xa8\xcf\x28\x4a\x94\xf3\x12\x60\xcb\x49\xe2\x9a\x9b\x7d\x9f\x83\x71\xfb\x1e\xd3\xc3\xfd\xc1\x7e\x9e\xc0\x37\x6b\xdf\xf5\x4d\xdf\x0a\xdf\x4e\x95\xd7\x89\x1b\x15\x8a\x48\xee\xf5\x6c\xbc\x68\x01\xee\x4d\xc9\x18\x3a\x36\xaa\xc4\x35\xc0\xa0\xc0\x73\x1a\x3e\xa8\x3b\x53\x48\xbb\x87\x9f\xb5\xfd\x2e\xa6\x25\xf3\x87\xbd\xf3\xe3\xb4\xdb\x85\x0d\xc2\x33\xee\xc4\x7d\x78\xdc\x72\xc9\xcf\xcb\xc8\xdd\x68\xc3\x0b\x1a\x1d\x70\x0f\xc9\xec\x18\x65\xe7\xc3\x6b\xca\x86\xd2\xcf\x74\x74\x5d\x96\x7c\x83\x4c\xdd\x1e\x70\xcb\x56\x52\xcc\xc4\xd7\xaf\xf9\x62\x81\x2b\x2e\xad\x39\x26\xb1\xa6\xe7\x3e\xa4\x6e\x11\x57\x19\x2a\x92\xfd\x1e\x6b\x01\xbe\x20\xd9\xe2\xd5\xd1\xe7\x6c\xcc\x6c\x08\x78\xa7\xd7\xc8\x58\x7c\x91\x73\x20\xb2\xd3\x3c\x26\xf9\x82\x7d\x6b\x29\x6e\xb1\xb0\x5a\x2f\xb9\xc6\xa1\x59\x3f\xad\x76\xb9\xe6\x71\xbf\xa4\x73\xd7\xd1\x75\x5a\xa3\x07\x55\x98\x80\x3d\xef\x71\x6f\x6a\x9a\x4b\x29\xc9\x9f\x84\xc3\xb3\x59\x4e\x72\x16\x49\x99\x5c\x17\x9c\x59\xbf\x46\xbb\x0b\x47\x42\xed\x07\x13\x0f\x76\x21\xea\x15\x7a\x8e\xd1\xc5\x2d\xf7\x0e\x92\x90\xda\x41\x56\x5a\xc2\x87\x38\x5d\xaf\xb7\xaf\x2a\xbe\x00\xae\x1f\x9d\x5f\x37\xef\x2a\xe4\xee\x6c\x88\x51\xb3\x39\x16\x6f\xbc\xfc\xb6\xb7\x37\x34\x4c\x01\x63\xef\xf3\xb7\x09\xb1\xf3\x77\xe1\x6e\xbf\x9a\xfc\x8b\x46\xa1\x67\x53\x04\x14\x2c\x53\x0f\x36\x4f\x73\x90\x5c\x9b\xd5\xf2\xc4\x00\xa6\xb4\x26\x6a\x8e\x41\x70\xed\x34\x49\xc8\x67\x5e\x96\xaf\x2d\x75\x4b\x75\x89\xc6\xa7\xbe\x05\xb2\x98\xb8\xaf\x61\x13\x4c\x75\xf0\xf7\x7d\x36\xce\xa1\x42\xcd\x4a\x31\xbf\x3d\x3d\xbe\x2d\xc7\x9e\x79\xb9\xcb\x60\x7d\x51\x49\x5c\x8b\xd8\x64\xb7\xad\xb9\xcf\x70\x75\x9c\x4d\xa5\x47\xd0\x55\x9d\x0f\x57\xdc\x91\xac\xda\x2e\xac\xe2\xb9\x06\xc9\x97\x90\xc0\xee\xbb\x6a\x02\x8a\x0f\x31\xae\x56\xed\xea\x33\x72\xc8\xd5\x84\x9c\xcb\x21\x50\x54\x07\x55\xeb\x49\x9a\x77\xe4\xde\xb0\x71\x43\xf9\xcc\xe3\x02\x45\xfb\xfa\xa0\xe4\x6e\xba\x88\xef\xcb\x41\x4b\x02\x93\x63\xd0\xed\xad\xd2\xf4\x63\xaf\xaf\xf4\x1b\x11\xa4\x66\x68\x9f\xf4\x22\x91\xce\xe0\xbd\x9a\x28\xad\xa6\xa6\x47\x5f\xde\xf5\xb7\x17\x8e\xd4\x72\x11\x17\xa3\x26\x1f\x96\x47\x24\xfe\xaa\x3f\x4c\xe7\x38\x81\xea\x6b\x66\x30\x8b\xb3\x8f\xb5\x6b\xdf\xcc\x77\xd9\x11\x9b\x5f\x64\x10\x0f\xdf\xbb\xf2\xfb\x3d\xec\xd0\x61\x35\x2c\x4a\x59\xf9\x82\x74\xde\x8e\xea\x75\x91\x96\xec\x8e\xa1\x45\x31\xcb\x90\x11\x4c\x98\x3a\xfa\xd9\x5f\xab\x65\x03\xa2\xf3\xb1\x95\x99\xa5\xd1\xf1\x14\xbc\xf3\x39\x4e\xed\xe8\x5a\x3d\x3b\x47\xaa\x43\x7f\xfe\x1e\x3c\x3c\xfa\x6b\x61\x13\x94\x56\x6a\xed\x0e\xd1\x84\xde\xf9\x2c\x4d\xc8\x43\xc5\x58\x1a\x09\x14\xa4\xde\x4d\x1a\x7e\xd2\xb1\xb6\x46\xca\xf4\xb5\x31\xcc\xf0\x00\x1f\xbb\x5a\x1f\xf4\x67\x88\xba\x97\xdf\x47\x28\x79\xfb\x2a\xd3\x3d\x9b\xb1\xac\x6b\x5f\xc1\xe7\x59\xb7\x90\x61\xa0\x4d\x1a\xff\x03\x96\x21\xce\xb9\xdb\x7e\x76\x8b\x39\x86\xc7\x81\x57\x2e\x0b\xec\xba\x67\xcb\x1d\xa2\xd3\x73\x79\xbc\x99\x4f\xa7\x99\xae\x64\x5a\x97\x52\x7b\xab\x49\x66\xe6\x54\x45\xd6\xaf\x7c\xd8\xc5\xbb\x36\x75\xb0\x26\xe8\x57\x5b\x71\x18\x1b\x9d\xb8\x52\x13\xc2\x7e\xc0\x79\x7c\x63\x4e\xfc\x4d\xdf\xcc\x24\xba\xf0\xc7\x93\xc2\xd3\xb9\x45\xe4\x57\x19\x93\x80\xb9\x97\xee\xe2\x45\x71\xae\xbf\xcf\x43\xa5\x30\x13\x76\xd1\x02\x9d\x56\xdf\x4e\x0a\x38\x15\x47\x64\xe3\x33\xc2\xe3\xaa\x7f\xd9\x45\x18\x31\x40\xaa\xb2\xc4\x14\xae\x10\xdc\x5b\x23\xaa\x4f\xcc\x16\x2e\xc9\x85\x6c\xf2\xe5\x33\xa4\xd9\x80\x0f\xe2\x1e\x92\x29\xb9\xe3\xf2\x3c\xaa\xbc\x55\x86\x81\x6f\x27\x47\xac\x62\x40\x7e\xa8\xa1\xd9\x73\xd6\x62\xf5\xa9\xf7\xb5\x16\xd5\xf4\xfc\x0e\x29\x8c\x14\x9d\x48\xb3\x82\x43\x5c\x58\xef\x5f\x73\x46\xfa\x90\x61\x19\xf3\x47\xc9\x34\xb4\x20\x16\xb2\x94\x32\x8c\x80\xa2\x84\x5e\xa2\xc0\xb9\x43\x86\xf7\x13\x5f\x1b\x02\x96\x77\xc2\x99\x01\x9f\x70\xe9\xae\x4b\x7a\x7d\xd7\x66\xab\x21\x31\x7a\xfb\x50\x02\x41\xc6\xd3\x3e\xca\xf1\x01\x69\xd0\xbb\xba\xa4\xd2\xb9\xa9\xc0\x7d\xa1\x23\x33\xf5\x96\xb4\x79\x81\xc3\x52\xa6\xc6\x85\x2c\xbe\xb0\x87\x9d\x53\x29\x19\x88\x97\xcf\xee\x6e\x7a\xf0\x6f\xc2\x21\x4d\x74\xca\x2b\x34\xfa\x46\x1b\x35\x7b\x39\x16\x7a\xc1\xb4\x61\xe2\x2a\xcb\x37\xd2\x64\x1e\xb2\xeb\x79\xf7\x2a\xf2\x75\x77\x27\x47\x28\x3a\x86\xcd\xb7\xc2\x3e\x8e\x14\x1c\x98\xf1\xbf\xa9\x4c\xf5\x46\x66\x61\x38\xc3\xff\x26\xb8\x68\x9a\xa7\xad\x5e\x83\x0c\xf4\xf8\xef\x98\x33\x08\x25\xe9\x0f\xbc\x23\x62\xcd\x86\x94\x74\x83\x0a\x46\x55\xe6\xa4\x28\xee\x99\xad\x91\xd0\x34\x3c\xdf\x92\xf7\x0d\xec\x39\x5e\xcc\x1d\x82\xaf\xd6\x6c\x7f\xe3\x56\xb7\xb1\x58\xf0\xdd\xec\xea\x39\xf8\x9e\x03\xde\x6e\x7f\xfb\x83\x21\xd4\xcb\xf9\x69\x03\x73\xc9\xf5\xa4\xb0\xc0\xf4\x01\xc3\x7b\x43\x8c\xfb\x9e\xaf\xe6\xd5\x05\x4a\x83\x62\x40\x82\xde\x6f\xae\x0b\x7c\x4f\xb3\x9e\xb1\x25\x34\x34\x27\x5b\x43\xdf\x32\xae\x65\x85\x6e\xb0\x08\xc5\x26\xad\xfd\xe1\x35\x34\xfd\xd3\xed\x04\x6f\x62\x11\x48\x52\x9c\x4f\xa5\x52\x14\x33\xb6\x43\x8e\xf1\x85\x6c\x89\x7c\x09\xd3\x58\x17\x26\x07\x71\x8d\xc5\x2c\x0d\x74\x3c\xfe\xee\x4e\x7f\x3f\x6a\xe2\xf4\x8f\xe9\x8f\x05\x74\xd4\x0c\xf5\x75\xe4\xc9\x03\x42\xe6\x1b\x09\xda\x46\x52\x86\xc0\x56\xfc\xa4\x27\x6a\xfd\x56\xe8\x56\xf5\x95\xbc\x60\x32\xdb\xe7\xf4\x21\x46\x1b\xc7\x2b\x99\xe9\xf5\x8d\xac\xa9\x78\x7f\x02\xd0\xc6\xe7\xb0\x12\x91\x32\xcc\x17\x97\xdb\x41\xfa\x4b\xa3\xc5\xd1\x4b\xbb\x09\x7e\xeb\xef\xc2\x58\xdf\x4f\xe9\x28\xf9\x1b\xdf\x18\x89\xab\x6b\x32\xde\xed\x89\x6f\x09\x2a\x84\xbe\xd9\xde\x65\xd7\x2c\x64\x2d\x46\xdf\xe4\x17\xa5\xda\x87\xc9\x1d\xe2\x36\xc8\x13\x36\x63\x2c\x98\xf8\xdd\xde\xd2\x76\x3f\xa8\x27\x0e\x86\x73\xd6\x8d\xab\xf6\x99\x30\x7f\x27\x82\xbf\xf5\xdc\x78\x0b\x62\xd1\x88\x07\x51\xe5\xa3\x2c\x1a\x3c\xde\x46\x3f\x2b\x67\x65\x32\xb5\x2b\x4d\x38\x52\xc7\x46\x90\x62\x26\x38\x23\x70\x75\x1c\x37\xcd\xc6\xbd\xfd\x82\x27\x64\xf2\xa8\x73\x07\xe5\xda\x3e\x2c\x29\x11\xb1\x8c\xc1\x33\x02\xa8\xed\x5b\x8e\x67\x81\x5b\x64\x6a\xa8\x4c\xab\x8a\x54\x5b\x5b\x70\xce\xbb\xdf\x75\x24\x92\xb3\xa9\x91\xb7\xcc\xac\x76\x1d\xa1\x30\x85\x0b\x43\x12\xa1\x76\x74\x9e\x1a\xd9\x83\x5f\x63\x2b\xd5\x9e\xf3\x1d\xb9\x12\x2e\x69\x04\xbc\x99\x09\xd8\x83\x38\x4a\xb8\x9e\x52\x1c\x11\xb7\x09\x64\x4d\x9a\x24\xf5\x99\xf1\x73\x6b\xa2\xf8\xfb\xf0\xdc\x79\x67\xbf\x79\x92\x29\xca\x2a\x8f\x8b\x2f\x81\x0f\xef\xa7\x87\x83\xea\x8a\xf3\xd5\x81\x7b\x15\xe2\x5e\xe3\x81\x79\x39\x52\xd7\x6f\x8c\x59\x57\xc1\xcc\x55\x92\x9e\xee\x5d\x24\x8f\x38\x70\x47\x7b\xa9\x07\xdd\x1f\x49\xeb\x07\x44\xb3\xaa\xe5\x77\x92\xb0\x82\xb9\x37\xb9\x9a\x92\xa5\xf4\x64\xfb\x23\x35\xf1\x01\x63\xeb\xc8\x3b\xdd\xf6\x40\x15\xb4\xcf\x94\x4d\x48\x66\x56\x18\xb2\xdf\xce\x6a\x5c\xf6\x64\x2a\x79\x3e\x50\x59\xab\xdc\x2f\x1d\x1e\x88\xad\x6b\xef\x4d\x76\xa1\x8c\xc9\x48\xbd\x98\x36\x62\x1a\x53\x25\x80\x52\xf7\x93\x16\x25\x70\x32\x7f\x84\xae\x1b\xa6\xf0\xd0\x48\x1b\x3c\xe8\x26\x7b\xe8\x7c\x1d\x78\xf1\xe9\x92\xf7\x4f\x1c\xdd\x3a\xeb\xf6\x48\x89\x89\x95\x36\x47\x1f\xee\x7a\x8e\xbd\xc4\x12\x4e\x4d\x6b\xf0\x4a\xf8\x7d\x3e\x65\x89\xb3\xda\xf9\x69\xcd\xeb\xa0\x8b\x62\x8d\x66\xad\xe7\xe2\x2a\x5d\xb7\x01\xc3\x55\x18\x8e\x30\x3d\x13\x0f\x1d\xdb\x18\x56\xbd\x49\xd9\x75\x03\xea\x45\x36\xf2\x84\x39\xe1\x1e\x47\x88\x5b\xc6\x07\x98\xdb\xd9\x44\x14\x54\xa9\x4e\x6c\x13\x4a\xf8\xd3\x7a\x91\x2e\x78\xb8\x42\xad\x5a\xc8\x6c\xa7\xf0\xda\x18\x57\x2d\x97\xf4\x31\xff\x4d\x72\x99\x49\xd7\x01\xee\x02\x2d\x21\x47\xb2\x27\x29\x38\xfc\x58\x46\x9a\xb5\xe5\x98\x2c\x3e\x51\xb7\xe9\x77\x83\xd4\xed\x34\xab\xcb\xae\xc0\x73\x2f\x96\xfb\xfd\xca\x0c\xbd\x91\x94\xe4\xc3\x13\x21\x8f\x57\x9a\xff\x90\xf0\x90\x6f\x30\xb9\x3e\x64\xa8\x3c\xa4\x6b\x23\x04\x66\x41\xb1\xdd\xa6\xf2\x5f\x5e\x9e\xed\x11\x84\x77\xab\x3f\xe1\xc4\xb5\x51\x53\xd3\x34\xb1\x00\x15\xf6\x3f\xfd\x31\x8a\x73\x39\x5f\x11\xcf\xb3\x2e\x25\x01\x80\xe8\x7e\x80\xdd\x8a\xd2\xc5\xf5\x69\x17\xc1\xfa\xf1\x6d\x84\x8f\x24\xa2\x6d\x35\x29\x14\x2e\x57\x75\x3a\x23\xd8\xd6\x33\x2c\xae\xbd\x0d\x08\xf3\x03\x60\x99\x8f\x0a\xe6\x56\xd0\x4d\xab\xcd\xdb\x9f\x57\x0f\x83\x9a\x40\x56\xfd\x37\x07\xac\x8a\x18\xba\x14\x6f\xf5\x3f\x14\x34\x31\xfd\xed\xe6\xbd\xa2\x5f\xe3\xd4\x0e\xe7\x36\x78\x47\xe8\x87\xf3\x86\x93\x6a\xfe\x2c\xe1\xfe\x66\xf3\x7a\x56\xeb\x20\xd8\xa5\x0a\x0e\xb0\x64\x62\x83\x31\xc9\x9a\x62\xa2\x54\x46\x5e\x2c\x1f\x01\x77\xb7\xd0\x3a\xca\xa9\x7d\x4f\x88\x26\x1f\x1e\xaf\x3e\xde\x17\xd9\x06\x80\x47\xf7\xf5\xfe\x5b\x33\x7b\x89\xa2\xdf\x26\x86\x8b\x09\x16\xfd\xce\x3f\xe4\xe1\x5b\x8b\xad\x71\xc5\x5a\xe5\x55\xfe\x44\x35\x3c\xfe\x66\x04\x0e\x07\xf2\xb2\x39\xa9\xb7\x2f\x8f\xec\xd8\xf0\x35\xfb\x8c\x7d\x94\xad\x74\x5e\x8c\xf0\xa5\x23\xb9\xb0\x63\x54\x03\xfa\x81\x47\x16\x6c\x58\x27\xf4\xe4\x2d\xf7\xc5\x3d\x9f\xd5\xbd\xe2\x57\x7b\xa5\xf3\xdb\x72\xd4\xf2\x85\xbb\xa3\xa7\x8c\x3b\xc6\x85\x24\x70\xce\x35\x0c\x0d\xb6\xa4\xa8\xc0\xf1\x6a\x8d\xd7\xb9\xea\x81\x6f\x9f\x9c\x0b\xa7\xfb\x51\xd6\x5a\x98\x7a\xfd\x34\xc7\x56\x6d\x73\x00\xcd\x23\x6b\xdd\xf5\x28\xbf\x5f\x19\x7c\xe9\x59\x7b\xb2\xe5\xf4\x1a\x35\xe9\xdd\xac\x62\xd9\x63\x06\xe0\xf1\xd3\x8c\x5b\xe2\xc0\xa1\x22\xc8\x44\x27\xd1\xc0\x9c\x88\x5f\x89\x77\xf8\xb3\x3b\xcc\xfc\x7c\x93\x71\xe2\x06\x28\xd1\xcc\x4c\x92\xed\x46\xe8\xac\x86\x33\xf6\xfa\xe2\x91\xdf\xe1\xfd\xa2\xee\xa0\xa5\xc3\xde\x8b\x03\x8d\xf5\xb5\x03\x41\xc0\xda\x8d\xe3\x56\x17\x18\xbd\xbc\xbf\x77\x71\xec\x96\x7b\x68\x10\xfd\xfa\xb0\xc9\xd7\x48\x75\x8c\x6b\x2f\x92\x39\x4e\xc1\xe2\xa8\x39\x2e\x2f\x2d\xcc\x8b\xe1\x93\xa5\x64\x6c\x9b\xda\x6a\xc8\x53\x04\xd0\xc0\x99\x25\x3e\xad\x96\x8b\x5b\x36\xe7\x28\xcb\xb9\x02\xda\xdf\x69\x9b\x4e\x14\x07\x9a\xba\x0b\x37\xab\xd4\x8b\x97\x8c\x30\xd4\x93\x8f\x1f\xa6\x86\xb9\xb1\x26\xf8\x66\x39\xf4\x72\x3b\xa8\x60\x17\x51\x2f\x1d\xd5\x2e\x15\x48\xbe\x68\x28\xa7\xa7\x07\x63\x78\x2a\x48\x9c\xc4\x0b\xc8\xc5\x78\x7a\xbb\x3a\x89\x6f\x7d\x09\x13\x77\x09\x97\x9b\xf2\x03\x73\x9c\x6b\x9e\xd6\x95\x10\x10\x97\x2f\xcf\xdf\x50\xe0\xf7\x78\x04\x14\xe3\x33\xde\xd7\xfa\x21\x27\x4a\x25\x7c\x16\xdd\xd9\xd8\x21\x8c\x99\xff\xb8\x36\xb3\x47\x70\x52\xca\xba\xd4\x92\x41\xb2\x9b\x77\xa0\x54\x51\x8a\x55\x65\xf4\x2a\xd5\x45\x7a\x11\x82\x79\xdc\xac\xda\x1d\xcb\x7b\xb6\x72\xcb\xd7\x91\x9e\xc9\x32\x6f\xe0\x63\x95\x6d\x0f\x7b\x9f\x38\x79\x37\x54\x11\xf6\x1e\x9e\x6b\x18\xbd\x0e\x1e\xc2\x2d\x99\xe0\x75\x57\xe2\x98\x82\x6b\x2b\x18\xd1\xdc\x79\x25\x07\x74\x3b\xfc\x65\xac\x1b\xf7\x43\x8d\xa2\xf7\x93\x01\x00\x60\x73\x97\x37\x72\xb7\xb5\x76\x47\x88\xc0\x5d\x11\xd6\xee\x08\x00\x06\x81\x0a\x80\x20\xbc\x20\xa8\xb0\x1e\x94\x4f\x04\x06\x13\x81\xf1\xbf\x84\x40\x44\x20\x90\x65\x68\x4c\xfb\xff\x30\xa0\x5d\x6c\x51\x76\x3e\xff\xb7\xe1\xad\x13\x1f\x0e\x00\x00\x0a\xff\x18\xdc\x5c\xec\xdc\xbd\xac\x5d\x11\x80\x32\xda\x1a\x89\x50\xb7\x46\xa2\xe0\x8e\x4c\x02\x3c\x82\x3c\x42\x20\x61\x26\x18\x04\xca\x07\x82\xf0\x83\xa0\x30\x26\x6d\xa8\x00\x93\xbd\xbb\xfb\x2b\x11\x30\xd8\xcb\xcb\x8b\x07\xf5\x0f\x8d\xfe\x97\xe6\x71\x71\x45\x2e\x86\xed\x02\x00\x00\xd0\xfe\x93\xa8\x67\xef\x81\xb6\x11\x11\x91\x73\x81\x7b\xa0\x11\xce\xee\x22\x22\x5a\xd6\x48\x84\x1b\x00\x2d\xbe\x6b\x05\xff\x17\xf3\xef\x4e\x11\x11\x7b\x04\x0a\x69\xef\x0e\x40\x85\x61\x64\x80\x6b\x28\x00\x00\x34\xff\x9b\x31\x44\xd9\xba\xdb\xff\x83\x4c\x56\x30\x13\x00\x00\x40\xf7\x1f\x88\x3a\x0a\x8d\x70\xf7\x79\x85\x00\xfe\xbd\x0a\xfc\xca\x19\x29\xf9\xd1\x40\xe3\xbf\x72\xd4\xf5\x50\x68\x04\x00\xe5\xe3\x17\xe2\x15\x16\xe4\xe5\xe3\x37\x5c\xab\xd1\x01\x00\x80\xec\x3f\x10\x5d\xd4\x1b\x04\x00\x91\x91\x49\xca\x97\xd8\x01\x00\xc0\xe0\x3f\x46\xfa\x3a\xca\x80\x1d\xca\x09\x21\x02\x06\x83\xd1\xce\xee\x4e\x2e\x48\xb0\x9d\xb5\x27\x0a\xee\xe2\xec\x06\xfe\xff\x3d\x83\xed\x10\xc2\x08\x61\x3e\x41\x6b\x28\x0c\xc6\xcb\x6b\x6b\x6b\x87\xb0\xe3\xb5\xb6\xb1\x15\x84\x5a\xf3\x43\xa1\x08\x5e\x5b\x7e\x1e\x14\xdc\x85\xe7\x95\x33\xb2\xcd\x36\x72\xf0\x9f\xc2\x94\xe5\x35\xe4\xaa\x64\xac\x82\xfe\x5f\x00\x00\x00\xff\xff\x66\xfa\x97\xb6\xf5\x14\x00\x00") + +func staticImgCowyoAppleIcon120x120PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAppleIcon120x120Png, + "static/img/cowyo/apple-icon-120x120.png", + ) +} + +func staticImgCowyoAppleIcon120x120Png() (*asset, error) { + bytes, err := staticImgCowyoAppleIcon120x120PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/apple-icon-120x120.png", size: 5365, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAppleIcon144x144Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x65\x54\xd4\x61\xdb\xed\xff\x80\x94\x34\x48\x48\xb7\x20\x39\xd4\xc0\xd0\x03\x48\x08\x92\x4a\xc7\x00\x33\x74\x0e\x8d\xa4\x74\x87\x0a\x48\x77\x77\x89\x94\x74\xb7\x74\x4a\x77\x23\x2d\x67\xf9\x7c\x39\xcf\x79\xcf\x7a\x3f\xec\x4f\xf7\x6f\xef\xfb\xba\xf6\x5a\x57\xb8\xda\x3b\x79\xbc\xe7\x94\xcf\x01\x00\xc0\x53\x54\x90\xd5\x00\x00\x20\xee\x9f\xb0\xd0\x00\x00\x18\x4f\x26\x8e\x00\x00\xe0\x99\x85\xb4\x8a\x34\x00\x54\xc7\xe2\x3c\xc0\xd0\x01\x00\x40\x41\x6a\xc8\x43\x81\x8a\x51\xea\x3d\x00\x00\xe8\xcd\x14\x34\x54\x00\xc0\x8b\x15\x00\xfc\x83\x00\xe0\x0e\x00\x00\xff\x5d\x00\x70\xe5\x05\x80\x7d\x13\x00\x80\x24\x03\x00\xb9\x63\xda\x0f\x75\x31\x00\x40\x03\xd4\x94\xb5\xe4\x9e\x9e\x9e\xfe\xfe\xfd\xfb\xf8\xf8\xb8\xb1\xb1\xf1\xf5\xeb\xd7\xd8\xd8\xd8\xf9\xf9\xf9\xd9\xd9\xd9\xb8\xb8\xb8\xa4\xa4\xa4\xe3\xe3\x63\x7d\x7d\xfd\xe7\xcf\x9f\x63\x61\x61\xbd\x7b\xf7\x6e\x67\x67\x67\x73\x73\x53\x46\x46\x06\x1b\x1b\x1b\x07\x07\xc7\xcc\xcc\xec\xfc\xfc\xbc\xa9\xa9\x89\x88\x88\x08\x05\x05\x05\x15\x15\x95\x92\x92\xb2\xb1\xb1\xb1\xa6\xa6\x06\x0f\x0f\x8f\x9a\x9a\xfa\xc7\x8f\x1f\x77\x77\x77\xd6\xd6\xd6\x68\x68\xff\x16\xf8\xf6\xed\x9b\xbb\xbb\xfb\xed\xed\x2d\x37\x37\xb7\x8f\x8f\x8f\xb3\xb3\xb3\xa0\xa0\xe0\xe2\xe2\x62\x5a\x5a\x1a\x2e\x2e\x2e\x0c\x06\xbb\xb8\xb8\x50\x50\x50\x28\x2b\x2b\x13\x15\x15\x5d\x5e\x5e\x5e\x5b\x5b\xe3\xe3\xe3\xb3\xb0\xb0\xf8\xf3\xe7\xcf\xf4\xf4\x34\x27\x27\x27\x0d\x0d\xcd\xd0\xd0\x50\x47\x47\x07\x3d\x3d\x7d\x65\x65\x65\x55\x55\x55\x72\x72\x72\x75\x75\xf5\xf5\xf5\xb5\xa3\xa3\xe3\xc7\x8f\x1f\x3d\x3d\x3d\xd1\xd1\xd1\xbd\xbd\xbd\x4f\x4e\x4e\x34\x34\x34\xf6\xf7\xf7\xd5\xd5\xd5\xc7\xc7\xc7\x05\x04\x04\xd8\xd8\xd8\x26\x26\x26\x5e\xbd\x7a\xf5\xe6\xcd\x1b\x0e\x0e\x8e\xa9\xa9\xa9\xd2\xd2\x52\x1e\x1e\x1e\x26\x26\x26\x7c\x7c\xfc\xda\xda\x5a\x32\x32\xb2\x17\x2f\x5e\x84\x87\x87\x63\x62\x62\x8a\x8b\x8b\xcf\xcc\xcc\x88\x88\x88\x60\x60\x60\x04\x04\x04\xdc\xdc\xdc\x48\x4b\x4b\x8f\x8d\x8d\x09\x09\x09\x3d\x3c\x3c\x98\x98\x98\x68\x6b\x6b\xcb\xc9\xc9\x41\xa1\xd0\xa3\xa3\x23\x2d\x2d\x2d\x17\x17\x17\x29\x29\xa9\x8c\x8c\x0c\x06\x06\x86\xee\xee\xee\xcb\xcb\xcb\xd3\xd3\xd3\xbd\xbd\xbd\xdf\xbf\x7f\x2f\x2d\x2d\x75\x75\x75\x91\x92\x92\x66\x65\x65\xdd\xdf\xdf\xdb\xd9\xd9\xa5\xa7\xa7\xd3\xd1\xd1\x85\x84\x84\x2c\x2c\x2c\x8c\x8c\x8c\xf4\xf4\xf4\xb8\xba\xba\x1a\x1a\x1a\xea\xe8\xe8\x30\x33\x33\xbf\x7c\xf9\x92\x85\x85\x85\x8b\x8b\x4b\x53\x53\xd3\xd8\xd8\xd8\xcd\xcd\x2d\x3e\x3e\xbe\xa2\xa2\xc2\xcf\xcf\x2f\x3a\x3a\xba\xa8\xa8\x48\x57\x57\x77\x7d\x7d\xbd\xad\xad\x2d\x31\x31\xd1\xc3\xc3\x43\x4f\x4f\x0f\x0c\x06\x43\x20\x10\x2f\x2f\xaf\x2f\x5f\xbe\xac\xac\xac\x18\x19\x19\x5d\x5d\x5d\x65\x67\x67\xaf\xae\xae\x16\x16\x16\xe6\xe6\xe6\x9e\x9d\x9d\x8d\x8e\x8e\xa6\xa4\xa4\xd0\xd2\xd2\xa6\xa6\xa6\x3a\x38\x38\x94\x94\x94\xf0\xf3\xf3\x87\x86\x86\x6e\x6d\x6d\x11\x12\x12\x92\x90\x90\x10\x10\x10\xbc\x7f\xff\x3e\x27\x27\xe7\xd3\xa7\x4f\x73\x73\x73\x99\x99\x99\xcf\x9e\x3d\x53\x52\x52\xa2\xa2\xa2\x7a\xfd\xfa\xb5\xbf\xbf\x7f\x58\x58\x58\x7e\x7e\x7e\x79\x79\xb9\xad\xad\x2d\x3b\x3b\xfb\xee\xee\xae\xbc\xbc\x3c\x05\x05\x05\x31\x31\x71\x42\x42\x82\x84\x84\x44\x4c\x4c\x4c\x5f\x5f\x9f\xb2\xb2\xb2\x95\x95\x55\x73\x73\xf3\xe0\xe0\xe0\xe4\xe4\xe4\xdb\xb7\x6f\x65\x65\x65\x7b\x7b\x7b\x23\x23\x23\x0b\x0a\x0a\x0c\x0c\x0c\x06\x06\x06\x14\x15\x15\x03\x03\x03\xb7\xb7\xb7\x87\x87\x87\xfb\xfb\xfb\x1b\x1a\x1a\x8a\x8b\x8b\x41\x20\x50\x54\x54\x14\x2f\x2f\xaf\xb9\xb9\xb9\x98\x98\x58\x5e\x5e\x9e\xb0\xb0\xf0\xf7\xef\xdf\x83\x82\x82\x82\x83\x83\x7f\xfd\xfa\x55\x5f\x5f\xff\xf9\xf3\x67\x46\x46\xc6\xce\xce\x4e\x49\x49\xc9\xc3\xc3\xc3\x83\x83\x03\x7b\x7b\x7b\x72\x72\xf2\x9f\x3f\x7f\x22\x91\xc8\x88\x88\x08\x35\x35\x35\x38\x1c\xde\xde\xde\xde\xda\xda\xca\xca\xca\x6a\x69\x69\xe9\xeb\xeb\x6b\x6a\x6a\x5a\x57\x57\xa7\xa2\xa2\x82\x40\x20\x3e\x7c\xf8\x60\x63\x63\xa3\xaa\xaa\xea\xe4\xe4\xd4\xd2\xd2\x02\xc6\x79\xf5\xef\xc2\x50\x4c\xdf\xca\xcb\x02\x61\xe8\x34\x0a\x00\x00\x60\x3b\x2a\xe8\x22\x01\x00\x50\xf8\x8f\xde\x0c\xd8\x48\x00\x00\x29\x81\xa2\xac\xb4\x96\xc7\xc2\x91\x81\xa7\x8e\xa6\xfc\x6c\x3b\xd2\x49\x8e\x10\xab\x60\x29\x32\x90\x21\xd7\x64\x9a\x02\x6e\x95\x67\xcd\x51\xc4\x2e\xe7\xa4\xfd\x4c\x7d\xaa\xc8\xc9\x78\xf0\x43\x04\xa3\x96\x93\x8d\xa1\x9a\x8d\x74\x7c\x89\x0e\x47\x91\x3f\x8e\xdc\x92\xda\xaf\x92\xef\x1f\x8f\xf5\xcb\xdf\xda\xe8\x97\x9a\xd6\xcf\xcc\x96\xd4\x1f\xb9\x23\xec\x85\xe8\x4d\xb0\xa4\xdb\x4f\x3c\x57\x2e\x42\x13\x06\x86\x53\x56\xd3\x44\x90\xdb\x69\xfc\xfc\xb0\xe4\xa7\xc9\x27\x63\xe8\xee\x93\xce\x2c\xe7\xfd\x0f\x42\x86\x44\xc3\xc5\x5f\xc5\xfa\x27\x82\x0c\x25\xab\x59\xd9\x2a\xe8\x71\x0d\xd1\x87\x87\x54\xa2\x2d\x64\x62\x31\xef\x18\x77\x58\xd7\x9d\x3d\xc6\xa9\xb8\xa9\x4f\x16\x2e\x05\x7f\x4a\x17\xa5\x50\x8d\x35\x81\x79\xb4\x5f\x9f\xc5\x39\xcf\xb5\x8d\x1e\x00\xdd\x0d\x55\x1b\xbc\xab\x93\xb5\xb6\x4e\x3e\x3c\xb8\xbf\xf6\x05\xd9\x88\xa0\x0e\x81\x9c\x8e\x07\x42\xf0\xc8\xc5\x41\xac\x2c\xb7\xf3\x59\x7f\x85\x25\x5a\x34\x7a\xdd\x50\x3e\x1b\xe3\x95\xa0\xb5\x8e\x15\x89\x4a\x5a\x82\x8d\x03\x4c\x71\xe4\x92\xfe\x73\x33\x29\x9a\x47\xf6\xac\x46\xd1\x56\x0c\xa9\xf4\xe6\xf1\xb6\xd6\xa8\x0f\x12\xd0\x13\xe1\x29\xe8\x44\xf3\x70\x69\x66\x6d\x45\xd6\x14\x3d\x63\x23\xd0\x95\x96\xfd\xd3\x9e\x9a\x6b\xf3\x87\x77\x9b\xb5\x54\xd8\x51\x80\xd5\xea\xe0\x35\xee\x36\x25\xba\x88\x13\xf5\x2b\x74\xa9\x93\x76\xaf\x72\xfc\x63\x6c\xcb\x43\x94\xc4\xc4\x72\x5a\x82\xa9\x21\x52\xb3\x24\x42\x0b\xfc\xeb\x3f\x3e\xd3\x1e\xc9\x12\x3e\xb0\xf0\xab\xda\xae\xef\x4f\x80\x38\xbd\x80\x5a\xef\x6f\x69\x43\x4c\x33\x6e\x97\x7e\x8e\xd5\x8b\xd4\x80\x3b\x37\x2b\x8a\x90\xa6\x53\x7c\x0c\x29\x19\x26\x0f\x31\xdb\x1b\xac\xe1\x52\x09\x8f\x1e\x7d\x09\x8d\xc6\x4d\x11\x31\xe7\x5f\x96\x6a\x29\xd9\x77\x1a\x23\x14\x31\x3b\xbd\xaf\x17\x3a\xb4\x37\x6c\x4b\xbb\xa2\x6f\xf0\xe0\x98\x00\x8b\xad\x6b\x50\x94\x6d\x5f\x97\xd7\xbe\x10\x8c\x71\x6c\x43\x91\xd2\xd0\x6a\xdc\x7c\x98\x43\x1f\xa4\x69\xf2\xa8\xf2\x38\x6e\xf0\xce\x85\x79\x5f\xa1\x49\x78\x50\x68\x01\xc4\xda\x90\xa1\x1a\x65\x56\x65\xf7\x59\x87\xb6\x78\x66\xb7\x1d\x6c\xa6\x40\xd7\x03\x3b\xfc\xe3\xf4\x20\x00\xfc\x62\x53\xd2\x3e\x9c\xa3\xbc\x70\x9b\x4a\x41\xc1\xae\xba\x41\x58\x8e\x0f\x79\xc4\x3d\x67\x63\x03\xed\x25\xe2\xe3\x21\x46\x95\x7c\xfd\x1e\x2c\x9f\xe6\x0d\x97\x76\xbe\xbf\x1a\x4e\x07\x2f\x58\xfd\x9d\x53\x95\xd4\xaf\x3a\x4d\xcc\x9b\x63\xcb\xab\xd4\x27\xad\xbd\x91\x7b\x8d\x3f\x56\x3a\xc6\x89\x21\x12\x3d\x95\xfa\x26\x95\x70\x78\x40\x43\x60\x9d\x45\x0d\xc2\x57\x30\xd8\x21\x4d\xa0\xd0\xea\x32\xbf\x33\xd4\xae\xa0\x12\xa6\xe9\x24\x36\x86\xfc\x15\x84\xdd\x8d\x8d\x4e\x04\x33\x9c\x44\x94\xeb\xcc\xcf\x4f\x24\x96\x2f\x80\x10\x29\x97\x5a\xc3\x67\xa5\x7c\xc9\x3c\xd2\x86\x1a\x24\xae\x5b\xa5\x8f\xc0\x38\xe5\x57\x43\x9c\xc8\x31\xdf\x82\xdc\xbc\x08\x4f\x68\xca\x41\x9b\x1e\x71\x8d\x04\x74\x97\x36\x6c\x27\x2a\x7c\x87\x0d\xfa\x7c\xa2\xed\xed\xc1\x7b\xe3\x6b\xa2\xdc\xc1\x14\x10\xf1\x2a\x1e\x63\xd5\x84\x6e\xd8\xcb\xa2\x20\x57\x09\x83\xeb\xe9\x49\x5b\x46\x06\xff\x03\x95\x9b\xa8\x95\x9b\x01\x56\xf3\x64\x6a\x33\x7c\xdb\xf5\xcb\x8c\x63\xb7\x40\xb6\xcb\x84\xdf\x4c\x69\xe0\x9d\xa0\xd0\xd0\x9d\x4d\x48\xa9\xf0\xa7\xb2\xfe\xd9\xb4\x74\xef\x15\xb2\xcc\xf3\xe7\xf9\x5b\x91\xd4\x92\x4b\xfb\x85\xa8\xfc\xe2\x22\x14\x20\x9b\x9f\xe8\x03\x2b\x05\xa5\x52\x2e\xfd\x9e\xa2\x43\xd6\x94\xdb\xc4\x1f\x6e\x91\x6d\xba\x67\x5b\x45\x96\xd8\x4e\xad\xd1\x33\x44\xd0\xd2\xd0\x98\x18\x42\x66\x14\xe7\x6d\x19\x1c\x37\x61\xae\x94\x99\x12\xc7\x9d\x41\xf6\xe6\x1a\x88\xcb\x5c\x7a\xbd\xcd\xdd\x60\x7a\x70\xf9\x1f\xe6\xd8\x55\xfd\x35\x0c\x7f\x6c\x36\x5a\x24\xe3\x09\x86\x10\x06\xd9\xe7\x57\xd0\x0c\x39\xc5\x45\xef\xc3\x45\x1e\x96\xf7\x11\xed\x51\x16\xf3\x68\x3f\x91\x35\x2b\xaf\x55\x85\xb1\x4a\x6d\x45\xb4\xf0\xf4\xaa\x53\xe8\x03\x89\x42\x8e\x55\x52\x5d\xd9\x0e\xf4\x43\x95\x9b\x28\xad\x7a\x72\x77\x1d\xd5\x82\xf7\x7e\x32\x41\x2d\xe8\x24\x6a\xce\x2d\x07\xfc\xf3\xa5\x49\x0b\x67\xa7\x84\xb6\x75\x06\xa8\x70\x56\x20\x12\xd3\x2a\x72\x2c\xc1\x72\xaf\x50\x51\xeb\xa1\x50\x6b\xcf\xed\x82\x44\xdd\xa7\x29\x4b\x59\x07\x30\xa7\x0b\x69\xa3\x20\xb1\xd0\x94\x38\xaf\x7f\x35\x24\xf1\xd3\x1c\x53\x0b\xbd\x30\xeb\xf9\x2f\x0f\x46\x66\x23\x35\x54\xdd\xb3\x98\x8d\xc2\x24\xbf\xe9\x4b\x65\x0d\x9f\x54\xb6\xd4\x31\x67\x36\xcc\xad\xa5\x5a\xfe\x90\xb2\x51\xad\x2a\x3d\x71\xde\xec\x3f\x52\xdf\xa2\x86\xe7\xfc\x91\x1b\x18\x3b\x9a\x0a\x30\xfd\x31\xf9\xf9\x5f\xed\x8e\x67\x1a\xb3\x63\x94\x3e\x53\xcd\x3a\x88\xca\x4c\x2d\xf2\x42\x4e\xf4\xba\x70\x5a\x0c\x3a\xbd\x7d\x32\x61\xd3\xc6\x4f\xe8\x11\xcd\xca\x2e\x64\xe9\xab\x93\x15\x95\xe2\xf1\x60\x55\x18\x11\x8b\x6b\xc6\xd4\x96\x52\xbb\xae\xc5\xfb\xa0\x60\xdb\x55\x77\x0b\xbe\x01\x0d\xef\x70\x39\x79\x97\x1f\x9f\xde\x1d\x53\x9f\x28\x7f\x13\xa1\x93\x14\x3f\xb6\xee\xa4\xb6\xe8\x8c\xe1\xcb\xe7\x7f\xbd\xff\xf8\xc8\x8d\x09\x09\x6d\x36\xa7\x26\xff\xb1\xcc\x5b\x20\xe4\x2d\xdd\xa8\xc1\x83\x25\x43\x76\xad\x78\x96\xdc\x62\x5c\x30\xc9\xc3\x5c\xfe\xa7\xb3\x7d\xd0\x66\x96\x66\xa4\x8a\xbb\xf7\x07\x55\xed\x63\x08\x31\x12\x43\x65\xb6\x26\x32\x6e\xe4\xa5\x08\xd7\x81\x0e\x73\x3d\xd3\xf0\x00\x21\xdb\xc5\x5b\x01\x81\x2b\xe6\xed\x70\x82\xa6\xe2\x99\xd1\x80\x4e\x37\xad\x41\x02\x12\xcd\xc7\x1d\xcb\xa4\x46\x32\xb5\xb9\x08\x0a\xf3\x05\xa5\xf7\x01\x71\x2a\xab\x6a\x65\x72\x79\x82\x98\x15\x7f\xc1\xe7\xbe\xc3\xfb\xf0\xd2\x71\xa1\xf7\xe0\x21\x0c\xcf\x62\xa1\x9a\x37\xe5\x93\x7d\x24\x37\xd8\xfa\x66\xbb\x55\x61\x2d\xba\x79\x12\x7e\x07\x85\x99\x38\xe0\x61\xba\xb3\xb7\x1d\x88\x8c\xaa\xfb\x7c\x3b\x13\x96\x1a\x69\x5b\xad\x37\xb7\xf9\xe5\x3a\x10\x69\x1b\xb1\x4d\x8e\xe5\x62\x4f\x36\x6e\x8a\xb4\xaf\x8d\xd9\x55\xa3\xaa\x34\x34\xbf\xb0\xb0\x89\x83\xfc\x4c\xf5\x49\xe3\x6e\x91\xe7\x82\xdb\xfe\xf6\xc6\x0c\x37\x47\x7e\xe2\xae\x85\x51\xe5\xc0\xa2\x2b\xd8\x6d\xb9\xc7\x5b\xc9\x64\x0e\xae\xf2\x11\xae\x51\x95\xee\xcb\xd8\xa4\xa9\x2b\x8b\x9f\x08\xc5\xcf\xfc\xc5\x55\x7e\xb0\xe6\x00\x83\xc7\x26\xb8\x56\xbb\x33\x07\x6a\xb9\x3c\xa8\x9f\xba\x38\x98\x46\x9e\x46\x3b\x0c\xd5\xc9\x1f\xf6\xc4\xdf\xe6\x89\x5d\xa7\x96\x5d\x90\xd6\x10\xd9\xb5\xc0\xb0\xf2\xf5\xd7\x55\xc2\x31\x4b\xde\xac\xa8\x86\x08\xa6\x91\xdb\x09\x04\x14\x69\xd2\xee\xae\x25\x2b\xd8\x55\x66\xe0\x19\x9a\xb4\x30\xd1\x0c\x3a\xb2\xfa\xf5\xda\x8a\xfc\x56\xfe\xcc\xe0\x67\x8c\xfd\x7a\xac\x71\xa4\x95\xba\xc4\xc9\xbe\xaf\x5d\x6f\x84\xf2\x80\xeb\x5c\x0c\xd3\x6d\xd9\x37\x7e\x61\x93\x52\x3e\x02\x4e\x7b\x2c\xab\x2e\xb3\xff\x72\x30\x42\x22\x53\x5e\x67\x84\x9c\x89\xd9\x71\x30\xed\x45\x40\x53\xd8\x89\x8e\x99\xb0\xc2\x64\xf5\xb1\xc2\x0f\x8c\xa6\xaa\xd5\x49\x0e\x5e\x79\xe5\xed\xad\x3a\xac\x12\x8f\x9a\x99\x60\x45\xe7\x4f\x39\x39\xb2\x35\x18\x7d\x3d\xc9\xfe\x5d\x55\xee\xdf\x2a\x94\xb2\x70\x08\x63\xd3\xb3\xb8\xcc\x72\x6a\x46\x21\x24\x12\xf9\x36\x82\x61\xa4\x91\xc5\x15\xbd\x31\xfe\x4a\x4c\x1f\xa8\xea\x71\xf7\x97\xec\x8c\x9e\x4d\x23\x9b\x9d\x4e\xcc\x93\x0d\xc8\xfa\xb7\x03\x8c\x25\xca\x73\xf4\x9e\x7a\xb6\xba\x3d\xa4\x4b\xc2\x8a\xd1\xb8\x3d\xde\x29\xa1\xc7\xf3\x29\xaf\x95\x57\x3c\x46\x88\xc0\xce\x1c\xe9\xe8\xb3\xc7\xb3\xbb\xba\xd4\x20\xdc\x4f\xf5\xd6\x79\x56\x90\xa7\x47\x04\xe7\xad\xa9\xa8\xc7\x40\xcd\x9e\x5e\xbf\xb2\x79\x66\x88\x45\x57\x5e\x9d\x9e\xec\xfe\x8e\xdc\x17\x4e\x8d\x20\x81\xae\x46\x04\x07\xba\x3e\x0c\xec\xb5\x1d\x67\x89\x67\x2b\xa1\xb0\x42\x81\x31\xfb\xf7\x9d\x88\x00\xdb\x0a\xb8\xa7\xcb\x38\x1f\xcc\xc9\xcd\x5e\xc5\xab\xde\xa2\x1a\xd9\xd5\xd4\x39\xbc\x93\x1e\x84\xad\xd7\xf0\x69\x67\xa7\x27\x81\x2c\xb5\x25\x5b\x8f\x44\xc4\xd5\xd8\x54\xf2\x6f\x6b\x63\x43\x7e\xbf\xb7\x93\x2d\x29\x37\xab\xa9\xc0\x22\x65\x94\x23\x49\x03\x7d\x8b\x9f\xce\xb5\xbc\xfb\xf4\xf0\x29\x0d\x61\x81\xc0\x38\x98\xf1\xa9\x6f\xc8\xa7\x46\x0c\x1a\x81\x3e\x94\x20\xe9\xad\x26\xd1\x9f\x2b\xc1\x54\xfd\x58\x04\x6f\xe0\xe7\xd2\xba\xad\xc7\xc2\x70\xb0\x58\xc6\xe2\xbd\xe6\x5e\xd5\x78\xe0\xff\x29\x4c\x50\xd2\x27\x7b\x67\xf4\xf7\x31\x82\x1e\x3a\xec\x60\x2f\xd9\x13\x5a\xbc\xd0\xf4\x4c\x01\x9f\xdd\x53\x53\x04\x25\x81\x6f\x67\xcd\x7b\x08\x7f\xd3\x51\xf8\x41\x5f\x9c\x3e\x5c\x26\x53\x92\x76\x53\xfc\xeb\x19\xaa\xe6\xc4\x97\x2d\xf2\xbf\x68\x6d\x9f\xdc\x07\x1e\xcb\x5f\x75\x9e\x5b\x65\xd7\x3d\x25\xea\xe0\x55\x41\x84\x5e\xa6\xbd\xf0\x2d\x5b\x4b\x59\xc1\x30\x16\x7c\xd8\x10\xf4\x3b\x26\xd4\xeb\x2c\xf8\x9e\x3b\xa0\xa9\xff\xd5\x93\x3d\xe0\x4e\x7e\xc5\x48\x60\x38\x7a\x0a\x62\x22\x52\xb1\xc6\x5c\x87\x1f\xe2\x90\x43\x87\xa7\x7b\x71\xd1\x64\x3f\x76\xf7\x43\xc1\xd5\x38\xe4\xca\x40\x57\x95\xe4\x23\x5e\xc1\xb0\xb8\xa8\xfc\x41\x29\x7b\x6b\x46\x54\x04\xe6\x83\xed\x0e\x6c\x9c\xd8\xf8\x80\xe9\xb4\x75\x9a\xce\xcc\x2a\x39\x6c\xb6\x81\xd3\xe7\x8f\x61\xa6\x54\x2d\x98\x01\x23\x1f\x93\x7a\x9e\x63\xa3\x0e\x89\x49\xc4\x25\xec\x2b\x31\x80\x7d\x6f\xc8\x88\xbb\xa2\xfd\x77\x9b\x6a\xf9\x84\x24\x8b\x25\x16\x4f\xe2\x25\xb9\x57\xf9\xb1\xbf\x07\x04\x27\x7c\x45\x56\xef\x02\x62\x23\x6a\xe8\x05\xd5\xc7\xd6\xfb\x91\xe7\xda\x7e\xf4\x53\xeb\xd5\x09\x8e\x20\xe9\xde\xac\x85\xa7\xba\x6b\xe0\xb2\x88\xee\x68\x0e\x19\x86\x03\xa9\x07\x2b\xae\x8d\x27\xfb\x42\xe2\x07\xc3\x8d\x1c\x0e\xd2\x2b\xe3\x7a\x51\x88\x51\xe9\x8b\xc6\xc8\x0e\xc9\x45\x27\x2d\x0b\x6f\xdb\x3b\x6c\x2a\x01\x37\x95\xd4\xdb\x37\xf1\x85\xf3\x6a\x51\x3d\x2f\x74\x1c\xee\x33\xe2\xd4\x50\x2d\xdb\x92\xe1\x8d\x73\x53\x5b\x23\xc8\x12\x91\xe2\x31\xf2\x55\x82\x99\xdd\x67\xbe\xde\xaf\x5d\x8f\x0d\x2b\xc4\x1c\x3c\x86\x2c\xc9\x88\x35\x3d\xad\x16\xf8\x7c\x08\x49\xf8\x69\xf5\x76\xc8\xa9\x79\x1e\xf6\x3e\xb6\xa4\x68\xc2\x51\x49\x72\x2b\xdc\x2f\x84\xb1\x8a\x7d\x58\x4d\xa9\x17\x8f\x08\x0e\x9c\xb7\x3c\x72\x49\x93\x78\x58\x11\x14\xa2\x0c\x01\x9a\x6d\x22\xf7\xb3\x17\x68\xb1\xfb\x16\x9f\x53\x82\x6f\x16\x79\x3e\xb8\x08\x7c\xbc\x64\xc0\xbf\x8f\x8c\x4c\x4d\xa6\x2c\xdc\xa5\xf2\x87\x2b\xe1\xa0\x0a\xad\xdb\xd1\xf8\x9c\xf8\xab\x0e\x7d\x36\x2e\x3e\x4b\x49\x39\xc7\x55\xe9\xb9\x2a\x55\xa3\xf2\xa1\x90\xc0\x32\x88\x0a\x9e\x11\xe6\x49\x5e\xc7\xfd\xc0\xaa\x13\xda\xa9\x35\x93\x6e\xab\x53\x36\x90\x3e\xba\xdb\xc5\x96\x30\x74\xd3\xf5\x5d\x45\x90\x97\xde\xcc\x88\xa6\x53\xa4\x45\xa2\x15\x8a\x39\x9d\xff\xae\x0a\xfd\xa4\xbd\xe8\xa9\x68\x82\x37\x6a\xfe\x4c\x48\x2b\x89\xe3\x72\x3a\xb6\x6d\xe4\xf7\x7a\x1e\xe5\xce\x9d\x92\x81\x48\x45\x96\xec\x62\xb0\x6a\x6d\x4f\xa4\xe8\xe7\x39\x7a\xfe\x5e\xac\x4e\x82\x3b\xf3\x8e\x3c\xd0\x98\xbb\xd1\xe5\x0b\x6b\xe3\xdd\xc8\xa6\xa5\x6d\xc1\x8c\xfb\x7b\x6e\x0a\x55\x95\x1c\xf1\xa5\xc7\x79\xaa\xa5\x18\xac\x6b\xdf\xf2\x95\x2a\x1f\xab\x0a\xd9\x09\xa7\xb3\xb6\x8e\xee\x8e\x24\x09\xa3\x63\x99\x83\x5e\xa3\xe0\xef\x42\xa5\x21\x9e\x4c\xdd\x87\x18\x8d\x8f\xaf\xb1\xbf\xce\xe3\x78\x8e\xea\x2d\x46\xe0\x8c\x0a\x5d\x7e\xd1\x9a\x56\xf2\xf5\x5b\x30\xf1\x66\xb8\x09\x18\xe9\xbd\x67\xf7\x78\xec\x67\x7d\x76\x51\x63\x28\x88\x1e\x44\x89\xda\x77\x46\xc8\xdc\x3f\xeb\xb5\x27\x46\xb6\x8f\x6b\xb8\x2c\xd2\x32\xd9\x2f\xfd\xd8\x87\xd4\x36\x4a\x12\xa4\x2f\x37\x20\xbf\xad\x29\xda\xc5\xd8\x96\x73\xb5\x7e\xae\xe0\x8c\xef\x76\x7f\x7d\x82\x91\xe1\x29\x7d\xf4\xc3\x50\xaf\x7d\xde\x0d\xaa\x7d\xeb\xeb\x0a\x4e\x49\x03\x8f\x9c\xe2\x1d\x04\xd3\x2c\x55\xbc\xdd\xb0\xf2\x84\x75\x8f\xcb\x2b\xdb\x7f\xaf\xa8\x25\x7f\xb6\xa0\x6a\x5d\x24\x53\x16\x28\xdb\x77\x5c\xbb\x3d\x16\xbc\x4c\x8a\xf4\xa6\xea\x5d\x88\xa2\xbc\x69\xa9\x0c\x73\x63\x5b\xb8\x16\xa8\xca\xf1\xc8\x29\x18\x4e\xd4\x10\x3e\xf6\xf3\x13\x34\x28\xeb\xa7\x3e\x2f\xfd\x6c\x2b\x9e\x73\x4a\xbd\x2e\x27\x51\x99\xfd\xae\xf6\x9c\x45\x00\x41\x9a\xd6\xdd\x6b\x61\xf9\x95\x2b\x77\x64\x6c\xc3\xc0\x32\x33\x3f\x58\x6e\xab\x50\xf8\x4f\x3f\xe2\x5b\x45\xf2\x8f\x42\x4f\xd6\xe8\xcf\x1d\x07\x04\xb3\x72\xe5\xd4\xf6\xd4\x96\xd8\xb8\xb9\xf8\xdd\xe2\xc1\x69\xd8\x8e\x1f\xbd\xe3\x79\xe5\xba\x33\x30\x8c\x25\x39\x73\x33\x36\xf6\xe6\x6a\xae\xe4\xd3\xf3\xf5\x34\xf7\x9d\x34\xb2\xeb\xf1\xb2\x7c\xd9\x57\x18\x0d\xbf\xa7\x90\x19\xf0\x4b\x29\x8f\x0b\x76\xd2\x7d\x1c\xfb\xce\x22\x8f\xf6\x92\xe9\x7a\x0a\xa6\x64\xc3\x87\x7e\x2b\x1e\x9d\x8b\xe5\x62\xcb\x5c\xcc\x65\xfd\xf0\xe6\xcd\x4b\x11\x1e\x43\xde\x0a\x87\xb9\xb4\xc7\xb5\xf5\xe0\xb9\xe4\xd5\x46\x45\xe7\xb4\x48\x11\xf5\xfb\xf7\x2a\x6d\xf7\x45\x4b\x30\xd6\xdc\xf0\xd6\x24\x19\x42\x9a\x78\xaa\x53\x65\x1d\x68\xf7\x07\xde\xae\xec\xb2\xfd\xc0\xf8\x34\xc7\xdf\xe9\x0c\x54\x47\x45\x60\x83\xdc\x97\x32\xad\xeb\xbc\x3b\x5e\xe1\x45\xa8\x25\x84\xed\xfd\xfa\x71\x68\xd9\xa7\x9c\x32\x03\x64\xeb\x97\x37\x3c\x97\x65\x26\x04\x96\x1b\xf7\x4d\x14\x4f\xa6\xf6\x3f\xbe\xf3\x49\x81\xb3\x23\xfb\xd2\x95\x4f\x8a\xfb\x2f\xf8\xc2\xeb\xdb\x67\x23\x15\x1e\x70\xb7\x4b\x1d\x58\x9a\xd1\x4c\x1b\x9a\x4c\xb9\xed\x1b\xff\xa0\x99\x1d\x7f\x65\x53\x0e\x2d\x54\xa3\xa9\x66\x5f\x23\xbc\x2f\xaf\xc8\xa3\x2c\x35\x7a\xd7\x72\xe2\xb2\x6c\x91\x70\xa9\x95\x5e\x2a\x20\x4d\x73\x88\x5e\x9a\xc5\x11\x9c\xa3\x48\x47\x5c\xa5\x62\x5a\xa1\x63\xdb\xfe\xf1\xa2\x67\x1c\x05\x35\xab\xc1\x4d\xcc\xbe\xb5\xb8\xe6\x9b\xba\xd9\xe0\x26\x05\x8d\x0c\x6f\xd2\x09\x43\x65\x99\xdb\xb6\x84\x5a\x15\x5d\x7f\xe6\x4b\x43\xcd\xeb\x24\x23\x1f\x7a\xc4\x70\x8e\xca\x6a\x97\xc1\xce\xaa\x87\xac\x47\x16\x94\x34\x36\x3d\xe7\x75\x31\xbb\xa4\x7c\x60\x9a\xdf\xe5\xfc\xa7\xa8\x29\x93\x3a\xa1\x27\xfa\x0a\xf3\xb7\xf1\xb1\x5b\x9e\x0f\xb4\x14\xaf\x46\xfe\x98\x9a\xa2\x42\xe9\x8a\x52\x92\x48\x12\x86\xd5\x26\xf0\x0e\xb4\x19\xc9\x1b\xb0\x0f\xdf\x94\x0a\xb0\x72\xf0\xc5\xb4\x07\x13\xa7\x4f\x94\xb2\x43\x87\x96\x14\x59\x0b\xf4\xa3\x14\xb9\x4c\xf9\x7d\x31\xa5\xda\x39\x08\x35\x37\xb9\x28\x58\x2a\x63\xb6\xb1\xd8\x1e\xbf\x11\xd2\x4c\xd4\xbe\xbd\x95\x18\x7e\xdb\x9c\xb2\x46\x70\x76\x1f\x1a\xad\x68\x70\xe4\xf6\x93\x6d\x79\x43\xa4\x0b\x3f\x24\x67\xa9\x51\xd9\x0e\xaa\xc0\x56\x4b\xb4\x76\x23\x4a\x99\x1d\xd9\x03\xad\xe0\xbd\x34\x46\x02\x2c\xd8\xa1\xcd\xcc\x68\x31\xc9\x17\xc5\x00\x17\xf3\x40\xd0\x47\xea\xd0\x3f\xac\xbd\xb3\xb7\xad\xca\x1b\x15\x76\x49\x43\x61\x2f\x5d\x8d\x57\xaa\x1f\xf6\x9e\x41\xf7\x2b\x85\xd0\x56\x27\xc2\xb1\xd2\x07\x88\x80\xad\xbf\x1d\xc9\xd2\x76\x6f\x70\x88\x9d\x57\xf0\xa8\xb5\x8d\x19\xe6\xee\xae\xd8\x33\xab\xf5\xee\xce\x04\xbf\x25\x62\xa7\xaa\x7f\x68\x8f\x3b\xea\xe5\x35\xa5\xca\xf7\xe5\x8f\x51\x8c\xa2\x79\x1b\xc4\xb7\x40\x46\xd8\xa6\x39\x0b\x62\xbb\xc9\xe2\x85\x6b\xef\xa7\x06\x60\xa2\x37\x68\xa8\x4b\x16\xb8\x42\xaa\x44\xf9\x93\xf6\xa7\x3a\x52\xad\x7f\xc7\x45\x23\x2e\xa7\x69\x0e\x32\x08\x3f\x12\x56\x6a\x46\x9c\x6b\x92\x24\x6f\xc9\x83\xbd\xf3\x9f\x5a\xb7\x3b\x42\xd2\x7f\xd5\x8e\xe4\x09\x43\xc6\x45\x2c\xa4\x8a\x55\xbf\x24\x48\x1a\x92\x25\xe7\xfe\xc2\xad\xf5\x62\xb4\x0d\xbe\x7d\xcc\x24\xd6\xde\x5f\xe6\xdd\x4f\xf8\x7d\xe5\x4d\x3b\xff\xc6\xcb\x7a\x7d\x3a\x5e\xbd\xaf\x8d\x7a\x83\xc7\xbc\xcc\x99\xea\x4b\x32\xe5\x44\xf9\xd3\xe7\xc9\xca\xfc\x9e\xd9\x95\x25\x43\x0d\xbf\xa9\x20\xec\x98\xc6\xaf\xae\x99\x85\x2f\x50\x4d\x9a\x33\xc3\x30\x1b\xb7\x4c\x3a\xef\x26\x24\xe5\xbf\x05\x87\xc2\x46\xe9\x6e\x16\xad\x34\x5e\x7d\x5b\x2b\x62\x0a\x6a\xfd\x29\x6e\x71\x9e\xa9\x8a\x2f\x7e\x73\x58\x97\x58\x5a\x1b\x67\x56\xad\xba\x48\x6c\xae\xd1\xcd\xb6\x91\x1e\x9a\xbd\xb0\x66\xa8\xe5\xb8\x75\x68\xec\x57\x7f\xcd\x53\x80\x9f\xa7\x81\xcd\x75\x30\xbe\xf4\x50\x00\x7f\xba\xb3\x1e\xee\x96\x71\xee\x32\x2d\x6f\x12\xc7\xa4\x76\x5b\x1a\xf7\xce\x4d\x8b\x1b\xc4\xac\x51\x15\xad\xfb\xc1\xb7\x43\x30\x73\xb5\xd5\x25\xa2\x61\xab\xb0\x82\x63\xef\x70\xe3\xb0\xb1\x16\x9b\x62\xdd\xb0\xa0\x1f\xca\xbd\x13\x2e\xc0\x0f\x1a\xe3\xd9\xbb\x34\x95\x8c\xc5\x93\xb7\xa5\xe0\xd8\x58\xf0\xa3\x19\xfa\xd0\x43\xa8\x22\xbc\xef\x04\x47\xa6\xc8\xf8\xa7\x75\xa1\x9c\xdb\xff\xac\x88\x5f\x8a\xda\xd4\x80\xdb\xe6\x52\x06\x20\xdd\x54\x69\x3c\x9f\x9a\x66\x11\xcb\xf1\xdf\xca\x4e\xfa\x5f\xa5\x1b\x7f\xad\x66\x94\xd7\xb5\x9b\x19\x3d\xbc\x8e\x8c\xfc\x3c\xfa\xde\xaa\x41\x7e\xc6\xb0\xfb\x05\x6a\xa7\x45\x8a\xe0\xa9\xa9\x8f\x3c\x6a\x28\x06\x25\x59\x71\xa3\x21\xcf\xe5\xcd\xc1\xfc\xaa\xf1\xd2\xbd\xc9\x5d\x30\x36\x25\x3f\xaa\x35\x65\xe3\x42\x59\x73\xbb\xdb\x19\xe6\xce\x3e\x22\x7d\x89\x4c\xa1\x60\x17\x19\x56\x8c\x31\xdd\x6d\xc1\x3c\x4b\x7e\xb8\x3a\x3d\xda\xe0\x05\x55\xaf\x73\x1c\x47\xd8\x6f\xd2\xa7\x79\x28\x32\xdf\x9d\x7a\xc3\xa8\x93\x2b\x24\x04\xc3\x0a\x18\x62\x7a\xef\x7e\xd2\x32\xbc\x3d\x97\x81\x73\x63\x7f\x16\xab\x98\xe0\xc2\xed\x16\x40\x77\xd8\x4d\x52\x27\x8b\x2d\x44\xbd\xbd\xeb\xf8\x5a\x37\xb3\xae\x43\x54\xcd\x01\xfb\x52\xd8\xa3\x37\xb7\xf4\x6c\xf9\xaa\xf7\x63\x37\x6e\x24\x4b\x37\xc6\x5f\x34\xff\x04\xbb\x72\xf7\x72\xd9\x84\x28\xcf\x63\xd5\x5a\x3c\x53\x74\xec\x09\x36\xa7\x84\x9e\x23\x0e\x3e\xd9\xe5\x2f\x62\x19\xd4\xe6\x4e\xf7\x45\x24\x90\xcc\x29\x25\xff\x39\xf6\x51\xb1\xd1\x98\xea\x64\xe9\x61\x93\x53\x68\x81\x3e\x11\xe1\x73\x20\xb3\xf1\x04\x3d\x32\xd5\x3d\x84\xb7\xf5\x61\x6b\x92\x12\xc5\xf4\x4d\xfc\xa7\x08\xfc\xaf\x42\xf2\x49\xb0\xe9\xb1\x45\x04\x0c\x99\xf8\xe2\x30\x54\x04\x6e\xf8\x16\xa5\x3a\xf4\xd0\x33\xcd\x6b\x25\xc2\x23\xee\x86\xc1\xb6\x8e\x83\x73\xc9\x90\xe8\x9e\x4c\x16\x9b\x00\xad\xdc\x23\x25\x6a\xc4\x03\xff\xe0\x8f\x66\x75\x30\x67\x6e\xaf\x99\x44\x7b\xbe\x60\xe5\x22\xc3\x88\x3b\x7d\x36\x6c\x8f\x4c\x28\x76\xa0\xb7\xc5\x50\xdf\xc6\xa8\x51\x66\x98\x50\x74\x2e\x6a\x46\x77\xee\x61\xdd\x20\x6c\xf4\x9b\xee\x35\x94\x51\xd1\x7b\xc7\xa5\xa1\xea\x8c\x9d\x1c\x7f\xac\x09\xbe\x6c\xd3\xb0\xb9\x2b\x0b\x59\xee\x94\xb6\x7f\x56\x28\x58\x0e\xb9\x26\x1a\xc9\x5a\xcb\x58\x3b\x6f\x7d\x69\x39\x00\x91\x49\xf0\xfb\xe9\x47\x63\xb3\xa5\xdf\x70\xd6\x8e\x32\x25\x16\x99\x9c\x93\xd3\xfb\x83\xa2\xe3\xdb\x25\x90\x76\x48\x38\xd4\x32\x87\xf2\x08\x4a\x6a\x9f\x59\x48\xb2\x1d\x60\x78\x6f\xf0\x2a\xf2\xc5\x85\x39\x7b\x5f\xcf\x34\x27\x8b\x65\xa0\xd7\x51\x4f\x9a\x6d\x16\x4b\x1b\x2f\x52\x69\xe0\xf7\x4a\x5f\x19\xde\xee\xc7\xd7\xc2\xd1\x04\x9c\x40\x77\x89\x7e\xa0\xba\xb8\xfd\x48\x7a\x54\x02\x84\x80\x71\x94\xa7\xc4\xef\x07\xde\xf1\xba\xec\x9c\xdb\x0f\xc5\xb2\x32\x28\xd6\x48\xd8\xda\x19\xd6\x5b\x5a\x02\x74\x0b\x64\xda\x65\x40\x3d\x7a\x90\x1a\xd9\x8d\x80\x77\x29\xdd\x00\xbd\x4b\x0d\x05\xd2\x09\xa7\x1c\x3f\xac\x49\x2d\xa2\x7a\xe8\xdb\x3e\xd8\xbc\xf2\xd3\xfd\xe2\xd3\xd7\x7a\x14\xd0\x70\x3a\x11\x75\x9f\xf6\xaa\x3a\x39\x6a\x90\x8d\x7b\x79\x0c\xa6\xdc\x28\x2a\xcf\x81\x2a\x12\xf9\x1e\x83\x38\x13\x9d\xea\xe9\xeb\x55\xe5\x5d\xee\x4d\x74\x95\x97\x43\x5d\xb1\x5b\xd7\x5c\x69\x32\xb9\x60\x19\xba\x94\xf2\x85\x1a\x7e\x73\x46\xb1\x5b\x57\x01\x7a\xf2\x90\xb8\x1e\x55\x25\xbf\x57\x40\x6a\x7e\xc9\xdf\xaf\x75\xc2\x99\x5d\x8f\x36\x5e\x0b\x88\x84\x88\x8c\x8e\x02\x1f\x55\xf5\x11\x15\xd1\x53\xf4\x02\x72\x4a\x1b\x94\xb8\x02\x96\xaa\x63\xf2\xf7\x2a\x33\xa5\x04\x81\xef\x24\x8b\xa3\xc1\x6a\x61\xb7\x0b\x29\x5d\xe8\x21\x2a\x35\x11\x03\xfc\x77\xfb\x39\x1c\xbd\x35\x85\xf5\xf4\x74\x59\xfc\xc8\x81\x0d\x8c\xae\x47\x2f\xcf\xc9\x4b\x64\xe4\xf3\xa1\x89\x1c\x02\xb2\x67\xdd\xfb\x0e\xa4\x4c\x6e\xcd\x11\x5d\xb1\xf7\xbf\xf0\xb3\x76\x05\xb0\x2a\x11\xfb\x64\x55\x47\x3f\xaf\xef\x07\xab\xb0\x35\xbe\x18\x59\xb9\x2b\x7a\xe7\x85\xbc\x70\x08\xa8\xf6\xd0\x99\x62\x3a\x52\x0a\x5b\xa6\xdf\x3a\xed\x68\xee\xec\xe7\x61\xde\xa1\xac\xe9\x83\x63\x0f\x46\x4a\xb6\xd2\x9b\x7f\x3a\x2e\x90\xee\x20\xe1\xf0\xae\xd4\x63\x6c\x26\x0e\xdd\x21\x7e\x1b\xb4\x8e\xd6\xe2\xf1\x1b\xca\x60\x1c\x53\x77\x8d\x7b\x2b\xad\x7b\x49\xb8\xe3\x86\xdf\xdb\xc3\x5e\x7f\x31\x4e\x08\xea\x5b\x02\xbd\x2a\x91\xf9\x65\xd1\x6f\xf2\x9b\xc6\x78\x6e\x7e\xb3\x7a\xc0\x8b\x72\xf1\xe2\x77\x57\xef\x7c\x76\x67\xf1\x9b\x4e\x4a\xbc\x28\x58\x80\xb8\xcf\x9d\xa6\x68\x10\x1f\x41\xd7\x69\x2c\x1b\x21\xff\x5a\x89\xe3\x90\xef\xf8\x88\x72\x13\x28\x3c\x20\x50\x73\xfb\x79\x23\x3f\x02\x2c\xaf\x00\xa2\x63\xfe\xe3\x6e\xd7\xca\x2f\x9b\x20\x77\xc9\x08\x8e\xa0\x4c\x1c\x53\x97\xe5\xda\x6b\xf5\x77\xce\xdb\x63\x25\x7d\xa7\xf4\x67\x9e\xb7\xeb\x11\x64\xe1\x57\xd4\x60\x74\xc5\xb0\x6d\x4c\x1e\x85\xe4\x01\xa1\x6c\xbe\x26\x68\x72\xbb\xf0\x0e\x09\xb7\x4e\x78\xf2\x1f\x2a\xf9\x6c\xca\x9d\xc3\x5d\x8b\x2e\xd0\x7e\xe3\x76\x24\xce\x7f\xf9\x12\x45\x8a\x75\xf9\x91\xe4\x99\xe0\x97\x25\xe6\xe8\x52\xcd\xdf\x46\x62\x09\x87\xa8\x2a\x9a\x2c\x04\x4c\xe0\xe1\xa4\x15\xa6\xc2\xc9\x0f\xf8\x39\xd1\x8a\xcb\x78\x90\x53\xdf\x67\x01\x74\xd7\x46\x48\xe7\x25\x72\xdf\xa2\x25\xee\xe0\xf5\x59\xdc\x90\xbd\x28\x7d\x21\x16\x72\x24\xb7\x21\x0a\xd9\xac\x8c\xa1\x0d\x2a\xa3\x27\x6e\x72\xa0\xfd\x1a\x73\xd2\xca\xa8\x0e\x2d\x4a\xe0\xe0\xb2\x0e\x62\x26\x0e\xf1\x5b\xeb\x77\x41\xa4\x83\xd0\xb0\xae\x35\xe8\x7b\xab\xbc\xcd\x85\xab\x93\x97\x50\xef\xa4\x23\xed\xc6\x00\x48\xf9\x12\x49\x4a\xff\x7a\x45\xa3\xf7\x7a\x5f\x96\xd6\x70\x27\xf6\x0a\xae\x43\x30\xce\xec\x5c\x6c\xad\x53\x2e\x91\xfe\xde\x7b\x13\x87\x63\x37\x83\x32\x7b\xd7\x6a\xf3\x2e\x33\x33\x96\x88\xfe\x96\x16\x48\x7d\xd2\x66\x0c\x54\x19\x4e\x99\xd9\xf4\x56\xb0\x26\x22\x80\xa2\x34\xd5\x51\x4d\xef\x6c\xe6\x1e\x31\x13\x6d\xa7\x45\x6f\x1c\xe8\x67\x19\x3d\xc0\xe8\x9c\x51\xbf\xc8\xaa\x56\x55\x1f\x8c\x2c\xbc\x20\xfc\x74\x6c\x94\xbb\x93\x81\x7d\x19\x82\xad\xc9\x47\x7e\xe1\xc6\x15\xb5\x1d\x65\xe0\x51\x9f\x0a\xfd\x12\xd2\xd2\x8e\x71\xc0\x7b\x1c\xd3\x93\x9e\x82\xae\x50\x13\x3f\xaa\x6b\xb3\x9f\xe8\x36\x1c\x09\x84\x76\xdf\x14\x3e\xdb\x6d\xf6\x69\x07\x9c\xbf\x88\x9c\xd2\x39\xef\x0d\xef\x36\xc9\x70\xa9\x17\x76\x98\x9f\xd8\x3e\xe3\xa6\x1f\xb4\x94\xa7\x45\x89\x32\xb2\xbe\xb4\xeb\xc5\x60\xfc\xea\x69\xb1\x8b\x66\xeb\x9c\x69\xee\x60\x6a\x87\x36\x08\xd4\x6f\xc9\x61\x2a\x80\xa5\xc1\x3f\x0d\x9a\x11\x5f\xf6\x9c\x7e\x9a\x2b\xbf\x8a\x26\xe2\x56\x43\x5e\x97\xa5\x70\x83\x55\x4e\x42\x60\xdc\x97\xec\x3e\x1d\x93\x32\xdd\xd7\x6d\x46\x7f\x02\x99\x5e\xcf\x17\x6e\xb6\xee\xf2\x70\x09\x1f\xa3\x49\x49\xea\x88\x1e\xa8\xc7\x43\x54\x7b\x3c\x2e\x42\xb5\x38\xe5\xec\x2c\x3e\x6b\x79\x6c\x7c\x69\xbb\x69\xbc\xdf\x64\xa0\x8c\x80\xe0\x71\x54\x84\xd6\x6b\x46\x92\x16\x93\x88\x10\xfe\x55\x4c\x7e\x35\xf3\x8b\xe4\xbb\x87\x34\xa2\x3f\xa0\x85\x7b\xee\x75\xb1\xab\xd4\x26\x0d\xb2\x5b\xed\xc8\x4e\x2d\x31\xb6\xaa\x8e\x70\x66\x04\xc3\xbb\xbe\xf4\x8f\x9f\x9a\x14\x88\xe8\x23\xf7\xc9\x65\x92\x9d\x5a\xff\x85\x7c\x18\x78\xa5\xc2\x77\xd7\xd0\x10\xba\x6b\x26\x8a\x5f\xba\xf2\x82\xbf\x48\xc9\x94\xa7\x1c\x13\xd3\xbc\xed\x6a\x8a\x97\x94\x88\x8b\x45\x7b\x03\x7a\x32\x3d\x55\x55\xa0\x80\x23\xdf\x52\x2a\x99\xdc\xbf\x7e\x50\x1f\x8b\xa9\x65\x0e\xe6\xfc\x58\x86\xab\xeb\xf4\x7a\xeb\x5c\x94\x94\x2d\x8b\x7d\xbc\x99\x8b\x95\xb8\x50\x63\x81\xb9\x64\xfb\x31\x45\x3a\x82\x0e\x7e\xe9\x9c\xac\xcc\x8a\x2c\x55\xc8\x96\xb2\x77\x13\x40\x20\x95\xca\x3c\x2d\x10\xea\xe3\xa3\x1a\xef\xbe\xb3\xbc\x7f\x19\xef\xa0\x15\xea\xdd\x5a\xb3\x7a\x88\x85\xeb\xf8\x7c\xcb\xe9\xcb\x8b\x89\xad\x81\x49\xed\x1b\x19\x81\x7e\xd8\xda\x35\xd3\x43\x0b\xae\x80\x43\x28\xe8\xf6\xfe\x6a\x51\x78\xb0\xa5\xf4\xe3\x0c\x6a\x50\x5c\x9e\xe5\x95\x10\x1a\x9e\x24\x42\x99\xc6\x27\x97\xf3\x23\xf4\x03\x89\x02\xcf\xed\xdf\xe9\xce\x5b\x9e\x56\x89\x3b\xe3\xf2\x28\x1c\xa7\x5a\x89\x0d\x4f\x00\x00\x58\x5c\xe4\x74\x5c\xcc\x61\x2e\x70\x88\x99\x33\x1c\xe6\x02\x07\xf8\x78\x41\x42\x5c\xbc\xfc\x5c\x20\x11\x2d\x90\x00\x84\x8f\x0f\xc2\x27\xc8\xc1\xcb\x0b\xe1\xe5\x5d\x03\x45\xb5\xfe\x3f\x06\x3b\x07\x73\x2b\x84\xe7\xff\x6e\x88\xb7\x15\x40\x01\x00\xe0\xcd\x3f\x03\xd2\x01\xe1\xe2\x0e\x73\x86\x03\x8a\x76\x30\x0b\xb8\x0a\xcc\xc2\xca\xcc\x86\x5e\x88\x1b\xcc\x2d\xcc\x25\x42\xcf\xc7\x0b\x12\xe0\xe2\x15\xe4\x02\xf1\xd1\xab\x83\x84\xe8\x2d\x5d\x5c\x1c\x21\x3c\x3c\xee\xee\xee\xdc\x56\xff\x68\xbb\xff\xd0\xdc\x0e\xce\x16\x4b\x21\x47\x00\x00\x00\x14\xff\x12\xb5\x2c\x5d\xed\x4c\x21\x10\x59\x07\x33\x57\x3b\xb8\xbd\x0b\x04\xa2\x06\xb3\x80\x23\x01\x50\xe1\x53\x33\xcf\xff\x60\xfe\xf3\x27\x04\x62\x09\xb7\xb2\xb0\x74\x01\x40\x22\x7c\x04\x80\x73\x30\x00\x00\xe4\xff\x3f\xa3\x6d\x65\xee\x62\xf9\x0f\x99\x2a\x63\xc0\x02\x00\xe0\xe5\x7f\x21\x2a\x56\x76\x70\x17\x4f\x47\x38\xf0\x9f\xa9\x78\x1c\xed\x2d\x24\x6b\x3e\xbc\xfb\x1f\x39\x2a\x5a\x56\x76\x70\x00\x24\x20\x28\xcc\x2f\x02\xe6\x17\x10\xd4\xde\xaa\xd2\x00\x00\x80\xe0\xbf\x10\x4d\x2b\x2f\x38\xc0\x0b\x85\x7e\xce\x91\x38\x04\x00\xe0\xc3\x7f\x3d\xbd\xd7\x50\x04\x10\x56\xb6\x70\x08\x0f\x0f\x8f\x9d\xbd\x8b\xad\x83\x05\x0f\x02\xe6\x66\x65\xe6\x60\x8f\xe4\xf9\xbf\x3d\xf3\x20\xe0\x22\x70\x11\x01\x30\x0c\xc4\xc7\xc7\xcf\x6f\x6e\x8e\x80\x23\xf8\x61\xa6\xe6\x60\x10\x4c\x10\x04\x82\xf3\x9b\x0b\x72\x5b\x99\x39\x70\x3b\xda\x5b\xb4\x98\x87\x0f\xfc\x2b\x4c\x51\xee\x9d\x6c\x05\xd4\x24\xf0\xff\x04\x00\x00\xff\xff\x7f\xd8\x56\x73\xa3\x1a\x00\x00") + +func staticImgCowyoAppleIcon144x144PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAppleIcon144x144Png, + "static/img/cowyo/apple-icon-144x144.png", + ) +} + +func staticImgCowyoAppleIcon144x144Png() (*asset, error) { + bytes, err := staticImgCowyoAppleIcon144x144PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/apple-icon-144x144.png", size: 6819, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAppleIcon152x152Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x55\x50\xdc\x0d\xb3\xf4\xff\xb8\x3b\x01\x82\xbb\xbb\xb3\x04\x77\x77\x0d\x0e\x0b\x6c\x70\x58\x24\x10\x9c\x10\x20\xb8\x3b\x09\x04\x09\xee\xee\x04\x77\xd7\xe0\xee\xee\xf2\xd5\xf3\xdc\x7c\xef\x79\x4f\x9d\x8b\xbe\x9a\x5f\xf7\x4c\x75\xd5\x84\xab\xab\xca\x61\xa0\x12\xa3\x02\x00\x80\xa1\x20\x2f\xad\x09\x00\x40\xea\x3f\x42\x86\x03\x00\x80\x83\x74\x02\x0f\x00\x00\x78\x1b\x09\x15\x09\x00\xa8\x8a\x41\x7b\x36\x47\x00\x00\x00\xc6\x4d\x53\x4e\x12\x28\x1f\x23\x3d\x00\x00\x80\xd2\x52\x5e\x53\x05\x00\xbc\xe9\x01\x20\x20\x04\x00\x1e\x01\x00\x08\xd8\x07\x00\x77\x4e\x00\x38\x34\x03\x00\x50\x2a\x00\x10\x3a\x67\x36\x6b\x7c\x00\x00\x38\x40\x5d\x59\x5b\xe6\xed\xed\xed\xf5\xf5\x75\x63\x63\xa3\xa9\xa9\x69\x62\x62\xe2\xe1\xe1\xe1\xe9\xe9\x69\x72\x72\xb2\xb9\xb9\x79\x6d\x6d\xed\xe5\xe5\x65\x6a\x6a\x4a\x53\x53\x93\x9c\x9c\x9c\x9b\x9b\xfb\xf7\xef\xdf\x45\x45\x45\x7c\x7c\x7c\x14\x14\x14\x2a\x2a\x2a\xf7\xf7\xf7\x5e\x5e\x5e\xb0\xb0\xb0\x30\x30\x30\x00\x00\xa8\xa9\xa9\xed\xee\xee\xee\xec\xec\xc8\xc8\xc8\x7c\xf9\xf2\xe5\xee\xee\x6e\x7e\x7e\x5e\x40\x40\x80\x81\x81\x81\x83\x83\x83\x99\x99\x39\x37\x37\x17\x05\x05\x05\x0b\x0b\xab\xad\xad\xad\xb5\xb5\x95\x92\x92\x12\x19\x19\x39\x27\x27\xe7\xfc\xfc\xdc\xd8\xd8\x18\x1e\x1e\xbe\xb0\xb0\x30\x23\x23\x03\x15\x15\x55\x47\x47\x67\x66\x66\x86\x94\x94\xd4\xcf\xcf\xef\xf1\xf1\xd1\xc3\xc3\x63\x74\x74\xf4\xf9\xf9\x39\x2d\x2d\x0d\x11\x11\x51\x55\x55\xf5\xec\xec\xcc\xcc\xcc\x0c\x0d\x0d\x2d\x3e\x3e\x5e\x4f\x4f\x6f\x7f\x7f\x7f\x79\x79\x19\x04\x02\xe9\xeb\xeb\x5f\x5c\x5c\x30\x32\x32\xe2\xe1\xe1\x0d\x0d\x0d\x75\x77\x77\xbf\x7b\xf7\x2e\x3f\x3f\x1f\x07\x07\x27\x25\x25\x05\x01\x01\x01\x17\x17\xd7\xd7\xd7\x17\x0e\x0e\xce\xd1\xd1\xf1\xf6\xf6\x16\x0a\x85\x22\x21\x21\x7d\xfe\xfc\xf9\xe4\xe4\x44\x59\x59\x99\x9d\x9d\x5d\x54\x54\x54\x4c\x4c\x8c\x9f\x9f\xff\xe8\xe8\x68\x76\x76\xb6\xbf\xbf\x7f\x6e\x6e\xee\xd3\xa7\x4f\xed\xed\xed\x54\x54\x54\xe9\xe9\xe9\xb5\xb5\xb5\x59\x59\x59\x98\x98\x98\xd8\xd8\xd8\xe8\xe8\xe8\xf5\xf5\xf5\x8b\x8b\x8b\xe6\xe6\xe6\xd6\xd6\xd6\x4b\x4b\x4b\x95\x95\x95\x44\x44\x44\xa5\xa5\xa5\x01\x01\x01\xf4\xf4\xf4\x63\x63\x63\x97\x97\x97\x57\x57\x57\xa7\xa7\xa7\x7f\xff\xfe\x95\x97\x97\xef\xea\xea\xa2\xa5\xa5\x8d\x8e\x8e\x8e\x8c\x8c\xcc\xcb\xcb\x3b\x3e\x3e\x3e\x38\x38\x28\x28\x28\x88\x88\x88\xf0\xf6\xf6\x76\x70\x70\x90\x93\x93\xe3\xe1\xe1\xd1\xd0\xd0\xf8\xfe\xfd\x7b\x4c\x4c\x8c\xab\xab\xab\xbd\xbd\xbd\x92\x92\xd2\xf6\xf6\x76\x6f\x6f\x2f\x0d\x0d\xcd\xf5\xf5\xb5\x85\x85\x85\x88\x88\x08\x27\x27\x27\x06\x06\x06\x19\x19\x19\x17\x17\x97\xa5\xa5\x65\x55\x55\x55\x5f\x5f\xdf\xfa\xfa\xfa\xc7\x8f\x1f\x09\x09\x09\x0f\x0f\x0f\x8d\x8c\x8c\x20\x10\xc8\xaf\x5f\xbf\x3a\x3b\x3b\x6d\x6d\x6d\x25\x25\x25\xa5\xa4\xa4\x9c\x9d\x9d\xa5\xa5\xa5\x9d\x9c\x9c\x14\x14\x14\xd4\xd5\xd5\x15\x15\x15\xb7\xb6\xb6\x24\x24\x24\x48\x48\x48\x82\x82\x82\x2a\x2a\x2a\xf0\xf1\xf1\xdf\xbf\x7f\xcf\xc2\xc2\xc2\xca\xca\x6a\x62\x62\x62\x6a\x6a\x2a\x28\x28\x48\x4c\x4c\x1c\x1c\x1c\xbc\xb0\xb0\x50\x5d\x5d\xcd\xc4\xc4\x54\x5c\x5c\x3c\x3c\x3c\xac\xad\xad\xad\xa5\xa5\x95\x9a\x9a\x3a\x3e\x3e\xbe\xb9\xb9\xe9\xe3\xe3\xa3\xab\xab\x4b\x47\x47\xe7\xee\xee\x1e\x15\x15\x25\x2e\x2e\x9e\x9c\x9c\x5c\x5e\x5e\xbe\xb2\xb2\xe2\xef\xef\xcf\xcb\xcb\x1b\x12\x12\xe2\xe6\xe6\x56\x53\x53\xd3\xd0\xd0\x10\x17\x17\xc7\xc6\xc6\x66\x60\x60\x50\x52\x52\xd2\xd1\xd1\xf1\xe1\xc3\x07\x6a\x6a\x6a\x30\x18\x4c\x40\x40\x20\x2c\x2c\x6c\x68\x68\x68\x67\x67\x57\x56\x56\xe6\xe2\xe2\x92\x99\x99\x19\x1a\x1a\x3a\x30\x30\xf0\xf5\xeb\xd7\xe9\xe9\xe9\x84\x84\x84\xd5\xd5\xd5\xbd\xbd\xbd\x6f\xdf\xbe\x65\x67\x67\x87\x87\x87\xdf\xdc\xdc\x24\x25\x25\x0d\x0e\x0e\x86\x85\x85\xb5\xb4\xb4\xc4\xc6\xc6\x26\x26\x26\x06\x06\x06\xda\xd8\xd8\x8c\x8c\x8c\xf4\xf4\xf4\x58\x59\x59\x09\x09\x09\xd5\xd5\xd5\x79\x7a\x7a\x36\x36\x36\xfe\xf9\xf3\xe7\xc7\x8f\x1f\xb2\xb2\xb2\x3f\x7f\xfe\x8c\x26\x26\xe2\xf9\xe7\x89\x2c\x94\xe4\xa4\x81\x30\x04\x32\x79\x00\x00\x50\x9c\xe5\x0d\xdc\x00\x00\x90\xff\x57\xb2\x83\x76\xa2\x00\x40\xa8\xab\x20\x2d\xa1\xed\xb5\x74\x62\x84\xa2\xaf\xd5\x7f\xdb\x11\x8c\x7d\xcd\x6c\x08\x69\xe5\x09\x93\xc5\x91\xf8\x99\x1a\x31\x35\x83\x8f\x03\x23\xc3\x2c\x69\xab\x4c\xc3\x68\xf1\xae\x2e\x4c\xdf\x08\x46\xaf\x13\xe3\xa8\x7b\x8a\x7f\x53\xab\xcb\x17\xa2\x83\x5f\xa7\x33\x59\xac\xf3\x7d\xa9\xd8\x5d\xaa\x6a\xa9\xb8\x8e\xfd\x9e\xb1\x22\xc3\x57\xcd\xb7\xe2\x25\x27\x2d\x23\x96\x92\x12\x3b\xa8\xf5\xec\xad\xed\xea\x41\x81\xfb\x6e\x35\x6d\x4d\x64\x6f\x64\xd1\x9a\x9e\xf4\x4e\xec\xd1\x5f\xbe\xa8\x0a\xe6\x99\x90\xb2\x08\xcf\x80\xaf\xaa\x1e\xa2\x0d\xe0\x2e\x17\x8c\xde\x0f\x8d\x8e\x7e\x5c\xa8\xb3\xef\x15\xa0\xe6\x99\x54\x2a\x3b\x31\x75\x34\xf9\xad\xb3\x24\xdb\xf9\xe7\xa7\x03\x0d\xac\x9b\xbd\x5c\xe5\x84\xc9\x2d\x6b\x10\x26\x19\x0a\xbd\xea\x5c\x14\x22\x9a\xcb\x5c\x16\x10\xe8\x56\x63\x93\xfe\x30\xc6\x1e\x82\x3d\xcf\x1e\x25\xc8\xd5\xdc\x8c\x13\xf4\xd7\xf4\x77\x91\xca\x40\x1e\x49\x27\xdd\xa5\x1e\x09\x8e\xbe\xa7\x1a\x10\xea\x23\xcf\xb2\xbe\xe9\xed\x8d\xb3\xf4\x9c\x9e\x28\xd0\xb0\xe6\x8d\xab\xd9\xaa\x6a\x20\xb5\xe2\x9d\x76\x89\xc8\xb4\x76\xde\x87\xaf\xef\x94\xd3\xb7\x49\x74\x79\x20\x15\x68\xbe\xd6\xfe\x2e\x60\xf1\x1e\x05\x5d\x9f\xe1\x4d\xb6\xbb\xd7\x05\xe6\x85\xa8\xdf\xf9\x4d\x1c\xcf\x88\xd1\x0c\x30\xc7\xbf\xa6\xff\xc4\x9a\x8c\x81\x4e\x40\x05\xe5\xe6\x02\x87\x91\xe0\x4b\x4e\xe2\x76\x89\x68\x2f\x0a\x2a\x86\x4e\x94\x30\xe3\xe8\x2f\x94\x14\x94\x39\x05\x46\xfc\x9e\x95\x8e\xc5\xd2\xe5\xc7\xec\x8f\xdd\x75\x88\x0c\x4f\x5e\x2a\xa5\x42\xa5\x09\x39\x47\x8e\x75\x2a\xfc\x19\x14\xf0\xed\xab\x00\x2a\x7b\x00\x76\x78\xd5\x84\xb7\xe0\xfa\x3e\x05\x18\x9e\x3f\x97\x8e\x17\x1d\x52\x81\x1b\xf6\x22\x1c\x65\x35\x28\xeb\x8d\xd3\xe5\x73\xce\xd8\xc9\x55\x5b\x58\xc5\xe7\xcd\xcb\x1b\xf9\xbe\xa4\x77\xa1\xce\x27\x0f\x90\x7a\x6e\x61\x27\xea\x47\x47\x75\xef\xb7\x32\xaa\xc5\xe9\x66\x69\x27\xea\x8f\x8e\x81\xf3\xf2\x0a\x2a\x2d\x37\x86\xd5\x49\x1d\x2a\x72\xd5\x1a\x6d\x63\x5c\xd5\x42\xfb\xc3\xe6\xb7\x49\x1b\xa9\x93\x80\xd1\x19\xeb\x8a\xca\xb8\x3a\x03\x41\xf1\xeb\x6c\xd8\x20\x3b\x04\xc2\x5f\x2a\x12\xd5\xe3\xe9\x10\x43\xe5\xe8\x10\xe8\x15\x17\x05\xe8\x6e\xbc\x8a\xe6\xf6\xb1\x05\xc8\x3e\x08\x66\xff\x4c\x13\x42\xa3\x1c\x49\x26\x0a\x18\x44\xec\x99\x1f\x38\x78\x26\xe5\xa3\xe7\x1a\xac\x8b\xa5\xb3\xa0\x51\xc4\xd5\xd2\x84\x43\x1c\xcb\x12\xe8\x18\x0d\x72\x64\x23\x90\xbd\xb5\xcb\xe2\x6f\x35\xdd\x8e\x94\xf9\x8b\xd8\x90\xf6\xf6\xba\x12\x08\xf3\x9b\x29\x1c\x97\xdf\x96\xed\x71\x6b\x17\xd1\x9c\xd5\x74\xa4\xb7\x10\xa6\x9d\x8e\xb8\x6d\x50\x32\x3d\x1f\xb0\x37\x00\xa5\xc4\xa1\xf8\x3f\xc1\xcf\x9d\x67\x1f\xbb\xea\xd6\x44\x86\xd7\x88\xdd\x9f\xd3\x70\x64\x15\xea\xe6\xc7\xa3\xa5\x12\x21\xa3\xb9\x26\x29\x1e\xfd\xfe\x98\x2d\x62\xdf\xbb\xd9\x51\x66\x94\x04\xf6\xda\xfe\xdc\x88\xab\x17\x3c\xe2\xaa\xeb\xda\x14\x27\x8d\x3d\x07\x4f\x1c\x00\x2e\x43\x10\xc7\x39\x60\x4c\x19\xe2\xb6\xc9\x0a\x42\xdd\x10\xaa\x8c\xdd\x7a\x5c\x24\xe1\x57\xbd\x24\xe0\xbc\x46\x24\x43\xf9\x74\x3b\x2e\xfe\x89\x72\xb2\x0b\x25\xc8\x63\xaa\xa0\xee\xfb\xbc\x30\xb5\xb6\x08\x2f\x28\xd9\x22\x8b\x2c\x72\x85\x06\x81\x6e\x24\xe0\x95\xe0\x33\x91\x74\x5a\x9d\x04\x7c\x5f\x54\x78\x20\xa6\x9c\x53\xb4\x6a\xac\xb3\x4e\x30\x5c\xef\x98\xe1\xdb\x5c\xb2\xb2\xd0\x16\x46\x81\xa0\xb4\x49\x97\x4d\x5d\x98\xfc\x9b\x31\x63\x47\xc1\xd0\xca\x94\x5f\x5b\x81\xa2\xaf\xe5\x27\x66\x85\xc8\x55\xd4\x9f\x44\x93\xee\xba\xb9\x21\x31\x30\x0b\x0c\xa1\xf2\x92\xf8\x3b\xf5\x27\x61\xcb\xed\xc1\x32\xe0\xcf\x27\x1e\xd6\xfa\x08\x11\xa8\xdd\x3a\x5f\x16\xcf\x8d\x31\x3f\xaf\xe2\x23\x6d\x11\xa4\x92\x1b\xbf\x9e\x1a\xf8\xdc\x7a\xac\x4c\x2d\x9f\x4d\xa3\xe0\x89\xde\x97\x76\xf4\x24\xfb\xfa\xdc\x8d\x2c\xe5\x54\x5c\x11\xc8\x3f\xf8\xae\x7e\x66\xa3\xa7\x4f\xdb\x27\xe6\xae\x54\xc7\xb5\x4d\x72\xf9\x61\x4c\xde\xca\x40\xff\xb1\xc0\xcd\xe8\xb0\x12\x35\x37\xd1\x31\xf4\x36\x1a\xc1\xf9\xad\xcb\xa0\x96\x23\x48\x87\xeb\x1b\x7d\xeb\xdb\xc3\x86\x75\x13\xee\x74\xbb\x20\x64\x9e\xa6\x53\x0b\x07\x0f\x93\x58\xe4\x79\x3f\xe8\xc1\x34\x52\xcc\xe3\x83\x00\xb3\x3a\x4d\x82\x02\xd3\xa0\x55\x7a\x48\x91\x51\x89\xe5\x96\x94\x1a\xab\xed\xa4\x37\x54\x94\x60\x12\x47\xe2\x0e\x5c\x1b\xc9\xf3\xee\x37\x6d\xf1\xe2\x86\xee\x99\x9a\x73\xb4\x46\xb8\x27\x3e\x79\x88\xdd\xe8\xb7\xee\xbd\x84\x9d\xa1\x18\xd5\x41\x2e\x14\x62\xac\x8a\x5f\x99\x5e\x4b\x19\x0a\x61\xab\x87\x26\x8d\x3b\x03\xf1\x15\xed\x8e\x16\x47\x15\xd8\x71\x42\xa7\xd0\x1e\x6a\xac\x2f\x1f\xef\x52\x2f\x35\xaf\xa1\x06\x42\x52\x71\xb6\x6d\xe8\xb0\x96\x65\xe9\x3c\xc6\x86\x59\x2f\x97\x99\x0c\x5b\x19\x01\x27\x1d\x10\x96\xd5\x52\xf9\x3a\x87\xcb\x1b\xbd\x3d\x1f\x7b\xa6\x99\x88\x14\x33\x5e\x9d\x6d\x09\xba\x48\x7f\x73\x31\xc6\x2e\xa2\x60\x5c\xaa\x53\x0b\xf2\xca\x52\x11\xe9\x0a\x6c\xc0\x78\x69\xaf\x24\xb4\x44\xbf\x82\x95\x5d\xc8\x23\xe5\xdb\x03\x9b\xa0\x90\xd3\xdf\xc7\x34\x99\xd3\x5a\x9a\x2e\x01\x9f\xd7\xed\x38\x8d\x81\x81\x01\xe6\x93\xf0\x57\xef\x99\x30\x16\x07\x51\x57\x73\xa7\xad\x26\xef\xf5\x59\xf7\xab\x55\x93\x75\x42\xa1\x19\xf6\x7e\x99\x8a\xf4\xeb\xa0\xa5\x9a\xad\x63\xc1\x62\xbe\xa9\x07\x66\x65\xa8\x4a\x94\x64\x8e\x09\x7a\x67\x79\x99\x15\x06\x6e\x3f\xda\x5a\x81\xb1\x27\xd7\x07\xba\x4d\xbc\x6d\xf6\xad\xf2\xbd\x81\x9f\xe1\x21\x6c\x76\x75\xc6\x05\xfe\x3f\x89\xc3\x82\x82\xfd\xab\xb7\xca\xa8\x25\x8b\x08\x06\xdd\xca\x63\xdc\xe2\xd0\x7e\x49\xae\xb1\x77\x41\x28\x48\x95\xf5\x38\x7d\x52\xaa\x90\x4e\x9b\x5d\xfa\xac\x5c\x33\xf3\x61\x23\x3f\x8c\x44\xc2\xdc\x23\xbd\xa1\x5d\xe9\x9e\xb9\x45\x50\x85\xa2\xf4\x97\xc2\x9c\xa4\x7b\x11\x7a\xde\xae\x37\x15\x97\xa1\x14\x13\x90\x50\x2c\x3c\x48\xbd\xfb\x9e\x89\xe0\x42\x7f\x34\x6a\x12\x39\xdd\x7e\xb6\x6b\x7c\xae\x57\xa9\x81\x73\xb7\x4b\x0f\xea\xc6\x67\xe2\xbe\x15\xa4\xce\x18\xda\x5f\x79\x87\x71\x14\x66\x12\x8b\x60\x45\xdb\x51\x37\xb7\xe1\x9a\xda\x62\x96\xc8\xe2\xf1\x22\x5a\x0e\x4a\x08\x29\x8e\x2d\xfe\x89\xf1\x4a\xf1\xd0\x56\xd1\x55\xa9\x0e\x5d\xaa\x6c\x6b\x13\xa8\x55\x1b\x43\x9e\xd8\x7f\x17\x2f\x97\x9e\x41\x76\x40\xb6\x58\xff\x0e\x24\x8f\xf9\xd3\x62\xc9\x97\x45\xbc\x9b\x6a\xcc\xac\xf8\xa1\xb4\x5e\x64\xde\xb4\xd1\x37\xb7\x48\xd0\x81\xb7\xc6\x88\x4a\x8c\x56\x87\x41\x3c\xc4\x0a\x26\x3a\xde\x66\x59\xf3\x0c\x1a\x7b\xb8\x26\xf2\xdc\xef\x52\x8b\xf6\x50\x5a\xbb\x99\x8b\xd7\x80\x55\xde\xb1\xcc\xaf\x04\x59\x67\x7a\x66\x60\x6a\xe4\x0b\xbf\xe4\xed\x68\xf9\x25\x29\xfd\x23\x8d\x4c\x36\xee\x77\xe8\x6a\x4b\x4c\x24\x79\x88\xef\x3a\x38\x90\x09\x4b\xb1\x68\x2a\x2a\x23\x45\x07\x83\xdd\xcb\x7a\x1b\xb7\x25\xa6\x5c\x9e\xb9\xf6\x62\x8e\x63\xcf\x46\x54\x7b\xbf\xc3\x3a\x2b\x77\xa0\xd6\x5f\x2d\x0a\x35\xf1\x62\xa7\xed\xbb\x7f\xd2\xf4\xd3\x69\xfe\x6e\xdc\xf6\xf8\xa4\x36\x29\x4c\x92\x87\x0d\x3d\x7a\x0b\xfe\x1b\xfe\x37\xe5\x2c\x92\x3a\xb8\x95\x81\x0d\xde\x9a\x4f\x39\xea\x75\x8e\x12\x47\x17\x02\x20\x58\xb5\xef\x5b\xca\x2e\x83\xf4\x67\x70\xcb\x1d\x4c\x7f\x27\xd6\x27\x43\x0d\xa3\xdd\x60\x46\x8a\x29\x13\x0a\x27\xc3\xda\x5f\x6a\xed\xd9\x47\x50\xd9\xca\x66\x5a\x68\x41\x92\xc3\x89\x0a\x3e\x5b\x01\x65\xb9\x41\xed\x94\x07\xf8\xa9\x7d\x0b\x15\x87\x2b\x98\xb1\xc2\xed\x55\x13\x29\xdc\xcf\xea\x69\x55\x1a\x9f\x3d\xcf\xfd\x96\x08\x9a\xb2\x98\xb1\x8f\xca\x4e\x34\x38\xa5\x8b\xe7\x95\xa7\x51\xc9\x2f\xd2\x85\x4f\xbe\x7d\x47\x54\x21\x99\xec\x2d\xb8\x2c\xa1\x39\xbd\x17\xb3\x1e\x4c\xc3\x99\x03\x95\xbd\x08\x19\x0d\xbe\x47\x30\x5c\x87\x37\xca\xe6\x4b\x28\x39\x64\x4a\xa5\xef\xc0\x6f\xa9\x66\x52\xb2\x16\x24\x36\xa4\x2b\x79\x9d\x54\x50\x71\x89\x6a\xb1\x0a\x8e\xa5\x57\x1f\x32\xe4\x49\x9e\x5e\xc9\x0d\xae\xb2\x19\xa3\x77\xdf\x2c\x4c\x1b\x41\xc7\x49\x9a\x7e\x5a\x2e\xc9\x5e\xcc\xdc\x5c\x60\x14\x18\x71\xd4\xdc\xe3\x40\xaf\x53\x99\xf8\x8e\xf2\xd3\x87\x1d\x56\x17\x43\x43\xd7\xe2\x9d\xd1\x17\xce\xab\x67\x80\x50\x52\x9a\xa3\x4e\x9c\xa9\x5e\x71\xd3\x5f\xc1\xb2\x2f\xd5\xea\x15\xd5\x5c\xed\xb9\xec\x7d\x87\x86\xe3\xd5\xd4\x83\x6b\xa4\x08\x61\x0a\x8b\xbe\xb6\xc1\x20\x86\x5e\xdd\xfe\x56\x39\x46\xbd\x8e\xb6\x70\x8d\xd7\xc1\xec\x5a\xc5\x41\x59\x8e\xe7\xc6\x92\xc4\x05\x2a\x33\x63\x62\x23\x7a\x76\xab\xc7\x5d\x1a\x40\xfc\x8a\xd6\xea\x36\x48\xa5\xcf\x99\xaa\x48\xfa\x84\x87\x74\xd8\x93\xb4\xfa\xb0\x9b\x19\x61\x88\xb0\x79\xe9\xa2\x85\x12\x43\xfa\x7d\x5b\xf2\x98\x89\x9f\x83\x7c\x32\xec\x4c\x89\x82\xa0\xc9\xea\xc6\x3b\x6f\x40\x49\x26\x0a\x69\xc1\xaf\x30\xdf\x7f\x20\x5b\x8b\x2f\x64\x52\x11\x29\x9b\xf4\xc7\x14\x56\xfe\x51\x83\x47\x75\x92\xe4\xe0\xa2\x2a\xc2\x70\xa3\xa4\x96\x68\xb8\x6d\x47\xeb\x1f\xcb\x1d\x0e\xb9\xcc\xd9\x4d\xbb\xa2\x93\x63\xa6\x5b\xcf\x1f\x8b\x17\x8a\x39\x52\x41\x0b\xfb\x1f\xf6\x04\x19\xe3\xc6\x19\x3d\x2b\xc7\x28\xac\x34\x56\x91\x5e\xf1\x02\x30\x18\xb7\x12\x89\x97\xb9\x64\xa4\x7a\x39\xbf\x9a\x9d\x1d\xd7\x9c\xc9\xdb\x85\xd1\x6f\x58\x1c\xfc\xd5\x7a\x73\xa5\x7b\x24\xa2\x16\x74\x38\xb0\xea\xff\x86\x7d\x57\x4c\x4e\xec\x06\x6d\xe7\x6d\x5d\x1c\xe5\x3f\x39\xf6\xbd\xf1\x6c\xb2\x61\x6f\x7c\xe4\x42\x5f\xe5\x6e\x3f\xd9\xba\x7a\x0a\xea\xd5\xbd\x79\x1d\x9d\xb6\xff\xd1\x11\xc2\x30\x53\x1d\xda\x3a\x8c\x0b\x9f\x78\x8c\xa2\x6b\xe3\xd8\x25\xd2\xf1\xbb\xfc\xb1\x51\x8a\x6c\x8e\x9d\x57\xdc\x30\x23\x82\xaf\x28\xec\xad\xfc\x0c\xd1\x56\xc6\x04\xbb\xc9\xb1\x88\x07\x9e\xe2\xa9\x70\xd2\xae\xc9\x06\x44\x9a\x21\x54\xff\x34\x35\x60\x57\x55\xec\x7a\xdc\xa3\x28\x3b\x34\x36\x81\x6e\x77\x98\x92\x62\xb9\xbd\xa9\xd5\x5d\x77\xa7\x3b\xc4\x88\xb5\xe4\x18\x9d\x1f\xd1\xb6\x28\x75\xdc\x6a\x47\xce\x78\xae\x2d\xec\x29\xf1\x56\x79\x9a\x87\x61\xac\xb2\x6b\x80\x01\x5f\xb3\xbc\x3b\xc9\x84\x24\x2c\x71\x4d\x91\xb8\xfc\x6b\x8b\xd9\xb6\x63\x5f\x2f\x33\x59\x21\x0b\x7f\xae\x5f\xf6\x8f\xc0\xd3\x93\xee\xab\xd9\x41\x76\xa8\x59\x70\xcb\xcf\x69\xd0\xd3\x4d\xa0\x66\x81\x3c\xd3\x19\x64\x03\x62\x1e\x95\x67\xa2\x3e\xb7\x18\x3a\x91\x92\x7e\x25\x95\x13\xcd\x14\xfb\xa3\xd9\xca\xdb\xbe\xdd\xf8\xc5\x3c\xb4\x24\x13\xf1\x06\x7f\xa1\x0f\x1a\x52\xef\xc9\xdb\xec\x7e\x7e\xe0\x5a\x76\xe5\x33\x58\xcf\x4d\xf0\xf5\x6d\x5f\x35\x18\xb1\x6a\x91\x6f\x93\x01\xd4\xb5\xe0\xdc\x56\xc4\x86\x47\x90\xc5\x85\x6e\x72\xce\x41\xe0\x09\xa7\xa4\x63\xb2\xe6\x7b\x53\xa0\x16\x15\xae\x98\x34\x81\xff\x0a\xe7\x7f\xef\xdc\x21\x7c\x12\x71\x1c\x30\xf0\x94\x4a\x68\x89\xbc\x13\x05\xe2\x77\xba\x7f\x08\xbf\x08\x0c\xcd\x28\x1c\xe8\x8d\x95\xc8\x98\x7e\x2c\xbb\xf9\x3d\xe4\x9a\xd4\xe4\x83\x01\x5d\xe6\x68\x6f\x5d\xce\x2e\x5b\xcc\xe8\xb5\xaa\xf7\xba\xd3\x17\x34\xf5\xd4\xdf\x59\xa7\x25\x07\x23\x45\x6b\x9e\x35\x3b\xbd\xfb\x86\xab\xab\x85\xf8\xb8\xbb\x00\x16\xb6\x7f\x19\x02\x0d\x16\xac\xb8\x53\x59\x19\x93\x26\x77\xf8\x5f\xb7\xf3\x09\x23\xd1\x33\x29\xcb\x29\x3d\x3f\x05\x74\x37\x4c\x47\xad\x39\x7c\x84\x2d\xef\x76\x5a\xcb\x2a\xd7\x48\x47\x51\xc4\x8a\x02\x25\x4c\xd5\x75\x46\xb6\x61\xb7\xff\x6c\xf4\xb7\xf7\xd5\x74\x7d\x3a\xa2\xa7\xa9\xb9\x16\x9d\xf1\x5a\xfb\xdb\x54\x86\xe9\xd1\xc4\x61\xee\x31\x5e\x8b\xa4\xb2\xd8\xc1\x47\x8f\x3c\x84\xd9\xa5\x44\xae\x9e\x0b\x62\xd2\xad\xb3\x67\xd1\x40\xb1\x82\xc2\x3c\x15\x30\x8e\xe3\x15\x7f\x1f\xca\x5e\x5b\xf6\xf6\x09\x9a\xfd\xdb\xf4\x58\xda\x99\xfa\xc1\x7b\x5c\xaf\xf3\x21\x66\xa8\xbf\x8c\xa4\x28\xa2\x8c\xb0\xc2\xf2\xf8\xe9\x73\x1d\xcd\xec\x00\xad\xd5\x14\xdd\x66\x7c\x0f\x65\xc2\xfe\xa7\xb8\xc7\x19\xfd\xca\x59\x73\xc2\x21\x98\x41\x4d\xdf\x48\x17\x48\x54\xa5\x78\x45\x62\xb8\xee\x1d\xdc\x4d\x17\xea\x26\xf9\x59\xbf\xfe\xea\x10\x35\x78\x2b\x78\x8b\x13\x93\xb8\xc4\xff\xc5\xfa\x67\x07\xc7\xa5\x8f\x08\x2f\x0d\xda\xcf\x74\x30\x1a\x8f\xca\xdc\xf1\x50\xa8\xc7\x5e\xb5\x40\x96\x6d\x39\xb6\x5b\xb8\xa7\xd9\xd8\xb0\x7f\xbc\x7e\xae\x7d\x26\x3a\x26\xf8\x6d\xfc\xd8\x52\x72\x6f\x53\xff\x93\xf0\x17\xb4\x86\xd1\xd3\x1f\x12\x7c\x4d\x8a\xdb\x6f\xd0\x2e\x00\x59\x26\xa0\xb5\x70\xcc\x6e\xb8\xba\x18\xd6\x66\x60\x4d\x11\xff\x06\x29\x74\xc2\xe2\xf0\xcf\x99\xfa\x62\x96\xc1\x91\x22\xba\x50\xe6\x5e\x5d\x9d\xb1\x56\x76\x9e\xbd\xf3\xd3\xc5\xdb\x17\xdc\x5c\xfa\x47\x52\x34\xbb\x98\x72\xed\x6e\xf4\xf4\x76\xc2\x00\xb2\xca\x2a\x80\xf3\x00\xe5\xf0\xaf\x6c\x90\x6b\xd4\x1a\xe3\xfc\x9e\xc9\x88\x6d\xc9\xd5\x77\x8f\x07\xe7\xd9\xb1\xe2\x95\x53\xff\xbe\xea\x15\xb5\x91\xe5\xc0\x4c\x8e\xfc\x73\xc6\x17\x1a\xea\x22\x27\x03\xb3\x34\x14\x84\x57\xcc\x4e\xfe\xb2\x6a\x88\x68\xc8\x5c\x56\xe5\xfa\xac\xc5\x22\xab\xa9\xaf\x1f\x51\x2b\xbd\xa1\x06\xf8\x6b\x38\x8b\x6f\xeb\x88\x4e\xa4\xcc\x5f\x06\xb6\x67\xbf\x03\x93\x77\x2f\xc7\xc4\x71\xf6\x7f\x67\x51\x5a\xcd\xde\x34\xd1\x00\x25\x63\x69\x9e\x9f\x6a\x86\xe2\xc7\xb0\x3d\x8d\xa4\x59\x07\x39\x7e\x77\x43\x0d\x5a\x37\x54\xe7\xfb\xb7\xba\x3a\xf0\x67\xb6\x8f\x65\x66\x1a\x9b\xf3\x9e\x23\xc2\xc7\x1a\xc5\x4c\x44\xbd\xdc\x20\x52\x12\x52\xd9\xbc\xb5\xe9\xf0\x9b\xbe\xde\x9f\xd7\x2a\xac\x14\x36\x81\xc0\xe2\xcb\x47\xfc\xe1\xb8\xea\xcd\x47\x47\x74\x4b\xb6\xd5\x8f\xb9\x2c\xbd\x67\xfc\x84\x6a\x35\x9d\x49\xdb\xee\x19\x99\xc3\x5a\xfe\xc1\xb0\x14\x7e\xda\x26\xad\x9d\x7f\x16\x71\x8f\x4c\xfb\xc5\xac\x70\x7f\x75\x6b\xc9\x9d\xc6\x87\xdf\x12\x73\xe7\xaf\x74\x98\x44\x07\xb2\x04\x71\x96\xb8\xf5\x7e\x40\x19\x74\x9c\xd6\x14\x5b\x48\x45\x21\xc4\x6b\xbc\x6c\x6d\x9f\x17\xeb\x81\xcf\xad\x40\x3f\x25\x37\x87\x91\x22\xa8\xfc\x16\x15\x84\x90\x34\x6d\x87\x40\x0f\x21\xda\x24\x6f\xd5\x3c\x56\xe1\x38\xa1\xb0\x6c\x4e\x82\x59\x8c\x6c\x52\x7d\x7f\xdc\xee\x62\x11\x3f\x58\x2a\x63\x34\xf5\x27\xaf\xc5\xdd\x90\x90\x30\xbd\x45\xac\x1a\xa8\x84\x08\x61\xff\x3a\x7b\x98\x6f\xe7\xbb\x2b\x05\xbf\x2b\x85\x93\xe7\x5d\x1f\x74\x67\x56\x6d\x40\xeb\x7b\x1f\x30\xd1\xf5\x81\xb9\xec\xc5\x66\x59\xd4\x6e\xcf\x2b\xc6\x72\x50\x78\x8f\xd5\xb9\x9f\x76\x3f\xc6\x1b\x4e\xca\x08\x8f\x30\xa8\x87\x9c\xde\xcb\x96\x36\x29\x92\x40\xb2\x9a\xc5\x87\x31\xc2\x83\xfe\xe8\x46\x17\x0d\x92\xb9\x78\x69\x07\xd1\xb9\x21\x36\x19\x14\x8b\xee\x5a\x98\x3d\x56\x79\xbf\xc3\x31\x7c\x55\x21\x7e\x5b\xd9\xca\x64\x43\xcc\x95\xc6\x29\xf1\xf9\x86\x74\x3f\xf2\xa9\xa4\x2f\x90\xbc\x0f\x98\x99\xf3\xd7\xd6\xda\xd8\x9c\xac\xfd\x42\xdd\x38\xb2\x81\x21\x33\x0a\xaa\x8a\x16\xe2\xf3\xbd\x91\xe7\x52\x63\xc7\x2e\xdc\x9d\xdd\xab\x6b\xa1\xd4\xe9\x0f\xc6\x08\x45\x19\xe4\x87\x9b\x68\x0d\x9e\x6d\x09\xb9\x96\xe4\x7c\xc9\xb8\xf1\x52\xcc\x8b\xa7\x75\x47\xd1\xc9\xf5\x96\x51\xfb\x6e\x81\x75\xce\x2f\x0c\xb3\xb0\x7a\x30\x0b\xbb\x25\x1b\xc4\xd4\x2f\xb3\xa3\x73\xa4\xd9\x0c\x4c\x56\x49\xdd\xe4\x7d\xfe\x82\x0c\xa9\xcb\x89\x6f\x93\x9e\xa6\x43\x8b\x19\x89\xde\xfb\xa4\x14\x7f\x83\xb3\xf5\x41\x4a\xf4\x41\x80\xec\x7b\x4a\x99\x8e\xd4\xed\x81\x3e\x9b\x93\xaf\x63\x53\x30\xd7\x43\xdf\xfa\x73\xac\x15\xb2\xf3\xc8\x95\x82\xa4\x3b\xf5\x26\x9e\xb7\xf8\x63\x4d\x14\xc1\x9b\xbd\x64\x9b\x59\xfd\x70\x03\xdf\xde\x27\x85\x33\x74\x30\xa2\x85\x60\x14\x8f\x86\x2e\xfc\x75\x4d\x65\xed\xa1\x70\x17\x4d\x36\x7c\x87\xaa\xac\x0d\x91\x10\x74\x32\x3b\x99\x2b\x27\x44\x2f\x38\x72\xfc\x11\x1f\x44\x4a\x80\x89\xf5\xbc\x41\xab\xdb\xd9\x51\xf6\x57\x91\x53\x51\x9f\x32\x99\x6f\x26\xe3\x20\x5d\x13\x55\x5e\x51\x5f\x43\x05\x21\x85\xa2\x6a\x09\x6f\x55\xc2\x47\xd7\xd2\x3e\xb1\x4d\xe5\xc8\xf4\x54\xa6\xff\x9e\xb9\x77\x50\xc9\x09\xa6\x52\xd5\x85\x54\x33\x1b\xdc\x47\x60\x32\x9c\x5c\xf2\xae\xb7\x01\x9f\x0c\x7b\x31\x59\x75\xd8\xe0\x33\x36\x06\xb4\x24\xc2\x32\x0c\xad\xd5\x55\x55\xa5\x27\xf2\xf5\xa0\xe0\x44\x97\x2d\xb5\x64\xc0\x8f\xae\x21\x62\x02\xee\xa2\xa4\x7e\x22\x7e\x50\xd9\x4c\x9c\xe2\x85\x38\xe3\x68\x64\xe9\xe0\x6d\x00\xc6\xdb\xec\x84\xf2\x45\xea\xdb\x15\x44\x81\xea\xda\xa0\x44\x7a\xde\x88\xbb\x1d\xc3\xf2\x6b\x6a\xde\xc5\x3b\xc5\xd0\xa2\x1e\x6a\x21\x36\xe4\x3f\xd7\xfe\x46\x8f\xa5\x71\x12\x5f\x0e\x19\x0d\x8b\x06\xfc\x51\xb4\xed\xc3\xc9\x17\x4e\x7b\xea\xb6\x52\xfd\xd1\x44\x2a\xa9\xd5\xe1\xf1\xc9\x64\x3b\x58\xcf\xca\xb9\x50\xf2\x21\xb4\x4e\x09\x2e\x7e\xcc\x6e\xc3\xcd\x6b\x19\x3a\xf0\x18\x17\x77\x88\x64\x68\x22\xad\x73\x46\xbf\xe6\x3a\x6b\x11\xed\xf8\x22\xd8\xe4\xbc\x5e\xe1\x95\x9b\xd3\x68\x9a\xaf\xc1\xd1\x75\xdd\x5f\x13\x07\x25\x94\x99\x3c\xb1\x60\xd9\x36\x4c\x27\xab\x66\xbf\x65\x52\xe9\xa2\xfa\x0a\xa1\x29\x67\xce\xbc\x5d\xd8\x7c\x2d\xf5\xfe\x76\x42\xf0\x4d\x8f\x40\x7a\xbd\xcd\xa0\x34\x9d\x11\x9e\xed\x79\x10\x34\xab\xef\xa7\x2a\xd2\xa8\xb0\x52\xbc\xe1\x8b\xda\x4e\xb7\x72\x99\x9f\x83\x15\x55\xe1\xe0\x9c\xec\x65\xd6\x24\x3e\xe3\x58\xb8\x50\x3d\x6d\xc0\xf6\x31\x9e\x66\xa9\xf6\x73\x4c\x7d\xa1\x15\x04\x37\xaf\x9e\xd0\x08\x32\x0d\x92\x2e\x7d\xd9\xa7\x2e\xd7\xad\x23\xc4\x51\x40\x24\xf8\x1a\xa6\xd1\xc8\xec\xa6\x31\x58\x5e\x32\xaa\x27\x54\x5e\xed\xf8\xd8\x9b\xcb\xa9\xab\x0d\x03\x52\x53\xc2\xd5\xa0\x13\x46\x84\x5e\xfa\x14\x97\xd2\xb1\x57\xf6\xab\x8c\x11\x66\x1d\x77\xcb\x6a\xdf\x4e\xaa\x91\x71\x0a\x0e\x7b\x7e\x69\xb8\xd9\x9e\x22\x27\x29\xfc\x24\x63\x8d\x33\xdb\xde\xde\x34\x6b\x55\x60\x34\xd4\xfc\x35\x3b\x14\x79\x64\x96\xdd\x61\x2b\x32\x6a\x31\x41\xfb\x98\xcb\xc9\xd0\xe0\xe0\xac\xc7\xbb\xc1\xf0\xf3\x48\x1e\x7b\x32\x45\x48\xbe\x29\x61\x8a\x8c\xb8\x0d\xdb\x72\xd2\xbc\xec\x8d\x52\x39\x6f\xf5\x5c\x76\x86\x40\xb5\xa1\x9e\xdc\xf0\x8d\xbf\x03\xce\x83\xe1\x2b\x65\x49\x34\x82\x98\x90\x24\x9a\xe8\xdd\x8d\xe7\xac\x43\x4f\xf1\x64\x13\x7d\x16\x22\xcf\x5c\xd9\x1e\xb6\x4f\x93\x79\x9c\x52\xc7\x18\x71\xed\xce\xf7\xc6\x3d\xdd\x33\xec\xfe\x42\xf2\xe3\x2d\x52\x4b\x23\xf2\xbc\xfb\xcb\x06\xb2\x91\x74\xc9\xa3\xf5\x9b\xe5\xae\xb0\xc6\x46\x55\xc0\x3e\x5c\x5b\xab\xfe\xc1\xd5\x4f\xa8\x1f\x9a\xd6\x7b\xd5\x32\x63\xa4\x0d\xff\x91\x8a\xe4\xa1\x2f\x94\x6c\xd8\xf2\x0f\xc3\x8e\x04\x9b\xde\x88\xca\x46\x93\x12\xd4\x46\xd6\xe0\x04\x5b\x1b\x8d\x75\x09\x03\xfe\xae\x44\x3a\x1c\xdf\x66\x57\x34\xed\xfc\x32\xda\x3c\x83\x54\x37\x13\xab\x0d\x8f\xee\xf7\x2c\x22\x86\x77\xcc\xb6\xdf\xf5\x7c\x47\xb6\x7e\xb3\x79\x97\x5d\x43\x7f\x75\x3c\xd5\x1d\xa1\x7e\x64\xe5\xf7\x1b\xf8\x39\x21\x78\xbc\x94\xfe\xc7\x7b\xe5\xf4\xa5\xe3\x48\x9d\x88\x28\xf3\x01\xc3\x1b\xca\x55\x46\x15\x74\x65\x6d\xa2\xa5\xf4\xed\xc0\xe0\x2f\x79\xd9\x5c\xc7\x22\x84\x52\x71\xef\xa9\x12\x02\x3a\xca\x39\xc2\x94\x1b\x3a\xf5\x6d\x82\xe3\x47\x53\x66\x91\x88\x24\x85\x67\x53\xf1\x6f\x4b\xe5\x08\x75\x62\xb7\x08\x80\x5b\x1f\x49\x5f\x57\x13\xed\x47\x98\x6b\x8d\x2f\x6b\xd5\x9d\x5f\x4c\x42\x55\x63\x0a\x66\x94\x12\x97\x6d\xc4\x29\x4a\x8e\xe6\xe5\xe8\x34\x4b\x7f\xd4\x5f\x78\xb5\x3d\xda\xaa\x4a\xfd\x78\xe0\x4f\x46\xe8\x7b\x29\xea\x15\xf4\x32\x6c\x2b\x8e\x70\x9a\xa2\xbc\x8a\x07\x9b\x57\xf9\x6a\xff\xf1\xb1\x6f\x2b\xd8\xb9\xe7\x0c\x32\x7e\xb5\x84\x98\x19\x77\x99\x78\x31\x5c\xed\xda\x89\x6d\x76\xc0\xe6\xec\xcf\xfe\x99\xea\x8c\x36\x0e\x46\x2f\xf7\x15\x29\x8e\x90\x77\xc3\xd5\x66\x3d\x29\x07\x07\x4a\x90\x73\x91\x3e\x1b\x7d\xf7\x26\xe2\x5e\x85\xdb\xc5\x7a\x98\x9e\xf2\x29\x88\xb3\xe0\xdb\xa6\x81\x88\xde\xec\x6f\x48\x08\x7f\x72\xc1\x65\xfd\xc0\xf4\x79\xf0\x88\x39\x70\xa4\xba\xf8\xdb\x6d\x7f\x14\x62\x45\xfd\x9f\xa9\x42\x4d\xaf\x1d\x0b\xe4\xef\x6e\xd6\xe9\x18\xe8\x2e\xc6\x1f\xc2\x7f\xa0\xd5\x5d\xf3\x7f\x0c\x61\xef\xb3\x90\xb8\xfb\xba\xd8\xe9\xd5\x9e\x24\xb0\x4d\xbb\xc5\x86\x19\x89\x56\x49\x13\x74\x18\xbe\xf8\x72\x19\x41\x21\x41\xb8\x32\xc4\xda\xc1\x25\x24\x80\x61\x71\xf5\xce\x3a\x03\x8d\xf6\x2a\x6f\xf8\x01\x8b\x15\x13\xfd\xe1\xba\x0f\x76\x31\xce\xce\x03\x49\x01\x22\xdd\xe9\x87\x5b\x93\x53\x11\xed\xb5\x88\x1d\x56\x9e\x85\x95\xf1\xd0\x17\xab\x61\x13\xc4\xdc\xca\x5e\xd5\x48\x8b\xa3\x98\x6c\x99\x29\x30\x67\x6f\xa6\x72\x55\xb5\xee\x57\x41\x85\xa9\xcf\x3b\x89\x43\xea\xb3\xbc\x72\xb7\xb9\xeb\x85\x2a\xdd\xd0\x4e\x15\xfd\x4b\x7f\x9a\x4d\xc3\x89\x65\xc4\xf7\x4b\x89\x61\xa7\x56\xc3\x47\x72\x02\xe9\x79\xde\x30\x91\x78\xbb\x5d\x16\xbb\xe8\xa0\x53\xc2\x42\x5e\x80\xdd\x45\xce\x63\x1b\x7a\x45\xbe\xbb\x69\x08\x5b\x89\x12\x8e\xf1\xc3\x22\xec\x0d\xa3\x20\xff\x45\x91\x27\x90\xaf\x2a\xf8\xfc\x26\x7b\x87\x81\x2e\x7f\x9c\x2a\x4c\xc7\x9d\x5f\xc9\x17\xa7\x01\x33\xde\x78\xbc\x1f\xc3\x85\x12\xc1\x05\x3c\x46\x39\x4c\x81\x6f\x7d\xc3\x06\xe1\x30\xb3\xd0\xeb\x20\x96\xaa\x83\x76\x50\xc8\x6f\x69\x61\xd5\x08\x12\xcc\x06\xcf\x99\x97\x11\x23\xa6\xda\x63\xf4\x79\x39\x35\x1b\x8c\xab\xc6\xc0\x9b\x91\x54\x13\x4b\xf7\x62\xeb\x6d\xb2\xc7\x62\x5f\x69\x36\x06\x7e\x86\x47\x43\x22\xde\x7d\x26\xfe\xe5\x6c\x4e\x64\x87\x94\x86\x13\x4c\xfd\x6a\xcc\x47\xd5\x65\x2a\x30\x62\xce\xfa\x87\xcf\x93\x26\xe8\xd1\x87\xa7\x96\x42\x61\x39\x98\x96\x43\xcd\x0e\x59\xbf\xf6\x69\x2a\xca\x8c\x96\x70\xee\xa2\x88\xd0\x87\xfb\xd0\xb2\x32\x90\x64\x99\x1f\x9f\xb3\x17\xb5\x4e\x1c\x15\x6d\xa4\xd2\xea\xc2\x83\xa8\xa4\x61\xae\x7d\xc6\x58\x60\x33\xe9\x6f\x1d\xd1\xb7\xba\xe2\x9a\x02\xca\x19\x5a\x02\xcb\xbf\x7a\x18\xee\xab\x58\x2e\x31\xdd\x61\xeb\xaf\x96\xbd\xaf\x76\x5c\x44\x1c\x42\x68\x17\xaf\xa7\xfb\xa1\xb0\x7d\x2e\x07\x59\x9d\xf1\x64\x7c\xd9\xaf\xbe\xe5\xea\x2a\x1e\x7d\x4a\x64\x94\xac\x4e\x64\xb3\xea\x95\x82\x89\xe7\xc2\xfb\xce\x4b\xc8\x34\x35\xf7\xf5\x93\x0d\x1c\x37\x65\xca\xa6\x2b\xc7\xe0\x15\x86\xc0\xc6\x27\x9f\x30\xca\x52\xfe\xf1\xb4\x59\xd4\xd4\x6a\x8e\xbf\xf0\x2e\x5d\xe7\x3a\xae\x77\x0d\x62\x7f\x5b\x5d\xde\xd1\x62\xbd\x3f\xe4\x2c\x14\x87\x2c\x54\x0b\x08\x21\xa3\xad\xfa\x92\x5c\x7a\x39\x43\x31\x89\xce\x99\xec\xe1\xff\x7c\x7d\xab\x96\xb3\x73\x4d\x2c\xa4\xc6\xd9\x5c\x3e\x48\x31\x7a\x69\x0f\x86\x3b\x85\xc5\x84\x04\x24\x4e\xc9\xdf\x1d\x6c\x34\xce\x6e\xd8\x0f\x4b\x3e\x13\x9b\xf6\x60\xe6\x2a\x86\x2c\x22\xa8\x89\x7d\x2c\xb0\x55\x68\x83\x64\xd5\x7a\xa0\x85\xef\xe2\x28\x9a\x2d\xaf\x96\x2d\xfe\x0e\x5b\xfd\x74\xc1\x6b\x36\x90\x3d\xec\xa3\xb2\x1f\x9b\x90\x90\xd0\x26\x10\xcc\x80\x5c\x38\xcc\x58\x6d\x92\xb2\xf1\xbb\x0b\x63\xab\x0b\x83\x57\x16\xe9\xf4\x92\xde\xf8\xf7\x93\xea\xe8\x1c\xf9\x8e\xff\xea\x17\xde\xd1\x10\x6f\x32\x76\x16\x96\xa7\xad\x0d\x08\xa2\x61\x67\x86\xec\xc4\x3b\x1c\xbd\xa0\xd9\x06\x92\xcb\x11\xd1\xcd\x39\x53\xbc\xf1\x6a\xc5\xd5\x3b\xf0\xf7\x3a\xab\x87\x3c\xe6\xb3\x56\x1e\x43\xa3\x0e\xad\xb7\xe9\x6f\xd3\x13\x3d\x61\x5f\x31\xf0\x69\x89\x19\xbf\x9e\xc2\x82\xf6\xc6\xdb\x84\x74\x2a\x54\xb4\xc8\x4a\xa6\x20\xd7\xeb\xa1\x7e\xe6\x5c\xf6\x64\xfe\x6f\xbc\x80\x9b\xd7\xc4\x8f\x46\x6c\x01\x53\x04\x93\x03\x9b\x0c\x86\x55\xec\x37\xb5\x20\x7d\x59\x42\x43\x99\x8d\xec\x3d\x27\x44\xcb\x4d\x63\x22\xd9\x3b\xbe\xed\xd7\x0f\xd1\x66\x67\x6b\x23\xaa\xf2\x76\x48\xe8\x22\xa3\x0c\x41\x87\x65\xd9\xd7\x84\xfa\x53\x8f\xdd\x61\x56\x0f\x52\x07\x35\x03\xb1\xd5\x07\x60\xf5\x8e\xcc\xe5\xeb\x81\xca\xa3\x7b\x5c\x7b\x8b\x67\x62\x74\x03\x47\x62\x11\xf7\x09\x21\xa2\xe3\xc5\xb1\x15\x9a\x6b\xb3\xae\x1b\xa5\xfc\x71\x4a\x2d\xd1\x7c\x24\xa5\x41\xd9\xb7\x0e\x15\xd8\x32\xd3\x66\x38\x51\xc2\x79\x27\x8d\x7c\xeb\x4d\x07\x13\x3d\xcb\x78\x9e\x9e\xac\xd8\xd6\x9c\x26\xb9\xbd\x22\x77\xb2\x3b\x3b\x04\x9b\x60\x75\x44\x11\x9f\x30\x1e\x8e\xdc\x22\x12\xa8\x1b\xc5\x88\xc2\xc3\x43\xe8\x2b\x19\x46\x2c\x98\x95\xfe\x53\xb3\x07\x96\x42\x53\xb5\x92\x12\x6a\xd7\xc9\x1e\xaa\x98\x40\xfc\x52\x86\x23\x3e\x91\x88\x7c\xd0\x7d\x02\xf3\x45\xaa\x4d\x6c\x93\x4e\x2e\x68\xe2\x42\xbe\xad\xea\x6d\x0e\xd1\xe2\x21\xe9\x65\xdf\x7a\x95\x5c\x81\xbe\x31\x71\x70\x26\xbe\xb1\xac\x26\x50\x88\x53\x40\x77\x65\x7c\x02\x54\xdc\xe5\x42\xb5\x88\xcf\x47\xa2\xfc\xe4\x59\x9f\xe0\x68\x28\x67\xe4\xf2\x9e\x82\xa9\x19\x05\xb6\xfd\x55\x5d\xb2\x22\x5a\x7f\xac\x35\xd9\xdb\xa6\x67\x06\x91\x79\x4a\xd9\x87\x3e\x6b\x47\xd9\x8f\x31\x30\xd9\x30\x73\x8d\x37\x2e\x71\x94\x1a\xb9\x3d\x53\xae\xb2\x24\x10\x67\x04\xce\xc8\xf4\x81\xda\xaf\x94\x7a\x28\x46\xc1\xd5\x96\x07\xa4\xef\xe5\xf3\x48\xc2\x56\x86\xa6\x2c\x54\x8f\x9f\x99\xe4\x29\xfd\x5e\xe4\x8d\x59\xa4\xab\xbe\xe9\x9e\xae\x0d\x30\x22\x9d\xcf\x3a\x19\x10\xed\xbe\xcd\x59\x21\x97\x8b\x69\xe9\x70\xb0\x18\xc2\x8e\xc0\x2c\xb8\xfc\x98\xa8\x2a\x16\x33\x3f\xc9\xf3\x67\x77\x3b\xd7\x7a\xe2\x82\xe4\xfa\xee\xd3\xee\x39\x94\xd0\x88\x84\xd8\xe2\x38\x8c\xa7\x2d\x52\x71\xfc\x11\x37\x70\xe1\x2e\xd7\x74\xe1\xb5\x6a\x73\xc9\x09\x52\x8a\x45\xc5\x8b\x10\x4f\xf7\x97\x3d\xdb\xd5\xfe\x92\x36\xf7\xf1\x7e\x92\x07\x3d\xdc\x9b\x25\x07\x1b\xc9\x70\x5b\xfc\x15\x2a\xec\x7d\x46\x78\xc5\x23\xf3\xe1\xcd\xb1\x54\xdc\x08\x89\x3b\x21\x4d\xd0\xf3\xe4\x69\x94\x19\xe2\xb1\xae\x64\x47\xf0\xc1\xc2\xdc\x71\xb3\x08\xb1\xf4\xf2\xc3\x30\x97\x9f\x7a\x64\x80\x25\xfb\x61\x4c\x33\xad\x76\x1d\x13\xc1\x57\x86\x30\xff\x04\x51\x38\x33\x8a\x0c\x3d\xaa\x62\x1e\x4e\x28\x5f\x08\x32\x7b\x47\xf2\x1b\x48\x72\x56\x20\xdc\xbf\x70\xda\x74\xf3\x20\xe1\x5e\x12\x4a\xe1\x62\x43\x69\x88\x5f\x3f\xdb\x9d\x4a\x03\x66\xd1\x8b\xd4\xa1\xe3\x08\x31\x87\x2e\x4d\x66\xb9\x35\xb7\x0f\xa5\x47\x02\x9b\x70\xa1\x30\x3d\xad\xd9\xed\x3f\xd6\x60\x25\x6d\x09\x45\xca\xcd\x72\x32\xf3\xd7\xea\x74\xd3\x16\x1c\x48\x51\xf7\xd5\x62\xa6\x58\x2f\xbd\x24\x48\x83\x81\x27\xb8\x4f\x13\xc1\xf5\x63\x46\x3b\xa9\xaf\x94\xb3\x1d\xb8\x32\xf9\x80\x48\xd8\xc7\x3b\x2a\x11\x85\xed\x9b\x6b\x84\x57\xe8\x42\xad\x9b\x3d\xda\xaf\xf9\x1c\x9c\x61\x52\x43\xed\x02\xf2\x97\xa7\xbb\xbb\xa7\x5f\x39\x1c\x7f\x69\x0f\x5b\xa6\xa7\x32\xac\xb3\xe5\x9e\xa7\x45\x0a\x48\x28\x4b\xa8\x6e\x97\x11\x83\x49\x44\x37\xb9\xa8\x7e\x19\x2d\x8e\xd5\xa4\x6f\x8a\x7f\x05\x05\xce\x3b\x71\xdc\x7b\xf6\x60\x7f\xfa\xe8\x4a\x53\x84\x18\x8d\x32\xff\xcc\xde\x2e\x2f\x74\x18\xc7\x34\xfe\x65\xd5\xfa\x24\x64\xfc\x31\x51\xab\x21\x17\xf5\xfa\xe0\x8e\x4e\xcf\x97\x78\x8b\xe1\x6a\x9f\x7e\x58\x13\x8b\x82\x86\x2e\x3f\x55\x33\x31\x06\x71\xd6\xa1\xa7\x54\x66\xf1\xd6\xe8\x13\xa9\xfa\x5b\xde\x1b\xf7\xa3\x58\x53\xae\x3a\x9f\xc2\x89\x1d\x3b\x00\x00\x74\x50\x19\x7d\xa8\x95\x39\x14\x0c\xb2\x74\x05\x9b\x43\xc1\x00\x37\x27\x17\x3f\x1b\x27\x0f\x1b\x97\x90\x36\x17\x2f\x88\x9b\x1b\xc4\xcd\xc7\xc2\xc9\x09\xe2\xe4\x5c\xe7\x8a\x6c\xfb\x1f\x06\x07\x27\x2b\x88\xf5\xe7\xff\xdb\x10\x67\xcf\x0b\x03\x00\x80\xec\x3f\x06\x37\x27\x6b\xa8\xa7\xb9\x2b\x18\x50\x70\x30\xb7\x01\xab\x98\xdb\x40\x2c\xed\x28\xf9\xd9\x05\xd8\x05\xd9\x84\x28\xb9\x39\xb9\x78\xd9\x38\xf9\xd8\xb8\xb8\x29\x35\xb8\xf8\x29\x6d\xa1\x50\x67\x10\x07\x87\xa7\xa7\x27\x3b\xe4\x1f\xda\xe1\x5f\x9a\xdd\xc9\xd5\x66\x25\xf4\x04\x00\x00\x80\xe8\x9f\x44\x6d\x5b\x77\x07\x0b\x10\x48\xda\xc9\xd2\xdd\x01\xec\x08\x05\x81\xd4\xcd\x6d\xc0\x6e\x00\x57\xe1\x5b\x0b\xc7\x7f\x31\xff\xee\x04\x81\x6c\xc1\x10\x1b\x5b\x28\xc0\x25\xc4\x8d\x05\xb8\x7e\x05\x00\x80\xf0\x7f\x33\x7a\x10\x2b\xa8\xed\x3f\xc8\x74\x29\x15\x32\x00\x00\xef\xff\x03\x51\x81\x38\x80\xa1\x9f\x9d\xc1\xc0\xbf\x57\x71\x38\x3b\xda\x88\x55\xeb\xaa\xfe\x57\x8e\x8a\x36\xc4\x01\x0c\x70\xf1\xf2\x09\xf2\x08\x09\xf0\xf0\xf2\xe9\xed\x54\x6a\x02\x00\x80\xf5\x1f\x88\x16\xc4\x1b\x0c\x70\x4a\x4a\x26\xe6\x8a\x1e\x03\x00\xa0\xfb\x1f\x23\x1d\x4d\x05\xc0\x1a\x62\x0f\x06\x71\x70\x70\x38\x38\x42\xed\x9d\x6c\x38\xac\xcd\x3d\x20\x96\x4e\x8e\x6e\x1c\xff\xbf\x67\x0e\x6b\xb0\x10\x58\x88\x57\xc0\x9c\x8b\x9b\x9b\x87\xc7\xca\xca\x1a\x6c\xcd\x63\x6e\x61\x25\xc0\x65\xce\xc7\xc5\x05\xe6\xb1\xe2\x63\x87\x58\x3a\xb1\x3b\x3b\xda\xb4\x5a\x85\x0f\xfe\x53\x98\x82\x8c\xaa\x74\xb9\xa4\x59\xd0\xff\x0b\x00\x00\xff\xff\xfc\xa0\xb9\x2f\xea\x1c\x00\x00") + +func staticImgCowyoAppleIcon152x152PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAppleIcon152x152Png, + "static/img/cowyo/apple-icon-152x152.png", + ) +} + +func staticImgCowyoAppleIcon152x152Png() (*asset, error) { + bytes, err := staticImgCowyoAppleIcon152x152PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/apple-icon-152x152.png", size: 7402, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAppleIcon180x180Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xb2\x55\x50\x1c\x6c\xdc\xec\x39\xb8\xbb\x0f\x0e\xc1\x83\xbb\xbb\x5b\x90\xe0\x0e\x83\xbb\x06\x08\x12\x9c\xe0\xee\xee\xee\xee\x4e\xd0\x41\x83\x6b\x60\x70\x77\xdd\x7a\xbf\x9b\xfd\xf6\x6c\x9d\x8b\xbe\x7a\x7e\xdd\x4f\x57\xd7\x3f\xf2\x9b\x8a\x2c\x1a\x32\x10\x19\x00\x00\xa0\xc9\xcb\x49\xa9\x03\x00\x80\xe6\xff\x84\x08\x03\x00\x00\x90\x71\x1e\x00\x00\x00\x00\xd6\x4a\x5c\x59\x1c\x00\x68\x88\x43\x79\x33\x85\x03\x00\x00\x50\x6e\xea\xb2\x12\x80\xda\x19\x92\x63\x00\x00\x40\x61\x2e\xa7\xae\x0c\x00\xf8\xd0\x02\x00\x81\x21\x00\xc0\x0b\x00\x00\x08\x3c\x02\x00\x3c\xd8\x00\x80\x13\x13\x00\x40\x20\x1d\x00\x20\x70\xce\xee\x54\x13\x02\x00\x60\x00\xdf\x94\x34\xa5\x3f\x3f\x3f\x3f\x3e\x3e\xf6\xf7\xf7\xfb\xfb\xfb\xc7\xc7\xc7\x6f\x6e\x6e\x9e\x9f\x9f\xe7\xe6\xe6\x7a\x7b\x7b\x57\x57\x57\xdf\xde\xde\xc0\x60\xb0\x99\x99\x19\x0b\x0b\x0b\x1f\x1f\xdf\xaf\x5f\xbf\xae\xae\xae\x5e\x5f\x5f\xb3\xb3\xb3\x25\x25\x25\x99\x99\x99\xbf\x7d\xfb\xd6\xd2\xd2\x72\x77\x77\x67\x61\x61\x01\x0b\x0b\xfb\x5f\x1d\x28\x28\x7c\x7c\xfc\xb6\xb6\xb6\xf7\xf7\xf7\x2f\x5f\xbe\x28\x29\x29\x1d\x1e\x1e\x8e\x8d\x8d\x31\x30\x30\x40\x43\x43\x23\x21\x21\x79\x7b\x7b\x17\x16\x16\x02\x81\xc0\x80\x80\x00\x34\x34\x34\x55\x55\xd5\x97\x97\x97\xe8\xe8\x68\x18\x18\x98\xfb\xfb\x7b\x29\x29\x29\x2e\x2e\xae\xeb\xeb\xeb\xa7\xa7\x27\x4b\x4b\x4b\x78\x78\x78\x36\x36\xb6\xa1\xa1\xa1\xea\xea\x6a\x0a\x0a\x8a\x9d\x9d\x1d\x41\x41\x41\x0c\x0c\x8c\x84\x84\x04\x47\x47\x47\x38\x38\x38\x42\x42\xc2\x8e\x8e\x8e\xe5\xe5\x65\x6d\x6d\x6d\x08\x04\xb2\xb5\xb5\x85\x8e\x8e\x1e\x11\x11\x31\x30\x30\x80\x83\x83\xf3\xf5\xeb\xd7\x9e\x9e\x9e\xb2\xb2\x32\x32\x32\x32\x04\x04\x04\x53\x53\xd3\xb4\xb4\xb4\xd4\xd4\xd4\xe0\xe0\x60\x79\x79\x79\x43\x43\xc3\xa3\xa3\x23\x5a\x5a\xda\xa5\xa5\x25\x61\x61\xe1\x99\x99\x99\xd2\xd2\xd2\x8d\x8d\x0d\x1a\x1a\x9a\x82\x82\x82\xca\xca\x4a\x3c\x3c\x3c\x64\x64\x64\x3f\x3f\xbf\xc7\xc7\x47\x4f\x4f\x4f\x6a\x6a\x6a\x1d\x1d\x1d\x37\x37\x37\x4a\x4a\x4a\x31\x31\xb1\xdd\xdd\x5d\x0d\x0d\x0d\x57\x57\x57\x14\x14\x14\x56\x56\xd6\xbf\x7f\xff\xaa\xa8\xa8\x84\x85\x85\x15\x15\x15\x35\x34\x34\x60\x63\x63\x93\x93\x93\xd7\xd5\xd5\x2d\x2c\x2c\x30\x32\x32\xfe\xf8\xf1\x83\x80\x80\xa0\xa9\xa9\xa9\xbd\xbd\x7d\x6d\x6d\x8d\x98\x98\x18\x15\x15\xf5\xe7\xcf\x9f\xb9\xb9\xb9\xf5\xf5\xf5\x4c\x4c\x4c\xf9\xf9\xf9\x79\x79\x79\x72\x72\x72\xe7\xe7\xe7\xf6\xf6\xf6\x88\x88\x88\x7b\x7b\x7b\x12\x12\x12\x31\x31\x31\xdb\xdb\xdb\x9b\x9b\x9b\x97\x97\x97\xb7\xb7\xb7\x17\x17\x17\x2b\x2b\x2b\x25\x25\x25\xbf\x7f\xff\xd6\xd5\xd5\x55\x53\x53\x53\x54\x54\x94\x95\x95\xf5\xf1\xf1\x89\x8c\x8c\x8c\x8b\x8b\xeb\xec\xec\x3c\x39\x39\x21\x25\x25\x35\x30\x30\x70\x76\x76\x3e\x3d\x3d\x3d\x38\x38\x18\x1e\x1e\xce\xc8\xc8\xe0\xe1\xe1\xa1\xa3\xa3\xc3\xc2\xc2\xc2\xc4\xc4\xe4\xe4\xe4\xb4\xb5\xb5\x4d\x4c\x4c\x7c\x78\x78\x30\x31\x31\x99\x9f\x9f\x8f\x8a\x8a\x72\x72\x72\x9a\x98\x98\x00\x81\x40\xf4\xf4\xf4\x44\x44\x44\xbc\xbc\xbc\xe9\xe9\xe9\x23\x23\x23\x7a\x7a\x7a\x36\x36\x36\x24\x24\x24\xcd\xcd\xcd\xec\xec\xec\xb8\xb8\xb8\x39\x39\x39\x0e\x0e\x0e\x5a\x5a\x5a\x35\x35\x35\xc5\xc5\xc5\xdd\xdd\xdd\xc7\xc7\xc7\xb5\xb5\xb5\xff\xfe\xfd\xa3\xa2\xa2\xe2\xe0\xe0\x10\x11\x11\xf9\xfe\xfd\xbb\xb1\xb1\xb1\xb5\xb5\xb5\xb2\xb2\xb2\xb8\xb8\x78\x6c\x6c\xac\xbb\xbb\x7b\x4a\x4a\x8a\xb4\xb4\xb4\xbf\xbf\x7f\x7c\x7c\xfc\xd9\xd9\xd9\xf4\xf4\xb4\x87\x87\x87\xa6\xa6\xa6\x8b\x8b\x8b\xaf\xaf\xaf\x9d\x9d\x1d\x37\x37\xf7\xe4\xe4\x64\x78\x78\xb8\x80\x80\xc0\xe0\xe0\x60\x6b\x6b\xab\x97\x97\x97\xb9\xb9\x79\x45\x45\x85\x8c\x8c\x4c\x56\x56\x56\x60\x60\xe0\xe8\xe8\xa8\x91\x91\x51\x52\x52\x92\x95\x95\x55\x55\x55\xd5\x9f\x3f\x7f\x84\x84\x84\x82\x82\x82\xca\xcb\xcb\xf9\xf9\xf9\x33\x33\x33\x67\x67\x67\xbb\xba\xba\x14\x14\x14\xa6\xa6\xa6\x92\x93\x93\x1b\x1b\x1b\x43\x42\x42\x42\x43\x43\xfb\xfa\xfa\x44\x45\x45\xd5\xd5\xd5\xf5\xf5\xf5\xd7\xd7\xd7\x17\x17\x17\x49\x84\xfd\x57\xff\xbb\x5a\x33\x45\x59\x29\x40\x04\x1c\xa9\x1c\x00\x00\x40\x72\x96\xd3\x75\x03\x00\x00\x72\xff\x23\x99\x3f\x76\x22\x00\x00\x39\x50\x5e\x4a\x5c\xf3\xc7\xda\xb9\x1f\x92\x8e\xe6\xd2\xeb\x27\x3f\x2d\x8c\x51\x5a\x3a\x97\xcb\x45\x49\xf0\x11\x4d\xc2\x68\x14\xf4\x7e\xe2\x78\x20\xca\xef\xc9\x76\x00\xb2\x23\x45\x82\x75\x61\xc9\xd7\x50\x94\x0a\x06\x2a\x16\x8a\x5a\x3c\xc6\xf6\xc0\x48\x4b\x05\x10\x63\x64\x64\xba\x9e\xa3\x34\xa8\xc3\xd2\x32\x35\xb3\xd8\x46\xd7\xb6\xef\x36\x57\x90\x73\xaa\x1e\x89\xe3\xeb\xec\xe7\xa7\xb0\x2a\x8a\xdb\x65\x8e\x9b\xc8\xa3\xf0\xa5\xf7\xf6\x63\x37\xc4\x6f\x5b\xfc\x28\xe0\x3c\xe0\xfc\x73\x37\xcc\xa6\xca\x0e\xf5\x80\xaa\xca\x0e\x51\x35\xac\x2b\xfb\x14\x2d\xd7\xd6\x3a\xf4\x64\x97\xc9\x34\xb4\x45\x99\xba\xf6\x8c\xd7\x66\xa3\xd8\xa6\xa9\xcc\xe1\x74\x5b\xca\xe4\x80\x73\x5a\x5f\x68\xbd\xb1\x5a\x70\xa5\x36\xe5\x37\xc1\x59\x1e\x75\x71\xad\x78\xaa\x94\x0c\x50\xf0\x2a\x08\xbc\xd6\xc0\x85\x83\xb9\x58\xca\xcc\x5a\x99\x9d\x0b\x69\xa7\x3b\xee\x80\x27\x2e\xb3\x87\x14\x63\x7b\x43\x3c\x4b\xc4\xcd\x17\xb7\xa4\xf3\xcb\x8d\xbf\xfd\xe5\x7d\xd8\x59\x24\xcd\xfe\x92\x9b\x96\xd9\x9e\x2a\x15\x93\x60\x2e\x2b\x9e\xdf\x04\xfe\x53\xd3\xcb\x2c\x3d\xb3\x29\x49\x7d\x0d\xbd\xdd\xa1\x28\x6f\x01\xeb\x71\x2e\xe3\x84\xd8\x3d\x14\x75\x8f\xca\x35\xaa\xb5\x29\x9d\x40\x75\x7b\xa6\x76\x42\x76\x3d\x7f\xd3\x8c\xb4\x25\xd2\xee\xcf\xce\x3d\x2a\x9c\xc3\x60\x81\x5c\xa3\xed\xe4\xe6\x63\xb6\x58\x46\x6d\x72\x48\xb3\xdd\x7b\x8f\xca\x45\xf9\xfe\x46\x68\xd9\xfb\x09\xb0\xa0\x5d\x65\x03\xf2\x45\xf4\xc4\x96\x13\x1b\xcc\xae\x04\x53\x4b\xfe\xa4\x81\x5f\x73\xa3\x67\x2f\xe3\xe2\x9d\x8a\x54\xd3\x8b\x7f\xdb\x3c\x25\xb0\x2d\x24\xa9\xc6\x21\xe2\xa2\xa4\x00\xe3\x02\x65\xd0\x8c\x76\x40\xe0\xb7\x2b\xac\x72\x91\x0a\x82\xe8\xea\x4c\xa4\x7e\x98\xee\x71\x04\xb8\xac\x20\x5a\x6b\x31\x14\x5a\xc1\x23\xe6\xcb\x84\x72\x11\x76\x6e\xf1\x22\x19\x4e\x93\x3b\xd1\x07\x98\x06\xa2\x92\xb1\x95\x85\x28\xec\x03\xd2\x39\x2f\x9d\x9e\x42\x2e\x71\x73\x49\x7a\xaf\x72\x09\xa8\x47\xbe\x47\xb3\x45\xc2\xd0\x1e\xd8\x44\xe7\x1f\xed\x5f\x10\xd7\xd2\x36\x4f\x81\xe5\xfc\x47\xd7\x05\x54\xac\x32\x4a\xf9\x42\xd3\x18\x3c\x58\x3e\x84\xca\x3f\x43\x09\xa4\xfc\x13\xb5\x8b\xbf\x5c\x25\x95\x2d\x32\xa9\x33\xe9\x69\x28\xd8\x1a\xf9\xa1\x01\x3c\x31\x78\xe0\x36\x7f\x40\xb3\x22\xbf\x2d\xda\xa8\x15\x52\x48\x8d\x2d\x52\x97\x8e\xd2\x3f\x78\x30\xce\x53\x6d\x5f\x21\x95\x30\xb1\x3b\x76\x32\x58\xe7\xed\xde\x25\xda\x8e\x4e\xe9\x06\x51\x0c\xf7\xe9\xfa\x65\x84\xc7\xd4\x64\x92\x62\x71\xad\xe7\x62\x73\x58\xa8\x9c\x19\x18\xed\xb5\x38\x65\x6c\x65\x41\x24\xc4\x67\x1b\x5b\xb3\x58\xe7\xe8\xde\x70\x72\x11\xb9\xa5\xc7\xe7\x64\xa6\xb8\x01\xdc\xe1\x48\x5d\x6f\x16\x4f\xec\x7a\xf1\x72\xde\xf9\xe7\x83\x19\xf2\xb8\xcd\xf5\x72\x86\x3f\x15\x85\xa3\x7f\xa3\x8b\x58\xb3\x7b\x4f\x47\x72\xdc\x9f\xaa\x7e\x4f\xa9\x60\xdf\x9d\x2a\x70\xbd\x30\xd5\x6a\xd5\x32\xbd\x98\x50\x57\xfd\x8e\x26\x20\xa3\x58\x9e\x8c\xdf\x52\x57\x4e\xdc\x8d\x8a\x2a\xe4\x5f\x51\x00\x13\x9d\x44\xa7\x56\x15\x8c\x81\x38\xcc\x93\xdb\x4f\xae\xaa\xfd\x6b\x3e\x10\xb6\x33\x9f\x33\xa3\x71\x8a\xb6\x45\x36\xfc\xc0\xc9\xa7\x45\xaf\xc1\x75\xe9\xad\x18\x49\xbe\xea\x3d\xcf\x70\xce\x62\x20\xb3\x4d\xb0\x9b\xf3\x70\x73\x85\xab\xe4\x8d\x90\xe5\xda\x1f\x8f\x87\xf1\x6a\x59\x1d\xdc\x3b\x9b\x9f\x9c\x66\x42\x53\x6b\xf7\x0d\x75\xcd\x41\x38\xd0\x28\xaf\xbf\x84\x4e\x5e\x93\xbe\x76\xa2\xfc\x4b\x05\x83\xa8\x89\x52\xb2\x27\x11\x31\x4f\x2d\x86\x4e\x87\x8d\x5b\x73\x9b\xb1\x65\x69\x54\x92\x0c\x36\xe8\x7d\x22\x2a\x91\x87\x5d\x84\x89\x93\xd1\x11\x7c\xc4\x5c\x03\xb3\xb5\x6e\xdb\xc4\xa6\xab\x1c\x18\xc3\x18\x4e\xbc\x7f\xe6\xa0\xa7\x30\xaa\xbb\xae\xf6\xf0\x9a\x8f\x03\xe1\x95\x90\x01\xb7\x0a\x02\xee\x9e\x70\x3d\x74\x7c\xd1\x0e\x30\x20\xde\x06\xa0\x71\x71\xbe\x6a\xcd\x62\x3f\x36\x4b\xab\x47\xc3\xa6\xc2\x6c\x2e\xc6\xca\x66\xa9\x0e\xa4\x91\x69\xe7\x50\xf4\x7c\xf9\xa9\x09\xa2\x8f\xdd\xce\x38\x91\x19\x44\x8d\x79\xa4\xca\x61\x80\xc2\x7c\x09\xc3\xb9\x66\xd7\x7a\x2c\x3d\x2f\xf4\x70\xbe\x0e\xb5\x75\xf2\x15\x12\x1e\x13\x2e\x97\x6c\xd0\xe3\x37\x22\x16\xc7\xb5\xac\x6a\xff\x29\x2e\xb3\xa0\x14\xcf\x28\x04\x95\xb5\xb4\x53\xf9\x73\x22\x71\x78\xcb\x7e\x86\xb9\x00\x9d\xe0\xbe\x7f\xda\x26\x71\xdf\x82\x10\x81\xdb\x1b\xad\x64\x79\x0f\x4a\x5a\x3b\x63\x77\xb3\xa6\x33\x2d\xbb\x8c\x0a\xc8\x73\x34\xdf\xff\x24\xb0\xd7\x9f\xf1\x70\xb3\x94\xde\xcd\xbf\x73\x58\x4b\xa4\xd6\xe2\x1c\x53\xa5\x74\xdf\xa2\x73\x39\x6b\x68\xf7\x07\xc0\x76\x95\x29\x3f\x5a\x13\xab\xa6\xb5\x7e\x01\xca\x31\xba\x85\x52\x54\x36\x03\x0d\xa9\xec\x80\x35\x0a\xc9\x35\xa4\x48\x64\xc1\x6d\x89\xe5\xb5\x60\x69\x74\xbd\x6b\xdd\xcb\xb3\x1b\x93\x26\x8f\x41\x1a\x04\xb2\xbb\x08\xf8\x29\xb3\x6f\x22\x07\xe5\x56\x81\xf3\x9b\x6d\x45\xd8\x42\x3d\xd4\xbf\x14\xe8\x88\xd9\x24\x8e\xda\x59\xde\x85\xd1\x47\x2c\x75\x18\xd8\x5a\x06\x6d\xb6\x0f\xb1\x09\xcc\xa5\x07\xba\x29\x08\x52\x10\x11\x09\x4d\x6c\x49\xad\xb3\x1b\xcf\xac\x48\x1d\xd7\x9e\x6f\xa9\xab\x62\xc9\x6e\x57\x2e\x0f\x5a\x86\x4e\xa3\x06\x7a\x7a\x85\xb6\x2a\x6e\x2d\xc2\x85\x5d\x32\x12\x80\xf0\xfd\x00\x03\xbc\xce\x03\xa9\x3c\x36\x4e\x18\x39\xc7\x10\x8a\xea\x56\x14\x03\x9e\x7d\x8b\x32\xa5\x1f\xe6\xe2\x07\xae\x13\x39\x43\xa6\x51\x81\x65\xaa\xaa\xe2\x34\xc5\xb2\x75\x5b\x77\x82\xad\xc6\xcf\xd0\xa8\x0a\x04\x6a\x04\xae\x3f\x0d\xba\xa0\x38\x7d\xcb\x56\xb0\xfc\xd2\x46\x6b\x17\xba\x54\xe4\x60\x27\x1a\x23\x21\x2d\xb9\x0f\x58\x79\x75\xa8\x2b\xd7\xf7\x05\x61\x7e\xc8\x69\x6b\x96\x4c\xfc\x49\x87\x17\xa9\x89\x57\x7b\xbc\x0b\xaa\x7e\xbe\x67\x5d\x18\x43\xfb\x8d\xee\xdd\x53\x52\xc9\x4e\x9a\x39\xa2\x1e\xff\x50\x19\xc7\xc1\x01\x0f\xf3\x6f\x34\x86\x32\x0f\x0e\xc2\x4c\x09\xf3\x30\x2f\x04\x92\x30\xea\x47\x35\x21\x9c\x77\x31\xcf\x9b\x28\x31\x75\x91\x29\x7e\x34\x2f\xc0\xba\xb8\x40\x8c\xd0\x6d\xd9\x28\x30\xab\xb9\x58\x6e\x9c\x7d\xe7\xde\xbf\x9b\x74\x8c\xd2\x68\xc6\xfa\xef\xc4\x88\x85\x8e\x6f\x92\xb4\xb3\x3f\x52\xa8\xae\xdc\xf8\x88\xd9\xce\x32\xd0\x9e\x8b\x57\x94\x11\xff\xcd\xf3\xee\xe3\xc5\x47\x22\x41\xd6\x72\x1e\xdb\xd9\x84\x54\xf6\x0e\x8e\xb1\x24\x6e\x59\xc2\x88\x7a\x87\x75\xf9\x59\x6c\x70\x7f\x56\x8c\xc5\x05\xf3\x7a\x23\xdb\xb7\x82\x12\x87\x0d\x8d\x10\x2f\x9b\xda\xb9\xc7\x8f\x79\x37\x7e\x8b\x17\x49\xf2\x37\x93\x9f\xab\x2a\x10\xf2\x0b\x5a\x82\xb8\xf2\xe7\x58\x59\xac\xd7\xc4\x09\x6a\xab\x5f\xfd\x8f\x9a\xfd\x0d\x67\xee\xb3\xd3\xe3\xd9\xca\x04\xd9\x60\xc5\x5a\xb7\x93\x1f\xef\x07\x46\x86\xfb\x23\xf3\x85\x14\x2a\x1d\xbd\x67\xa2\xbe\x9b\x8d\x8e\xc4\x40\x6d\x3e\xb2\xb1\x14\xe4\x70\xf9\x31\x05\xd8\x04\x83\xb6\xed\xdb\x57\x6e\x20\x55\xc1\xef\xc1\x24\xd8\x07\x35\x88\x5f\x4d\x64\x92\xda\x8b\xe3\x52\xa9\x76\x66\x8c\x07\x19\x74\x47\x28\x87\x87\x1f\x10\xd1\xa1\xe7\x7a\x04\xf3\x5c\x58\x15\x9e\x2a\x96\x68\x45\xdf\xdb\x88\x70\x8e\x4a\x1c\xcb\x6f\xf3\x3f\xa6\x7d\x73\xf8\x25\xd1\xf0\x8e\xd4\xee\x5f\x5a\x28\x85\x9b\xd4\x88\x90\x1b\x7e\x46\xf6\xe7\x6a\xdc\xd9\xb4\x35\x25\xe1\x98\x3b\x8a\x40\xa2\x92\x4e\xb5\xbc\x62\x73\x0f\xaa\xc8\x25\xc1\x28\x24\x4f\xeb\x25\xc7\xbf\x63\x50\xa0\x30\x41\x3b\xbc\x50\x26\x33\x46\x1a\xc1\x0c\x07\x08\x3a\x6a\xd7\xfa\x78\xce\x09\xd8\x2a\x7e\x8e\xe3\x1f\x48\x43\x86\x4f\x66\xff\x46\xc0\xab\xb4\x41\xfe\xd6\xbe\xa3\x08\x98\x49\x8c\xf4\x7c\x44\xfc\x4a\xd1\x8d\xd3\x4b\x4d\x8c\xef\x96\x15\x84\xb5\x16\xd9\xfa\x46\x04\x2e\x05\x4b\x91\x65\x67\x62\x2a\x6a\x53\x1b\xd9\xce\x14\x0b\x28\x8a\x4a\xee\xdc\x32\x86\x08\x03\x51\x75\xef\x4b\xb1\xc2\xb0\x9b\x8c\xd5\x8f\xb9\x2f\x35\x1e\x4d\x7c\x03\xc5\xaa\xf2\xac\x9e\xc7\x3a\xbd\x50\xcc\x43\x81\xde\x93\xd2\xd1\x93\x38\x56\xf5\x27\x81\x68\xbc\x67\x8f\x87\x07\x4b\xd4\x27\x5d\x3c\xfd\xb3\x6f\x1b\x01\xeb\xaf\xec\x90\xc4\x0c\x6b\x38\x2a\xd7\xbf\xa2\x08\x8e\x77\x25\x52\xdc\xc7\x48\x07\xc6\x5a\x50\xb8\xaf\x4e\xb2\x94\x32\x48\x44\xd1\xe7\x53\xc4\x7f\xd3\xf2\x6c\xe6\x37\x28\x8d\xfe\x29\x67\x8d\x93\x1b\xe5\xaa\x15\xf8\xe6\x22\x85\x34\xd6\x12\x7f\x94\xc0\x7c\x11\x6a\x9a\x4d\x9e\x17\x23\x2c\x13\xe7\xfd\xeb\xfd\x9e\xdb\x69\xaa\xab\x77\x7d\x33\x42\xdf\x33\xc4\xc2\xc3\x50\x95\x96\x71\x1f\xa9\x96\xa5\x72\xb5\xd6\x9d\xf4\xa9\x6a\xca\x61\x0f\x83\x17\xf9\xdd\xa4\x7a\xba\xc6\x4a\x20\x9b\x5f\x0f\xb7\x77\xd9\x88\xce\x6d\xec\x5f\x42\x2d\x1e\xf0\x7b\x73\x70\x72\x3d\x47\x77\x76\x7a\x31\x73\x03\x47\x3c\x49\x85\x5f\x6c\xd3\xc1\x94\x9d\xe4\x83\xfb\xe9\xdd\x59\xd0\x6d\x40\x71\xaf\xef\x3a\x7d\xc9\xca\x15\x2e\xb2\x17\xe4\x40\x29\x8c\x7f\x2f\xb5\x71\x18\xa8\x3d\x8a\x9a\x46\x57\xb5\x3e\x83\x96\x9d\x0b\x2e\x0d\x67\x3b\x49\x1e\x59\x26\xf7\xea\xc0\x9b\xee\xdd\xe2\x97\x51\xc3\xb2\x14\x48\x34\xdf\x5e\xea\x61\xd9\x55\x4f\x4f\x61\x0f\x30\x5a\xf1\xfb\xfb\x94\xf0\x7a\xd0\x7c\x16\xd6\xf1\xa8\x99\xb6\xae\x38\xbf\x89\x96\x64\x41\x88\x8f\x3b\xfd\x70\xed\xf6\x2b\x93\xea\xb2\x7b\xa9\xf2\xdf\xa2\xd9\x63\x5f\x26\x87\xe9\xcc\xe9\xcb\x25\x5f\xb8\x5a\x83\xd3\x26\xae\x77\xdc\x8f\xfe\x0d\xcf\x6a\x5f\xb8\x6c\xf1\xbe\x8a\xad\xf5\x4c\x6c\x88\x7d\x7d\x46\x83\x9c\xfc\xe9\xc3\x9c\x75\xe5\x88\x1e\x3f\xf0\x5c\xf1\xc2\x0c\x0b\x30\x7f\xfe\x8d\x78\x0e\x3f\x0e\x5e\xa2\x11\xd2\xae\x52\xc0\x46\x4c\xd5\xe7\x59\xee\x40\xa4\x54\x6e\x7d\x94\x37\x3e\x5c\x87\xb9\xe6\x39\x80\x80\x1c\x34\x7d\xce\x06\x26\x6c\x18\x2a\x08\xce\xa6\x34\x3d\x30\x2f\x45\x96\x5e\x2d\x95\xe7\xc5\xc3\xb3\xba\x86\x28\x8b\x2f\x10\xc7\x08\x49\x1c\x35\xee\x47\x45\x77\xa6\xaf\xb9\x18\xf2\xc2\xd8\xbe\xf6\x28\xcc\x74\xab\xda\x3e\x60\x96\xdc\x2b\x26\x19\x06\xc6\x16\x16\x0b\x08\x4e\xd7\x4e\x71\x0f\xe2\x35\x3f\x6a\xfd\x22\xc3\x3d\x0e\x6a\xf7\x1c\xd3\xfa\x73\xf6\xba\x37\xda\x11\xfb\x57\x4e\xa8\x6e\xd5\xb8\x16\x85\xb8\x55\xcb\xd3\x41\xa8\xf3\x58\x0c\xac\x90\x4b\xfa\xdb\x2f\xe3\x4e\x66\x37\xfe\x43\xc5\x59\xf7\xca\x18\x7a\x4d\xa6\x55\xd9\x65\x65\x3b\xc3\xdd\xb4\x4a\x2b\x53\x55\xb8\xa7\xa6\x99\x14\x7c\xe2\xfc\x65\x44\x82\x32\x4a\x97\x2c\x06\xf7\x40\xbe\xc8\x22\x4b\xd4\x30\x5d\x9c\x12\x39\xb3\xfc\x59\x54\xd5\xfd\x40\x69\xca\x48\xe1\x08\x31\xde\x53\x1a\x32\xb1\x4a\x05\xb6\xc2\x0b\xe5\x84\xce\xf6\x68\xac\xc7\xb3\xf4\x18\x80\x37\x8c\x4c\x51\xc4\x70\xbf\x0b\xa9\x95\x66\xb7\x2a\xce\xe4\x68\x33\x74\x4d\xff\x2a\x8f\xfc\x06\x95\xf6\x8e\x8a\xe3\x0f\x5b\x74\x37\xa2\xaa\xfd\x7c\x6c\xb1\x2f\xf9\x1b\xe3\xc4\x56\xff\x42\x0d\xd3\xef\x73\x70\x35\xcb\x40\x8a\xa8\x95\xb1\xf1\xb8\x18\xed\xd8\x74\xe5\x8a\xaf\xcc\x08\x57\x01\x29\xe7\x9e\x47\xfb\x41\xc8\x74\xc6\xf6\x5a\x56\x9b\xa3\xc5\xe7\x9d\x02\x31\x69\x01\x75\x5e\x59\x8d\x0f\xf2\x5d\xd5\xb2\x31\x72\xad\x03\xc6\x26\xed\x04\x2d\x4d\x7b\x6b\xd6\x2a\x13\x35\x2e\x04\x2d\xc5\x32\x6b\x77\x25\xc4\xd5\xd5\x53\x4f\xb4\x0e\x3f\x41\x8f\xa8\x11\x93\xff\x31\x07\x9a\xbb\xc2\x79\x93\x09\x65\x6b\x15\xf2\x07\xff\x4b\xca\xb3\x5e\x5f\x71\x01\x35\xf2\x52\xfe\xfd\xd1\x99\x2e\xcd\xaf\xb5\xee\xd5\xf2\xbb\x39\x84\x12\xfa\x06\xfd\xa7\xb8\xbf\x87\x52\xf2\x4e\x87\xf5\x0c\xda\x1c\x8a\x38\x56\x04\xd1\xf7\x8f\x70\x9b\xe2\x7f\xce\x9e\x6d\x89\x69\x0e\x2e\x78\x94\xb9\xd7\xaa\xd3\x16\x95\xd2\xe9\x7e\x22\x4d\xdd\xbd\x98\xe9\x44\xdc\xd9\x48\xaf\x3d\x78\x7d\xdc\x2f\x9c\xd4\x18\xcd\x95\x9c\x2f\x14\xe1\x6e\x98\x7b\x06\x24\x7f\x12\x7f\xed\xc4\xa4\x22\x36\xc3\xe6\xae\xce\x89\xdb\x5c\xcb\xad\x0d\xeb\xe8\xc3\x92\x38\x26\x78\x96\x41\x22\x26\x1c\xdd\xb3\xa7\x23\x33\x30\xc2\x65\xfc\x65\x23\x97\xc5\x83\x8d\xee\xb9\x47\x30\xa0\xf5\x2d\xc3\xbf\x4d\x16\xcb\x70\xc7\x3e\x94\xee\xc1\x38\x17\x83\xf3\xef\x6d\x84\x02\xcd\xf5\x6b\x2a\x20\x0f\xeb\x4e\x8d\xa5\x25\xf8\x7d\xd4\x84\x31\x74\x08\xfa\x72\x46\xd0\x56\x15\x12\x72\x3f\xa4\xd8\x21\x1d\xf0\xb8\x7b\xb5\xef\x65\x49\xb1\x48\xca\xdb\x1a\x0b\xbe\x6a\x2c\x91\x7d\x64\xef\xda\x52\x6c\xb9\xa8\x11\x6b\xf2\x63\x90\x47\x9f\x15\x6b\x3c\x19\x80\x2f\x21\xd0\x62\xa3\x3a\x9c\x5e\xb8\xee\xce\x27\x97\xe7\x3e\xed\x42\xd0\xbd\x8b\xdb\x60\x89\x50\x24\x77\x79\xef\x19\x32\x81\x66\x43\x0c\xd7\xdf\x34\x29\x1d\x4b\xd4\xe6\xbe\x42\x97\x45\xb6\x50\x2c\x53\xd3\x10\x50\xd9\xf3\x1d\xf7\xd8\x8d\x89\x59\x2f\x5c\x25\x99\x64\x2c\x5b\xaf\x2c\x80\x43\xd4\x9e\x69\xfd\x75\x90\xc4\xe1\x07\xd1\x55\x5d\x35\x42\xc0\x5f\x52\xee\x7d\x5b\x0e\xdb\xd4\xa4\xbf\x9a\xa6\xcd\x74\x46\x68\x20\xf5\x18\x82\xe4\x84\xeb\x53\x79\x6f\xb1\x25\x96\x9e\xff\xae\x40\x9a\x95\x9d\xbf\x44\x03\x5e\x5d\xd7\xc0\x59\x51\xa3\xc5\x3f\x1f\x75\xdb\xac\x2a\xd9\x09\xfb\xf0\x63\xb1\x8d\xa1\xa5\xf8\x0e\xf2\xc5\x25\x6a\x2d\x5d\xe7\xd5\xc8\x92\x4a\xbd\x2f\xdc\x5d\x57\xab\x08\x96\xd1\x68\xe2\x37\x42\xb5\xae\xbd\xbc\x4d\x0c\xe9\x09\x77\x40\x3d\x3a\x8b\xa6\x3f\xdb\x55\x13\xb4\x61\x79\x05\xf0\x13\x72\x5e\x2e\x2a\xd6\x5d\xfc\x36\x1b\x8d\x20\x73\x1d\x4f\x48\x42\x48\x52\x9b\xc0\x7b\x4a\x6d\x0b\xf8\x41\xcf\xba\x7e\x73\x17\x10\xee\xb5\xed\x9a\x84\x56\xd2\xc5\xe4\x91\x5f\x40\xd5\xb7\xa4\xc8\x1f\xb4\x1c\xae\x5e\x9f\x30\x53\x78\x6d\x63\xc4\xfb\x32\xb0\xbe\xbe\x04\x8f\x53\x7e\x53\x7f\xbc\x8f\x14\xbe\xcc\x95\x37\x62\x82\xe2\x83\xa3\xe4\x6e\x83\xb1\xd1\xf0\xef\x24\xc5\x32\x87\x9a\xe3\xbb\xcc\x64\x0a\x12\xea\xf6\x8c\x32\xcf\x03\x2c\x66\x4c\x1b\x6e\x56\x56\xb4\x6d\xa4\xf2\xf6\xe9\x09\xad\x7e\x06\xfd\x13\xd7\x3a\x5d\xa5\xe7\x21\x71\xeb\xd7\x27\xa3\xd2\x2f\x8f\x2c\xd4\xf8\x5d\x35\xbd\x2f\xda\xc8\x95\xc8\x29\xd3\x26\x45\x58\x30\xb3\x24\x18\x73\xd4\x45\xa4\xbf\x33\x48\x31\xc3\x07\x7b\x91\xb9\x83\x82\xe0\x03\xf8\x3d\x7c\x9e\x4e\x35\x5a\x95\xec\x0b\x17\x5b\x6e\x0a\x82\x3e\x40\x67\x90\x4f\x87\xfd\xca\xb6\xef\xec\x7a\x64\x7f\x74\x2e\x76\xcd\xec\x31\x4b\x9e\x9a\x0c\xd4\xfc\x49\x04\xd6\x9a\x5e\x62\x60\x62\xc0\x38\xe2\xa9\x2e\x43\x7f\xcf\xaa\x45\x89\x03\x36\x92\xe6\xf4\xe1\x6b\xa4\xe0\x8c\x6f\xa6\x1a\x79\x1c\x6d\x1b\x69\xdf\x9c\x6d\x83\x8b\x3e\x88\x61\x73\xc6\x71\x63\x0e\xbb\x35\xe6\x62\x17\x19\x14\x70\x6e\x5f\x9c\x48\xf1\xd8\xe7\x5b\x32\x46\x51\x48\x3e\xb8\x26\x4c\x9e\x7d\x02\x3a\x4a\xed\x54\xbd\x34\x6b\xb9\x8d\xe0\x36\xfe\xac\xd7\x19\x2b\x37\x5a\xe1\xa4\xdf\x03\x4b\xdc\x6f\x66\xcc\x04\x75\x7e\x9f\x76\x3b\xcc\x41\x9d\xe2\x5a\x6c\xfc\xc5\xbe\x9b\xb5\x7c\x17\x86\x50\x3b\x15\x6f\x79\x70\xa2\x45\x0f\x58\x8f\x3a\xe7\xc6\x89\x2e\x94\x11\xe2\x85\x7f\x46\x24\xa6\xd7\xff\x00\xcd\x6d\x65\x98\x2e\x49\x57\x87\xa3\xf9\xad\xdc\x37\x1f\x9f\x2a\x77\x50\x7e\xf8\xee\x28\x65\x51\x63\xd7\xb9\xae\x2e\x54\xec\x33\xcd\xb6\xbd\x42\xb2\x50\x4b\xbc\xbf\x60\x79\xbe\x73\x55\x8c\x84\xc6\xd6\xe5\xfe\xac\x32\xae\xd6\xaf\xa0\x28\xfa\xc7\x7f\x4a\x36\xa5\xc2\xd9\x31\xbc\x5b\xd7\x44\x6f\x7d\x59\xc7\xfb\x55\x8d\x3a\xa4\xf2\x72\x81\x27\x31\xcb\xb3\xb9\x59\x30\xc7\x95\x8e\xf5\x69\xc1\x6f\xf8\x57\x02\x3b\xcc\x4c\xcc\x0f\xae\xb9\xd4\x23\x65\x85\x26\xd6\x76\x91\xdf\x39\x37\xd6\x2e\xd0\x63\xcd\x20\x79\xd4\x89\xa0\x48\xcb\x65\xbe\xf0\x00\xaf\x02\x4b\x3d\xc8\x56\x6a\x5c\x41\x21\xfe\x6b\x9a\x66\xb6\x2d\x4b\x13\x86\x9c\x53\x91\xa9\xfa\xa1\x58\x98\x2f\x48\xc5\xfd\x8f\x13\x26\x17\x43\xf2\xef\x98\xfc\x7f\x40\x3e\x77\x9a\x0d\x01\xb4\xa5\x05\x8c\xe4\xf2\x15\x72\xcd\x6b\x16\xac\x34\xdf\xb2\x61\x62\xa3\x52\xcf\x82\xc5\x4c\x4e\x17\x8c\xf8\xca\x8b\x6b\x65\x19\xee\x77\xc6\xb1\x9a\x70\xf3\xa0\x58\x7c\x3a\x44\x19\x28\xa0\x6d\x56\x0d\xfd\x16\xd1\xb7\xc9\xef\xd3\xa6\x06\x07\xfd\x5f\x0e\x45\x0f\x71\x17\xd1\x39\x77\x0e\xdb\xb7\x77\xfb\x2f\xec\xc3\x0e\xc4\xeb\x8a\xf2\xb9\x4f\xe3\x4d\x8d\x2b\xe9\x37\xfc\x85\x97\x20\x6a\x3e\x1c\xe1\x95\xae\x1b\xe2\xab\x09\x6e\xfa\xd6\xe7\x49\x6b\xf7\xc1\xf0\x61\x35\x78\xb2\x1f\x81\xd6\x81\xa5\xa9\xa2\xa0\x61\x0c\x4d\xdc\x3b\xf6\x1e\x9a\xc1\x92\x18\x21\x87\xbc\x74\xc2\xce\x87\x41\xa2\x3c\x82\x1a\x39\x9a\xbf\xb4\xf5\x55\x4b\x53\xc7\xdb\x4e\xbf\xe7\xe5\x18\xb7\xf3\xf3\x5e\xe9\x57\x1f\xf9\xb0\x93\xe4\xef\x47\x0e\xd1\xf0\xe1\x63\x12\x36\xfb\x76\x88\x0d\xe3\xd2\x29\x5c\xdf\x9f\x52\xe4\xd4\x3c\x45\x14\x22\x93\xc6\x84\x53\x0a\x6a\x61\xed\xe3\x8d\x7f\xbd\x87\x19\xca\xfd\x83\x5b\x1d\x5f\xa8\xc9\x75\x64\x5a\x87\x18\xf6\x9b\xb9\xb6\x9b\xbb\x80\x63\x73\x2a\x9e\x4f\x5f\x81\x61\x35\x0e\xc0\xcd\xba\xc9\x57\xc4\x55\xf8\xdb\xd3\x94\x35\xb9\x6b\x42\x07\x18\x2f\x94\xd2\x73\x12\x8b\x7a\x92\xf4\x12\x2e\x3b\x1d\xf2\x56\x41\xc7\x74\xc5\x6d\xaa\x8d\xb1\xbd\xfc\x4f\x62\x65\xd9\xa8\x17\x5c\xa6\x04\xd7\xd7\x0f\x7a\xa3\x87\x31\xe0\xb4\x62\xd9\x61\xc0\xdd\x17\xbc\x81\x52\x2f\x1f\x63\x8c\xab\x7d\xb4\x19\x2b\x23\x4f\xfe\x2f\x22\x57\x2e\x25\x76\x7b\xad\xc2\xef\xed\x0f\x9d\xa1\xe2\x38\x77\x9a\xbc\xc8\xac\x17\xfc\x52\x40\xa5\x77\x6d\x4f\x5c\x85\xdd\x2c\xf4\xae\xa3\x69\xc5\x5f\x7f\x73\x73\x79\x1b\x0c\x16\x17\xcf\x14\xb6\x7c\xf9\xff\x5a\x53\xc9\x9c\x33\x9e\xd4\x99\x7e\x1d\xbc\x7c\xe9\x31\xcd\x7c\x21\x39\xba\x8e\xd7\xc0\x87\x9f\x2e\xc8\x73\x3d\xfa\xd1\xbb\xef\x74\xbf\x42\x0a\x2d\x62\x91\xe0\xf5\xb1\x07\xee\x90\x8c\xf2\x5f\x4f\xb6\x09\x24\xed\xa8\x2d\x31\x5c\x1d\x9a\xf7\x42\xf2\xff\x23\x6e\x69\x61\x9b\xc4\x6b\x77\x3f\xe6\x46\xbe\xa1\xcb\xa9\x77\x21\xdb\x64\x73\xf5\xe7\x52\x82\xc1\x3a\xad\x0a\x1f\xdf\x9b\xa4\x13\x82\x20\x93\x3b\xa3\x3a\xc9\x27\xb1\x23\x9a\x7d\x0e\xcf\x9b\xb8\x8e\x8a\x04\x1e\xc2\x7a\xba\xaa\x2a\x9a\xa0\xe2\x11\x37\xad\x90\xd7\x7b\xb0\x5d\x84\x9d\x11\xf4\xa0\x86\xaa\xed\x9c\xb9\x26\xf0\xee\x89\xcb\x6a\x88\x3a\x44\x88\x92\x80\x07\x93\x72\xdc\xa7\x32\x10\xaf\xdb\x78\x11\x04\xdd\x01\x1b\x1e\x4b\x20\xaf\xb7\x8d\x08\xa2\x37\xd6\x7d\xf3\xe5\x48\x8c\x3f\xfc\x31\xcd\x4d\x7f\x79\x7d\x30\x1f\x4a\x7f\x15\x1c\xc4\x3c\x7e\x96\x21\x71\x72\x56\x90\xec\xf3\x46\x9e\x4c\xcc\xcc\xef\x13\x96\x1e\xf2\x94\xd8\x91\xed\xeb\xfb\xc6\xba\xbf\xc2\x42\xe1\x2d\xf9\x6a\xe8\x0c\x2f\x06\x67\xd2\xd4\xa7\x90\x13\x9d\xcf\x00\x75\x7d\xf6\x23\xec\xb1\x4b\x88\x1a\x6c\x2d\x00\xfe\x2c\x8d\x16\xae\x49\x31\x3c\x89\xde\x9a\x5e\x60\x46\x01\x16\x91\xaa\xc8\x5c\xb6\x3d\x3a\x21\x28\xfb\x8d\x07\x0e\x9c\x10\xd4\x61\xae\x3a\x70\x7a\xab\x30\x4c\x79\x0b\x5c\xc1\x22\x77\x3e\xb3\xf7\x4c\x57\x73\x46\x2f\x6a\xb4\x1a\x81\xaf\x7d\x5c\x06\x11\xb8\xeb\xd9\x34\x92\xd2\x76\xaf\x98\xbd\x7e\xcc\x5c\x2d\x9f\x6f\x4f\xd3\xd1\x14\x92\x30\x24\xbe\xd9\xe0\x7c\x69\xad\xb3\x7f\x68\xf0\x8e\xd0\x1f\x00\x81\x69\x0b\x8f\xde\x3f\xa4\x40\x91\xba\xf9\xe4\x86\xc4\xd3\x44\xad\xeb\x01\x57\x8c\xcc\x23\x9b\x7e\x0d\xd2\x23\x08\x32\x5a\xd3\x15\x8e\xf2\xf6\x1c\x7b\x0f\xc9\xf0\x8e\xa0\x55\x20\x61\x55\x5a\x8c\x17\x74\x78\xde\x49\x23\xd1\xc0\x22\x5d\xa3\x98\x90\xad\x23\xba\x1c\xcb\x10\x3d\x2c\x82\x99\xab\x8f\xcc\xc7\xec\xe2\xc5\xc1\xa3\x9f\xb9\x1a\x18\xb6\xa7\x1d\x6e\x43\xcd\x4f\x1c\x2f\xcd\x21\x6e\xbe\x24\xe5\xc1\x03\x97\x6f\xfb\x7d\x34\x53\x26\x6a\x13\x2d\x48\x43\xc0\xb0\x4e\xf6\xe0\xc7\x74\x3f\x77\xd5\x97\xcb\xce\x6f\xf8\x44\xfe\x15\x2f\xf9\xca\xe8\xe9\x88\x2f\xf9\xcc\x25\xcd\x10\x2b\x29\xdd\x5f\xf3\xfb\xf6\xbe\xed\x80\x60\xff\xae\x45\xd8\xfb\x65\x29\x67\xe9\xee\xee\x7a\x2a\x9c\xd4\xf8\x4f\xb1\x27\xc8\x94\x0c\x3c\x02\x4b\x33\x5d\x10\x2a\x14\xb9\xcf\x0a\x2c\xa9\x7b\xbe\xf5\xdb\x47\x45\x3d\x93\x12\x07\xcb\x10\xfb\x6d\x1e\xa7\x32\xfa\xdd\x6c\xfd\x42\xde\x28\x1e\x90\x96\x10\xe1\xa2\x70\x72\xe5\xb1\x7b\x20\x2b\x25\x87\x2c\xbd\xb0\xf6\xa5\x16\x3d\xe9\x6e\x94\xf3\x27\x90\xe0\x64\xb6\x00\xec\x16\x7e\xfc\x76\xc0\x33\x8c\x17\x34\x1a\x6a\x25\xd6\x48\x73\xcf\x85\x94\xa3\x03\x18\xb3\x87\xea\x61\xda\xda\x37\xa9\x42\xd2\x3c\xb3\x19\x9b\x4c\x5f\x6a\x78\xd4\x7a\xfa\x64\xe3\x29\x9a\x48\x4f\x19\xf8\xeb\xda\x92\xb9\x31\xd0\xb6\xca\x93\x94\xef\xcd\xef\x0c\x6d\x44\x39\xc0\xe6\xf9\x89\x6a\x8f\xb8\x45\x0d\xfe\x61\x10\x7c\xd6\x0b\xd7\xb2\x27\x5c\x6f\xd6\xe9\xe2\xd9\xf5\xdd\x9d\xd8\x39\xc3\x5b\xb9\xa3\x47\xbf\xbf\x81\xbc\xe3\x5c\x0d\x8f\xbd\x88\x98\x9c\xa3\x4a\xbb\xd3\x59\xdf\x33\x33\x77\xb6\x50\x01\xd4\x6e\x0e\x17\x94\xac\x72\xa2\xba\x1b\x08\x06\x45\xff\x59\xe5\xf3\x9f\xc4\xa8\x75\xb8\xa8\x2c\x47\xe4\x86\x9c\x40\xe5\xd7\x31\xf4\x37\x23\xe7\x7e\xad\xef\x27\xca\x91\x35\xfd\xfe\x8f\x47\xc6\x31\x18\x54\xc0\x74\x1c\xfb\x27\x43\xec\x95\x5b\xd3\xed\xdd\x4e\x7b\x4e\x84\xef\x73\x51\x0f\x7f\x77\xbe\x2a\xce\x46\x15\x47\x9b\xad\xce\xab\x2d\x6e\x9e\xc9\x59\xd3\x75\x95\xae\x45\x93\xa9\x76\x02\x21\x60\xd0\x87\x4e\x5e\x04\x21\xa6\xd7\x08\x0f\xec\xbe\x39\xcd\xdd\x5e\xc6\xb3\x1d\x38\x80\xbb\x3d\x47\xf0\xcd\xaf\xec\x6b\x78\xc9\xae\x61\x50\xcf\x9e\x78\xd2\x2d\xf3\x45\x3a\x53\x1a\x91\xdb\x2a\x54\x51\x99\xb6\xf3\xb3\x11\x43\xc9\x1e\x13\x80\x94\x2b\x08\xc8\xdf\xd3\x45\xcc\x55\x77\xf1\x38\x21\x19\x96\x10\xf6\x74\x4c\x1d\x15\x1a\xd1\x03\x10\x20\x57\x71\x28\x51\x59\x9f\xc4\x2d\x06\xd0\x04\xd8\x26\xda\x3f\x4b\x35\x73\x5a\xc1\x9e\x89\xf8\x32\x0b\x46\xe1\x25\x59\x42\xd2\xf6\x1b\x77\xe4\xec\xb1\xbe\xb7\xff\x44\x21\x2e\x96\x12\xd6\x27\x3c\xef\x75\xaa\x82\xf7\x31\x8f\xc0\xba\x73\x07\xf4\x5c\xd1\xfe\x04\x93\x9d\x6b\xf8\xc4\xee\x06\x6d\x96\x68\x3d\x34\xe6\xf0\xfa\xb4\xda\xc9\xe3\x39\x3d\xca\x86\x74\xcf\x35\xf4\xf1\x4c\xe3\xa5\x3c\xf0\x83\x49\x37\xf6\x84\x4c\x64\xfc\x99\xa5\x42\x21\x08\x44\x62\x74\x1f\x86\xdc\x60\x43\x5a\x62\xb3\xf6\x75\xf8\xa1\xe3\x8b\x08\xe5\x6a\xe2\xe9\x16\x86\x43\x35\xc2\xb3\xe0\xd3\x12\xb8\xac\x7b\x53\x9e\x2c\xf4\x90\x14\x91\x82\x89\xde\x5e\x55\x93\xfc\xe1\xb9\x34\xc8\x0a\xc7\xa6\xa9\x19\xf7\xdc\x56\x59\xb5\x09\x04\xfa\xe7\xa1\x30\xd8\x7a\x3b\xec\xc4\xfb\xc5\x59\x69\x09\xdf\xec\x06\x9a\xcf\xaa\xd8\x6e\xf6\x58\x58\x10\x55\x68\x4b\xcb\x1f\xc9\xf0\x54\x51\x81\x5f\x00\xc1\x4c\x23\x23\xc4\x96\xed\x7e\x8d\x45\xbe\xb5\x11\x87\x7c\x8b\x7e\x88\x65\x40\x67\xb5\x3e\x4d\x25\x17\x91\xe1\x2d\xa5\x60\x47\x83\xe7\x41\x9c\x1c\x83\x78\xdd\x40\x25\x64\xd7\x50\xa5\x7e\xf3\x28\xfc\xab\x9c\xa4\xf3\x8d\x42\x45\xe2\x92\x6c\x5f\x87\x02\x1c\x95\x6a\xd3\x0d\xd6\x13\xec\x5c\xba\xee\xcb\x66\x79\xb3\xf7\x98\xe8\x9f\x91\x29\x3e\xce\xc3\x7f\x58\x7e\x8b\x98\x9b\x2a\xac\x01\x0d\x24\x7d\x14\x99\xed\x42\x6b\x98\x21\x66\x9f\x1d\x63\xf1\x26\x5e\x45\x0b\x2c\x05\x76\x62\xbc\x09\xe2\x87\xde\xe7\x7c\x0f\x02\x3c\x9f\x95\x47\x49\xbd\xa2\x9a\xdc\x30\x48\xfb\x9f\xbd\x79\x59\xe9\x2b\x7b\x4c\x9e\x64\x91\x6a\xc6\xc6\x9e\xb4\x30\x6e\x67\x5c\x2f\xab\x55\xa2\xa2\x5e\xfb\x59\x2c\x08\xfe\xa4\xad\x66\xc6\xee\xe5\x1f\x3b\x52\x11\x42\xcb\x75\x06\x56\x24\xa3\x5a\x7d\xf6\x51\x7f\xc3\xbf\xde\x44\x76\xa0\xdf\xc6\xd5\x78\x5b\xae\x01\xf2\x7e\x3d\x22\x20\x4c\xcf\xd7\x53\xc8\x1c\xe5\x3a\x99\x21\x90\x19\xd4\xce\x75\xc3\x75\x6d\xdb\x67\x68\xd1\x0c\xdf\xf0\x29\x96\x6d\xf0\xb7\x4f\x69\x61\x98\x8b\xba\x95\xdb\xad\x5e\x84\xa4\xfd\x94\x5c\x26\x43\xbf\x3c\x3c\x83\x54\x70\xc8\x0c\xda\xd4\x92\xb8\x56\xf7\x0b\xcb\x8c\x38\xad\x6d\x3d\xb3\x24\xfe\x0c\x91\x9f\x16\x51\xb6\x48\xf6\x8b\xf5\xaa\xad\x53\x89\x8f\x73\xce\x71\x85\xba\x4b\xc3\x01\x8d\x55\xf8\x2a\x74\xa6\xdc\x20\x09\x4d\x38\xf7\x46\xa1\x61\xc7\x76\x29\xa1\x69\x2c\x4d\x90\xef\xaf\x26\xd4\xfe\x8c\x1f\x3d\x35\x17\xab\xb8\x50\x7f\xe6\xe9\xfb\x7e\x45\x08\x83\x80\x03\xda\xf9\xb5\xec\x0f\x7c\xb6\x8e\x0e\x95\x40\x92\xa9\x8b\x61\x7c\x3c\x79\xa5\xb8\x65\x19\xa7\x7b\x31\xa9\x15\xe9\x90\xd4\xfa\x44\x50\x98\x29\xda\xa8\xbe\x39\x12\x7e\xb0\x2c\xff\x22\x1b\x08\x2c\x42\xf3\xfe\x7e\x94\xbf\xb9\x00\xb3\x14\x47\x1e\x82\x09\xda\x1d\x50\x95\xf1\xb5\xf5\xc6\x27\xb6\x8a\xf6\x3e\xf8\x9e\xa1\xcd\xa2\x3b\x0d\x96\x00\x17\x1c\x64\x2b\x11\x32\x87\xf9\x45\x1d\x56\xb1\x3d\x06\xc5\x05\xbd\x49\x8c\xec\xb9\x35\x0f\x7f\x85\x88\xfa\xea\xd0\x31\x31\x59\xbd\xab\xdb\x24\xf4\x58\xd8\x6e\x6d\x64\xff\x88\x19\x9f\xd4\x97\x54\xdb\xe7\x3f\x9a\xcd\x43\x4e\x79\xca\xfa\x8a\xec\x73\x67\x14\x75\x8e\x8d\xf4\x02\x42\x09\xad\xb0\x2b\xd3\x72\x9b\x70\xcf\xe2\xc6\x31\x8a\x7b\x68\xc5\x88\x74\x8b\xb5\x06\x36\xef\x94\x7d\xda\x2f\x7d\x67\x5b\x39\xae\xc6\x91\xde\x89\xbe\x84\x79\xcb\x8a\xbd\xe0\xa1\x17\xe8\x0e\x18\x0b\x6c\x23\xee\x52\x5f\x0d\xff\x28\x5a\x8b\xc4\x20\x32\x17\x07\x1b\x52\xef\xdc\x3d\x50\x49\x05\x69\xf8\x4f\xce\xc4\xf5\xb8\x1d\xbd\xdc\x45\xc5\x60\x1b\xf0\x07\xfd\xd9\x2f\xc4\x50\x50\xcf\xca\x41\x63\x20\xa9\x61\x25\x6b\xe6\x7f\x34\xe3\x59\xa7\x9c\x3b\x45\x13\xd0\x00\x67\xf6\xe2\xaf\xc7\x9a\x73\x71\xfd\x3e\x09\x3b\xa2\xd1\x41\x47\xe3\x8c\x34\xab\xa4\x32\xf3\x0b\x30\x40\x8a\x41\x24\x3d\xa8\xc3\x2d\x0f\xd1\x33\xb1\xe2\x67\x1d\xa4\xb2\xed\x47\xca\x2b\x23\xc0\x28\x56\x5d\xfa\x71\x03\xd5\x3f\x66\xc1\x48\x15\x71\xde\x26\xd4\x72\x1b\xcb\xd2\x8c\x69\xcd\xf8\xb4\x6c\xed\x2d\x2f\xa4\x6e\xfd\x1c\xcc\x6c\x4e\x6d\x2a\x69\xba\xb0\xdf\x37\x65\x96\xef\x00\x53\x9e\x8e\x4f\xbe\xb6\x6c\x82\x8e\xa3\x56\x36\x68\x79\x73\xc8\x8b\x0f\xf3\x6e\xcd\x9d\xf2\x63\x7e\xa1\x96\x1b\x11\x98\xa4\x08\x44\x5e\x33\x0d\x0b\x15\xc3\x71\xc7\xa2\x32\x2e\x49\x38\x01\x2a\xbb\x34\xe5\x4a\x8b\xbf\xea\x29\x1c\x62\xb9\xdb\x70\x9e\xb3\xde\xa4\x65\x32\xf7\xd7\xb7\x0b\xb2\x5e\xef\xb1\x49\xdf\xfb\x06\x85\xcd\x31\x53\x04\xe5\x79\xc4\x94\xde\x27\xf6\x9b\xe3\x72\x05\x8c\x4e\xa8\x17\x7b\x8f\x45\x3e\xb4\x75\xa8\xde\x0b\x56\x22\xba\x0f\x12\xc5\x7b\xd7\xdc\x30\x4b\x00\x3b\x0d\xd7\xa0\xd8\x2d\x3f\x7e\x71\x4f\xcc\x7f\xc9\x00\x99\xcc\xe4\x99\x51\x82\xd1\x62\xd5\x77\x29\xab\x8d\xf5\x8a\x74\xb3\x74\xf8\x13\x33\x57\x7f\xae\x47\xe1\x43\xf7\x4c\x91\xc7\x2a\xaa\x84\x2e\xd1\x97\xb0\xbf\xf0\xc5\x06\xcd\x08\x58\x50\x82\x79\x33\x1b\xb8\x74\xa5\xd1\x82\xc9\xa0\x4c\x9f\xe6\x67\xf1\x4f\x1c\xd6\xf4\xd6\xb2\x16\x72\xe8\x36\x14\x35\x3d\x09\x85\x6c\xb9\x23\xe2\x0e\x90\xa3\xbe\x01\x31\xe4\x8b\xf3\x87\x7c\x97\xcb\x87\x8b\x86\x2c\x0c\x82\x91\xde\xbf\x6c\x43\x73\xc4\x21\xc7\x41\x28\xad\xec\x3f\x06\x81\x23\x4a\x08\x0a\x1f\xa4\xc3\x63\x36\x8a\x11\x18\xe3\x48\x41\xc9\x83\xaa\xf3\x76\x7c\xaa\xa4\x6e\x15\x26\x7e\x67\xb6\xd6\x91\xbd\xdf\xc8\x53\xcd\x3f\x7b\x1c\x62\xe8\xfe\xae\x0f\xcf\x11\xdd\x7f\x8c\x51\xe5\x13\xfb\xa3\xb3\xd4\x88\x6e\xd8\x91\xb8\x4b\x8e\x87\xcb\x77\x83\x7e\xc1\xc5\xcd\x65\x1b\x38\xb3\xae\x2f\xba\xf7\x30\x46\xfb\xf0\x84\xa7\x3c\xf9\x36\xd2\xc0\x67\x96\x15\x36\x2d\x3f\xf7\x65\x86\xa2\xee\x51\x7f\xa2\xec\x0c\x85\xc3\xe1\x23\x22\x7a\x5c\xa2\xfc\xe9\x25\x25\x5f\xfa\x79\x8c\x3f\xf2\x2a\x44\x5c\xb1\x96\xcf\x8e\xbe\x81\x64\x15\xbc\x4e\x62\x97\x29\x6c\x9d\x35\xdd\xad\xb4\xbc\x74\x81\x50\xa4\xc3\x47\x77\x38\xdb\xb5\x2c\x64\xb9\xc8\x11\x8e\x8e\xb7\x36\x0f\x4d\xed\x47\x22\x0e\xf9\x7a\xf3\x6d\x1a\x07\x58\xb4\x83\x52\x8f\xad\xda\xae\xa5\xad\x62\xfa\x0f\x47\x5a\xfc\xb2\x43\x67\x21\xde\xb4\x3c\x1a\xa0\x13\xb9\xaf\x51\x89\xa6\xe7\x82\x31\xb5\x31\xe3\x65\xe7\x4f\x0a\xe4\xd8\xf7\xe5\xd7\xc2\xe1\x1a\xb5\x41\x31\x21\x3d\x5c\x92\x61\xe7\x9c\xea\x41\x93\x3f\x74\x2b\xd3\x7c\x3d\x4f\x9b\x0a\xf7\x78\x4a\x31\x64\x46\xc4\x88\x46\xe7\x1f\x52\xf8\xd9\x96\x29\x80\x55\xf4\x29\x52\xc6\x49\x2b\xac\xb1\x1f\xb1\x6a\x42\x8e\x3b\xa0\x90\x6d\xa8\x1c\x05\xb5\x1f\xbc\x73\x36\xd3\x3c\x45\x7b\xd4\x90\x2f\xeb\x87\xc4\x74\xcd\x54\x65\x1b\x84\xbe\x8e\xbc\x69\xdf\xa1\x26\x98\x9f\xe6\x23\x16\x68\xec\xf1\xf8\xee\xe3\x34\xec\xa8\xe8\x6d\x42\xfe\x57\x85\x6f\xce\x9b\x94\xab\x29\x93\x35\xef\x1a\x20\xa6\x5a\x19\xf9\x16\xca\x21\x23\x89\x50\x68\x2a\xb8\x56\x92\xc9\x34\xf7\xc2\x96\xcd\xd8\x5d\x54\x0d\x37\xee\xa3\x5d\x46\xaf\x40\xfe\xdd\x8e\x06\xfb\x82\x95\x99\xf5\x6a\x53\x6f\x19\xdd\xcb\xa4\x39\xbe\x56\x4a\xbe\x5b\x8b\x59\x95\xef\xcf\x07\xde\xf2\x6e\x5f\x8c\x1d\x4a\xf3\x8d\xac\xed\x11\xd2\x74\xa5\xc7\xa1\x18\x36\x0b\x8a\x33\xb6\xd9\x31\x05\xf8\x46\xed\xf1\xaa\xf8\x2c\x9d\xb3\x50\xa0\x8c\xdf\xda\x25\x20\xc2\xd8\xc0\x9c\xb2\xec\x7a\x3f\x32\xe4\x90\x0f\x5c\xa1\x9c\x5d\xe9\xef\xfa\xd1\xff\xe4\x48\x0b\x77\xfe\xae\xeb\x80\x97\x3d\x7c\x34\xe7\x32\xb1\xb8\x46\xba\xaa\x8a\x9e\x49\x5f\x6a\x0b\xf7\x2b\xef\xd5\xd1\x61\xe9\x70\x68\xfc\x9d\x90\xfb\xae\x78\xb9\xc4\x9d\x8a\xa5\x2d\xe5\x2c\xd8\xed\x15\x8d\xf1\xb9\x3a\x57\x57\x3f\xb9\x74\x3f\xda\x0d\x1b\xd6\x54\x55\xf5\x76\xa7\x06\x79\xa1\x4b\x11\xf6\xeb\x4e\x33\x55\xc4\xd5\x55\x25\x73\x2a\x7c\xa9\x08\x26\x14\x52\x0a\xb5\x72\xd0\x31\x1b\xad\x67\x4f\x1a\xdc\x36\x4b\x57\x4c\x7a\x7a\xae\x03\xd0\x3a\xc8\xa5\xba\xa9\x7f\xe2\x72\x19\xbf\x80\x52\xf4\x5d\x12\x71\xb1\xd7\xd6\x20\x92\xb0\x82\xf3\x22\x3b\xaf\x8f\x8e\xa9\x69\x2a\xf5\x60\xd3\x7d\x64\x19\x0a\x6e\x64\x15\x36\x7b\xcf\x4a\x4e\x82\xfc\x5d\xfb\xfc\xd7\xe8\xf8\x83\xa2\x1a\x66\xc9\x7e\xeb\xa8\x4e\xd2\x5b\xad\x37\x4b\x90\x37\x14\xf0\xd6\x96\x0b\xfa\xf2\xd5\xa4\x92\x52\x16\xca\xa5\xb6\x4f\x5c\x2d\x76\x21\xca\xae\x41\x8f\x59\x26\xc0\x57\x42\xaa\x86\x7b\x59\xbb\xcd\xa6\x9b\x22\xc9\x2a\x14\x73\xf8\x06\x08\x9b\x2e\x73\xb8\x7a\xb4\x0f\xe5\xf2\xa2\xdc\xb9\x80\xed\xb5\x1c\xbb\x4b\xc9\x8b\xae\x1c\xbe\x48\x33\x9b\x10\x02\x6a\x65\xd8\x46\x4b\x14\xeb\xb9\x96\x80\x0b\x09\xc3\xa1\xec\x3d\x97\xc1\xc7\x94\x1d\x1f\xa1\xf7\x61\x68\x92\x74\x48\x85\xa3\xb5\x5e\xc5\x47\x96\xe0\x25\x94\xd8\x63\x6f\x6b\xe3\x74\x2a\x87\x2c\x39\xfc\xb5\xbc\x3d\xc4\x14\xcf\xea\xa1\xe4\xce\x7d\xbc\xd0\x47\x64\xad\xf9\x00\x36\xca\x41\x1e\xaa\x96\x90\x2b\x75\x1a\x94\x25\x43\xb7\x7a\x61\x11\x21\xeb\xe0\xe8\xbf\x04\x13\xc4\x5b\x1f\x60\xb7\xb4\xa9\x75\x63\x76\xb7\xc3\xe1\x66\x5f\xf3\xbc\x62\x56\xec\xb3\xcd\x21\x64\xd3\xbd\x4c\x84\x82\x56\xf9\x5f\x2d\xf2\x36\xe3\x83\xe1\x9d\x35\x33\x3c\xe9\x92\x38\xe4\x13\x91\x2f\x41\x98\x8f\xba\xde\x66\xda\xbb\x38\xb5\x75\x75\x83\xb2\x53\xbb\x88\x64\x78\x50\x4b\x22\x0f\x7f\x1d\xe7\xbc\x6d\x35\x64\x51\x84\x14\xfd\x30\xcc\x57\x69\xa3\x0b\xf4\x8b\xa9\xd5\x1b\x8f\x99\x1e\x19\xc8\x6c\x69\xfc\xb2\xa9\x97\x82\x8a\xed\xf0\xfd\x0e\x84\xa9\xed\xda\x7a\x59\x64\x6a\xb5\xcb\xab\xe3\xdf\x0c\xd5\x9c\xb1\x86\xa6\x7e\x8f\x8b\x32\x62\xc0\x21\xf9\xe6\x63\xdf\x2b\x72\x5c\xbf\x5b\x38\xd2\x2d\x0e\x5c\x90\xeb\x4f\x4a\xff\xd2\x6d\x30\x13\x77\x3e\x2a\xdc\x42\x3e\xd6\xe8\x34\xc4\x24\x04\xbe\x04\xeb\xaf\x2e\x33\xca\xc2\x1f\x7e\x7b\x88\x60\xb5\x9d\x9c\x80\x65\x55\xbc\x54\xea\x90\xc4\xf9\xb6\x7e\x90\x86\x94\x0b\x75\x8c\xa9\x1b\xf5\xd2\x8d\x9c\x58\x54\x6e\x17\x10\xb1\x73\x7b\xc7\xf8\x95\xe9\x36\xd8\x39\xdc\x53\x5c\xc9\xd2\xfd\x84\x2a\x42\x65\x11\xcd\x3e\x43\x12\xce\x72\x31\x72\xad\xb6\x37\x5a\xcd\x87\x2e\x22\xfa\xcd\x31\x10\x66\xf8\xf7\x76\x5b\x26\x2e\x52\xc2\xcc\xb5\x32\x30\xb9\x94\x7b\xb7\xb6\x0d\xc4\x5d\x21\xf0\xf0\x51\x1a\xc1\xcf\x1a\x10\x5c\xe9\x8c\x0e\xb1\x25\xe6\xa2\x9a\x20\x8d\x74\xff\x37\x2d\xd8\x9f\x6a\xfc\x8a\x61\xb4\xa2\x86\x52\xee\x31\x86\xac\x30\x92\xe4\xb6\x00\x69\xc4\x56\xc2\x42\x88\x58\xfa\xa1\x95\x75\x56\xaf\x80\xa9\xc9\x94\xd2\x62\xe4\x92\x8b\x49\x4e\xbf\x7d\x99\x0c\xb3\x35\xce\x34\xc9\x46\xf0\x56\x80\xac\x43\x71\x47\xd3\x95\xe8\x66\xe6\x07\xc5\xa6\x38\xf3\xb8\x08\x5b\x26\xd3\x60\x21\x44\x1f\xbc\xd5\xf6\x60\xe7\x66\x6e\x50\x1f\x37\x32\x1b\x54\xed\x3b\x84\xe6\x36\xb1\x2e\x9b\xff\x0d\x2b\xe0\x47\x75\xc6\x81\x92\x17\xea\x2b\xf7\xb7\x3b\x1e\xab\x04\xc1\x84\x21\xf4\x7f\xb8\xa7\x8e\x0d\x2d\x2a\xd6\x2b\x6c\x31\x0b\xf2\xae\xfc\x72\xe7\xf6\x4f\x53\xcc\xfa\x25\xbf\xda\xf8\x52\x2d\x8d\x08\xfb\xc8\x2d\x58\x22\x5c\xf4\x37\x29\x15\x02\xf6\xbc\x1a\x7f\x51\x55\x1a\x21\x56\xc1\x11\x38\x31\x80\x87\x69\xa5\x96\xb7\xde\xf4\xc8\x57\x91\x33\x57\xb1\x52\x75\xdd\x38\xb1\x1b\xad\xd5\x3b\x4d\xdb\xc9\x47\x07\xb5\xf1\xf6\x9b\x5f\x38\x24\x9d\x96\x46\xea\x36\x4d\xec\xef\xe9\x98\x66\x98\x6e\x02\x26\xb0\x12\xbe\x74\x08\x07\x8a\x60\xdb\x8b\x5c\x1a\xbf\x22\x17\xc6\xbb\xa9\xa1\xe3\xca\x9a\x3f\x8e\xdf\x23\xf3\x3c\x56\xc0\x48\x0c\x5d\x98\x97\x27\x65\x6f\xd4\x6f\xa7\xa6\x78\xcb\x77\x20\xe0\x87\xca\xc7\x58\x67\xcc\xe7\x8d\x8a\xab\x1f\xa7\x08\x2a\xa4\x1a\x3d\x4c\xea\xe6\xa6\x78\xe4\x6a\x36\x5d\x07\x1f\x24\xf9\x2c\x9e\x7e\x2d\x51\xb8\x15\xc1\x1d\xa7\xfc\x4d\x99\xd1\x3f\x9f\x79\xad\x38\xed\x2d\xf0\x40\xcb\xd6\x0b\xc6\xad\x84\xa8\x5d\x7f\xc4\x1f\xac\xfd\xbb\xab\x2a\xda\x96\x18\xac\xb5\x4b\x87\x73\x7f\xe2\x4f\x5d\x31\x49\xf9\x12\xf4\x74\xba\x58\x2a\xd5\x88\xed\x05\x2d\xd5\x51\x7c\x1f\xef\x75\x3a\x84\x5d\x70\xe4\x9a\xab\x4f\xfa\x8e\x0f\x45\xeb\x65\x05\x85\x43\xde\x96\x2a\x9e\x87\x5f\x51\x8c\x4e\xae\x4b\xa5\x8e\x58\xd4\x9f\x74\xad\xa9\x67\x4d\xee\xfa\xb5\x8e\xc6\x03\x63\x78\xc1\x49\x73\x71\xc9\x09\x6b\x67\x10\x2f\xfe\x25\x71\x2c\x3b\x42\xaa\x81\x3d\x0a\x32\x4b\xe6\xcc\xdc\xd3\xcf\x91\x8b\xbe\xfb\x9c\x4d\x38\x58\xb9\xbf\xc9\x87\x92\x6f\xf5\x97\xc8\x9a\x05\x04\x05\x5b\x8b\xa1\x12\x7f\x6b\xa4\xee\xaf\x17\xf0\xe9\x48\xd4\x49\x54\x94\x4c\x18\x37\x89\x70\xf6\xef\x6c\x91\x46\x3e\xde\x71\x6e\xa8\x67\x46\x6c\x3d\x36\x7c\xf3\x04\x59\xb2\x92\x41\x5b\xe7\x41\x17\x56\xe6\x4b\x7d\x1b\x6a\x62\xfe\xa7\xe3\xe0\x85\xab\x75\x8e\x5a\x66\x3b\x0b\x74\xd7\x22\xe1\x70\xe4\xe4\xb4\x16\x47\xe7\x2d\xdb\x8b\x1d\x97\x3d\xac\x59\xb2\xc7\xe8\xc2\xc9\xac\x18\x9b\xac\x2a\x93\x0a\x26\xe3\xa3\x9a\xb9\xeb\xab\x37\x7d\xf7\x91\x01\xe9\xb6\x27\xb7\xf8\x7e\x97\x2f\xc5\x88\xad\xd5\xe5\x84\x04\x45\xb9\x0b\xf6\xbf\x13\x52\xf9\x3a\xa6\x29\x4c\x95\x1e\xb4\x27\xea\x13\x8c\x47\x85\x0a\x64\x25\xb9\xdd\x1f\xa4\x3a\x8a\x8f\x76\x1c\x48\x3b\x2e\xf4\x8b\x6d\x26\x8d\xa1\x47\xec\x0c\xc5\xd8\x68\x38\x63\x0f\xba\x26\xe9\x32\x5c\xb5\x9c\x17\x81\x5a\xf5\x31\xa0\x7f\x20\x6f\xbf\xb3\xf4\xf8\xc4\xc6\xc5\xd6\xa9\x43\xcb\x14\xa5\x2c\x7d\x85\xd1\x81\x4d\x01\x2d\xdc\x93\x9f\xae\x86\x1f\x3c\x18\x32\x0e\xb4\xc1\xdf\x59\x91\xb7\x58\x55\x81\xa2\xc7\x63\xbc\x93\xb6\xdb\x71\xc4\x9e\x9f\x1f\xef\x7d\x75\xb9\x3f\x31\x47\x2a\x1f\x22\xea\x54\xaa\x61\x5e\xb7\x71\x5b\xcc\x4c\x42\x0c\x44\xcb\x39\x94\x59\x7a\x75\x17\x4b\x2d\x25\xe3\x98\xc4\x4f\xea\x17\xf1\xbf\x2a\x6a\x24\x4f\x0e\x6b\x83\x75\xd4\x2c\x8c\x7c\xbb\x8d\x69\x02\x08\x4b\x68\xd5\x98\x30\xc8\x62\xe6\x09\xbe\xf8\x28\xc1\x28\xfa\xa4\x8e\x9d\xfb\x5c\x55\x15\xd6\x5f\x77\x3d\x2a\xfc\x28\x59\x91\xdc\x20\x61\x6b\x51\xb8\x27\xb3\xc5\xe4\xa1\x8a\x62\xed\xf1\x3c\x4c\x1a\x50\x56\x5a\x6f\xd8\xa4\x59\x1b\xd2\x3a\x7d\xed\x3d\x8d\x38\x41\xb0\xd4\x95\x65\xaa\xc1\x86\x9e\xce\x34\x0f\x4e\x64\xde\x9e\x68\xa6\xb7\xdb\xe4\xed\x88\x38\x32\xcf\xab\x54\x8d\xbf\x6f\x27\xdf\x3e\x01\xee\x7f\xae\x7d\x62\x9c\x7f\x02\x9c\xd2\x06\x12\xb9\x15\x6f\x4a\x00\x00\x00\x8d\xbb\xb4\x8e\xbb\x85\xa9\x3b\x48\xc0\xdc\x15\x64\xea\x0e\x02\x70\xb0\xb1\xf3\x30\xb3\x71\x32\xb3\xf3\x6b\xb2\x73\x09\x70\x70\x08\x70\x70\x33\xb1\xb1\x09\xb0\xb1\xed\xb0\x47\xf7\xfc\x7f\x0c\x0e\x4e\x16\x36\x96\xde\xff\x77\x43\x82\x3d\x17\x14\x00\x00\x90\xf9\xcf\xe0\xe6\x64\xe9\xee\x65\xea\x0a\x02\xc8\x3b\x98\x5a\x81\x94\x4d\xad\x6c\xcc\xed\x28\x78\x58\x78\x59\xf8\x98\xf9\x29\x38\xd8\xd8\xb9\x98\xd9\xb8\x99\xd9\x39\x28\xd4\xd8\x79\x28\xac\xdd\xdd\x9d\x05\x58\x59\xbd\xbc\xbc\x58\x6c\xfe\xa3\x1d\xfe\x87\x66\x71\x72\xb5\xda\x08\x3b\x07\x00\x00\x00\xc2\xff\x12\x35\xad\x3d\x1c\xcc\x04\x04\xa4\x9c\xcc\x3d\x1c\x40\x8e\xee\x02\x02\xdf\x4c\xad\x40\x6e\x00\xf6\xb2\xcf\x2e\xd6\xff\x83\xf9\x9f\x3f\x05\x04\xac\x41\x36\x56\xd6\xee\x00\x76\x7e\x0e\x0c\x80\x6b\x28\x00\x00\x20\xf8\xff\x33\xda\x36\x16\xee\xd6\xff\x21\x0b\xd5\x94\x88\x00\x00\x80\xe8\x7f\x21\xca\x36\x0e\x20\x77\x6f\x67\x10\xe0\x7f\x5a\xb1\x3a\x3b\x5a\x89\x36\x6a\xa9\xfc\x1f\x39\xca\x9a\x36\x0e\x20\x00\x3b\x17\x37\x1f\x27\x3f\x2f\x27\x17\xb7\xf6\x41\xbd\x3a\x00\x00\xc0\xf8\x5f\x88\x86\x8d\x0f\x08\xc0\x26\x21\x91\x5c\x28\x72\x06\x00\x00\xb4\xfe\xd7\xd3\x77\x75\x79\x80\xa5\x8d\x3d\x48\x80\x95\x95\xd5\xc1\xd1\xdd\xde\xc9\x8a\xd5\xd2\xd4\xd3\xc6\xdc\xc9\xd1\x8d\xf5\xff\xdd\x99\xd5\x12\xc4\x0f\xe2\xe7\xe2\x35\x65\xe7\xe0\xe0\xe4\xb4\xb0\xb0\x04\x59\x72\x9a\x9a\x59\xf0\xb2\x9b\x72\xb3\xb3\x83\x38\x2d\xb8\x59\x6c\xcc\x9d\x58\x9c\x1d\xad\xba\x2d\x22\xff\xfc\x37\x98\xbc\xb4\x8a\x54\xad\x84\x49\xd0\xff\x13\x00\x00\xff\xff\x42\xfa\x22\x36\xae\x24\x00\x00") + +func staticImgCowyoAppleIcon180x180PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAppleIcon180x180Png, + "static/img/cowyo/apple-icon-180x180.png", + ) +} + +func staticImgCowyoAppleIcon180x180Png() (*asset, error) { + bytes, err := staticImgCowyoAppleIcon180x180PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/apple-icon-180x180.png", size: 9390, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAppleIcon57x57Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x96\x69\x34\x14\x6c\xe3\xc6\xef\x2c\xd9\xb3\x2f\x23\x69\x52\x92\x75\x36\xeb\x88\x1a\x86\xc8\x18\x62\x08\x63\x99\x31\x9b\xc1\x18\xcb\x48\x94\x42\xc8\x96\x84\x64\x4f\x2a\x24\x0f\xb2\x66\xa9\xec\xd4\x44\x28\x1e\x42\x49\xd9\x97\x4a\xa4\xbd\xff\xd1\x97\xff\xf3\x3e\xef\x79\x3f\x5c\x9f\xee\xdf\x75\x5d\xf7\xb9\xce\xb9\xcf\xb9\x13\xed\xf1\xc7\xc4\x84\x15\x85\x01\x00\x62\xd6\x56\x58\x07\x00\x80\xd1\xb6\x04\x79\x01\x00\x2d\x3d\x21\x8d\x00\x00\x3e\x06\xc6\x16\x03\xc0\xbd\xcb\x22\x3f\xc8\xfc\x00\x80\x1d\x21\x0e\xc7\xcc\x40\xe5\x80\xd2\x22\x00\x00\x4a\xb1\x72\xb0\x05\x20\xe2\x20\x00\x51\xb1\x00\x7c\x03\x00\x44\x2d\x00\x10\x0a\x07\x60\x89\x04\x00\x3a\x1b\x00\xf9\xc0\xfc\xe6\x13\x87\x01\xe0\x99\xb4\xc7\x11\x2c\x7e\xff\xfe\xfd\xe3\xc7\x8f\x4f\x9f\x3e\xfd\xfa\xf5\xeb\xcb\x97\x2f\x5b\x5b\x5b\xb5\xb5\xb5\x2e\x2e\x2e\xe3\xe3\xe3\x67\xce\x9c\x39\x75\xea\xd4\xe7\xcf\x9f\x37\x36\x36\x70\x38\xdc\x8e\x1d\x3b\x8a\x8a\x8a\x16\x17\x17\x35\x34\x34\x64\x64\x64\x1e\x3f\x7e\x3c\x30\x30\xa0\xa8\xa8\xb8\x5d\x11\x15\xa5\xa0\xa0\x70\xe1\xc2\x85\x2b\x57\xae\x10\x89\xc4\xaf\x5f\xbf\xde\xb8\x71\x83\x9f\x9f\xdf\xd2\xd2\xf2\xe3\xc7\x8f\xdf\xbf\x7f\xf7\xf6\xf6\xde\xb5\x6b\x97\x9c\x9c\xdc\xdb\xb7\x6f\xc3\xc2\xc2\x04\x04\x04\x20\x10\xc8\xe8\xe8\xe8\xd2\xd2\x92\xae\xae\x2e\x1a\x8d\xf6\xf0\xf0\x10\x15\x15\x6d\x6b\x6b\x7b\xff\xfe\xfd\xd1\xa3\x47\xb5\xb4\xb4\xc8\x64\x72\x6b\x6b\xeb\xc4\xc4\x04\x81\x40\xa8\xa8\xa8\x10\x12\x12\xfa\xf9\xf3\x67\x47\x47\xc7\xc5\x8b\x17\xc3\xc3\xc3\x83\x83\x83\x7d\x7c\x7c\x68\x34\x5a\x40\x40\x40\x56\x56\x56\x5d\x5d\x5d\x77\x77\xb7\xb8\xb8\xb8\xa7\xa7\xa7\xb0\xb0\x70\x5e\x5e\xde\xbb\x77\xef\x0c\x0d\x0d\xe5\xe5\xe5\xe3\xe3\xe3\x07\x07\x07\x7b\x7a\x7a\x82\x82\x82\x4c\x4d\x4d\xf7\xef\xdf\x2f\x21\x21\xb1\x77\xef\xde\x03\x07\x0e\x1c\x3c\x78\x50\x55\x55\x75\xdf\xbe\x7d\x4a\x4a\x4a\x22\x22\x22\xbb\x77\xef\x46\xa1\x50\xae\xae\xae\x65\x65\x65\xcb\xcb\xcb\x9b\x9b\x9b\x53\x53\x53\x77\xef\xde\x35\x31\x31\x11\x13\x13\xab\xaf\xaf\x6f\x68\x68\xb8\x74\xe9\xd2\xf4\xf4\x34\x16\x8b\xdd\xb9\x73\xa7\x94\x94\xd4\x91\x23\x47\x52\x52\x52\xb8\x5c\xee\xca\xca\xca\xcb\x97\x2f\xfd\xfd\xfd\x49\x24\x52\x5c\x5c\xdc\xcd\x9b\x37\xdb\xdb\xdb\xdf\xbc\x79\x33\x37\x37\xb7\xb0\xb0\x30\x3f\x3f\xff\xf4\xe9\xd3\xca\xca\xca\xc0\xc0\x40\x49\x49\x49\x41\x41\x41\x0c\x06\xd3\xd4\xd4\xb4\xb6\xb6\xf6\xf7\xdf\x7f\x37\x36\x36\x66\x67\x67\xdb\xdb\xdb\xef\xd9\xb3\x47\x5a\x5a\x3a\x3d\x3d\xbd\xb4\xb4\xd4\xcd\xcd\x2d\x37\x37\x57\x47\x47\x87\x97\x97\x57\x56\x56\x16\x0e\x87\x5b\x5b\x5b\xcf\xce\xce\x7e\xfb\xf6\xed\xc3\x87\x0f\x48\x24\x52\x4d\x4d\x8d\x8f\x8f\x4f\x45\x45\xc5\xca\xca\x2a\x32\x32\xf2\xf5\xeb\xd7\xc6\xc6\xc6\xcf\x9f\x3f\x7f\xf4\xe8\x51\x42\x42\x42\x57\x57\x57\x79\x79\x39\x8b\xc5\x5a\x5d\x5d\xed\xed\xed\x1d\x1e\x1e\xae\xa9\xa9\x89\x8d\x8d\x3d\x7b\xf6\xac\xb2\xb2\xf2\xe1\xc3\x87\xab\xab\xab\x9d\x9c\x9c\xa2\xa3\xa3\xcf\x9f\x3f\x9f\x99\x99\x09\x85\x42\xaf\x5d\xbb\xa6\xaf\xaf\x3f\x33\x33\x33\x36\x36\x96\x96\x96\x36\x39\x39\x99\x9a\x9a\xea\xe0\xe0\xe0\xee\xee\x7e\xee\xdc\xb9\x67\xcf\x9e\xf9\xf9\xf9\xdd\xb9\x73\xe7\xd6\xad\x5b\x30\x18\x8c\x87\x87\x27\x3f\x3f\x1f\x8f\xc7\x5b\x58\x58\xdc\xbe\x7d\xdb\xce\xce\x8e\xcd\x66\x97\x94\x94\x8c\x8c\x8c\xac\xaf\xaf\xe7\xe4\xe4\x5c\xbd\x7a\xd5\xd7\xd7\xb7\xa0\xa0\x20\x34\x34\xd4\xcc\xcc\x2c\x26\x26\xe6\xe1\xc3\x87\x74\x3a\xfd\xc1\x83\x07\x27\x4e\x9c\x70\x76\x76\x1e\x1a\x1a\x32\x32\x32\xba\x7e\xfd\xfa\xfd\xfb\xf7\x1d\x1d\x1d\x9b\x9b\x9b\xfb\xfa\xfa\x5e\xbc\x78\x61\x6e\x6e\x5e\x55\x55\x75\xe8\xd0\x21\x75\x75\x75\x6d\x6d\x6d\x0e\x87\x83\x40\x20\x5a\x5a\x5a\x98\x4c\xa6\xa6\xa6\x66\x44\x44\x84\x9e\x9e\x1e\x83\xc1\x48\x4a\x4a\xea\xec\xec\x2c\x2e\x2e\xce\xc8\xc8\xb0\xb1\xb1\xf1\xf2\xf2\xa2\x50\x28\xc7\x8f\x1f\xa7\x52\xa9\xaf\x5e\xbd\xea\xef\xef\x2f\x2c\x2c\xa4\xd7\x06\xa1\xb7\x1f\x88\xb7\xcd\x31\x2c\x48\xe0\xdf\x63\x05\x00\x10\x0a\xb4\x72\x0d\x01\x00\x58\xfd\x91\xe5\x63\x3f\x53\x00\xf8\x4f\x5b\x63\x31\x04\xab\x5e\x0a\xa9\x88\x0f\x8e\x44\x64\x94\x44\xc7\xc9\x3e\x21\x51\xe6\xa1\xb6\xfb\xd5\xe4\x0d\xb2\xdb\x3b\xb9\xbd\x76\xe9\xf8\x1d\x98\x7d\x64\xb8\x39\x96\x80\xcb\x3f\x50\xa0\x22\xe5\x9d\x4e\x8a\x97\xb9\x9e\x5d\x27\xaa\x8e\xa6\xcd\x76\xbd\x93\x8d\xaa\x2b\x4e\xaf\x49\x2a\xd2\x50\x47\x8f\xbc\x88\xd3\xd5\x8d\xae\xcb\x6a\x48\xad\x2c\x34\x75\x56\x7d\xea\xd2\x39\xd9\x36\xd8\xe7\xf2\x8c\xaf\x0f\x7e\x15\x8e\x6a\xb4\x37\x77\xa6\x3c\xbe\xe9\xdb\xcd\x66\x51\xfc\x4a\xa9\xef\x8b\x0e\xae\x2d\x74\x91\x8b\x12\x2a\x9e\x8f\x77\x3b\x8d\xf6\xef\xe9\x9b\xb6\x27\x6f\x7d\xd8\x58\xff\x8c\x88\xf2\xa5\x6f\x6e\x7e\x12\x17\xac\x13\x94\x11\x13\xde\x25\x24\x26\x22\x9f\x34\x98\x9c\x92\x94\x9a\x18\xe7\x9b\x9c\x6c\x67\x85\x3b\x8e\x0f\xb2\xe1\xaf\x79\xde\x31\xfc\xd6\x21\x05\x89\xac\x55\xaa\xe9\x0f\x21\x84\x7c\x5a\x47\x69\xf3\x89\x08\x27\x27\x19\x1d\x3f\xce\x7d\x62\x32\xa3\xa9\x71\xbb\xbc\xa6\xdc\xcf\x77\x79\x89\xbb\x5b\x31\xcf\x30\x8f\xe8\xeb\x66\xd4\x34\xe1\xfb\x12\x73\x8a\x73\xa0\x9e\x98\xc5\xa9\x09\x53\x0d\x25\x6e\xf0\x6d\xc4\x97\x6f\x19\x6d\xda\x1d\xdd\x1c\xef\xca\xd7\xb8\x51\x68\x9d\x61\xb1\x59\x42\xc5\x15\xe8\x7b\xb8\xd0\x7b\x70\x97\x5c\xa1\x1f\xc7\x31\x9e\x21\x4f\x20\x0a\xdf\xe7\x07\x32\x72\xdf\xbf\x5e\xed\x69\x02\x25\x18\x3f\xb2\x52\x42\xee\x74\x4b\x42\x74\x50\x50\x99\x4b\xd9\xb2\xd4\x38\xda\xd1\x39\xde\xb0\x34\x07\x62\xd3\x4e\x47\x19\x58\xda\x0e\x05\xd8\x50\xf8\xba\xd3\xa8\x61\x4e\x4a\x5a\x82\xd2\xc3\xd7\x8c\x78\x17\x87\x55\xcd\x2a\x93\x52\x44\xfd\xff\xe2\x72\x31\x49\xcb\x27\x2b\x5e\x2c\xbb\xea\x49\x96\x1f\x62\x85\xb6\x65\x4a\xe4\x79\xf3\xc7\xd7\xe8\xb4\x43\x48\x92\x39\xae\x7e\x52\x53\x5d\xa3\xb9\xc8\xcc\x8a\xe7\x59\x44\x76\x7d\x9a\xdf\x85\xdb\x5e\xb6\xa2\xbc\xdc\x62\x42\x41\xc2\xd1\xcf\xde\xb1\x6c\x2d\x83\x81\xc4\xf2\x13\x95\xda\x93\xb7\x7a\xbb\x95\xd4\xaa\xc3\xd7\xb2\xfe\x7a\xe3\xd8\xd1\x60\xa1\xa8\x4a\x80\x84\x56\x4d\x79\xaa\x48\xc9\x3e\xbc\x40\x6e\x78\xd5\x10\x4a\xdc\x3f\x5b\xb2\xa6\x45\xb7\x10\xe2\x9b\x1b\xf3\xe8\xe1\xfa\x22\x9b\xc3\x7a\x9b\xd7\x24\x47\x6a\xed\xdf\xb0\x26\x5a\xcd\x69\x55\x71\x13\x07\xac\x6d\xb9\xfc\x89\xd6\xdf\xb5\x20\x86\x31\x5b\xe5\x5b\x2b\xec\xa4\x63\x22\x26\xd5\x22\x06\xef\xd1\x83\x91\xf6\xa4\xd9\x75\xf3\x8b\x97\x95\x68\xde\x24\x7b\xed\xb1\x72\xe7\x93\xbb\x52\x66\x29\xee\xbd\xd1\x8b\xb9\x14\xdf\xbe\x44\x0b\xdc\x7d\x87\x77\x3a\x9b\xa1\xa2\x41\x38\xe9\x22\xa6\x99\x64\x16\x47\x0b\xc3\xa3\x62\xa2\x16\x8d\xa7\xcc\x60\x6c\xae\x20\x8d\xf1\xae\x6a\xbd\x08\x19\x81\xca\x9e\x9c\x81\x82\x0c\x3c\x4a\x69\x82\x71\x7a\x6e\xc5\x3d\x20\x16\xca\x35\xf2\x48\x54\x97\x8b\x98\xb7\xd5\x24\xac\x43\x82\x16\x71\x59\xc6\xab\x6f\xdd\x6a\xb5\x8a\x4a\x22\x66\xf9\xe5\xca\x5c\x7e\x0c\xb4\x09\x7a\xf6\x3e\x49\x86\xec\x8b\x84\x10\x5d\x03\x17\x53\x16\xd7\x24\x1d\xde\x1b\x96\x2b\x86\xa8\xdf\xc9\x15\x49\x4f\x81\x2d\x53\x37\xf4\x94\x29\xa4\x32\x76\x8b\x94\x29\x6d\x0e\xe1\x8e\x9e\x2a\x5d\x19\x8f\x90\xcd\xe4\x99\xa9\x2c\xb8\xe2\xe8\x00\x90\xa9\x1e\x97\x0d\x89\xe2\x89\x39\x93\xf9\x95\x95\xee\xfe\xcd\x47\x31\x75\xe8\x0f\xf1\xaa\x99\xc4\xe6\x61\x6f\xfe\xb4\x97\x5a\xe5\xbc\x5c\x33\x51\xad\x8b\x1d\xfa\x70\x77\xe9\x47\x89\x25\x43\x5d\xe7\x6c\x95\x6e\x9a\xdc\x57\x02\xbc\x01\x17\x53\x2e\x40\x8d\x61\xae\x63\x3e\x98\x38\x99\xab\x04\xfa\x94\xb0\x44\x1e\x24\xb9\xf8\x9e\xe7\x31\xdc\x38\x76\xee\x94\x61\x85\xff\xa5\x23\xae\x21\x20\x33\x1e\xa2\xcb\xe6\x16\x34\xd5\x82\x95\xc9\xa6\xb0\xa9\x74\x36\x3d\x69\x4a\xd3\x62\x88\x39\x0d\x73\x36\x21\x62\x88\x38\xe6\xce\xc1\x21\xad\xf0\xbc\x35\xee\x2a\x3b\xaa\xaf\xcc\x54\x22\xf8\x93\x17\x6b\x2d\xbf\x35\x72\xe9\xd5\x83\x02\x69\x87\xef\x5f\x86\x8a\xe9\x6b\x3f\x1c\x91\xca\xfb\x82\x21\x5b\xac\xbf\x1a\xc3\xb4\x1c\xc5\xfb\xe3\x5b\xac\x4b\xbc\x37\x3b\x7d\x1b\x7d\x4d\x66\x51\x0d\xc1\x77\xa3\xaf\xc6\xa9\xf2\x2a\x82\x97\xaa\x33\x23\xf7\x02\x9a\x7c\x4a\x8e\x2f\x84\x8e\xf7\xf7\xad\x67\x35\x39\xa7\xbe\x72\xb8\x2c\x13\x8c\xdc\xfb\xb6\x8c\xa2\xa1\xad\x8f\xc0\xbd\x0b\xfc\xac\x4e\xeb\xd6\xa9\xfa\x76\x4b\xfc\x58\x71\xd6\x52\x00\xa3\x4d\x60\x66\x60\x72\xb3\x4d\xe7\x13\x61\x8a\xaf\x0a\x6f\xf9\x79\x94\xe8\xa2\x7a\x70\xc1\xf2\x55\xc7\xdd\x0c\x8c\x76\xb1\xc2\xdd\xd3\x6b\x57\x19\x4d\x5f\x42\x9f\xb8\xdd\xa7\xc8\x1a\x8c\xf8\x14\x46\x79\x95\xd6\x7a\xca\x3a\x7f\xcc\xb3\x36\xfe\xe8\x47\x9d\x4e\xbb\x9f\x30\xb2\x32\x25\x97\xca\xc7\x99\x5b\xc2\x32\xc9\xd2\xe7\xa3\x3a\x7f\x0b\x92\xbe\xb6\xba\x29\x24\x7f\x88\x35\x57\x0c\xe7\xe3\x20\x5b\x17\x0a\x2f\x5a\xd4\x3d\xd2\xe4\x46\xa5\xe1\x4b\x13\x9c\x5c\xb0\x5e\x07\xfb\xd5\xc6\xd6\x73\xee\x35\x5c\xde\xed\xb8\xe1\xb4\xe5\x67\xa6\x08\xc9\xfe\x61\x0e\x6d\xca\x80\xf0\x40\x1f\x5e\xf7\xfa\x99\x5e\x84\xa7\xd7\xe3\x24\x49\x88\xc0\xea\x27\xca\x3c\x73\x36\x41\x70\x94\x42\x85\xbc\x0c\xb4\x2c\xa3\x5d\x29\x3b\x69\x5d\x67\x14\x37\x24\x28\x10\x63\x25\x96\xfc\x20\x66\xf5\x69\x49\xf1\x10\xb6\xee\x8c\x62\x4c\x83\x36\x5c\x5a\x7a\x22\x7c\x43\x4e\xe2\x69\x6e\xbd\x8d\x19\x6e\xa6\x67\x26\x01\xdf\xa1\x08\xa1\xee\x32\x19\x2f\x3e\x6b\xe7\x11\xb1\x23\x96\xe8\x1a\xf9\xe8\x5b\xff\x84\x32\x59\x85\x83\x54\xba\x3c\xe8\x63\x7b\xcf\xf1\xf5\xce\xd1\x27\x72\xe7\x1a\xbf\x14\x58\x0c\x7f\x37\xf4\xe6\xe8\x63\x93\x6c\x35\x88\xd5\x7a\x9d\x42\x7d\x85\xd5\x4e\x6c\xfe\xce\xe6\x07\xd8\x2e\x21\xc1\x2e\xbd\xe4\x48\xd2\xaf\xb1\x09\xe1\x24\x81\x9e\xf9\xa9\x19\xd1\xeb\xad\x2a\xbb\x13\x86\x1f\x7f\x70\x7d\x9a\x47\x46\x55\xbd\xe5\x93\x30\x66\xab\xaa\x85\xac\xfd\x34\x69\xea\x5a\xc4\x15\xae\x67\x46\xe7\x08\xb8\xcd\xf5\xdc\x43\x9e\x8e\x9d\xae\x2c\xb5\x6f\x17\xbd\x69\x1f\x69\x61\x63\x63\x09\x27\xd1\x9d\xb3\x75\x0c\x0a\xc6\xe6\xbe\xdd\x69\xeb\x4b\x5e\x19\x92\x80\x6a\x7b\x10\x33\x14\xec\x6e\x59\xee\xcc\xf1\xa8\xd7\x30\x83\x0e\x0a\xf3\x60\x9e\x25\x8a\xee\x85\x97\xcd\x0f\xfa\xfb\xf8\x18\x0a\xef\xdc\xeb\x6a\x35\x68\x25\x0a\x80\x72\xe4\xcd\xb3\x96\x70\xb4\x12\x00\x40\x95\x63\xe1\xc2\xa1\x92\x39\x34\x34\x25\x98\x46\xe6\xd0\x00\x12\x8e\xd0\xd7\x86\xa3\xb4\x11\x46\x04\x84\x2e\x1a\x89\x44\x23\xf5\x34\xe1\x70\x34\x1c\x3e\x8d\x48\x79\xf0\x1f\x06\x16\x9b\xca\xa4\x87\xff\x6f\xc3\x15\x7f\xdd\x1d\x00\x00\xcb\x6d\x43\x08\x9b\xce\x09\x23\x07\xd3\x80\x35\x8b\xcc\xa0\xd9\x92\x19\x4c\x8a\x1f\x54\x5f\xc7\x40\xc7\x50\xdb\x08\x8a\x84\x23\x74\xb5\xe1\x7a\xda\x08\x24\xf4\x04\x42\x1f\xea\xc3\xe1\x04\xa2\x61\xb0\xb0\xb0\x30\x1d\xe6\x36\xcd\xfa\x43\xeb\xb0\x83\x19\x93\xf1\xab\x00\x00\xa0\xb0\x9d\x48\xf0\x09\x65\x79\xa3\xd1\x58\x36\x25\x94\x45\x0b\xe0\xa0\xd1\xf6\x64\x06\x2d\x04\x20\x4a\x7f\xb7\xc0\xfe\xc5\xfc\xe9\x44\xa3\x7d\x68\x4c\x86\x0f\x07\x20\x8c\x90\xe2\x20\x38\x0e\x00\x20\xff\xdf\xcc\x49\x26\x95\xe3\xb3\x8d\x3c\xaf\xd8\x27\x08\x00\x80\xfc\x03\xb1\x65\xb2\x68\x9c\xf0\x40\x1a\xf8\x73\x2b\x58\x60\x00\xe3\x48\x8d\x33\xfe\x5f\x39\xb6\x04\x26\x8b\x06\x10\xba\x7a\x86\x28\x23\x03\x94\xae\xde\xc9\xd9\xea\xed\xef\xa4\xf8\x3f\x10\x47\x66\x04\x0d\xc0\xcd\xcc\x32\x8b\x4d\x57\x00\x00\xce\xff\x38\x72\x72\xb0\x06\x74\xa6\x3f\x0d\x0d\x83\xc1\x58\x01\x1c\x7f\x36\x03\x46\x27\x9f\x62\x52\xd8\x01\x21\xb0\xff\xdf\x19\x46\xa7\x19\xd1\x8c\x74\x0d\xc8\x08\x24\x12\x85\xa2\x52\xe9\x34\x3a\x8a\xec\x4d\x35\x40\x90\xf5\x10\x08\x1a\x8a\xaa\xa7\xc3\xa4\xb0\x75\x02\x03\x18\xad\xd4\xc4\xc7\xdb\x83\x59\x5b\xe0\xb1\x95\x66\xa4\x98\xff\x0b\x00\x00\xff\xff\x3b\x7f\x00\x12\xe8\x0a\x00\x00") + +func staticImgCowyoAppleIcon57x57PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAppleIcon57x57Png, + "static/img/cowyo/apple-icon-57x57.png", + ) +} + +func staticImgCowyoAppleIcon57x57Png() (*asset, error) { + bytes, err := staticImgCowyoAppleIcon57x57PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/apple-icon-57x57.png", size: 2792, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAppleIcon60x60Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x96\x79\x34\x14\xec\xdf\xc6\x6f\x8c\x24\x24\x42\xb4\x3d\xb2\x86\x66\x9f\xb1\x8c\x92\x11\x32\xd5\x20\x64\x5f\x66\x98\xc5\x18\x63\x99\x19\xc4\xa3\x1e\x44\x8f\xa2\xb2\x2f\x93\x4a\x51\xd6\xec\xb2\x45\x84\xec\x0a\x4f\x24\x54\xf6\x25\x4d\x45\xf6\x96\xf7\xe8\x9f\xf7\x79\x7f\xef\xf9\xfd\x71\xfd\x73\xdf\x9f\xeb\xba\xef\x73\x9d\xf3\x3d\xe7\x7b\xcd\xd2\xfc\xb4\xc4\xae\xfd\xbb\x00\x00\x12\x04\x33\x63\x2b\x00\xc0\xf1\x6d\xed\x14\xda\x3e\x51\xd2\x30\x04\x00\x40\xe8\x78\x22\x1e\x80\xd2\x5b\x62\xdf\xc9\xc2\x00\x00\x01\x8e\xd5\x69\x23\x50\xd4\x7b\x70\x1e\x00\xa0\xe8\x61\x66\x45\x04\x20\x44\x0d\x80\xb0\x48\x00\x36\x01\x00\x61\x73\x00\x04\x20\x00\x58\x20\x01\x80\x4b\x03\x60\x9f\x5f\x46\xed\xf9\xe3\x00\x08\x4e\x5b\x9e\xb3\x31\xf9\xf5\xeb\xd7\xf7\xef\xdf\x7f\xfe\xfc\xf9\xf6\xed\x5b\x32\x99\x5c\x5d\x5d\xfd\xf1\xe3\x47\x7f\x7f\xff\xcc\xcc\xcc\xc8\xc8\x48\x00\x00\x87\xc3\x79\xfa\xf4\xa9\xb8\xb8\xf8\xf1\xe3\xc7\x17\x17\x17\xbf\x7c\xf9\x62\x68\x68\x68\x6e\x6e\xfe\xed\xdb\xb7\xe4\xe4\xe4\x9a\x9a\x9a\xa6\xa6\x26\x19\x19\x19\x75\x75\xf5\xf1\xf1\xf1\xa0\xa0\xa0\x2b\x57\xae\x5c\xbe\x7c\x19\x02\x81\xec\xd9\xb3\xa7\xad\xad\x6d\x69\x69\xe9\xcc\x99\x33\xc2\xc2\xc2\x06\x06\x06\x5b\x5b\x5b\xd6\xd6\xd6\xfb\xf6\xed\xb3\xb5\xb5\x4d\x4a\x4a\x7a\xf3\xe6\xcd\x81\x03\x07\x50\x28\x14\x06\x83\x91\x95\x95\xed\xee\xee\xfe\xfa\xf5\xab\xbe\xbe\xfe\xd1\xa3\x47\x1f\x3c\x78\x20\x29\x29\x69\x67\x67\xb7\xba\xba\x3a\x3b\x3b\xdb\xdb\xdb\xdb\xd1\xd1\xd1\xdc\xdc\x5c\x57\x57\x57\x5b\x5b\xdb\xd8\xd8\xf8\xfa\xf5\xeb\x89\x89\x89\x82\x82\x02\x1f\x1f\x1f\x16\x8b\x55\x59\x59\x39\x3f\x3f\x8f\x40\x20\xde\xbf\x7f\x2f\x2f\x2f\x3f\x32\x32\x12\x18\x18\x68\x65\x65\x05\x83\xc1\xf6\xef\xdf\x2f\x2a\x2a\x2a\x22\x22\xb2\x73\xe7\x4e\x31\x31\xb1\xdd\xbb\x77\xab\xa8\xa8\x9c\x3a\x75\xca\xcb\xcb\xeb\xc6\x8d\x1b\xad\xad\xad\xd3\xd3\xd3\x44\x22\xb1\xb4\xb4\x54\x50\x50\x30\x37\x37\x77\x61\x61\x01\x89\x44\x42\xa1\x50\x3e\x9f\x7f\xf7\xee\xdd\x5d\xbb\x76\x1d\x3e\x7c\xd8\xd3\xd3\xb3\xa7\xa7\xe7\xc7\x8f\x1f\x7e\x7e\x7e\x42\x42\x42\x52\x52\x52\xaa\xaa\xaa\x27\x4f\x9e\x74\x76\x76\x66\x30\x18\x6c\x36\xfb\xe2\xc5\x8b\xc1\xc1\xc1\x01\x01\x01\xde\xde\xde\x1e\x1e\x1e\xe7\xce\x9d\xdb\xbb\x77\xaf\xa5\xa5\xe5\xda\xda\x5a\x59\x59\xd9\x5f\x7f\xfd\xa5\xab\xab\x7b\xe1\xc2\x05\x33\x33\xb3\xf4\xf4\x74\x09\x09\x09\x4d\x4d\x4d\x0a\x85\x72\xfd\xfa\xf5\xe2\xe2\x62\x45\x45\xc5\x1d\x3b\x76\x60\xb1\xd8\x57\xaf\x5e\x4d\x4e\x4e\x2e\x2f\x2f\xcf\xcd\xcd\x3d\x7b\xf6\xac\xa8\xa8\xe8\xe1\xc3\x87\x87\x0e\x1d\x7a\xf7\xee\xdd\xca\xca\xca\xf3\xe7\xcf\xe3\xe2\xe2\x08\x04\xc2\xd0\xd0\x10\x95\x4a\x95\x93\x93\x13\x10\x10\x78\xf1\xe2\x85\x85\x85\x45\x49\x49\x49\x4c\x4c\xcc\xa7\x4f\x9f\xdc\xdc\xdc\xe0\x70\xf8\xcb\x97\x2f\xf3\xf2\xf2\x1c\x1d\x1d\xa7\xa6\xa6\xb2\xb2\xb2\x9c\x9c\x9c\x8e\x1d\x3b\x96\x9a\x9a\x5a\x5e\x5e\xfe\xe1\xc3\x07\x2d\x2d\x2d\x13\x13\x93\x5b\xb7\x6e\xe9\xe8\xe8\x9c\x3d\x7b\x36\x27\x27\x27\x34\x34\x74\x73\x73\xf3\xf4\xe9\xd3\x8f\x1f\x3f\xb6\xb1\xb1\x69\x69\x69\xd1\xd0\xd0\xa8\xaa\xaa\x22\x91\x48\x85\x85\x85\xe7\xcf\x9f\xf7\xf5\xf5\xdd\xd8\xd8\xe8\xea\xea\xba\x7a\xf5\xaa\x91\x91\xd1\xe7\xcf\x9f\x43\x42\x42\xee\xdf\xbf\xaf\xad\xad\xfd\xe8\xd1\x23\x25\x25\xa5\xbe\xbe\xbe\x3f\xfe\xf8\x83\xcb\xe5\x3e\x79\xf2\x64\x66\x66\x86\xc9\x64\x1e\x39\x72\xe4\x9f\x7f\xfe\xd1\xd3\xd3\x1b\x1e\x1e\x36\x35\x35\x8d\x8d\x8d\xbd\x77\xef\xde\xdf\x7f\xff\x7d\xf3\xe6\x4d\x35\x35\xb5\xf8\xf8\xf8\xdb\xb7\x6f\x47\x44\x44\xe4\xe7\xe7\xa3\xd1\xe8\xf5\xf5\xf5\xb1\xb1\xb1\x8c\x8c\x8c\x83\x07\x0f\x8e\x8e\x8e\x86\x85\x85\x0d\x0e\x0e\xd2\x68\xb4\xfe\xfe\xfe\xfa\xfa\xfa\xf6\xf6\x76\x07\x07\x07\x65\x65\xe5\xce\xce\x4e\x1c\x0e\x27\x2d\x2d\x5d\x51\x51\x81\xc7\xe3\x13\x13\x13\xd3\xd2\xd2\xb2\xb3\xb3\xa3\xa3\xa3\x79\x3c\x9e\xab\xab\x6b\x78\x78\xb8\xbb\xbb\x7b\x54\x54\x54\x42\x42\xc2\xb5\x6b\xd7\x52\x52\x52\x8c\x8d\x8d\x15\x14\x14\x9c\x32\x66\xa5\xb7\x27\xc5\xfd\xec\x69\x63\x10\x2d\x7c\xc8\x0c\x00\x20\xea\x67\xe6\xc0\x01\x00\x98\xfd\x96\x69\x07\xd3\x00\x00\xe1\x11\x82\x31\xde\xc6\xac\xcd\x83\x94\x29\x83\x40\xc5\x17\x47\xa5\x47\x25\xdb\xd4\x7b\x2f\x1e\xb4\x94\x53\xdf\xa7\x93\xc7\x0b\xbe\xb8\xb1\xde\x24\x2e\x80\x87\x1d\x21\x4b\x63\x63\xfc\xbe\x5e\x8f\x50\x70\x9f\x70\x96\x4e\x50\xf1\x4a\x99\x98\x48\xd8\x81\xa6\x50\x82\xa7\xa7\x08\x03\x05\x99\x47\x0b\xb2\xc5\xd9\x55\xd7\xf3\x79\xb5\x85\x3b\x18\x3c\x6c\x65\x45\x00\x77\x25\x4c\xfc\x92\xd0\x29\x65\x8f\xbd\xb2\x18\x86\x35\x9a\xc6\x11\x3b\xab\xc5\x3c\x10\x7c\xc2\x49\x5f\xe0\x5b\x6e\x85\x1d\xdb\xcf\x86\x2d\x88\xca\x70\x71\x76\x96\x1d\x2b\x94\x97\xb2\x8a\xe5\x1f\x3c\x7c\xd7\xf5\x1d\xfb\xa9\x41\x43\xc3\xe5\x9f\x02\x13\xe1\xf8\xa6\x23\xf7\xdb\xf1\xfb\xe5\xf8\x7b\xa5\xa4\x15\x84\x29\x26\x6d\x2d\x2f\x5a\xd5\x55\xd4\x5a\xd5\xf5\xc5\xae\x2c\x5a\x10\xcc\x93\xcd\xac\xcf\xbc\x6c\xef\xee\xec\xed\xe8\xe9\x82\x1f\x3d\xc6\xf6\x5f\xbe\x76\x0c\x56\x2a\xc2\xb0\xd0\xb8\xc1\x81\x6b\x15\xc7\x3d\xfe\x27\xd5\xbc\x5c\x64\xe9\x6c\x41\x0b\xf4\x4c\x81\x84\x57\x12\x97\x79\x65\x61\x41\x6f\xbf\xee\x81\xdb\x3c\x8e\x92\xa3\xe3\x64\xa6\x01\x81\xc1\x1c\x5a\xcc\x95\x1c\x5a\xa1\xcf\x2f\x4a\x77\x48\xf5\xf3\x57\x53\x93\x8f\xce\xcd\x4b\x14\xcf\x0b\x75\xac\x6a\x11\xd3\xda\xf7\xd0\x95\x51\x04\x7a\x99\xaf\x23\xaf\x3f\xc9\x70\x37\xbd\x5b\x51\xf3\x0e\x0e\x6a\x65\xab\x4d\xec\x78\x53\x62\x1c\x52\xcb\x3c\xf3\x39\x36\x52\x5a\x20\x6e\xbd\xdb\xa1\xac\x7c\x72\x38\xac\xe9\xf0\x89\xb6\x10\xfe\x71\x18\xfc\x70\xf5\xcd\x8d\x15\xb1\x46\x7c\x5f\xe2\x08\xf8\x36\xf7\x5c\x23\x46\x0e\x1e\xef\xe6\xd5\xd9\xf2\x6a\x84\x3e\xf1\xcc\x5b\xd3\x58\xe2\x59\x45\x4a\x42\x93\xf8\x8c\x8c\x62\x22\x6b\x83\x92\xe6\xaa\x36\x24\xab\x95\x53\xe8\x25\x64\xba\xb0\x90\x6c\x3d\x58\x28\x4b\xf2\x72\xb3\x2b\x3f\xec\x3d\xbc\x20\x31\x7f\x39\xbf\xe3\xcb\x87\x31\xdd\x02\x5d\xf6\xde\x2d\x9a\xf6\xd5\xa3\x0f\xa1\xa4\x62\xd4\x8b\xe1\xa4\xb6\x6c\x0d\x7f\xff\x1c\x5d\xdf\xb1\x94\xb8\x06\x97\x84\xac\xce\x8c\xfb\x03\x41\x5d\xbb\x7f\xdc\xa9\x0b\xdc\xda\xa0\xb0\x17\xf1\xab\xfd\xbd\xf5\xc8\x06\x2c\x52\x6f\x20\x74\x08\x6d\xb6\xf0\x75\x91\x33\x0a\x57\x3f\xa0\x55\x79\x83\x79\xff\xef\x98\x5b\x19\x39\x95\xf3\xe1\x1d\x22\x92\xc8\xee\xe2\x13\xa1\xc6\xc1\x6c\x47\xe5\xae\xf3\x97\x2b\xf6\x90\x71\x4f\xa6\xd6\xc7\x31\x45\xdf\x28\x31\xf2\xfe\xcf\xcc\x86\x5f\x10\x38\x9f\x06\x7d\x3e\xf0\x12\x02\xdd\xeb\xec\xe1\xcd\x1d\xcd\xef\x9c\xc2\xf5\x3c\xf5\x86\x64\x2a\x3b\x2f\xed\xed\xdb\x2b\x23\x5f\x78\x47\x3e\x40\x93\x34\x3b\xcf\xa2\xdb\xf7\x9a\x7a\xf2\x81\x69\x7f\x4d\x61\x3d\xc7\xa2\x58\x38\xaa\x33\xd8\x96\x14\xdd\x22\xba\xc3\x39\x6d\x20\x46\xbf\x6f\x66\x2b\x00\x91\xc4\x2b\x8a\x52\x6b\x4b\xaa\xd4\xb0\xfc\x2a\x13\x17\xcd\xe9\x6e\xdd\x30\x54\xe7\x1b\x5a\x14\x9e\xf3\xd7\x4e\x85\xc1\xa9\xa4\x6a\xa5\x3f\x65\xab\x3a\x96\x55\xdd\x33\x14\xcc\x67\xf2\x39\x23\x7f\x9c\xc5\x4b\xa7\x2c\x9e\x54\xdd\x97\x1e\xf8\x69\x61\x25\xae\xdd\x6b\x94\x67\x51\x27\x3c\x56\xed\x30\xc2\xd5\x6a\xf2\x5d\xdd\x18\x41\x34\x7d\xd4\x71\x51\x7a\xad\x16\xe0\x22\xb5\x06\xc7\xb5\x06\x88\x54\xcd\xe8\xb5\xd6\x0e\x85\x8e\x61\xf8\x4b\x53\xda\x6c\x28\x4f\xac\xd4\x59\xf1\x96\x9d\x4e\xc0\x6c\xc0\x8e\x64\xd5\xba\x81\x1f\xd5\xfc\xf1\xc1\xe3\xd8\x46\xdd\x2c\xe9\xa4\x1f\xf2\x9f\xcb\x3f\x9a\x6b\x0b\xaa\x36\x24\xe9\x13\xd3\x25\x07\x23\xa8\x6b\xc7\x9f\xda\x2c\x47\x4b\xe5\xcc\x98\xab\xfa\xd0\xad\x3d\x5b\x0e\x5e\x0a\x65\xaa\xc7\xdd\x2c\xf0\xfb\x53\x30\xd5\x2d\xa4\x64\x01\x77\xea\xd6\x1c\x52\xfc\xf3\x75\xfb\x3c\xc4\xb1\x9b\xe2\xe1\x62\x69\xbd\x31\x8b\x10\xab\xfa\x71\x03\xba\x2c\xc9\x1d\x7d\xcf\x76\xae\xce\xee\x8b\xf9\xa9\x2e\x3b\xef\x0b\xce\xef\x2e\x89\x5b\xc5\xcf\x92\x04\xfb\xec\x04\xd7\x43\x1a\x5d\x1d\xa6\x0a\x0c\x44\xf6\x07\x2d\xdd\x08\xd7\xb9\xb9\xe9\x7f\xe2\xcf\xe8\xfc\x60\x77\xe5\xd4\x63\x22\xcd\x72\x45\x0e\x71\x2a\x2e\x9b\xdf\x4d\xde\x62\x4f\x44\xdb\x78\x5a\x0e\xe0\x03\x0f\x13\x04\xc8\xe8\x9c\x64\xe7\x09\x7d\x17\x89\xd8\x13\x59\xe7\xb1\xa9\x33\x87\x8a\xd8\x76\x1a\xe3\x5e\x56\xef\x43\xfb\x57\xc7\xbb\x1e\x70\x5d\x13\xe5\xaa\x95\x5d\xb1\x39\xaa\x10\x3e\x6c\xe9\x8c\xd9\xb3\xb9\xad\x0c\x32\xe3\xb4\x7e\xed\x3d\xa2\xcb\xa4\xbc\xcc\xba\xf9\xb9\xe5\xaf\x5a\x72\xb3\xc4\xb3\xc5\xc7\x4e\xc1\xfa\x55\x0a\x1c\x68\x75\xf3\xb4\x5c\x0b\x49\xc2\x9f\x37\xb4\x4a\x5c\xe0\x29\x69\x87\xfc\x6c\xee\xd8\x56\x77\xed\xa8\x8f\x70\x60\x06\x6e\x16\xdd\xd1\x68\x96\xfe\xa5\x53\x8d\xe9\xea\x62\x89\x3c\xf2\x18\x78\x27\xe3\xbc\x4b\x9e\x5f\x40\x7c\x2e\xdb\x67\xca\xe8\x17\x5f\xc7\xdb\x5f\x2d\x03\xbb\xf3\x96\xda\xab\x20\x18\xb1\xc5\x93\x4d\xb1\x2e\x6a\xd3\x2e\x3d\x42\x82\xbc\xa0\xdc\xad\x18\x72\x6a\x8d\x01\x3e\x26\x3d\x8c\x76\x75\x8d\xa1\xcb\xfe\x86\x2c\xb6\xd7\x36\xe2\xed\x53\x54\x25\xc9\x7c\x99\x1a\x86\x58\x1b\xf1\x1e\xff\x30\x28\x6c\xd5\x94\x3a\x72\x3b\xd1\xc8\xac\x7c\x66\xdc\x7a\xd3\x5e\x15\xf3\x68\x54\x25\x3b\x15\x7f\xef\x73\xe9\x21\x6d\xff\xe4\xec\x47\x59\x10\x2c\x1a\x26\x3e\xd7\xe8\x35\x37\xe0\xe3\x14\xc1\x53\x30\x30\xdf\x88\x24\xbe\xa9\xf4\x77\x39\x40\xee\x19\xfc\x99\xf7\x26\xd2\x81\x39\xb8\x67\xb0\x6b\x8f\xdc\xed\x1a\x91\x98\x2f\xb3\x15\x35\xc6\x9e\xae\x75\xc4\x51\x41\xe7\x80\xfa\x88\x88\x82\xcc\xfc\xd3\x51\x0f\x2f\xaa\x4b\xf1\x14\xb2\x95\x4f\x22\x0b\x3f\xf5\xaf\x8a\x3c\x81\x84\x29\x42\x7b\xaa\xe2\x2f\x19\x5c\x61\x42\xef\x01\x24\x4f\x5f\xda\x20\x37\x34\x7e\x12\xe5\xfc\x74\x13\xec\xe1\x2a\xb0\x26\x79\x4a\x94\xc0\x0b\x1a\xd7\x72\x1f\x95\x66\xb7\x28\x15\x10\x1b\xac\xaf\x93\x18\x26\xc6\x1d\xf6\xab\x93\x52\xc3\x42\x2d\x73\x54\xcb\xf4\x29\xb7\x3c\xee\x77\x66\xa2\x48\x76\xc9\x3c\x3a\x34\x70\x95\xf4\xc0\x78\x8d\xf1\x00\x83\xce\x58\x5e\x59\xd6\xcb\x5f\xc3\x08\x78\xdb\x8d\xd6\x46\xae\xed\xba\xeb\xec\xbc\x00\xe1\x08\x43\xba\xdd\x3a\x92\xc7\x7b\x2d\xc7\xb8\x90\xa9\xae\xad\xf7\x9a\xa3\xe1\x50\xb6\xea\x73\xd1\x03\xbb\x74\x6b\xe4\xf8\x6f\xca\x47\x74\x05\x5b\x6c\x11\xe9\x65\x31\x4d\x4b\xc3\x3f\x37\x5a\xbc\x68\xd3\x2e\xcd\x25\x59\x4c\x7e\x00\xa2\xed\x0e\x47\xb9\xd9\x4a\xf4\xbe\xab\x3b\x76\x24\x44\x4c\x54\xf1\xa2\x61\x5b\xf9\x7e\x0b\xa5\xb4\x54\x72\x26\x74\x74\xed\x8c\xfd\x41\xf1\xc5\xe1\xac\x9c\xc5\xaa\x30\xfb\xfa\xc6\xb7\x4c\x87\x81\x56\xf9\xa3\xaf\x1a\xe4\x96\x1f\x6b\x38\x85\x5f\xec\x11\x57\x5f\xe3\xbb\x41\x20\x5d\xda\xe1\x86\xac\xd7\x0d\x27\x54\xe6\x84\x53\x44\xbf\x93\x0d\x11\xef\x77\x43\x1c\x09\xa5\x29\x9e\x00\xbc\x6c\x1b\xd4\x24\x8d\xe3\x9e\x03\x00\x54\xb9\x26\xf6\x5c\x0a\x99\x4b\xc5\x79\xb0\xa9\x64\x2e\x15\xa0\x10\x48\x6d\x28\x02\x0d\x45\xea\xd9\x20\x31\x38\x14\x0a\x87\xc2\x6a\x21\x10\x38\x04\xe2\x03\x32\xb6\xfe\xff\x18\x58\xbe\x14\x06\x2d\xf8\xbf\x1b\xe2\xbd\x31\x02\x00\x00\xd3\x6d\x03\xc7\x97\xc6\x0d\x22\xb3\xa9\x80\xc0\x22\xd3\xa9\x44\x32\x9d\xe1\xc1\x54\xd4\x86\xe9\xc0\x74\xa1\x7a\x8a\x28\x04\x12\x03\x45\x60\xa1\x48\x94\xe2\x79\xa4\xb6\xa2\x27\x97\xeb\x87\x83\xc3\x83\x82\x82\x60\x8c\x6d\x9a\xf5\x9b\x86\xf9\xb2\xe9\xa3\x57\x3f\x01\x00\x80\xfc\x76\xa2\x8d\x67\x00\xcb\x1d\x87\x33\xf6\xf5\x08\x60\x51\x7d\xb8\x38\x9c\x25\x99\x4e\xe5\x00\x64\xce\xaf\x3a\xf8\x7f\x30\xbf\xdf\xc4\xe1\x3c\xa9\x0c\xba\x27\x17\x20\xf5\x50\x92\x80\x1d\x05\x00\xd8\xf7\xff\x19\x3b\x06\x85\xeb\xb9\x8d\x0c\x14\x1e\xd9\x09\x00\x50\xf8\x17\x42\x64\xb0\xa8\xdc\x60\x3f\x2a\xf8\xfd\x2b\xb8\x9f\x0f\xfd\x64\x99\xad\xf9\x7f\xe4\x10\x6d\x18\x2c\x2a\x40\x62\xb0\xba\x68\x3d\x1d\x34\x06\x6b\x37\x5d\xb2\xbd\xba\x4a\xfe\x0b\xb1\x66\x84\x50\x01\xc2\xc8\x28\xe9\x81\xc1\x22\x00\xc0\xf6\x5f\x57\x17\xac\x08\x80\xc6\xf0\xa6\xe2\xe0\x70\x38\xcb\x87\xeb\xed\x4b\x87\xd3\xc8\x81\x0c\x0f\x5f\x1f\x0e\xfc\x7f\x7b\x86\xd3\xa8\x7a\x54\x3d\x8c\x0e\x19\x89\x42\xa1\xd1\x14\x0a\x8d\x4a\x43\x93\xdd\x29\x3a\x48\x32\x16\x89\xa4\xa2\x29\x58\x18\xc3\xc3\x17\xe6\xe7\x43\x7f\x4a\xb9\xd6\xb1\x5d\x18\xc1\xc4\xdc\xb8\xc8\x88\x14\xf1\x3f\x01\x00\x00\xff\xff\x49\x8e\xd5\x68\x54\x0b\x00\x00") + +func staticImgCowyoAppleIcon60x60PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAppleIcon60x60Png, + "static/img/cowyo/apple-icon-60x60.png", + ) +} + +func staticImgCowyoAppleIcon60x60Png() (*asset, error) { + bytes, err := staticImgCowyoAppleIcon60x60PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/apple-icon-60x60.png", size: 2900, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAppleIcon72x72Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x97\x67\x50\x13\xea\x9b\xc5\x5f\x40\x7a\x91\x22\xa2\x82\x5c\xa4\x28\x4a\x49\x42\x4f\x2e\xc5\x84\x6e\x08\x44\x04\x41\x7a\x80\x10\x42\x27\x84\x2e\xc5\xd0\x8b\x02\x82\x48\x15\x10\x10\xa4\xf7\x12\x94\x2a\x22\x20\xdd\x82\x05\x08\x52\x54\x3a\x4a\x13\x05\x76\xb8\x33\x3b\x7b\xf7\xbf\xb3\x1f\xde\x4f\xef\xef\x9c\xe7\x99\x33\x73\x3e\x3c\x71\x58\x43\x5d\x4e\xb6\x73\x6c\x00\x00\x4e\x7d\x3d\x2d\x63\x00\x80\xde\xf1\x63\x61\x00\x00\xd8\xcb\x6b\xfa\x02\x00\x4e\x10\x90\x18\x24\x00\xb5\x49\xec\x7f\x70\x8c\x00\x00\x3a\x1f\x63\x5d\x14\xa8\x1a\x16\xfa\x0e\x00\x10\x71\xd0\x33\xc6\x00\x10\x74\x11\x80\xf0\x48\x00\xf6\x01\x00\xe1\xdf\x00\xf0\x85\x02\xb0\x64\x07\x00\x22\x03\x00\x01\xaf\x1c\xea\x75\x55\x00\xe8\x37\xb1\x06\x26\xda\x47\x47\x47\xeb\xeb\xeb\xdd\xdd\xdd\x2b\x2b\x2b\x7f\xfe\xfc\x19\x19\x19\x99\x98\x98\x38\x3c\x3c\x8c\x8d\x8d\x3d\x79\xf2\x64\x4c\x4c\xcc\x87\x0f\x1f\xa4\xa5\xa5\x15\x14\x14\x66\x66\x66\xbe\x7e\xfd\x0a\x00\xc0\x62\xb1\xfb\xfb\xfb\x4d\x4d\x4d\xec\xec\xec\xf4\xf4\xf4\x59\x59\x59\xf5\xf5\xf5\x6c\x6c\x6c\x72\x72\x72\xdf\xbf\x7f\x4f\x49\x49\xb9\x7e\xfd\xfa\xce\xce\x0e\x89\x44\x12\x10\x10\x18\x1d\x1d\x3d\x38\x38\x20\x10\x08\xc2\xc2\xc2\x6f\xdf\xbe\x5d\x5d\x5d\xfd\xfb\xef\xbf\xe9\xe8\xe8\x98\x98\x98\x4a\x4a\x4a\xd4\xd4\xd4\x18\x18\x18\x18\x19\x19\x8b\x8a\x8a\x4e\x9f\x3e\xad\xa2\xa2\xe2\xeb\xeb\x3b\x3e\x3e\x7e\xf6\xec\xd9\x53\xa7\x4e\x29\x2b\x2b\x57\x57\x57\x2b\x29\x29\x69\x68\x68\x14\x14\x14\x50\x28\x94\x6b\xd7\xae\xed\xed\xed\x25\x27\x27\xdf\xbc\x79\xb3\xaf\xaf\x8f\x97\x97\xf7\xe5\xcb\x97\xbf\x7e\xfd\x7a\xf7\xee\x5d\x57\x57\x57\x69\x69\x69\x6e\x6e\xee\xfd\xfb\xf7\xa3\xa3\xa3\x43\x43\x43\x6f\xdf\xbe\x9d\x98\x98\x98\x91\x91\xd1\xd0\xd0\x30\x3c\x3c\x3c\x3d\x3d\xfd\xe3\xc7\x0f\x1b\x1b\x1b\x1f\x1f\x9f\xda\xda\x5a\x79\x79\xf9\xa5\xa5\x25\x1c\x0e\x67\x60\x60\xb0\xbc\xbc\x3c\x3b\x3b\x1b\x12\x12\x62\x64\x64\x04\x81\x40\x98\x99\x99\xf9\xf8\xf8\xc4\xc4\xc4\xf0\x78\xfc\xeb\xd7\xaf\x7f\xfe\xfc\xf9\xfb\xf7\xef\x96\x96\x96\x57\xaf\x5e\x71\x70\x70\x5c\xbc\x78\x91\x46\xa3\xc5\xc7\xc7\x5b\x5b\x5b\x3f\x79\xf2\x44\x55\x55\x35\x22\x22\xa2\xad\xad\x6d\x6b\x6b\x6b\x68\x68\xc8\xcb\xcb\xeb\xca\x95\x2b\x2c\x2c\x2c\x97\x2e\x5d\xd2\xd7\xd7\xbf\x71\xe3\x86\x93\x93\x93\xbd\xbd\xfd\xad\x5b\xb7\x30\x18\x8c\xa6\xa6\x26\x0c\x06\xe3\xe4\xe4\x44\xa3\xd1\x85\x85\x85\xf9\xf9\xf9\xe7\xce\x9d\xeb\xec\xec\xbc\x7c\xf9\xf2\x97\x2f\x5f\xf2\xf2\xf2\xd6\xd6\xd6\x44\x44\x44\xc4\xc5\xc5\xf5\xf4\xf4\x5c\x5c\x5c\xee\xdd\xbb\x37\x39\x39\x39\x37\x37\x77\xfe\xfc\x79\x49\x49\x49\x4b\x4b\xcb\x8d\x8d\x8d\xed\xed\xed\x6f\xdf\xbe\x7d\xfc\xf8\xf1\xc5\x8b\x17\x86\x86\x86\x03\x03\x03\x9f\x3f\x7f\x1e\x1b\x1b\xcb\xc9\xc9\x09\x0e\x0e\xce\xce\xce\x56\x57\x57\xdf\xdc\xdc\x94\x90\x90\xe0\xe2\xe2\x12\x14\x14\x94\x92\x92\xd2\xd1\xd1\x29\x2e\x2e\xfe\xeb\xaf\xbf\x2e\x5c\xb8\x00\x87\xc3\x3d\x3d\x3d\x1b\x1b\x1b\x51\x28\xd4\x99\x33\x67\x92\x92\x92\xda\xdb\xdb\x1f\x3e\x7c\x88\x40\x20\x78\x78\x78\x76\x77\x77\xb5\xb5\xb5\xcb\xcb\xcb\x17\x16\x16\xcc\xcd\xcd\x4f\x9c\x38\xa1\xab\xab\x5b\x55\x55\x15\x1e\x1e\x9e\x96\x96\xb6\xb8\xb8\xe8\xed\xed\xdd\xd1\xd1\xf1\xfe\xfd\x7b\x7f\x7f\xff\xb2\xb2\xb2\x47\x8f\x1e\x79\x78\x78\x34\x37\x37\x5b\x58\x58\x54\x56\x56\x72\x73\x73\xf7\xf4\xf4\xb8\xba\xba\xf6\xf6\xf6\x12\x89\x44\x51\x51\xd1\xd4\xd4\x54\x2d\x2d\xad\xc7\x8f\x1f\x93\xc9\x64\x56\x56\xd6\xb0\xb0\x30\x63\x63\x63\x21\x21\xa1\x80\x80\x80\x37\x6f\xde\x24\x24\x24\xa4\xa7\xa7\xf3\xf3\xf3\x9b\x98\x98\x58\x59\x59\xd9\xd9\xd9\xdd\xb9\x73\x47\x56\x56\x36\x28\x28\x68\x7e\x7e\xbe\xae\xae\xee\xe9\xd3\xa7\x53\x53\x53\x8a\x8a\x8a\xfd\xfd\xfd\xee\xee\xee\x83\x83\x83\x81\x81\x81\x0f\x1e\x3c\x88\x8b\x8b\x8b\x8c\x8c\x74\x76\x76\x7e\xfe\xfc\x79\x4d\x4d\x8d\x8c\x8c\x4c\x66\x66\xa6\x83\x83\x83\x99\x99\x99\xa3\xa3\x23\x14\x0a\x7d\xf6\xec\xd9\xa7\x4f\x9f\xae\x5e\xbd\x8a\x44\x22\xa9\x54\xaa\x9b\x9b\x5b\x54\x54\x94\x9f\x9f\x9f\x77\x09\xab\xd7\x71\x6b\xec\xd1\xba\x5a\x20\x96\xf1\xfc\x71\xbf\x58\xbd\xf4\x6e\xf9\xfc\x77\xd7\x80\x4e\xbf\xab\x3a\x00\xcc\x5e\xfa\x5a\x48\x13\xf3\x9e\xa1\x8c\x60\x2b\x3e\xb3\xd3\x7d\x9e\x8e\x76\x45\x74\x70\x46\x26\x51\x5e\x54\x1a\x94\x18\x81\xa4\x84\xab\x0e\x94\x9b\x5b\x5d\xc7\xe6\x53\x78\xd1\x1c\x4c\x35\xa3\x65\xb5\x7a\xc8\x0a\xba\x82\xab\x12\xa7\x2b\xa4\x1a\xf9\x6b\x55\x5f\x54\xa9\x7e\x11\xdb\x8e\xe2\xb7\x66\x38\xad\x2d\x63\x5c\x50\x99\x50\x49\x35\x25\x7e\xaf\x5a\xf3\xb3\x0d\x5b\x35\xe8\xae\xcf\x48\x9e\xcf\xdb\xd9\x1d\xc9\x69\xfd\xfa\xda\x7f\x4d\x6d\x77\xb8\x75\x57\x9e\xe5\x40\xb6\x37\x03\x87\x3b\xec\xc9\x28\xe6\x57\x77\x19\x69\x08\x1d\xbe\xcd\x3d\xf1\xd2\xef\x5d\x2c\x91\xc0\x3e\xf2\x29\x9b\x93\xe4\x25\x9e\xa3\x63\x40\x38\xfd\xda\x0f\x26\xa8\xc0\xdc\xf9\xa0\xb2\xd1\x4b\x19\xdc\x6b\x6b\x15\x5a\xb3\x0a\x0f\x14\xb6\x48\xfd\xca\x2a\x7e\xc4\xe8\x83\x4c\x14\x40\xd2\x14\x6d\x5d\xa9\x3e\x91\xd3\x35\x40\x99\x6f\x5e\xec\x87\x35\x8b\x87\xc5\x44\xd2\xba\x46\x2a\x87\x5d\x06\xab\x85\x56\x00\x13\x0a\x0b\x75\x8f\xee\x44\x17\xe4\xd4\x6c\x5c\xbe\x10\x10\x69\x3d\x3f\x78\x3d\xc1\x36\xce\xe6\x47\x4c\x67\x31\x2c\x21\x5d\x26\xe9\xee\x9c\x21\x6b\x9d\x2d\x9d\xd4\xdc\x2f\xd6\xb8\x06\x35\x3e\x1b\x7c\x05\xa5\x55\x3f\x95\xbe\x66\x7e\xef\xad\xab\xb1\xd6\x3d\x7a\x5e\xb2\xe8\x0b\x57\x5b\x76\xbd\xbb\x29\x15\xd9\xa7\x2e\x62\xf8\xe0\x4f\x2a\x1f\x16\x13\x46\x95\x33\x6b\xe8\x82\x73\x25\x86\x07\x42\xc5\xe6\x30\x6e\x27\xea\xbd\x27\x9c\xe0\xe1\xe6\x2d\x12\xcb\x95\x39\xfc\x4f\x2d\x7d\x66\x86\x07\x67\x94\xaa\xc3\x01\xaa\xe5\xe0\xfc\x4b\xe7\x98\x54\x69\xff\x0a\x6c\xe7\x4e\x0b\xea\xe6\x98\x21\xb5\x38\x63\x4b\x1a\x47\x68\x47\xd3\x97\x37\x54\xfc\x79\x5e\xba\x61\xcd\xef\x97\x79\x8d\xb6\x1e\x1a\xf6\xb4\xde\x94\x84\xaf\x49\x43\xb3\x26\x94\x7e\xfc\xd9\x35\x6d\xdf\x1c\x0e\xe5\x3e\xf2\xb6\xb5\xdf\x8e\xe1\xfa\xad\x11\xf4\x37\x52\x0f\x48\x8d\x9c\x0f\x31\x10\x2e\x1d\x1b\xce\xa2\x34\x32\xf4\x89\x6a\x3e\xd2\x90\x2c\x7c\x79\xa1\x54\x6d\xab\x5f\x09\xde\x51\xa5\x0e\xb7\x77\x71\xda\x1c\x18\x65\x8c\xc9\xef\x6a\x1a\x33\x33\x88\x0a\xf2\xe6\x52\x3e\x8f\xcb\x8f\x37\xc2\x15\xfb\x0d\xaf\x66\xd3\x8c\x74\xd1\xdc\xf6\x23\x2e\x1e\xb7\x68\x1f\x2d\x96\xd0\x28\x4b\x05\xcf\xee\x39\x6f\x53\xb1\xe8\x01\x46\xcd\xc9\x44\x69\x90\x2e\xb7\x60\xbe\xe6\xd3\x37\x15\x68\x15\x19\xc5\x84\x2c\xd4\xfa\xaa\xe1\x6d\x3c\x74\xb4\x92\xd6\xe4\xdf\xa2\x26\x36\xd7\x90\x4f\x4b\x24\x0b\x15\x92\x24\xa5\xde\xe3\xf7\x56\x5a\x23\xfd\x96\x48\xea\xec\xbc\xef\x3e\xd5\x36\xca\xc7\xde\x0a\x31\xdc\xde\xe8\xfe\x26\x3a\xaf\x3d\xc2\xd0\x47\xbd\x97\x6b\x61\x6b\x7f\xda\x8a\x43\xb8\xc7\xc4\x66\xdf\x47\xb0\x68\x72\xec\x80\x7a\x3b\x7c\x54\xba\xe7\xec\x99\x25\x55\xf1\x50\xdd\xe5\x0a\xe2\x9a\x8b\xc8\x42\xa0\xd9\x4b\x33\xc6\xa6\x4d\x76\x9e\x80\x0f\x15\x6e\x8b\xb3\xdf\xd2\x5a\xfe\x26\x35\xc8\x0b\x9b\x55\xf3\x03\xd6\x4b\xc5\x01\x5f\x36\x55\xcf\x16\x09\x30\xef\x3a\x5a\x5f\xfd\xbc\x9c\xdc\xa7\xe3\x96\x97\xec\x70\xae\x85\x67\x54\x3e\xf0\xf2\x27\xb4\xfa\x4c\x45\x34\xa5\x22\x3b\xca\xe7\x82\x59\xbc\x57\xa2\xf5\x58\xe0\xd6\xa0\x0d\xfd\xa9\x75\x81\xae\xca\xe7\x77\xa6\x49\xdc\xe9\xbb\xde\x46\x97\x69\x52\x91\x4e\xe6\xbb\xfb\x53\x7e\xa6\xc9\xa3\x1a\x5e\x39\x31\xa1\x32\xd2\x85\x2a\xba\xc8\xab\x95\x89\x2d\xf1\x6c\xd9\xed\x55\x52\x65\x12\x05\xef\xe4\x3f\xe5\x66\x72\x89\x72\x72\xaf\xa7\xc7\xe8\x8a\x68\x30\x72\x60\x19\x2f\x39\x28\x13\x31\xe1\x8d\x04\x9a\xfa\x4e\x7d\x87\xe0\x4e\x8c\xd9\x7b\x49\x56\x5f\xe6\x43\x4e\xd0\xef\x22\xfd\xbb\xe9\x03\xbd\xae\xfa\x35\x54\x95\x95\xe2\xa5\xfb\xc3\x47\xc4\x50\xae\xe7\xd1\x46\x9f\xef\xd4\x30\x94\x13\x4b\x42\x9f\xee\xdb\x44\xca\x7f\x1b\xb0\x7d\xbc\xdb\x71\xbd\x32\x7b\x9b\x16\x50\xb2\x67\x2d\xc6\x6e\xb7\x51\xb5\x53\x38\x30\x49\x72\x08\x1d\x22\x2f\xd0\x87\xf1\xd7\x95\xb0\x22\x0d\x8a\x6b\x92\xb8\x38\x17\xd5\x07\x2d\x5b\xd7\xdb\xf6\x90\x4b\x54\x20\x6b\xb8\x5b\xa7\x6e\x08\xe1\x9b\x55\x6f\xb6\x1a\x0c\x6e\x7f\x68\xe8\x37\x7b\xd6\xec\xe7\xfb\xfb\x36\xbb\xb2\x5a\xa3\xbd\x76\xd4\xdc\xfc\x89\x5a\x67\xac\xe9\xed\xe4\x32\x56\x4a\x44\xf6\x9a\x91\x56\xeb\x33\x82\x98\x08\xfc\x91\xa5\xde\x32\x73\xd8\x01\x5d\xbb\x09\x86\x81\xfa\x7a\x3d\xb4\x05\xa9\x73\x42\x95\xaa\x62\xc9\xf5\x78\xb9\xd6\x61\x2a\x33\xa5\xfa\x74\x91\x6a\x7a\x1a\x34\x86\xed\x55\x8d\xc5\x46\x45\x26\x53\x83\x39\xa6\x72\x5c\xa9\x99\x2f\x36\x58\xe9\x4a\xac\xf6\xfe\x91\xca\xf8\xe1\x0d\x06\xb2\xc6\x47\xfd\x4b\xd1\x07\x53\x8a\xbd\x16\x92\x08\x18\xa7\x24\xdf\x29\xba\xd6\x87\xe4\x99\xeb\x98\x91\xf3\x92\x53\xe5\x8a\x62\x09\xf9\x06\x72\x59\x33\xd7\x92\x24\x31\x0c\x13\x50\x66\x4f\xca\x13\xdf\xb9\xc0\x95\xc1\x18\xa1\xd5\x6e\x55\x86\xa6\x5a\xbe\x6e\x39\xaa\xe2\x2c\xcb\x2d\x73\x75\xd7\xc1\x17\x99\x0f\x25\xce\xd4\xcd\x80\xa4\x8b\x77\x4d\xa0\x15\xe7\x7b\x46\xb0\xe2\x99\xa3\x6e\xb3\xd5\xea\x94\x0c\x7c\xb7\x51\xc8\x13\x8a\xf4\x0d\x96\x05\x6b\x13\x53\xe6\x5e\x3e\x9a\x19\x2f\x4d\x70\x15\x9a\xaa\x86\xdb\x7b\x13\x30\x5b\xe3\x1c\xc5\x75\x4a\x0f\xb3\x5a\xf9\x34\xbf\xcf\xc4\x47\x76\x51\xce\x60\xf8\xac\xeb\x95\xd6\x29\x96\xa6\x9b\x88\xdf\x87\x28\x67\xb4\x75\xf5\xf8\x54\x69\x3a\xa2\x9b\x98\x86\x51\xdb\xec\x31\xc1\x32\xe7\x79\x54\xad\x45\x07\x42\x9c\x7b\x6a\xeb\xb7\xfb\x5e\x50\xa8\x0b\x85\x87\x4b\x1d\xfc\xe1\x1b\xeb\x09\x32\x52\xf7\xfd\x9a\x34\x52\xe8\xc8\x05\x4b\xaa\xda\xb9\x7d\x26\xdc\x73\x85\x91\x6f\x1c\x4f\x09\x33\xd9\x85\x8c\x13\x3f\x58\x97\x54\x95\xdc\xc6\x4e\x37\x08\x9e\x2c\x8d\xb7\xc5\x73\x52\x0e\x87\x76\xe3\x5d\x0a\x56\x2f\x5b\x37\x5d\xdb\x7f\x14\xb8\x73\x3f\x1d\x0b\x6f\x59\x6e\x8c\xba\x92\x2d\x9e\x67\x44\x31\xdb\x6f\x5d\x98\x2c\x8a\xcd\x0a\xab\x70\xe3\xaf\xdd\xbb\xc7\x09\x1f\x7c\x7c\x62\x3a\xfa\xa4\x57\x33\xae\xad\x37\xc9\xe3\xbd\xdb\xfa\x5b\xdf\xa1\x23\xe1\xec\x2f\x8b\x3f\x44\xb3\x73\xd9\x8f\xfa\x75\x66\xdf\xdd\xad\x65\x42\x36\xd3\xd8\x5d\xea\xca\x78\x53\x27\xad\x22\xbc\xdf\xde\x75\x2f\x88\xfe\x33\xce\xc9\x1d\x9b\x98\xd2\xeb\xd6\x9e\x77\x21\x6c\x01\x02\x9d\x91\xc4\x7a\x71\x09\x29\xce\xff\x25\x6d\xaf\x28\xc8\xd8\x0d\xe9\xbe\xa8\x59\x8c\xa9\xbb\x19\x38\x2d\xc9\x1d\xc4\xf8\x43\x94\xa3\x65\xae\xd7\x88\xef\x2e\xc3\xaf\x4d\x4e\x61\x52\x12\xa5\x7c\x40\x25\x39\xb8\x43\xd4\xb8\x43\x20\xcc\x2e\x60\x9e\x4f\xc1\x59\xcc\x7f\x74\xdd\xf4\x41\x97\xfb\x9c\x8a\x1e\xbf\x96\xbb\x7b\x90\x69\xed\x2f\x9d\xac\x14\x11\x32\x17\x75\xab\xfa\x96\xbe\xf9\xba\xac\x03\x52\x06\xbb\xfb\xc4\xe6\xeb\x32\xbd\xe7\xa3\xda\xfc\x45\xca\xf8\xad\xa0\x5c\x34\xcd\xf5\xb5\x39\x76\xc5\xb5\x0e\x15\xd2\x4e\xa3\xcb\x20\x4a\x33\xf7\xbe\xed\xd2\x0c\x69\xaf\x57\x22\x11\x0a\x91\xaf\x38\x17\x97\x06\xfd\x5a\x74\x88\xe4\x2a\x9e\xa5\x0b\x96\xdb\x12\x6f\x58\x0f\x15\xa7\x74\x54\x91\x82\xbf\xe1\xe9\x5b\xbe\x53\xa4\x18\x31\x31\x12\xcb\x8c\xa6\xff\xfd\x36\x7e\xa5\xb3\x23\x48\x55\x4f\x7b\x9e\x46\xdd\x3f\xc1\x9c\x7d\x68\x35\x51\x08\x06\xa5\x60\xba\x90\xfa\x27\x2e\x88\xef\xea\xe7\xa3\x4e\xee\x87\x6d\x79\x0c\x5a\xc4\xf2\x9b\xd3\xec\xeb\xaf\xae\x72\x6f\xd1\x35\x46\x48\x56\x18\x80\x82\xa0\xae\x95\x22\x3f\x9e\x4e\xa5\x24\x5e\x61\x19\xf6\x84\x17\x47\x65\x74\x4c\x5f\x50\x34\xf3\x9c\xcb\x22\x4e\x9a\x77\x7e\xa2\x47\xa5\x26\xd5\x9a\x3c\x1d\x92\xe2\x6c\x6c\xbd\xfb\x40\x63\x70\x96\x68\xd9\x67\xea\x4e\xd3\xea\x46\x74\x4f\xba\x58\x4e\xba\x92\xef\x22\xbc\xc5\xbf\xb4\x69\x4a\x9c\x3b\x9e\x27\xb6\x2b\xef\x3d\x9c\x03\x4f\x55\xab\x4a\x16\x3b\x63\xe1\xdf\x9f\x12\xd9\x73\xf1\xb0\x41\x65\x86\x73\x23\x32\x41\x48\x21\x4b\xea\xe3\xef\xb7\x1b\x09\xec\x59\x0f\xb8\x36\x2a\x89\x42\x8e\x79\x6c\x5a\xec\xf6\x1a\x22\xe7\x7c\x7b\xeb\xa2\xb8\xdf\x89\x99\x72\x49\x8a\x5f\xa4\x60\xb3\x0c\x26\xe2\xce\xfc\x3a\x38\xe9\x9b\x17\x34\xce\xf6\xcb\x57\x48\x3b\x5b\x85\xd0\x20\xfa\xa0\x5d\x90\x67\xcd\x3b\x6c\x2b\xb6\x0f\x5d\xc8\x35\x0b\xab\x29\x1b\x30\x19\x7d\x54\xb2\xf4\xc5\xb6\x59\x7b\x1e\xd5\xda\xaf\x71\xae\xe5\x28\x62\xd6\xef\x01\xd9\xe0\x8c\x40\x42\xc2\x98\xca\xa1\xe3\x95\x18\x04\x3a\x20\x42\xf2\xd2\x6e\x7f\x69\x13\x97\xfb\x81\x81\x0e\x47\xa6\xaa\xdc\xb5\x35\x57\x47\xa8\x7e\xd1\xe8\xd0\xb3\x0e\xcd\x44\xb4\x2d\x7e\x82\xed\x99\xbe\x6b\xff\xf7\xe4\x51\xbb\x7a\x95\x8e\x94\xc3\x93\x77\xfb\x54\x63\x92\xa5\x0a\x83\x01\x00\x12\x64\x6d\x73\xb2\x23\x8e\x8c\x47\x38\x90\xf0\x38\x32\x1e\xc8\x41\x61\x4a\x32\x50\x79\x19\x18\xdc\x04\xa6\x80\x90\x93\x43\xc8\x29\x4a\x41\xa1\x08\x28\x94\x06\x4b\x7c\xfe\xbf\x04\xee\x9e\x8e\x44\xa7\xc0\xff\x5f\x90\xe2\xa6\x40\x07\x00\xd0\x39\x16\xf8\x78\x3a\x91\xfd\x71\x24\x3c\xd0\x77\xc7\x11\xf0\x18\x1c\x81\xe8\xe0\x2a\xa2\x24\xab\x2c\xab\x22\x03\x17\x91\x83\xc2\x14\x64\xa0\x8a\x32\x30\x39\x91\xeb\x30\x25\x11\x67\x32\xd9\x0b\x01\x81\xf8\xfb\xfb\xcb\x12\x8f\x69\xf7\x7f\x68\x59\x4f\x12\xe1\x73\xf4\x2a\x00\x00\x9c\x39\x76\x34\x71\xf6\x75\xb7\x47\x20\xb4\x3c\x1d\x7c\xdd\xf1\x1e\x64\x04\x02\x8b\x23\xe0\x7d\x00\xac\xe4\xa8\x0d\xf2\x1f\xcc\x3f\x33\x11\x08\x67\x3c\x91\xe0\x4c\x06\x30\xb8\xdc\x49\x40\x8a\x02\x00\x08\xfc\x5f\xc6\x8c\xe8\x48\x76\x3e\x46\x26\x2a\x2e\xb0\x00\x00\xce\xfe\x0b\xc1\x10\xdd\xf1\xe4\x40\x2f\x3c\xf8\x67\x2b\x88\x97\x07\x41\xa3\xee\xa6\xe1\x7f\xf8\x60\x4c\x88\xee\x78\x00\x53\x50\x54\x91\x87\x2b\xcb\x2b\x28\x9a\x2d\xd4\x1c\xdf\x16\x27\xff\x85\xdc\x20\x06\xe1\x01\x14\x85\x4a\x7b\xac\xbe\x02\x00\xb8\xf9\xaf\x2f\x53\x63\x7d\xe0\x44\x74\xc3\x23\x20\x10\x88\xbb\x07\xd9\xcd\x93\x00\x71\xc2\xf9\x11\x1d\x3c\x3d\x7c\x20\xff\x93\x33\xc4\x09\x0f\xc7\xc3\x15\x94\x71\x30\x39\x39\x79\x79\x47\x47\x27\xbc\x93\x3c\xce\xde\x51\x19\x86\x53\x84\xc1\xf0\xf2\x8e\x8a\xb2\x44\x07\x4f\x59\x2f\x0f\xc2\x33\xc7\xb8\xfe\xe3\xc0\xf4\xb5\x0d\xb5\xaa\x50\x76\x94\xff\x0a\x00\x00\xff\xff\x4f\xb0\x83\xb1\xf5\x0c\x00\x00") + +func staticImgCowyoAppleIcon72x72PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAppleIcon72x72Png, + "static/img/cowyo/apple-icon-72x72.png", + ) +} + +func staticImgCowyoAppleIcon72x72Png() (*asset, error) { + bytes, err := staticImgCowyoAppleIcon72x72PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/apple-icon-72x72.png", size: 3317, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAppleIcon76x76Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x97\x69\x34\x14\xee\xdf\xc6\x6f\x5b\x18\x6b\xc8\x2e\x2a\x09\x99\xd5\x3e\xb2\x24\xbb\xec\xdb\x28\x4b\xc3\x8c\x31\xf6\xc6\x58\x2a\xca\x9a\x35\x22\x09\x89\x84\x0a\x59\xcb\xde\xc8\x2e\x4b\x35\x64\x0b\x65\x10\x45\xb6\x26\x24\xeb\x73\xfa\xbd\x79\x7e\xcf\xff\x39\xff\x17\xd7\xab\xfb\x73\x5d\xf7\xf7\x5c\xe7\x7c\x5f\x7c\x13\x2c\xcd\x0d\xb9\x20\xa2\x10\x00\x00\x97\xb1\x91\x9e\x35\x00\xe0\xe2\x5f\xb1\x31\x01\x00\xd6\x8d\x0b\x44\x00\x00\xcc\x84\xf3\x66\xe7\x01\xa8\x4e\xe5\xd8\xc3\xb2\x00\x00\x18\x02\xad\x0d\x75\x41\xc5\x7b\xf1\x45\x00\x80\x94\xbb\x91\xb5\x19\x00\xd7\x65\x00\x88\x88\x01\x60\x07\x00\x10\xf1\x1d\x80\x20\x04\x00\x4b\x57\x00\x40\x67\x01\x20\x14\x90\xdb\x64\x75\x0e\x00\xc6\x1f\x96\x17\x6d\xf5\x0f\x0f\x0f\xf7\xf7\xf7\xbf\x7c\xf9\xb2\xb8\xb8\xf8\xe7\xcf\x9f\x89\x89\x89\xb5\xb5\xb5\x9e\x9e\x1e\x05\x05\x05\x47\x47\xc7\x9f\x3f\x7f\x56\x57\x57\x9f\x3a\x75\x2a\x20\x20\x60\x7b\x7b\xfb\xea\xd5\xab\x00\x00\x31\x31\xb1\xd1\xd1\xd1\xd0\xd0\x50\x2a\x95\x3a\x37\x37\x07\x85\x42\x39\x38\x38\x9a\x9a\x9a\x2c\x2d\x2d\x19\x18\x18\x92\x93\x93\xab\xaa\xaa\xd8\xd9\xd9\x19\x19\x19\xd3\xd2\xd2\xbe\x7d\xfb\x86\x44\x22\x8d\x8d\x8d\x7f\xfd\xfa\x75\x70\x70\x40\x22\x91\xf0\x78\xfc\xee\xee\x6e\x7f\x7f\xbf\x80\x80\xc0\xd0\xd0\xd0\xfa\xfa\xba\xb6\xb6\xb6\x88\x88\x08\x1a\x8d\x5e\x59\x59\xc9\xcf\xcf\x67\x66\x66\xe6\xe3\xe3\x3b\x7a\xf4\x68\x71\x71\xf1\xf8\xf8\xb8\x94\x94\x54\x50\x50\x10\x2f\x2f\xaf\xa0\xa0\xe0\xde\xde\x9e\x97\x97\xd7\xc5\x8b\x17\xf5\xf5\xf5\x43\x42\x42\x5e\xbf\x7e\x0d\x81\x40\x1a\x1b\x1b\xe1\x70\x78\x46\x46\xc6\xe6\xe6\xe6\xf2\xf2\xf2\xf7\xef\xdf\x97\x96\x96\xe8\x74\xfa\xc6\xc6\x86\x92\x92\x52\x62\x62\xa2\x83\x83\xc3\xce\xce\x4e\x49\x49\x09\x0c\x06\x9b\x99\x99\xf9\xfc\xf9\x73\x6b\x6b\xeb\xc3\x87\x0f\xa3\xa2\xa2\x2c\x2c\x2c\x0c\x0d\x0d\x35\x34\x34\xce\x9e\x3d\x2b\x27\x27\xa7\xa2\xa2\x72\xfe\xfc\x79\x53\x53\x53\x32\x99\x9c\x92\x92\x52\x51\x51\x51\x53\x53\xc3\xcf\xcf\xdf\xdb\xdb\xab\xa3\xa3\xf3\xf4\xe9\x53\x2e\x2e\xae\x98\x98\x98\x8e\x8e\x8e\xe8\xe8\x68\x4e\x4e\x4e\x26\x26\xa6\x23\x47\x8e\x1c\x3b\x76\x4c\x59\x59\xd9\xdd\xdd\xbd\xb0\xb0\x70\x7a\x7a\x9a\x42\xa1\x64\x67\x67\xab\xaa\xaa\xfe\xf8\xf1\xa3\xb4\xb4\xd4\xda\xda\x5a\x46\x46\xc6\xd9\xd9\xf9\xde\xbd\x7b\x6f\xde\xbc\xa9\xad\xad\x35\x37\x37\x17\x12\x12\x32\x32\x32\x72\x73\x73\x0b\x0b\x0b\x4b\x48\x48\x28\x2a\x2a\x7a\xf2\xe4\x49\x4e\x4e\x4e\x6c\x6c\xac\xad\xad\xed\xb9\x73\xe7\x4e\x9c\x38\xc1\xc2\xc2\x22\x2f\x2f\x1f\x19\x19\x59\x56\x56\x76\xed\xda\xb5\xca\xca\xca\xf8\xf8\xf8\xae\xae\x2e\x6e\x6e\x6e\x49\x49\xc9\xd3\xa7\x4f\x6b\x6a\x6a\xba\xb8\xb8\xbc\x7f\xff\xfe\xf9\xf3\xe7\x5b\x5b\x5b\x93\x93\x93\x2d\x2d\x2d\x12\x12\x12\x6a\x6a\x6a\x03\x03\x03\x75\x75\x75\xcf\x9e\x3d\xf3\xf1\xf1\x31\x33\x33\xc3\x60\x30\x57\xae\x5c\x59\x58\x58\x70\x75\x75\x45\xa1\x50\x06\x06\x06\xbf\x7f\xff\xfe\xf8\xf1\x23\x0f\x0f\xcf\xf5\xeb\xd7\x1b\x1a\x1a\xca\xcb\xcb\x3d\x3d\x3d\x4f\x9e\x3c\x79\xe3\xc6\x0d\x27\x27\xa7\xdc\xdc\xdc\xa9\xa9\x29\x61\x61\xe1\xa4\xa4\x24\x56\x56\xd6\x82\x82\x02\x7b\x7b\x7b\x1b\x1b\x1b\x04\x02\xa1\xa5\xa5\x35\x38\x38\xe8\xe1\xe1\xd1\xdc\xdc\x2c\x2b\x2b\xbb\xba\xba\xfa\xf2\xe5\xcb\xb1\xb1\xb1\x3b\x77\xee\xa8\xab\xab\xb3\xb1\xb1\x05\x06\x06\xce\xce\xce\xce\xcf\xcf\xdf\xbd\x7b\x77\x78\x78\xf8\xc5\x8b\x17\x7d\x7d\x7d\xdd\xdd\xdd\xe2\xe2\xe2\x23\x23\x23\x6d\x6d\x6d\xf7\xef\xdf\x7f\xf4\xe8\x91\x95\x95\x55\x7d\x7d\xbd\xb4\xb4\xb4\x9f\x9f\x5f\x67\x67\x27\x81\x40\x38\x73\xe6\xcc\xcd\x9b\x37\x15\x15\x15\xdf\xbd\x7b\x17\x1c\x1c\x7c\xfc\xf8\xf1\x07\x0f\x1e\xdc\xbe\x7d\x1b\x8b\xc5\xde\xba\x75\xeb\xf1\xe3\xc7\xe9\xe9\xe9\x71\x71\x71\xde\xde\xde\x76\x76\x76\x7a\x7a\x7a\xbe\xbe\xbe\x1f\x3e\x7c\xf0\xf7\xf7\xcf\xcc\xcc\xa4\xd1\x68\x9f\x3e\x7d\x7a\xf5\xea\xd5\xdb\xb7\x6f\xb3\xb2\xb2\xf2\xf2\xf2\x74\x75\x75\xbf\x7e\xfd\x7a\xf9\xf2\xe5\xf0\xf0\xf0\x4b\x97\x2e\x11\x89\xc4\x36\x9d\x84\xbe\xbf\xfb\xe2\x66\x6a\xa8\x07\xe2\x59\x24\x8c\x00\x00\xec\x01\x46\x8e\x81\x00\x00\xa3\x7f\x64\xd0\xeb\xad\x05\x00\x1b\xbf\xb1\xde\x79\x5b\x4c\xc7\xbb\xac\x6b\x4e\x36\x0e\x82\x3d\xfe\x52\x52\x96\xc9\x67\x20\x06\x79\xbc\x8e\x27\x35\xda\x39\x82\xa4\xad\x94\xdc\xf8\xea\xa2\x22\x62\xfb\x4e\x9a\x1e\xf5\x61\x7c\x7b\x32\x31\x4a\xb6\x18\xa6\x57\x02\x91\xef\x62\x60\xbe\xaf\xab\xc3\xa2\x2f\xc6\x51\xeb\x25\xc7\x40\xee\x8e\xe8\x62\xa1\xa6\x2d\x3e\xaf\x1d\x2d\x79\x14\xbc\x3c\xb0\xa7\x0e\x7f\xd8\xc9\x73\x97\xe5\x20\xeb\xcf\x7e\x10\x69\x6d\x66\xf7\x4b\xf3\xb7\xa9\xc0\x55\x96\x82\x43\xef\xb4\xe4\x64\xc2\x11\xa9\x87\x59\x2d\xd5\x84\xec\xec\xcb\x03\x6c\x5b\x29\xf3\x3e\x89\x3b\x5d\x0b\x20\x68\x35\xf9\xca\xaf\x08\xaf\x62\x54\xf9\x37\x26\xdf\xb6\x8b\x18\x01\xb1\x56\xc1\x52\x9f\xcb\x1a\x8f\xe1\x39\xec\x03\x5f\x18\x5a\x07\x8d\xb1\x28\x41\xa6\x88\x97\xfd\x9c\x57\x2a\xfc\x80\x6d\x48\xec\xe2\x0c\xbb\xcb\x38\xdf\x9a\x48\x6b\x58\xc0\x53\xf8\x41\x45\xbb\xd3\x0e\xeb\x04\x4a\x3b\xf3\xc7\x86\xe3\xf2\x7c\x55\xbb\xa4\xbd\xfc\xb2\x9d\xf8\xd2\x12\xc0\x28\xde\x3f\x33\xd6\x1b\xd5\x53\xcf\xa3\xc4\x05\x79\x8a\x90\x09\x99\x89\xd3\xf9\x2e\x1e\x0a\xbf\xe8\x17\xe7\xee\x7d\x2a\x17\xab\xbf\xce\x7c\xc6\x0f\x37\xdc\xf4\xfb\x51\xa1\xbb\x56\x00\x46\x52\x43\x1b\xa6\xd5\x16\x76\xc1\x2d\xdd\x4e\xea\x46\x94\x2b\x0a\x3a\xdf\xa1\x67\x64\xf7\x75\xc5\x60\xe0\x04\x75\x14\x06\xd5\x4c\x7f\xb1\x38\xf3\x6a\xf1\x94\xa1\x29\x83\xc4\xd7\x27\x73\x0d\xbc\x36\x18\x91\x6c\xc7\x87\x2f\x03\x8d\x44\x6f\x72\xa6\x3a\x59\x18\xd1\x16\xda\x32\xc3\xfe\x7c\x28\xdf\xd8\x1c\x3d\x3e\x09\xe0\xe3\x2d\x85\xd4\xb7\xd1\xe5\xdb\x82\x26\x83\xe6\x32\xc0\x45\xbc\xca\x3b\xa4\xb7\xc7\x3b\xcc\x64\x7a\x1f\x67\x31\xfb\xe5\xd3\xee\xd6\x83\x62\x86\x78\x6e\xf1\x64\x4b\x92\x6c\x58\x19\xdd\xc2\x26\xbc\x6d\x85\x17\xcd\xf9\xf3\x38\xbd\xfa\x54\xcb\xb1\x46\x59\x82\x79\x31\xef\xf7\xa8\xc2\x9e\x94\x0f\xfd\x2f\xef\x94\x5e\x5a\xe0\x78\x05\x4d\xd2\x2e\x9b\x75\xf0\x2e\xe2\x4c\xe0\x23\xcf\xa6\x26\xec\x7a\x21\xae\xfb\x92\x3e\xf7\xee\x74\x70\x3d\x13\x4f\xd4\x07\x8c\x1f\x48\x42\x74\xa2\x5a\xe1\xf6\xcd\x2f\xc8\xf1\xd1\xf8\xf6\x85\x85\xf0\x2f\xb6\x0a\xd2\x5a\x2c\xfd\xeb\x67\xbb\xf5\xdf\x19\x47\x4a\x2b\x65\x77\x42\x4f\xdb\x7a\xe2\xaf\x7e\xad\xd0\x79\xe9\xa3\x75\x23\x25\xce\x68\x46\xae\x21\x95\x84\xd6\xe0\x9a\xac\x4d\x08\x8d\x46\xcc\x95\xfe\x2a\xf0\x1d\x74\x5c\xd1\xe5\x75\xa2\x11\x2b\x38\x5c\x1f\xc5\x16\x89\x6b\x1d\xa5\xb5\x2b\x00\xed\x97\xdb\x49\x67\x35\x48\x70\x16\xfe\xfe\x76\xed\x30\x91\x3d\xbb\xd8\x38\x3a\x0b\xff\x6b\x0f\x87\x58\xb9\xc3\x2a\xb4\xb6\xad\xb4\x3a\xa6\xbc\x0d\x45\xe1\xa3\x17\xa7\xcb\xbc\x4f\x59\xc9\x60\x2d\x2f\xe5\xa8\x99\x82\xda\x9e\xe5\xdd\xee\x75\x38\xa9\xb0\x59\x3a\x31\x79\xfa\x0f\x93\x78\xe1\xcd\xf0\x77\x17\xb2\x55\x4c\x69\x94\xc7\x3f\xeb\x6b\xe0\xbe\x0b\xad\x41\x7f\xd2\xe3\x1a\xfd\x2a\x22\x9c\x55\x65\x8f\x73\x6e\x70\x29\x16\x5e\x40\x9a\xad\x1e\xd4\x19\x42\xba\x28\xe1\xa2\x3c\x6b\x87\x2a\x80\x55\xfb\xf0\x61\x7d\x27\xdb\xbe\x71\x7a\xa3\xb1\x19\x69\xe7\xd7\xae\xa3\x75\xab\x54\x4e\x54\x43\xbd\x18\x4e\x6a\x45\xbc\x0a\x23\x3e\x97\x22\x4b\x90\xea\x66\xaf\xde\xfd\xb0\x06\xe3\x8f\x9a\xec\x6a\xab\xaf\x81\x20\x77\x56\x8b\x20\x11\xb0\xc9\x07\x63\x35\x4e\xd9\xad\x9c\x7e\xd3\xa5\x94\x77\xd9\xc2\x02\xfe\x65\x31\xf7\x3f\x4f\x73\x35\x46\x56\x11\x53\x59\x43\xf2\xe2\x83\x1f\x18\xd9\x6a\x54\x8e\xd4\x71\x79\x17\x4b\xbd\x0e\x39\x8c\x0c\x75\xcb\x7a\x6d\xc1\x9d\x8a\x03\x30\xf7\x76\xd9\x9a\x16\xc5\x89\xba\xd9\xeb\xa2\x47\x72\xe3\x84\x9c\x24\x47\x5a\x29\x26\xe2\x45\x57\x13\x8e\xc6\xef\x0a\x95\x04\x70\x0b\x15\xac\xf6\x90\xe5\x59\x11\xf6\xed\x59\xbd\x02\x9b\xdd\x5d\xb2\xbb\xdb\x56\xec\x54\xfe\x04\x71\xe9\x18\xc2\x96\xc2\x41\x77\x5e\xa4\x20\x6f\xb6\x3c\xf1\xcd\xb6\x48\x3e\x9b\x13\x4e\x44\x4b\x81\xc7\xe0\x3d\x1b\x1b\x45\xfc\x82\x73\x74\x9a\x60\xda\x9d\x25\x43\x5a\xa5\x67\x40\xec\xdc\x6f\x82\xa9\x33\xe5\x58\x49\x37\xfc\xcf\x8e\xbf\xf1\x99\x0c\x7d\x97\xa9\x6a\x83\x6a\x56\xb3\x89\xc5\x5f\x15\xe8\x13\xce\xa4\x4f\x86\xb6\xfc\xb7\xb3\x74\x45\x2b\x8f\x72\x0e\xc5\x5c\x9f\xb9\xa9\xbe\x52\xa7\x02\x99\x1c\xce\x61\x43\xbb\xf1\x74\xf8\xf1\x0d\x15\x97\x0a\xd4\xcb\xb7\x8f\xed\x1b\x87\x3b\x53\x3b\x1d\x93\x58\x28\xa6\x90\x73\xbf\x79\x4b\xec\x19\x27\x4b\x83\xda\x9f\xa8\xd5\x30\x74\x9a\xde\x4a\x1e\x74\x3c\xb0\x80\x53\xf6\x03\x92\x02\x7a\xec\x5b\xe3\xe3\xb3\x5d\xf1\xe7\x6c\x54\x59\x7d\x21\x42\x29\x53\x68\x3e\x28\x9f\x60\xe7\x10\x48\x35\x1b\x7b\xeb\x38\xc4\x24\xc6\xcd\x36\xfb\xdb\x6f\x0a\x0a\xfa\x55\x2c\xe2\xe7\x16\x63\xca\x0b\x02\x73\x30\xd4\xa6\x19\x3d\xbd\x41\x1e\xbc\xb0\xe6\x8f\xbb\xe8\xf3\xb2\xee\xca\x96\x3f\x5f\xbf\xcd\x88\x6c\xd0\xf2\xa0\x93\x30\x99\x85\xfc\x5b\xc9\x01\xf7\x46\x6f\xf7\x5f\x58\x46\xad\x97\x70\x4e\x09\x96\xd4\x6d\x3d\x52\x62\x93\x73\x90\xe1\xec\x90\x1e\xde\xeb\x49\xee\x87\xa2\xb1\xf0\x2b\xbd\xef\x8a\x0c\x82\xbe\xa7\x6c\xbb\xb7\xc4\x09\x2c\x94\x07\x7f\x7f\xbd\xd1\x9d\x34\x63\xdd\xe3\x75\x67\xa8\x3b\xed\x19\xfb\x7c\x63\xa9\x58\xc9\x70\x3d\xc7\x6d\x01\xab\x49\x93\x07\xfb\x45\xea\x83\x92\x49\x71\xa7\x04\xae\x16\x87\x0d\xd9\x7b\xed\x2f\xcf\x3b\xab\x40\x12\x23\x3b\x72\x0a\xa7\x14\x69\x95\x6a\xbb\x9c\x3b\x26\x26\x4a\x81\x5d\x37\xb4\xf7\x24\x36\x55\xe7\xd2\xe7\xa7\x12\x14\x7e\x7a\x70\xe2\x78\x78\xb5\x41\xf3\x13\x64\xdf\x5a\x6d\xbf\xe5\x96\xc9\x4f\x9f\x02\xdc\x6e\x6b\x68\xca\xa4\x7f\x24\x1f\x39\x4f\x76\x75\x78\x35\xa1\x2a\x9f\x23\xbe\xa9\x85\x89\x92\xde\x16\x8b\xd8\x14\x9e\xbf\x94\xcc\xeb\x6f\x23\xd1\x17\x0a\x57\xb3\x5c\xbf\x48\xd9\xa5\x08\x25\xd1\x02\x33\x26\x21\xbc\xbb\xbf\xf4\x30\x54\xf3\x88\x51\x57\xaa\xf6\xd4\x63\x37\xff\xc7\x61\x11\x19\xb7\x56\x43\x21\x08\xc3\xe9\xdc\xad\xa8\x5b\xa7\xbd\x5a\x07\x67\x76\xf2\x4f\xee\x34\xd7\xcb\xe0\x80\xf4\xdd\x32\x1e\x41\x66\xa7\x6c\x1f\x07\x47\xdf\x54\x49\xfe\x42\x69\xb9\xdb\xc6\x29\x12\x03\xdc\x6f\x7e\xd5\x9c\xe1\x42\xcd\xde\x53\x2e\x3d\x55\x78\x63\x5e\xf3\x44\x3c\x66\xec\xdb\x98\x51\x84\x08\x23\x77\x98\xde\xfb\xc5\xfc\xb0\xb8\xf4\x79\x28\x8e\x73\xf4\x96\x85\x78\xf8\x77\xfa\x97\xe5\x1f\x87\x97\x0f\x26\x61\xb0\xcf\x1a\xc1\x97\x9e\xb2\x2f\x0e\xe5\x14\xb8\xfa\x9c\xc6\xcb\x18\x35\xc3\x5a\xe5\xd6\xda\xb8\x0e\x39\x11\x93\xa8\x8c\xe3\x78\x74\x42\xf4\xf6\xd0\x53\xfa\x9d\xb2\x6f\x24\x2b\xe7\xc4\x69\x85\x15\x85\x2d\x7d\x4f\xa9\xcc\xb3\xe3\x07\x9b\x5c\xa8\x0b\xcd\xde\x9d\x41\x61\x65\xc1\xa9\x34\xc9\x13\x12\x8b\x67\x52\x2f\x35\x94\x7c\x2e\x5c\x03\xe1\x85\x79\x55\x88\x40\x4f\xea\x01\x1d\xea\xf2\xea\xbc\x26\x36\x19\xdf\xd4\xe7\x9e\x56\x54\x73\xd9\x42\x78\xe7\x58\x0e\xbd\x16\xfd\x15\x8b\x16\x57\x92\x1c\x48\x83\x8e\x2c\x51\x39\x54\x04\x34\x1d\x3b\xd3\xd9\x5e\xb9\xa0\x3a\x3f\x60\xb9\x2f\xb8\x0a\xbf\xe1\x40\xbf\x7a\xf7\x4d\x5b\x7a\x29\xb1\xa5\xb4\x2e\x92\x6b\x22\xef\x9c\xce\x7c\xee\xb0\xd8\x53\x6f\x33\xf3\x89\xde\x0d\x6e\x19\x5d\x09\xea\xc8\x73\xfc\xf5\xb4\x25\xcf\xf2\x7c\xc8\x47\x94\xa4\x99\xa6\xa9\x57\xf4\x74\xc7\x46\x9c\x88\xc4\xfd\xfa\xc8\x12\x5c\x1a\x44\x72\xf1\x83\x6e\xdb\xc1\x7a\x65\x09\xc1\xe2\xd5\x9c\xf1\x91\x56\x23\xb8\xdd\x23\x6f\xeb\xcf\xb5\x85\x4b\x7e\x2f\x44\x77\xee\xdc\xa4\x6d\x66\xdc\x2b\xa0\xba\x53\x63\xe9\x1d\x19\x25\x62\xc8\x3f\xd3\xb4\x01\x15\x66\x8f\x3d\xde\x0c\xa1\x15\xb1\xa0\x46\x7f\xa5\xfe\x4b\x83\xad\xa2\x63\xed\x59\x27\x14\x3a\xb5\x0a\xe3\x6f\x52\x43\xf2\xfc\x86\x54\xe9\x97\x0f\xdb\x13\xc7\x85\xad\xca\x07\x1c\x8f\xb4\xc5\xcb\xe3\xb6\x44\x7f\x1e\xb8\xb3\x92\x2b\x83\x63\xfb\xe4\xf1\xd6\x11\x69\xd2\x47\x76\x18\x6b\x18\xb9\xa2\x1b\x6b\x3c\xbf\x19\x11\xae\x02\xb1\x32\x7e\x19\x08\x65\xc9\xe5\x01\xe3\x7a\xc3\xdd\x73\xcc\xbe\x4d\xa9\x25\xfe\xbd\x1b\x67\x85\xc3\x5b\xf9\x26\xda\x78\xe6\x7a\xf6\x32\x4d\x0a\xe0\xb9\x24\xa8\xcd\xe7\x15\x2e\x2a\x8b\x9a\x0a\xa7\xe6\xef\xc5\x72\x8e\x91\xdf\xa9\xf1\x9e\xc2\x8e\x98\x36\x72\x66\x06\x05\x25\x50\x57\x1a\xd5\x11\x65\x35\x67\xce\x9b\x2c\x57\x96\xd6\xb5\x46\x6b\x4e\xa9\x67\xf6\x0c\xc8\xf1\x91\x4d\xae\xcf\x57\x23\xb4\x44\xef\x58\x5c\xd0\x79\xe3\xf6\x38\xde\x60\x72\x46\xb7\xc9\xc2\xa9\x2c\x5f\xb8\xef\xa4\x79\xb9\xb0\x2d\x4c\x7f\xa4\x9f\xe6\x52\x34\x1b\x42\x89\xbf\x96\x17\x69\xa2\x48\xd3\x49\x99\xa9\xca\x34\xf1\x0c\xd6\x8d\x2d\xc7\x44\xd7\x98\x2f\x0c\xb7\x87\x79\x0f\xeb\xc6\xba\x30\xb9\xcb\x3d\x68\xe0\x9f\x18\x97\xa5\x93\xe1\xae\xca\x34\xf4\xf0\x95\xc8\xd0\xda\xf5\xe1\x80\xcc\xbd\x89\xc0\xdc\x71\xe6\x91\x39\x3c\x22\x4b\x56\x7a\xcb\xb9\xca\x4f\x14\xb1\x21\xe0\x5d\x99\x83\xc0\xf4\x61\x8f\x67\x73\x0f\xe0\x34\x43\x5d\xbc\xbf\x8a\x95\x1d\x7b\x3b\x47\x79\x5f\x17\x13\xde\xb4\xa6\x7b\xaf\x24\x8f\xa5\xc5\xfb\xe1\xf1\xd2\x63\x7c\x42\x04\x83\xe8\x8a\x52\x62\x35\xaf\x86\xba\x5d\x84\xdc\x21\x6b\x11\x5f\xf7\x1e\x7d\x70\x03\x13\x43\x0f\x34\xcd\x7f\x3b\xff\xb1\xc0\x76\x71\x65\x31\x7c\xee\xd0\xe9\x90\xe5\xa1\x28\x09\x9a\x3a\xcf\x6c\x07\x00\x38\x4d\xd6\xc7\x90\x71\x58\x32\x1e\xed\x4e\xc2\x63\xc9\x78\x80\x42\x20\x55\xa0\x08\x45\x28\x52\xdd\x16\xa9\x84\x46\xa1\xd0\x28\xe5\xb3\x08\x04\x1a\x81\xa0\x21\x93\x29\xff\xc7\xe0\xeb\x8f\x23\x7a\x5c\xfb\xef\x86\x34\x1f\x25\x06\x00\x80\xc1\x5f\x43\xa0\xbf\x07\x39\x04\x4b\xc2\x03\x63\x5f\x2c\x01\x6f\x86\x25\x10\xdd\xbd\xa5\x54\x60\xaa\x30\x35\xa8\xba\x14\x0a\x81\x54\x82\x22\x94\xa1\x48\x94\x94\x15\x52\x45\xca\x93\x4c\x0e\x40\xc3\xe1\x21\x21\x21\x30\xe2\x5f\xda\xf7\x1f\x1a\xe6\x4f\x22\x4c\xdd\x5e\x01\x00\x00\xe1\xbf\x89\xb6\x9e\x41\xbe\x6e\x68\xb4\x9e\xbf\x7b\x90\x2f\xde\x8f\x8c\x46\x5b\x62\x09\xf8\x40\x80\x7c\x76\xd8\x0c\xff\x0f\xe6\x9f\x3f\xd1\x68\x4f\x3c\x91\xe0\x49\x06\x48\x75\x14\x0f\x20\xc5\x02\x00\x84\xfe\x3f\xe3\x40\xc4\x91\x3d\xff\x22\x1f\x5f\x9c\x60\x03\x00\x88\xfc\x0b\x31\x23\xfa\xe2\xc9\xd7\x02\xf0\xe0\x9f\xa9\xe0\x01\x7e\x04\xed\x1a\x7b\xf3\xff\xc8\x31\xb3\x25\xfa\xe2\x01\x52\x49\x59\x4d\x51\x5d\x55\x51\x49\xd9\x61\xbe\xea\xef\xe1\xc3\xf3\x2f\xc4\x86\x78\x1d\x0f\x10\xba\xba\x19\x4f\xb4\x96\x01\x00\xf6\xff\x7a\xb2\xb3\x36\x06\x1e\x44\x1f\x3c\x1a\x0e\x87\xfb\xfa\x91\x7d\xfc\x09\x70\x0f\x6c\x30\xd1\xdd\xdf\x2f\x10\xfe\xbf\x3d\xc3\x3d\xf0\xea\x78\x75\x25\x55\x2c\x12\x85\x52\x54\xc4\xe1\x3c\xf0\x1e\x8a\x58\x37\x9c\x2a\x12\xab\x8c\x44\xe2\x15\x71\xca\x30\xa2\xbb\x3f\x2c\xc0\x8f\xf0\x1a\x97\xd0\xfb\xb7\x30\x63\x7d\x73\xbd\x0a\xdd\x2b\x51\xff\x13\x00\x00\xff\xff\xce\x5e\x37\xc2\x92\x0d\x00\x00") + +func staticImgCowyoAppleIcon76x76PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAppleIcon76x76Png, + "static/img/cowyo/apple-icon-76x76.png", + ) +} + +func staticImgCowyoAppleIcon76x76Png() (*asset, error) { + bytes, err := staticImgCowyoAppleIcon76x76PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/apple-icon-76x76.png", size: 3474, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAppleIconPrecomposedPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x53\x74\x9d\xe1\x16\xae\xff\x38\x59\xb1\xad\xa6\xb1\x6d\xdb\x76\xd2\xd8\xb6\x6d\xdb\x36\x1b\xbb\xb1\xd1\xa8\x8d\xb9\x62\x36\x68\x63\x9e\xb1\xf7\xd5\x3e\xe3\x8c\x73\xf1\x5e\x7d\xcf\xf3\xbd\x73\x5e\xcc\x18\x15\x25\x69\x64\x10\x01\x08\x00\x00\x64\x59\x19\x09\x35\x00\x00\x06\xff\x13\x78\x28\x00\x00\x2c\x20\xf3\x39\x01\x00\x80\xb6\x12\x55\x14\x05\x80\xe6\x24\xc4\x37\x13\x18\x00\x00\x20\xdc\xd4\xa4\xc5\x80\x86\x39\xa2\x33\x00\x00\xc8\xcc\x64\xd4\x14\x01\xc0\x97\x0a\x00\x82\xc3\x01\xe0\x05\x00\x80\xe0\x53\x00\xf0\x60\x01\x80\x73\x63\x00\xe0\xcb\x06\x00\x5c\xe7\xfc\x1e\x55\x01\x00\x80\x02\x54\x14\x34\x24\x3f\x3f\x3f\x5f\x5f\x5f\xdf\xdf\xdf\x3f\x3e\x3e\xde\xde\xde\x4a\x4b\x4b\xf5\xf5\xf5\xdd\xdd\xdd\xd7\xd7\xd7\x6f\x6e\x6e\x12\x13\x13\xf5\xf4\xf4\xc2\xc2\xc2\x4e\x4f\x4f\xfd\xfc\xfc\xfe\xd3\x0e\x0d\x4d\x48\x48\xb8\xbf\xbf\x2f\x27\x27\x07\x03\x03\xc3\xcf\xcf\x7f\x7f\x7f\xbf\xb1\xb1\x81\x88\x88\x08\x0f\x0f\x1f\x1f\x1f\xdf\xdd\xdd\x0d\x07\x07\x57\x5f\x5f\x1f\x17\x17\x07\x05\x05\xa5\xa1\xa1\x91\x93\x93\x03\x09\x09\x29\x24\x24\xf4\xf8\xf8\x48\x47\x47\x47\x4d\x4d\x1d\x1a\x1a\x0a\x01\x01\x01\x0b\x0b\xbb\xb6\xb6\x36\x34\x34\x84\x8e\x8e\x7e\x75\x75\xa5\xac\xac\x6c\x65\x65\xf5\xf4\xf4\x44\x4e\x4e\xce\xc4\xc4\x74\x7b\x7b\x8b\x8b\x8b\x5b\x55\x55\xb5\xb4\xb4\xd4\xdf\xdf\xff\xe3\xc7\x0f\x5b\x5b\x5b\x47\x47\x47\x43\x43\x43\x01\x01\x01\x36\x36\x36\x06\x06\x06\x4a\x4a\xca\x97\x97\x97\x89\x89\x89\xc5\xc5\x45\x62\x62\xe2\xd4\xd4\xd4\x83\x83\x03\x19\x19\x19\x4b\x4b\xcb\xc6\xc6\x46\x24\x24\x24\x02\x02\x02\x5e\x5e\x5e\x0b\x0b\x0b\x76\x76\xf6\x91\x91\x11\x6b\x6b\x6b\x05\x05\x05\x4e\x4e\x4e\x5a\x5a\xda\xe4\xe4\xe4\x84\x84\x84\xde\xde\xde\xf4\xf4\xf4\xe2\xe2\xe2\xa3\xa3\x23\x54\x54\x54\x31\x31\xb1\xad\xad\x2d\x45\x45\x45\x0f\x0f\x8f\x95\x95\x95\x9f\x3f\x7f\x3a\x39\x39\xb9\xb8\xb8\x90\x90\x90\x3c\x3c\x3c\x88\x88\x88\x20\x23\x23\xff\xf9\xf3\xe7\xe2\xe2\x02\x05\x05\xc5\xdc\xdc\xbc\xaf\xaf\x4f\x47\x47\xe7\xee\xee\x8e\x83\x83\x43\x5d\x5d\x7d\x7c\x7c\x9c\x8a\x8a\x0a\x1b\x1b\xfb\xf7\xef\xdf\xdf\xbe\x7d\xcb\xcc\xcc\x0c\x0c\x0c\xbc\xbe\xbe\x3e\x3e\x3e\x3e\x3c\x3c\xfc\xfb\xf7\x6f\x5b\x5b\x9b\xbc\xbc\x7c\x52\x52\xd2\xd4\xd4\x54\x64\x64\xe4\xaf\x5f\xbf\x28\x28\x28\x66\x67\x67\xbf\x7f\xff\xee\xec\xec\x2c\x25\x25\xc5\xc3\xc3\x83\x89\x89\x09\x02\x81\xd0\xd0\xd0\xf0\xf0\xf0\xc8\xc8\xc8\xb4\xb5\xb5\xed\xec\xec\x2a\x2a\x2a\xc6\xc6\xc6\x5c\x5d\x5d\x3b\x3a\x3a\x9e\x9f\x9f\x6b\x6b\x6b\xbd\xbc\xbc\xb8\xb8\xb8\xbe\x7c\xf9\x52\x58\x58\x88\x81\x81\xb1\xb9\xb9\x39\x37\x37\x17\x13\x13\x23\x2d\x2d\xbd\xbc\xbc\xcc\xc2\xc2\xf2\xf5\xeb\x57\x23\x23\xa3\x7f\xff\xfe\x65\x64\x64\x68\x69\x69\x6d\x6f\x6f\xe3\xe0\xe0\x78\x7a\x7a\x36\x37\x37\x07\x04\x04\x10\x11\x11\xd9\xd8\xd8\x94\x97\x97\x1b\x18\x18\x8c\x8e\x8e\x82\xc1\x60\x33\x33\xb3\xec\xec\xec\xd5\xd5\x55\x3e\x3e\x3e\x56\x56\x56\x15\x15\x15\x5d\x5d\xdd\x82\x82\x82\x85\x85\x05\x25\x25\xa5\xdc\xdc\x5c\x7a\x7a\x7a\x46\x46\xc6\xae\xae\xae\xc1\xc1\xc1\x92\x92\x92\xf3\xf3\xf3\x99\x99\x19\x53\x53\x53\x09\x09\x89\x9d\x9d\x1d\x04\x04\x84\xf0\xf0\xf0\x93\x93\x93\xb4\xb4\x34\x55\x55\xd5\xa6\xa6\x26\x5f\x5f\x5f\x61\x61\xe1\xf6\xf6\x76\x7c\x7c\xfc\x94\x94\x94\x9e\x9e\x9e\xd8\xd8\xd8\x86\x86\x86\xb3\xb3\x33\x4d\x4d\xcd\xe8\xe8\xe8\xbd\xbd\x3d\x66\x66\xe6\xb2\xb2\x32\x6e\x6e\xee\xf9\xf9\xf9\xea\xea\x6a\x6f\x6f\x6f\x7b\x7b\xfb\x90\x90\x90\xc9\xc9\xc9\xe0\xe0\x60\x07\x07\x87\xd6\xd6\x56\x13\x13\x13\x2c\x2c\x2c\x1a\x1a\x9a\xce\xce\xce\xe9\xe9\xe9\xcb\xcb\xcb\x88\x88\x08\x41\x41\xc1\xe1\xe1\xe1\xa8\xa8\x28\x7f\x7f\xff\xdd\xdd\xdd\xac\xac\xac\xca\xca\xca\xba\xba\x3a\x71\x71\x71\x37\x37\xb7\xbc\xbc\x3c\x51\x51\x51\x49\x49\xc9\x9a\x9a\x1a\x63\x63\x63\x1f\x1f\x9f\x96\x96\x16\x35\x35\x35\x59\x59\xd9\xa2\xa2\xa2\xfc\xfc\xfc\xa0\xa0\x20\x52\x52\xd2\x81\x81\x81\x8d\x59\xfd\xb4\xff\x1c\x91\xa9\xbc\xb4\x04\x10\x0d\x43\x2c\x03\x00\x00\x82\xb3\x8c\xae\x1b\x00\x00\x32\xff\x8d\xd4\x94\x9d\x10\x00\x10\x8d\xc8\x4a\x88\x6a\x78\x6f\xfc\x11\x44\xf0\xd6\x90\xfc\x75\x8f\x02\x83\xb4\x06\x95\x98\x2d\xb2\x16\x62\x15\x8c\x2b\xc3\x22\xe2\x2c\x4a\x96\xf8\x97\x22\xf2\x55\x85\x2b\x44\x13\x97\x15\x8d\x05\x3e\xda\x95\x22\x94\x08\x21\x8a\x00\x3e\x0b\x92\x10\x17\x07\x1d\xa1\x93\xac\x3e\x14\x8d\x09\x46\x43\x02\x5a\x14\x0b\x46\xd5\x40\x12\xcb\x63\xfd\x7e\xf7\xfd\xb3\xe1\x3c\xd0\xcd\x3c\xd1\x7c\xf8\xe7\xd7\xcf\xcf\x75\x52\xd8\x9f\x79\x67\xda\xcb\x86\x5e\x9a\xda\x50\x6f\x5c\x81\x84\x03\x09\x9f\xd2\xe2\xaa\x58\xed\xa5\x26\x34\x16\xd6\x44\x52\x8c\x60\xf1\x37\x65\x44\x93\x0e\x50\x30\xe9\x90\x3a\xd4\x50\xb5\x91\x57\x40\x46\xad\x4a\xce\xa3\x48\x98\x2d\xf7\xa8\x46\x23\x44\x20\xeb\xc2\x9e\x94\xa5\x19\xa7\x9d\xa6\x25\x12\x47\x57\xcc\xfa\xfa\x6c\xfb\xbb\x49\xf1\x30\x63\xf3\x4f\x92\x89\xf3\x60\xb5\x45\x63\x58\x22\xbe\x25\x0b\x4f\x7d\x81\xba\x89\xcf\x23\x76\xac\x27\xe2\x5d\x00\xae\xee\xfa\xda\x84\x12\x1f\xc4\x01\x66\x21\xb8\xd4\x12\xe6\x2f\x16\x15\x13\xff\x98\x34\x4e\x70\xaf\x6e\xf3\xaf\x17\x31\x4b\x0c\x9e\xc2\xc8\x7b\xfa\xd5\x8d\xa2\xc8\x7b\xf7\x66\xa2\xe6\x7a\x24\x29\x12\x65\x99\x2f\xf5\x54\x44\xd7\x6f\x5e\x3a\xe2\xf0\xf4\xd3\xbc\x63\x9a\x3e\x8a\x43\xc6\x26\xb1\xce\xbe\x09\x27\xb0\xb0\x5d\xe1\x68\x81\xc2\xf3\x3b\x1d\x23\x6e\x9d\xf3\x0f\x59\x91\xdc\xcb\x47\xca\x4e\x91\xa8\x95\xbb\xe8\x34\x9d\x3c\xb9\xb8\xe0\xaf\x6e\xd0\x7f\x13\x53\x45\xce\x17\x70\x68\xe1\xbd\x8a\x0d\x2b\x28\xc9\x61\x1c\xc1\x4d\xec\xe5\x25\x0f\xb9\xdc\x55\x7f\x3f\x15\x31\x27\xf1\x2f\x95\xac\x2c\x8e\x4c\xa7\x46\x24\xc4\x15\xfb\x6c\x64\xa2\x7e\xe0\xa5\x25\xad\x6d\x67\xb8\x23\x72\x54\x6f\x8b\xd6\xb3\xed\x46\x11\xf6\xda\xc8\x90\xb3\x87\x76\x0d\x8e\x7f\xd4\xa5\xb2\x85\x80\x88\xcd\xd0\x25\x30\x11\xde\x49\xae\x35\x57\x4a\x84\x10\x54\x31\xd1\x4f\x35\x64\xd1\x17\xf6\xbe\x95\x92\x0d\x93\x6f\xcf\x58\x1e\x88\xb5\xb1\x8b\x15\xa5\x27\x4e\x7a\xd4\x94\x0b\x14\x8b\x6b\x7f\x4d\x7b\x72\x24\x0a\x0c\xf3\x78\x34\x87\xc4\x2a\x85\x85\xeb\x93\x56\x3e\x66\xc9\xe9\x93\x3d\x32\x87\x44\xf6\x65\x1d\x31\xef\x7b\x75\xd6\x71\xb8\x14\x52\xe6\x43\x97\x4a\x0d\xdb\xde\xcd\xfa\xb4\x30\x0b\xaa\x4e\xe7\x28\x17\x95\xa2\x62\x27\xae\x37\x0a\x8a\x0c\x7a\x5f\x74\x83\xc3\xf2\x0e\x8e\x2f\x87\x23\xfd\x72\xf8\xa1\x41\x8b\xbe\xb0\x87\xea\x9f\xe0\x60\x0f\x6c\x4d\x21\x85\x09\x0a\x2c\x84\xfd\xd2\xf4\x86\xb6\xa1\xb6\x5b\x00\xdb\x5b\x12\xd4\xfb\xfc\x69\x72\x0e\x89\x14\xaf\x28\xda\xcb\x56\x0a\x21\x6f\x9b\x16\xdf\x53\xb5\x3c\x78\xe3\x9b\x44\x2e\x87\xe5\xe5\xcc\xd9\x33\x1e\x01\x48\x0e\x64\x72\xed\xbd\xbb\x03\x20\x51\x9a\x43\xc5\x99\xf7\x3a\x6d\x6b\xaf\x1e\x1f\xc9\x7f\x22\x21\x50\x24\xc3\x48\xa1\x44\x92\x44\x03\x7e\x5b\xb3\x35\x74\x1a\x47\xc6\x9b\x6b\x34\xc1\xd4\xd1\x08\x85\x0c\x70\x90\xf0\xdd\xb8\xee\x7a\x72\x73\xa7\x87\xac\x66\xec\xa9\x69\x13\x15\xd5\x42\xa4\x48\xf8\xa8\xc4\xe3\x69\xc5\x39\x00\x4b\x0a\xde\xc3\x37\xee\x64\x3e\x05\x31\xfe\x5c\x41\x18\x96\xf5\x48\x8e\x3b\x77\x39\x19\x8e\xf0\x19\x7a\xe1\xc6\xd5\x6c\xb6\xfb\x48\xab\x9e\x1d\xcf\xf7\xb6\x33\x9b\x59\xfe\x79\x19\xb9\x22\xfc\xbc\xbc\x74\xee\xba\xc7\xa6\xc0\x56\x7e\x8f\x82\x7f\x4b\x5b\x56\x76\x15\x3a\xcc\x9a\x62\x9b\x48\x30\x85\x14\x5d\xfa\x10\x02\xca\xf9\x1b\x13\xb3\x35\x38\x90\xc8\x64\xa4\x57\xe4\x04\x04\x7a\x9e\x5c\x2b\xd0\x37\xbe\xed\xfa\xc7\xb3\x45\x5a\x0b\xfc\x05\x30\xa4\xb7\x88\x20\x47\x87\xd6\x9b\x2b\xd1\x67\xe8\x74\x35\x4b\x22\x0d\xbc\x56\x78\x4d\xcd\x2d\xd3\x60\x4a\x73\x16\x8d\x5b\x09\x30\x53\x8c\x08\x64\xaf\x88\x75\x7f\x34\xa2\x46\x65\xc2\x98\x6c\x7a\xc5\x41\x91\x6e\x66\x3a\x4d\x02\x6d\x14\x72\xd4\x88\x09\x5e\x25\x27\xd2\x08\x79\x90\x5d\x2c\x2a\x2f\x5b\xd6\x67\xf7\x72\xaa\x58\x6e\x31\x03\x8f\x75\x2c\xe6\xb7\x7d\x67\xde\x35\x23\x9e\x35\x7a\x8c\x14\x30\xbf\xcf\x17\x67\x61\x07\x39\x28\x67\xb1\x84\x0c\xa4\x82\xc8\x01\x9c\x2f\xdf\x33\x5b\xa6\x72\xe7\x52\x18\x0c\xee\x5d\x73\x81\x99\x10\x95\xdf\xc2\x08\xd6\x51\xe2\x62\xb3\x41\x8c\xcd\x43\xd2\xe1\x71\x4f\xc3\xe7\xda\x0d\x33\x60\xfb\xc6\xac\xbf\x38\xd8\xab\x6a\xfa\x23\x30\x5f\xa5\x8d\x49\xa2\x58\x29\x70\xd0\xbd\x97\xd3\xe0\x56\xe4\xa0\xb1\x88\xa5\x4a\x7a\x8e\xed\x9d\x0f\x40\x87\x50\x86\x8b\x50\x57\xd0\x42\x36\x1b\x65\xbc\x5f\x2e\x9b\xf0\xe1\x0b\x83\xe7\xe0\x65\x84\x61\x4d\xcd\xe0\x05\x9c\xb9\x15\x32\xf5\x07\x32\x20\x43\x54\xc1\x77\x35\x2a\x3c\x17\x31\x67\xc3\x59\x06\x99\xf3\x31\x35\x34\x28\xe8\x3a\x27\x33\x50\x17\x21\x07\x3d\xe4\x28\xa2\x7b\xad\x55\x4e\xf6\xbd\x25\x1d\x6b\xc2\x63\xf3\xdf\xaa\xf9\x68\xbe\x73\x95\xc4\x29\xa2\xe5\x91\x24\xe7\x9d\xc5\xb9\xfe\x23\xf0\xf8\x71\x5f\x39\xab\x6f\x6a\x6a\xda\xd0\xb8\xdb\x6a\x24\x3a\x82\x22\x2b\x9b\x83\x72\xd1\x5d\x4e\x99\x88\xfa\xd9\x0d\xae\x11\xcb\xff\x69\xb5\xed\x81\x5f\x3d\x4b\xfa\xba\x11\x57\x03\x8d\x2e\x2f\x21\xaf\x1b\xf1\x7d\x14\x0a\xca\x1f\xdd\x3b\xf5\x53\x2e\x8a\x3a\x87\x38\x65\xcc\xa1\xa3\xca\xd1\x2f\xc0\x3b\x25\xd8\xf0\x3e\x73\xbf\xa7\x52\x70\x80\x58\xd8\x12\xed\x06\xb2\x63\x8d\x18\x06\xb3\xb6\xfe\x73\xf3\x80\x53\x8a\x1a\xd7\x37\xac\x1c\x59\x81\x44\xb0\x6b\x8a\xd0\xa9\xff\x2d\x8b\xe9\x8f\xd5\xe4\xb6\x48\xb2\xc2\x5b\xf7\x29\x65\x15\x21\x5e\x09\xeb\x61\xa7\xd7\x55\xed\xe3\x4a\x28\xcf\x57\xe5\xb6\x0c\xcc\x75\xc7\x7e\xc2\x61\x9a\x7b\xb6\x48\x8d\x35\xcc\xa4\x63\x98\xf5\x35\x02\x24\xf0\xa7\x27\x9a\x8e\x44\xed\x58\xde\x46\x2f\x87\x97\xab\x83\x5d\xe0\x2f\x8d\x1e\x14\x33\x4b\x7d\x52\x0a\x70\xeb\x8b\xc7\x06\xbf\x7b\x51\x16\x89\x8a\xa6\x21\xca\xf5\xbb\x7c\x61\xdb\x67\x06\x54\x0d\x24\xc2\x07\xec\x88\x49\x93\x62\x1a\xcf\xbd\xeb\xa0\x47\x56\xa0\xf3\x15\xef\x1a\xf8\x8f\x97\x2b\x8c\x1b\x79\x6d\x97\xc6\x0f\x69\xb7\x1b\x2c\xef\xbc\x52\xfd\xa8\x2d\x01\x32\x22\x39\x25\x0e\xc9\xe8\x10\x94\x28\x29\x67\xae\x43\x8d\xd9\x20\xb9\xaf\xd9\x2e\x5d\xbb\x3d\xbc\xd2\x3b\x86\x06\x9b\x62\x3e\x6f\x72\x96\x6e\x0e\x4b\x14\xd7\x7d\x41\x4b\x8a\x6d\x3d\xe7\x76\x82\xf0\xad\x62\x5e\x4e\xa6\x7b\xef\x01\xc2\x93\x62\x1d\xee\xe0\xaf\x0c\xfd\x89\xf7\x53\x6f\x89\x76\x46\x7e\x0d\x17\x1d\x55\x98\x8c\x39\x96\xf0\xa7\x8a\x99\x01\xf1\x4b\x98\xbc\x99\x54\xf4\x1f\x0b\x23\x96\x5a\x60\xfc\xd4\x42\x44\xde\x38\x37\x3c\xb2\xaa\x65\x17\xb8\x94\x5a\xf2\xa7\x59\xca\x0f\xfb\x82\x1f\xd8\x5b\xff\xa6\x9b\x93\x32\x7b\x07\x59\x47\x95\x6f\x62\x3c\xe7\x37\xcb\x10\x30\x7e\xcf\x50\x2d\x23\xc8\x1a\x74\x04\x7c\x97\xb6\xf8\x77\xcf\x99\x9c\xb4\x56\x96\x76\x71\x8f\xdf\xf4\x2c\x01\xa1\x1a\x8f\x66\xbb\xdf\x4e\xc5\x9a\xe3\xd3\xe5\x0b\x7b\x0a\xfd\x29\xcb\x4f\xb7\x89\x52\x38\x9e\x0f\x49\x9a\xf6\xa1\x27\x98\xdd\x11\x11\xa4\x34\xf0\x9e\x88\x73\x4b\xf2\x46\x35\xfa\x43\xbe\xbf\xd8\xba\x4a\xbb\x51\x20\x43\x74\x30\x0b\xdd\x93\x99\xe1\x46\x93\x91\x90\x43\x62\xff\xe8\x33\x87\xca\xed\x5f\x17\x65\x5d\xb9\x39\x0b\xee\x92\x53\xc1\x60\x44\x4c\x24\x06\x8c\x69\x34\x8c\x92\x5f\x2e\xff\x96\xa1\xa3\x44\xe4\xf8\x15\xf4\x0b\x67\x00\x16\x97\xc0\x72\x47\x0a\x50\xf8\x30\x98\xba\xdf\xc6\x06\xcb\x5b\x39\xa6\x99\x5a\x91\xcd\xb4\xba\xc0\x43\x1f\xb2\x51\x0c\xb5\x6e\x09\x2b\x76\x91\x9c\x3b\x3a\xaa\x0d\x2a\x18\x56\x43\xcd\xb7\x95\x3b\xc7\x30\x1a\x19\xb8\x8d\x41\xab\xb6\xea\xbd\xe4\x8c\xb0\x33\xe6\x0f\xe5\x10\x14\xf7\x4f\x66\xa6\xdb\x2f\xbe\xd4\x7b\x3a\xbb\x4a\x59\x99\x5e\x20\x44\xb2\xab\xb0\xaf\x37\x66\xcb\x0a\x1a\x2a\x41\x2d\x07\xf1\x5e\xde\x49\x1c\x38\xf1\xf7\x44\x4c\xca\xdc\x10\xd0\x0a\x5f\x60\x37\x8f\xc0\xd6\x07\x79\x11\xa1\x81\xd3\x85\xd4\x44\xde\x91\xf6\xbc\x9a\x2c\x29\x0f\xc4\x9e\x27\x24\xd7\x38\xae\xeb\xc3\x0b\xaa\x73\x3f\x1a\x3a\x0e\x13\xfa\x8b\x50\x5f\x87\x29\xc7\x8f\x84\x5a\x95\x68\x55\x62\x89\x8b\xd3\x14\xe0\x83\xb3\xcc\xdd\x24\x4a\x20\x76\xd5\x98\x13\xb2\xfa\x4f\x0d\xde\xfb\x4e\x06\x88\xe8\x2d\x55\xb7\x26\x1d\xb3\x95\x16\x31\xd9\x6f\x4b\x30\x1c\x1b\x41\xea\xa6\x08\x50\x61\x63\xf1\x1e\x25\x64\x0a\x46\xb7\x8d\x99\xb8\x24\x45\x2f\xcb\xd5\x8d\x88\x7a\xe6\xd3\x78\xe7\xda\x5d\x45\xa2\xb4\xe1\x76\x19\x70\x76\x4f\xff\x1a\xb1\xbb\x9c\x5d\xbc\x4b\xda\x23\x6b\x21\x3d\x5a\x25\x06\xa9\x1d\xfd\x1a\xcf\xee\x77\x3f\x4e\x15\x12\x16\x63\xf3\x87\x67\x0d\xf3\xad\x40\x84\x13\xea\x37\xa3\xe3\x54\x2f\x3a\x79\x7c\xf9\x55\x51\x5b\x8d\x53\xf5\x85\x97\x15\xdb\xb2\x6f\xba\x78\xa2\x72\xb9\x6b\x23\x66\x15\x0c\xc2\x04\x72\xfa\xaf\xcd\x6b\x4e\x6f\xe4\x5a\x1e\xd0\x66\x30\xfc\x86\x1a\xe0\xf0\xb8\x75\xf3\xd0\x0a\x27\x8f\xbd\x99\xd5\xed\x30\x01\x97\x7b\xf5\x63\x2e\x5c\xb5\xd5\xa1\x8f\x2b\x2b\x33\x6c\xeb\x17\x18\x17\xcc\xdd\xf0\xa8\x81\x29\xf4\xcc\xdc\x13\x3b\x04\xd4\x2a\x30\x39\x21\x3f\x36\x51\x20\x16\x54\x04\xf3\x44\x29\x44\xef\xf4\xab\x05\xcf\x75\x49\xca\x4f\x93\xc7\x36\x98\xfc\x26\x50\x05\x74\x0f\x7d\xec\x82\xd5\xb7\xb4\xb2\x8a\x92\x86\xf5\xf0\x96\x58\xfb\xd8\xc7\x37\x8c\x4a\x94\x5d\x25\x5c\xba\xbc\x32\x97\xa7\x34\x51\x70\xe5\x57\x54\x39\x7a\xb9\x2f\x65\x37\x00\x34\x66\xfe\xd3\x58\x7a\x96\xd6\x81\xde\xba\xae\x7e\x63\xa7\xcb\x0d\xe2\xa6\x73\xcc\xc8\x89\xf7\xcf\x83\x90\x34\x79\xf4\xfd\x21\x1f\xa1\x26\x1b\x1a\x27\xbb\xa0\xd5\xcd\x0a\xd6\xbf\x73\x70\x37\x5a\xee\x8a\x4e\x06\x0c\xf7\xf4\x27\x65\xf3\x24\x4b\xd6\x27\xbd\x9d\x67\xd8\xae\xf5\xfc\x44\xc8\x18\x7c\x62\x31\x29\x6f\x86\x70\x7a\xf0\x4e\x13\x50\xdd\x52\x03\xe9\xd2\xc9\x5f\x5d\x65\xe7\x22\x62\xbf\x68\xcb\x1e\x35\x60\x59\x76\xf9\x66\xc0\x33\xfe\x3e\x18\x63\x0e\x1a\x62\x28\x98\x15\xc2\xc3\x5a\xd8\xdc\xe7\xe7\xec\x26\xdd\xa5\x96\x80\xe0\xae\x3b\x79\x6c\xef\xeb\x0c\x21\x54\xcc\xc1\xc2\xd1\xc7\xf4\x46\x89\xb8\xfe\x88\x1d\xaf\x31\x25\xc0\x5a\x7b\xd4\xb7\x93\x93\x78\xee\x3c\xe3\xe0\x3e\x19\x39\x3a\x45\x4c\x76\xc6\x52\xe7\xce\x91\xf5\xe3\xdf\x31\x43\xb4\x7e\xc7\x98\x9b\xf3\x94\xb1\x4b\x54\xce\xe1\xda\x49\x3a\x3b\xff\x80\x0c\xba\xfb\xf0\x9c\x91\x39\x90\x58\xb7\xfe\x80\x6d\xfb\x64\x70\x55\x05\x0b\xb5\x94\x6d\xc0\x38\xe7\x44\x28\xd5\xfd\xa0\xdc\x86\x2c\x0a\x4b\xa7\xf5\xc9\x60\xa9\xf3\x5b\x97\x84\xff\xc3\x76\xe3\x21\xbf\xd9\xff\x34\x62\xfd\x12\xdc\xb4\xb8\x50\xba\xb4\xb5\x60\xa7\xe2\x11\x28\xce\xf1\x53\xa1\xb9\xb2\xe6\xd5\x8d\xac\xeb\x78\x6f\x8d\xb2\x77\xdd\x80\x4c\x41\xd8\xd2\xd1\xdf\x81\x43\x66\x3e\xe9\xf3\x4c\xf2\xd5\x7f\x87\x14\x13\xfd\xce\x76\xe2\x7c\x13\x59\x54\x20\x3c\x74\x48\xcf\x98\x2e\xf4\x54\x47\x98\x67\x3b\x39\xdc\xb8\xe5\x19\x84\x0b\x6a\x32\xe5\x84\x7b\x09\xae\x76\x09\xfe\xe2\xea\xfb\x7b\x22\x94\x0a\x81\x34\x35\xc8\x1e\x37\x6e\x2d\x77\xf8\x8b\xe2\xcb\xb9\x98\x4d\x29\xa1\x8c\xd9\xc9\x67\x49\x89\xc5\xf9\x7e\x52\xfd\x8b\x07\x73\x31\xfe\xcc\x89\x00\xad\xf1\x34\x73\x37\x54\x6e\x72\xab\x1f\x53\x40\x01\xcd\xc0\xd7\x78\xfb\x21\xc8\xf0\x80\xef\xef\x88\x32\x90\xae\x97\x48\x9e\xfe\x8c\x46\x32\xd8\x52\x9d\xc6\x31\x5b\x35\x39\x12\x17\x25\xc6\xbd\x51\x4e\x43\x49\x60\x0d\x96\xe5\x1f\xd7\x97\x1d\x0c\xb7\x36\xb7\x66\x43\xcd\x2e\xbf\xc6\x69\x2d\x8a\x41\x0b\xfd\x03\x97\x68\xe6\xc1\x87\xa3\x86\x89\x5c\x8f\x1d\x12\xcf\xef\xe8\xeb\xaa\x13\x02\x5b\xa8\x8a\xad\x58\x47\xa9\xfd\x98\x97\xf0\x6c\x01\x31\x84\x44\x86\x1b\x8b\x8e\x82\x49\x0b\x94\x44\x04\x18\xd4\x43\x27\x69\x89\xfe\x49\x75\x3c\x8a\xcb\x6a\x0d\xf0\x8f\x9a\xa3\x8b\x12\xb9\x73\x43\xbe\xa5\xc1\xfc\xbe\x67\x8c\x26\xf6\x79\xfb\x76\xf5\xdb\xc3\xfe\x34\xb3\x7e\x0f\x62\x10\x57\xb9\x07\xc3\x45\x03\x69\x88\x85\x9d\x4c\x9a\x61\xc2\x33\x60\x92\x3e\x15\x97\xd7\x19\xe9\xd5\x9f\x67\xa6\x3a\x0d\x70\x25\xfe\x17\x04\x26\x1d\x9b\xb5\xae\xa7\x9b\xf9\xe2\xc6\x48\xe4\x25\x07\xd7\x78\x71\xe1\xc5\xb6\x2f\x96\xe1\xbb\xe3\x2f\x31\xef\x87\x7e\x5b\xf0\x61\x85\x79\xc6\x46\xbb\xd2\x56\x5d\xc5\x13\x7f\x18\x02\xed\xaa\xb5\x3c\x6f\x6c\xc8\xac\x5f\xbf\xc9\xb3\x7f\x85\x71\x9d\x4f\x9a\xf7\xf6\xd6\x57\x6c\x1b\xd5\x4e\x43\x27\x33\x5e\xad\xfb\xd3\x5b\x37\x1f\xe2\x98\xa3\xe0\x1b\xb5\x1f\xd1\x5c\xe6\x79\x34\xb2\xc6\xf0\xf5\x6c\xd9\xe8\x9d\x23\x6e\x4a\xf7\x46\x77\xbf\xe7\x43\x02\x7e\x0b\x28\x24\x5b\x19\x38\x06\xf1\xe2\x4a\x5a\xf3\xae\x6e\x2b\xd4\x8e\xfb\x32\xb2\xfb\x36\x5e\x9f\x2a\x53\x67\xc4\x42\x52\x63\xbe\x5f\x79\x10\x27\xd3\x41\x9b\x87\xd6\x12\xdb\x13\xf4\xa9\xe4\xbc\x6c\xe5\x5f\x30\x17\xe5\xa5\x58\x44\x68\x64\xdf\x25\x63\x6e\x2a\x13\x85\xe7\xda\x30\xb6\xc6\xcb\xed\xf1\x1c\x50\xe3\xdc\x3f\xa9\xac\x8d\x11\x2c\x6d\x90\x83\x95\x8b\xcc\x65\xa1\x61\x8e\xa3\xbf\x96\xc3\xdd\xd9\xaf\x24\x53\x2a\xd1\x40\x5d\xbc\x10\x86\xbb\x4f\x4f\xe8\xe3\x74\xc7\xa4\x70\x60\x8e\xb3\x6b\x78\xcb\x53\x21\xdd\x4a\x1e\x16\x1e\xe8\x2b\x76\xbc\x2b\xff\x90\xb9\xe9\x51\x2b\xe5\xe2\xa6\x76\xd8\xe5\x5f\x6b\x51\xd1\xe8\x8a\x21\x1f\xc8\xeb\x10\x67\x8a\x54\x2b\x46\x0d\x90\xe4\x79\x95\xe9\xa0\x97\x9e\x75\x0b\x4d\xe2\x42\xb6\x21\x54\x21\x8a\xef\x6e\x08\x14\x68\x1d\xa6\xfe\x12\x55\x39\x8c\x61\xb9\x36\xe5\x82\xb1\x47\xa6\x67\xe6\x79\xb2\xe9\xf1\xaf\x82\xbf\x5c\x5c\x99\x9e\x92\xee\x81\xe9\x76\x51\x13\x81\x09\x2a\x4e\x9f\x40\x19\xb1\xe3\x69\x8d\x11\x2d\x3c\xb3\x84\x99\xec\xae\x39\xa8\xbf\x2d\x6d\xa5\x74\x6b\x21\x4e\x3b\x45\xe4\xa3\x69\x47\x31\xe7\x90\x93\x1c\xd2\x70\xb1\x45\x70\xf4\xf2\xcb\x87\x25\x66\xb9\x85\xa5\xd3\x96\xb0\x45\xb1\x5f\xb7\xfb\xda\xcf\xfd\x45\xde\x92\x2a\x76\xee\x7e\x5d\xe8\x1d\xb1\x26\xc1\xb8\xce\xd6\xa7\x1a\x12\x3a\xc3\x90\x3e\x48\x88\x8f\xd2\x14\xd6\xf9\x24\xd1\x0e\x94\x75\x4d\xe4\xe8\x30\x2d\x87\x65\x33\x44\x09\x02\x4f\xc4\xe9\x6e\xdb\xba\x9c\x19\xb8\xe6\x84\xa7\x97\xc6\xed\x34\xcd\x97\xf2\x7b\x31\x24\x6d\x10\x55\xb4\xd3\x9a\xfd\x95\x52\xbb\x04\x96\xc6\xc9\x37\x9e\x2c\xfb\x79\x5f\xea\x9e\x5a\x4c\xc8\x5b\x1b\xc3\x55\xd3\xbb\x32\x7b\x93\xdf\x2d\xc8\x26\x14\xd5\x27\x8b\x52\x60\x2a\x66\xdc\x50\x15\xaf\x70\x0a\xd6\x77\xe7\x38\x4b\xc3\xa2\x3c\x7d\x4d\xf4\xa2\x5b\x3d\x26\x6c\x94\x0f\x17\x3d\x85\x2a\x2b\xa1\xf3\xc6\x6e\xaa\x1b\x03\xec\x6c\xd7\x9e\xdb\x08\x8c\xc0\x3f\x6e\xe1\x83\x3e\xa0\xab\x70\x8b\x3f\x7d\x3b\x93\xcf\x6a\xdd\x98\xed\xd3\x52\xe8\x9f\x72\x3a\x5b\x41\x46\x89\x33\x35\x7f\x03\x8a\x5e\x71\x03\xb3\x30\xd0\x7f\xf5\x36\xa9\x75\x19\x83\x43\x8d\x8f\x75\x9c\x23\x89\x7d\x2f\x0a\xb6\x93\xaf\x3d\xe1\xab\x39\x10\xf2\x31\x68\xa2\x67\x05\xe9\x04\x65\x28\x6b\xf5\xd8\xf8\xc9\x28\xb4\x28\xa4\xa5\x19\x94\xbf\x0f\x2b\x47\x8b\x9c\x10\x99\x04\xd4\x1c\xc9\x60\xc1\x14\xf5\x13\x2b\x0d\x18\xdc\x8a\x88\xfc\x6e\x8c\xc8\x5c\x88\xbb\x7b\xeb\x81\x74\x70\x49\x6a\x4d\x92\xb2\x8c\xe1\xa0\x11\x61\x37\xcf\xf6\xf3\x94\x3f\xcd\x44\x44\x98\x2d\x35\xe8\xbc\x51\x37\x06\xbe\x18\x33\x25\x28\x50\x19\x85\x61\x46\x8b\x84\xd0\xeb\x0d\xed\xb2\x1d\xbf\xf5\x6d\x7b\x61\x30\x91\xef\x8b\xe8\xe9\xc8\x16\x6e\xf9\xfe\x11\xda\x3e\x82\xd4\xfd\x50\x78\x74\xb5\x32\x91\xc7\xb7\xa1\xa1\x50\x92\x81\xe6\x19\x85\xe3\x2e\x95\xcd\x6d\xbb\x5c\xf6\x72\x2b\xb6\xaf\x6c\x23\xaa\x7e\xb7\x2d\x7a\xe6\x60\xcc\xb3\x2b\xd9\x77\x14\x46\x4d\x47\x87\x87\x59\x51\x29\x3c\x3f\x89\x36\xff\xcb\x89\x97\x65\x2b\x6b\x83\xee\xe7\x03\xb7\xad\x9d\x02\xd2\xbd\x93\x7f\x0c\x67\xdb\xc4\xc2\x83\x30\xd2\xeb\x43\xaf\x21\x87\x12\x04\x3b\xce\x83\x6c\x97\xf6\x1e\xb5\xe8\xe8\x20\xe1\xab\x55\xea\xf0\x02\x8e\x1a\x78\xf8\x8d\x3e\xa8\x63\x23\x60\x2c\x73\x70\xf8\x5f\x48\x18\xd3\x64\x13\xc0\x9d\x81\xf5\xd9\x97\xb4\x6c\xee\x3c\xba\x7c\x1f\x25\xea\x93\x1b\x19\x89\x09\x48\x90\xa8\x53\x02\x29\x69\x75\xf9\x8b\xac\xbf\x02\x5a\xa7\x14\x50\x8c\xa6\x7b\xe9\x5e\xe5\x24\x21\xa6\xde\xfd\x71\xa3\x8e\xa6\xa2\x93\xf9\xa4\xf7\x46\x61\xe7\x70\x94\xf0\x94\x1a\xa3\x15\x7c\x38\x2b\xf7\x17\x77\xf5\xa3\xa1\x37\xf5\xc2\xeb\x89\x2b\x37\x7b\xa5\x9c\xbe\xbc\x86\xd8\x0e\x85\x62\x84\xef\x8c\x41\xce\xd4\xb5\x4f\x8d\x02\x30\x14\x07\xe7\x87\xff\xb4\x19\x3a\xf6\x06\x28\xd4\x67\x4b\x07\x2f\x0e\x31\x3f\x91\xda\x95\x85\x6c\xfb\xb8\x6c\xe6\x72\x49\xfb\xe7\xd2\x1a\xc8\x43\xdb\x4f\x3d\x04\x9d\x15\x92\x0f\x3a\x9e\x58\x3b\x4f\x66\x31\x98\x8b\xae\xdc\x6a\x2b\xa3\xc3\x78\x74\x46\xee\xe5\x6d\xdb\x5a\x0e\xea\x53\x6a\x50\xb3\x3c\xfc\x18\x6c\x5e\x5c\x23\x1b\x28\x87\x9b\xbf\xe3\xc0\x36\xeb\xf7\xf3\xf2\x63\x3a\x78\xee\x6d\x17\x66\x63\xc0\x43\xf5\xbf\x31\x9b\x4f\xc1\x63\x50\x67\x24\x04\x90\x4a\x2c\xb2\x74\xa5\xb9\x8f\xf3\xe2\xb8\x0c\x53\xe6\x91\xa0\x4b\x56\x8a\x50\x9f\x25\xeb\xce\x38\xe5\xd1\x28\x8f\x59\xab\x70\xdc\xe6\x8b\x84\x7c\xe2\x3e\x8a\x21\x50\x4c\x73\x8a\x2e\xf2\xbb\xde\x2b\xe2\x3c\x3e\x33\x49\x96\x6b\x71\x66\xf3\xfd\xca\x98\xc7\x2c\x29\xd4\x2d\x59\x0e\x0d\x8f\x0e\x86\x8f\x74\x16\xde\xdf\xca\x62\x5b\x17\x7b\xf0\x1f\x5e\x56\x6c\x28\x5e\x0b\x17\x13\xae\xd5\x08\x69\xed\x56\x90\x72\x4f\x85\xbd\x74\xd3\x1d\xac\x85\xe4\xf4\x05\xa5\x62\x3c\xf4\x4d\xfd\x7a\x94\x84\x84\x28\x88\xcd\x40\x0b\x74\xbd\x21\x2a\x42\xbe\x33\xe6\xd4\xa8\xdf\x58\x3e\x30\x0d\xf9\x63\xff\x5b\x88\x14\xc9\xfd\x49\xc9\x72\x73\xed\xa7\xf6\x78\xf4\x5d\xc6\xbd\x4c\xd8\x05\x49\xa5\x44\x4e\xc6\x31\x3f\x3e\x82\x7e\xa8\x02\xf9\x8c\xb4\x9c\x3d\x57\x45\x38\x7b\xcc\x4e\xf5\x06\x77\xd2\xca\xda\x5c\x66\x46\xdb\x04\x96\x77\xe8\xd4\xe8\x41\x9c\x50\x0e\xf3\xdc\x56\xd8\x05\x83\x33\x0c\xbe\x02\x17\x2d\xa4\x41\xfd\xd0\x20\x4a\x35\xb7\xfa\x0f\x8e\xeb\x00\x70\x7f\xda\x07\xb4\x50\xe5\xaa\x30\x19\xdb\xbe\xc6\xa1\xa1\xc0\xac\x45\x13\x39\x46\x92\xae\xd3\xb4\x7f\xf1\xa3\xb6\x26\xde\xe3\x65\x4a\xa7\x90\xb7\x0f\x96\xe4\xe6\x17\x13\xa4\x9a\x05\x97\x4a\x1a\x42\x42\x9a\xdf\x29\x81\xc9\x87\xc9\x8c\x0a\xa3\xfe\xb9\x05\xdf\x1f\x95\x5a\x57\xb2\x29\x31\x98\x0d\x1f\x82\xf7\x3f\xeb\xbe\x84\x0a\x64\xc5\x97\x74\xa3\xab\x40\xf3\x5d\x7e\x61\xf4\xa1\xc0\xb1\x87\xbe\x0d\x35\xfe\x83\x9b\x9e\x70\xae\x72\x9a\x71\xfa\xf1\x63\xb2\x25\xd1\x15\x16\x1a\xf9\xdf\xc5\xf3\x42\xfa\xb7\x16\x6e\x05\xf8\x62\xe5\x43\xa9\x62\x12\xda\xfd\xd5\x41\x7c\x0d\x31\x9e\xbd\xf8\x49\xd5\xa5\xfb\xfa\x0c\x99\x2b\x85\x81\x57\xca\xea\xc2\x8e\x5a\x31\xfb\x4b\x37\x44\x88\xf8\x4b\xba\x23\x4a\xea\x8c\xcc\x75\x53\xee\x8b\xf0\x5f\xd7\xf2\x14\xca\xd4\x56\xda\xa3\x77\x7f\x52\x8f\xb8\x60\xed\x84\x9b\xb0\xce\x4a\x45\x95\xac\xd2\xcd\xb5\xeb\xad\x2b\x57\x8d\x4a\x86\x1b\x6d\x70\xaf\xbe\xf1\x6d\xa8\xc9\x81\x70\xc3\xf0\x78\x85\xd4\x09\x20\x41\xcb\xb2\x9b\x3a\xa8\xca\xd0\x3d\x98\x16\x44\x21\x6f\x6a\xdf\x6a\x11\x3a\x03\xc3\x79\x6a\x2b\xc4\xfe\xb4\x3a\x7c\x3c\x0f\x12\x3e\x1f\xa9\x22\xd2\x61\x71\xe6\xd9\xf0\xb4\xf4\xa0\xe0\xd4\x95\x0c\xfa\x8b\x19\xcb\xd1\xc6\x55\x8f\x14\xe3\x84\x0f\xfa\x2a\x43\xcf\x25\x3b\xcb\xca\x33\x21\xfb\xa9\x71\xad\xa8\x32\x62\x93\x38\x89\xee\xbe\xae\x82\x17\x58\x55\xf6\x66\x0c\x62\x87\x9a\xa5\xda\x4f\x37\xf9\x7e\x4a\xe1\x17\x69\xc6\xa6\x6a\x14\x1f\x51\x68\x64\xa7\x2e\x2f\x26\xd4\xc0\x4a\x4b\x63\x20\x2b\x12\xea\x80\xbc\x52\x7b\xb2\xe0\x9d\xe1\xca\xd9\x0f\x56\x7a\x12\x66\x1a\x92\x1d\x10\x99\xee\xe7\x59\xf9\xb5\xbe\x52\xb6\xe4\x99\xc7\xd6\xe0\x3a\x5e\x85\x16\xc3\x19\x77\x15\xad\xa4\x2c\x11\x6b\xe5\xfb\x5c\xa6\x43\x16\xc1\xd3\xba\xff\x03\x83\x9f\xed\x24\xd3\xdf\xf9\x9a\x44\x8c\xa2\xc8\x15\x34\x28\x29\x5b\xce\x4b\xe8\x60\x61\x02\xdb\x19\xb8\xe1\xec\x90\x65\x52\x79\xa3\x16\x91\xd6\x88\xe3\x43\xbb\x5c\xab\xf3\x62\x77\x0f\x22\x53\xb5\xef\xa2\xf5\xeb\x91\x61\xbe\x11\xef\xc0\x13\xa0\xe0\x88\xba\x85\xf5\xc9\xdb\x14\xe3\xab\xf1\x12\x16\x96\x24\xb7\x20\x13\xa3\xe8\x78\x86\x25\x08\x8a\xde\xbe\x7c\x78\x4a\x80\xe5\xc0\x15\xe0\x60\x4a\x0d\x72\xbb\xc9\x21\x57\x2f\x9f\x20\xa5\x08\xd9\x75\x0d\x48\x93\x5c\x6e\x2a\x68\xd1\x21\x04\x07\x99\xf0\x80\xa8\xf3\x86\x1a\xec\x9d\xa3\x97\x01\x8b\x68\x3c\xeb\xa6\xc5\x84\x41\x44\x0d\x7b\x1e\xd9\xa6\xd1\x00\x1d\xce\x63\x54\xff\x7e\x76\x6d\xe9\x64\xc3\x4b\xe3\xb3\xef\x01\xa8\xc3\xc4\x72\xe9\xed\x24\x27\xe3\x66\x3e\x51\x46\xde\x7f\xf7\xfc\xa4\xd0\x1f\x4e\xd0\x42\xe2\x1c\xa1\x51\x92\x10\xd1\x21\x88\xbf\x79\x50\xdc\x10\x93\xb3\x18\x90\xfc\xb2\x83\x51\x22\xa5\x2b\xfd\xfa\xaf\x1c\x57\x91\xca\xf5\x90\xe2\x7d\x8d\x0d\x84\x34\x5b\xae\x46\xa4\x44\x2e\xcc\x78\xab\x1f\x55\xc1\x67\x62\xdd\xcc\x23\x2e\x91\x33\x2a\x5a\xc3\x84\xc1\x87\xce\x87\x50\x90\x21\x60\x4c\x70\xcc\xa4\x04\x01\x32\xc0\xa0\xf6\x47\x3a\x40\x88\xc7\xf6\x13\x4d\x6a\x27\xf1\x7a\x9f\x51\xf2\xcc\x37\x31\xdb\x7e\x79\x4d\xe3\x04\xd9\x5b\xd3\x10\xe1\xc2\xb1\x5f\xf9\x50\x94\x98\x4f\xe2\xb3\xbe\x08\x29\xad\x80\x0a\x8a\x5f\x66\x79\x99\xa8\xfa\x99\x35\xa8\x8e\x3b\x0e\xb1\x33\xad\xb3\x2b\x29\x0a\xed\xbe\x12\x1b\x7d\xd6\x0c\x46\xff\x13\xfd\x89\x97\x3c\x56\x10\x6b\x0f\xc1\xf2\x50\x66\x51\x39\xb3\x9e\x7b\x70\xf7\xc9\x45\x6c\x8b\xda\x0c\xd2\x53\xe8\xb8\x9c\x64\x4c\x67\x5d\xc5\xd6\x16\xb5\x1a\x3f\x51\x58\xca\xc3\xaf\x27\x14\x03\xf8\xaf\xcd\x35\x08\x66\x03\x41\xef\x48\x6c\x45\x0d\x7d\x34\x81\x9b\x0c\x71\xb4\x66\xf5\x8c\x2e\x4d\x97\xea\xea\x02\x42\xdd\xf7\x03\xa4\x09\x98\x08\x7c\xee\x2b\x99\x49\xa8\x3a\xf6\x83\x8c\xa1\x35\xa8\x71\x2a\x78\x57\x9a\xb7\xe1\xca\x03\xee\x3d\x45\x4c\x39\xec\x6a\xe5\xbb\x37\xca\x3b\x3c\x6a\xd0\xbb\xfd\xe2\x91\x26\x0a\xd5\x0c\x0a\x4e\x61\x87\x4e\x1d\x13\xb8\xb8\x6f\xa7\xe9\xb6\x60\xe8\x94\x64\xf2\x50\x5a\xa9\x1f\x9b\x0f\x1f\x06\x8f\x1f\x35\xd2\x42\xaf\x16\x51\x9a\xf7\xc1\xdf\x4c\xb6\x36\x97\x43\xb1\x5e\x9c\x39\x55\x1d\x02\x7b\xa5\x53\x20\xfc\x7c\x0f\x32\xfb\x06\x76\xfc\x6e\x56\x83\x1e\x15\x5a\xf5\x51\x08\xbf\x18\xdb\x8b\xb8\x7c\x17\x93\xfb\x3d\xde\xb9\xcc\xab\xdb\xcf\xce\xb6\x05\xab\x26\xf4\x53\x45\xd2\xb0\x18\xf6\xe0\xaf\xb3\xc3\x25\xca\xef\xd8\x18\xef\xf4\x13\x5d\x04\xeb\x89\x3a\x7a\x39\x56\xee\xe7\x63\xac\xb1\x9f\xee\x11\xed\x0a\x8d\x36\xd6\x56\xf1\x19\x12\xe2\xa5\x34\x52\x7a\x2e\x47\xf1\xe0\xb4\xa4\x92\xe9\x7d\x1e\x19\x25\x31\x08\xb6\xf2\x10\x4d\xeb\x50\x5a\x95\x11\x3a\x2d\x4a\xa2\x96\x4e\x0e\x5a\xc1\x8e\x68\x52\x9d\x1e\x26\xf5\x4c\x12\xf6\xdc\x10\x3a\xc9\x66\x34\xfc\xb4\xbe\xeb\xef\x5f\xe4\xe5\x60\x4f\x38\xde\x73\x73\x43\xac\x99\xf8\x57\xd8\x96\x7e\x0c\xe7\x48\xdf\x1c\x5d\xf1\xe9\xa8\x53\x15\x4b\xff\x64\xfe\x4b\x1b\xf6\x8f\x5f\x05\xc6\x5f\xbf\x8a\x7b\xca\x2f\xaf\x4e\x0e\xeb\x5f\x0d\x1e\xbd\x9e\x7c\x54\xed\x48\x90\xad\x5e\x54\x49\x1b\x4b\x51\x70\x69\x7d\x0f\x43\x78\xeb\x88\xe6\xe0\x8c\x9a\xb2\x11\x31\xbc\x0a\xce\x0d\x02\x4c\x7f\x7b\xfb\xbc\xc6\xb3\x72\x2f\x16\x08\x05\xfd\xab\x65\x47\xe3\xbc\x9b\xd5\x99\x58\x03\x7d\x38\xd1\x78\xc9\xc2\x33\x2d\xdc\x2b\xc9\x5f\x8f\x05\x6a\xe5\xcb\x16\x99\x4c\x15\xc2\x9c\x9a\xdf\x2f\x5b\x19\x44\xa6\xfd\x85\xbf\x08\x9f\xe9\x09\x88\x4e\x39\xe5\xf5\x0c\x9a\x6d\xb4\xcf\xb1\xce\x64\x9a\x97\x2d\xc9\xa8\x95\x11\xdd\x8c\x25\x43\xe6\x65\x62\x4d\x07\x23\x41\x55\x7a\x38\x7d\x8b\xe7\xf7\xb0\x76\x73\xc2\x81\xe4\x51\x85\x51\xb9\xec\x2b\xee\xcd\xc3\x08\xf4\x3d\x03\xc2\x5e\x57\x43\xec\x66\x34\xca\x0a\x90\x60\x9e\x71\x23\x9c\xf4\x99\x18\x84\x16\xf3\x26\xc2\x8a\x13\xa4\x45\xcc\xe1\x4d\x24\x1a\x69\x9b\xee\xc1\xa1\x8b\xb8\x4c\x87\x92\x11\xa3\x85\xe2\xc4\x57\xae\x5e\x7d\x11\xdb\x41\xe3\x19\x81\x9d\xaa\x99\xb4\xa0\xd5\x0e\x95\xec\x2a\x09\xc3\xcb\x5c\xc9\x90\xa0\x34\xd1\x80\x20\x1d\x71\xf1\x2d\x16\x9b\xc3\x1c\xd2\x38\xf0\x42\xb7\x68\x2c\xec\x7d\x92\xc9\x91\x29\xb6\x10\x83\xd4\xca\x8b\xd5\x21\xe1\x8f\xe2\xcf\x78\x88\xe0\x7e\x13\x49\x91\xa8\x4f\x72\xda\x97\xc7\x49\x52\x68\xad\x1a\xd7\x45\x29\x8b\xce\x3d\x42\x50\xaf\x84\xda\xdd\xc1\x24\xc5\x20\xf6\xd0\x17\x3e\x6d\x62\x2d\x2a\x2d\x30\x87\xec\xa2\xb5\x7b\xf8\x42\x71\xdf\x7c\xc8\x39\x0b\x19\x0b\xb4\x85\xfe\x55\xf1\x24\x3b\x2b\x6f\x18\xd7\x0c\x09\xf2\xaa\xca\x1e\x08\xbb\x36\x7d\x82\x09\xd5\x83\xe6\xe6\xdb\xba\x58\x30\x39\x92\x63\x4f\x3d\x8e\xf4\x74\xd9\x02\xda\xf0\x79\xb0\x33\x67\x3c\x7c\x75\xd3\x12\x56\x77\x08\x8d\x3b\xc5\xa0\xaf\xb0\x0d\x77\xa4\xcb\xdc\xb5\x3c\x49\x52\xfc\x96\xca\x99\x00\x5b\xc1\x1e\xfc\x66\xbe\x96\x75\x9f\xc7\xe1\x3d\xde\xaf\x3a\x37\xde\xd8\x12\x37\x13\x7b\xaa\x48\x84\x4c\xe7\x7f\x9a\xe0\x92\x11\x2e\xaf\x70\x3e\x03\x75\xa5\x1b\xde\x5d\xfc\x6e\x72\x8a\x25\x93\x36\x69\xce\x49\xa3\xe0\xbc\x0d\xfd\x04\x39\x7d\x82\x19\x12\x41\xac\x8e\x77\xad\x12\x3a\xec\x14\x7f\xb4\x02\x92\x00\x3e\xa2\xaf\x29\xe8\x0d\x0a\x45\xaf\x12\xcf\xdc\x8b\x67\x67\xa5\xc3\x8c\x1d\x37\xb1\xe4\xf2\xb1\x52\x95\xc9\xd3\x56\xce\xac\xee\x56\xde\x05\xa8\x30\x4a\xe8\xaa\x2b\x09\x28\x08\xba\x57\xbb\xbf\x4d\xdc\xe2\x6a\x8a\x57\xcc\x9b\xcd\xca\x96\xb2\x63\x08\x5c\xa7\x04\xd4\xbd\x71\xa0\xf3\x2e\xf0\x2e\xbd\x35\x8a\xe1\xb6\x6e\xcd\x5a\xb8\x18\x14\x9e\x7d\xf1\x14\x9a\x2b\x3b\x54\x4b\xc9\xb4\xa9\xd3\xe8\x4c\xc4\x06\xff\xaa\x8d\x5c\x1c\xc2\xe0\x13\x98\x97\xfb\x61\x13\x19\x1c\xa8\x14\x33\xff\x39\xb5\x5b\x14\x2f\xa6\xcc\x58\x8b\x94\x47\xd2\xed\x4e\xf8\xae\xba\x6f\x32\x0a\xd6\xb2\x9d\xe2\xa4\x12\xc0\x93\xa9\xc1\xf9\x46\xcd\x79\x8a\xa6\xb8\x08\x99\x8f\xc0\x08\xf7\x66\xbd\x23\x45\x59\x6d\x81\x4c\xbc\x83\x5a\x76\x8c\x75\xa5\xa3\x11\xaa\xe7\x08\x1d\xbe\xc6\x83\x8d\x03\x8d\xb5\x2e\x7c\xe5\xb5\x78\xe1\x48\xbd\xa1\xc4\xf7\xe6\xa9\xcc\x84\x0a\x59\x35\x95\xe7\xc3\x15\xfb\x5e\x5a\x23\xf6\xcb\xbc\x9b\x73\x38\x24\x24\xde\xeb\x24\xb3\xcc\xb2\x6a\x2b\x6c\xae\x34\xbc\xe6\xed\x97\xab\xea\x67\x1a\x9a\x26\xb4\x84\xb5\x85\x2d\x1e\x9a\x8a\x09\x1b\xa2\x57\x72\xf1\x52\xc9\xc8\x73\x93\x47\x86\x04\x49\x87\xcf\x63\x5f\xdc\xdb\x82\xb1\x15\x06\x49\xc2\x0e\x56\x64\x37\xd6\x13\x55\x0b\x75\xdc\x1b\x0a\x36\x53\x14\x3d\x5b\x08\x75\xdc\x88\x4d\x7e\x96\xc3\xe4\xa4\x04\xde\xf0\x1e\x01\x12\x41\x4c\x5e\xb7\x61\xdc\x17\x54\xfd\xa8\xc6\x91\x45\x32\xdd\x28\x66\x59\xda\x87\x68\x2a\x44\x70\xbf\x13\xe5\xe2\xe2\x65\x2e\x82\x76\xd5\xc3\xb7\x6f\x9a\xc5\x8b\x78\x04\x34\x14\x12\x88\x11\x76\xc4\x7c\xf5\xad\xd3\xf0\x65\x31\xc0\x2e\x64\x4b\xb5\x59\xe3\xfd\x38\x0a\xfa\x3e\x8b\xee\xb7\xc3\x39\xf0\x0b\x69\xa9\xca\xd3\x06\xe2\x2d\x67\x75\x4a\x42\x5b\x17\xef\x06\xae\x95\xce\x32\xa5\x5b\x03\x7a\x88\x73\xed\x68\x32\xac\xb6\x45\x77\xc3\x43\x3c\x25\x09\x0c\xbe\xd0\x3f\x1a\x67\xb8\x3f\xe6\x7d\xd6\xd7\xc1\xb0\xe7\x9e\xe5\xdb\x97\xf1\xa9\xc8\x39\xa1\x90\xa5\x19\xf6\x46\x72\x30\x4d\x7b\x2d\x76\xe2\x04\xc3\x64\x8c\x8b\x98\x71\xd3\xba\x7f\xe1\x28\xe1\x08\x96\x6c\xd5\x1e\xf9\x5e\x53\xf3\x63\x6d\xeb\xb5\xef\x36\xfb\xf4\x47\x2f\xd0\x55\xc7\x5d\xdb\x9b\xff\x35\x38\x15\xe6\x61\x19\x1f\xae\x08\xb8\xbc\xd8\x33\xce\x4f\xd3\x13\x4b\xc0\x6c\xf6\x9c\x1a\x05\x96\x0d\x87\x45\x76\x6a\x8f\x67\x7d\x3e\x90\xb0\xe7\x58\x95\x14\x5f\xb3\xe8\xba\x6c\x5e\x2d\x81\xe2\x22\x97\x2d\xff\xed\x9c\x52\x0c\x4e\xb0\x98\x87\x8e\x8e\x69\x95\x91\xc8\x74\x35\xeb\x78\xee\x22\x73\x20\xc1\x69\x91\x12\x24\x05\x58\x3b\xe4\x81\x98\x23\xd9\x45\x30\x7f\x35\x61\x70\xaa\x45\x9c\x37\x59\xe5\x08\x0c\xd1\x13\x72\xbf\xa2\xb8\x08\x6d\x1e\x1b\xc7\x05\xe2\x4c\x60\x69\xd0\xc4\x4a\xe2\xc8\xc4\x29\x39\xd6\x7c\x85\xfc\x3e\x19\x9d\x43\xf1\x2a\x5f\xa0\x30\x86\x89\xdf\xf2\xc0\x85\x06\x11\x13\xea\x91\x37\x24\x94\xe2\xd0\xde\x50\xc6\x7b\xac\x2d\xf1\x23\x00\x99\xcd\xb5\x66\xd6\x47\x48\x93\x9c\x79\xb6\x55\xae\x48\xf7\xb6\x43\xbb\xc7\xf3\x2f\xc9\x85\xe9\xd3\xda\x2f\xca\x45\x3a\xaf\xce\xd6\x2c\xc9\xb1\x47\x60\x63\xac\x04\x7b\x18\xb2\x25\x4d\xc6\x34\x88\x81\x84\xa4\x53\x61\xd8\xa9\x09\xb3\x13\xba\x18\x0e\x59\xcb\x80\x39\x89\x28\x5b\xe7\xef\x58\xc4\xca\x20\xcc\xd2\x45\xa7\xe9\x95\x08\x26\x75\x13\xf1\x1a\xaf\xfa\xc9\xf0\x28\xd3\xaa\xb0\x0b\x14\x4d\xbf\x38\x87\xf0\x78\x9a\xb0\x16\x54\xdf\xda\xe6\x33\xd2\x8f\xea\xc6\xf5\xe3\xd8\x6e\x36\xf1\xa3\x06\xf8\x42\xca\xae\x61\x08\x7c\x25\x6e\x9b\x98\xcd\xb6\xd0\x51\xaf\xbf\x7b\x6e\x7c\xe6\xa2\x13\x32\x3b\x10\xd4\x05\x93\x08\x5e\xcf\x7a\x39\x51\xcb\x97\x3e\x47\x4a\x22\x9d\x99\x7c\x0d\x66\x9c\x1f\x39\x83\x13\xac\x9c\x11\x73\x48\x2a\xb8\x9e\x6d\xe6\xf7\x26\x6d\xe4\x46\x5a\x0b\x15\x94\x6b\x55\xc4\xf3\x1d\x5c\xc5\xfa\x88\x78\x33\xbd\x62\x51\x8b\x04\x09\xc8\x83\xa9\x04\x72\xdf\x04\x78\xbc\x7c\xb8\x02\xae\xd9\xb0\x54\x6b\xf6\xc7\x41\x21\x24\xf5\x2b\xfe\x6b\x2d\x72\xd5\xbf\xc9\xcd\xfe\x84\x0f\xfd\xfd\xf8\x78\x04\xf8\x31\x7f\xab\x82\x29\x0e\x2c\x7f\x0d\xc5\x4c\x48\x6a\x3c\xe6\xc4\xf6\xb4\x4a\x84\xd9\xd6\xac\x21\x5e\xc7\x2d\x12\xa6\xa4\xdb\xff\x30\xee\xe0\x51\xca\xea\x1c\xfd\xac\x08\xf2\xab\xe1\x46\x79\x35\x65\x7d\x0b\x23\x0b\xb2\x61\x27\xa6\xeb\xd5\x31\xe9\x04\x62\x5b\x35\x60\x5f\xb7\x83\x92\x31\x2a\xa1\x0c\x74\x98\x12\xd7\x29\x19\x6f\xbd\xac\x76\x90\xa1\x85\x2b\xb1\xc1\x8e\x18\x5d\x13\xfc\x14\xc2\xdc\xf1\x8e\x22\x63\x84\x95\x27\x31\x08\xda\x9b\xa3\xeb\x2d\xfe\x5d\x82\xca\x1c\x85\x05\x47\x66\xbb\x17\x37\x0d\x97\x7f\x1f\x50\x2f\x59\x3b\x46\xf8\xc2\x8e\x8d\x3b\x35\xb7\x38\xe3\x09\x2e\xf3\xc8\x1b\xab\x30\x96\x97\xf8\x04\x9e\x58\x4c\x8d\xad\x06\xd2\x83\xe5\xc2\xf2\xab\xc6\x4a\x1e\x85\x6f\xa9\x87\xcb\x2c\xf7\xd3\xc7\xcb\x41\xbd\x3c\xb2\xb8\xf7\xb5\xe1\x50\x63\x8f\x1e\xa7\xd9\x54\xd0\x16\x08\x4d\x58\x3a\xcc\x7a\xf4\x1f\xd8\xb3\x3c\x26\x50\x08\x63\x7d\x02\x5f\x0c\xb9\xa6\xe3\x07\x35\x65\x41\x2d\xad\xf4\x9f\xb3\x8b\x91\x87\xa5\xe9\x2a\x4a\xee\x42\x00\x25\x76\x4e\x09\x5d\x3d\x9a\xf4\xf9\x93\xd3\x83\xd6\xa1\x64\xa1\x3f\x63\x96\xee\xea\xdb\x3b\x19\xd9\x5c\x96\x62\xba\x1c\x16\xa7\xed\x02\x8c\x7a\x0d\x31\x28\x82\xb9\x4c\x54\xf8\x82\xe6\xe8\x10\xd4\xe7\x3b\x73\x2e\x73\x50\x9b\xb1\x68\xac\x32\x90\xba\xba\x05\x1f\xcd\x9d\x3a\x59\xff\x25\x31\x41\x97\x5a\x89\xe8\xd2\x08\xdb\xef\x19\xbf\x2a\xc2\x7e\x08\x72\x5c\xcd\x85\xa3\xe1\x1c\xd2\xc5\xe0\xae\x98\xdb\x22\x3a\x95\x2c\x71\xe3\x4a\x4c\xd4\x46\xdd\x06\x8e\xe8\xb2\x07\xd4\xef\x23\x8f\x0d\x97\xb7\xcd\x70\x03\x41\x82\xd6\xde\x9c\x57\x22\xd1\x05\x63\x6b\x81\xc8\xe9\x0f\x3a\x7d\x80\xe3\x03\xcd\xfc\x49\xcc\x07\xf5\x07\x2a\x45\xc4\x91\x30\x0c\x9a\xd8\x88\xe2\xb2\x96\xbf\x4e\x4a\xd9\x0b\x99\xb1\x9f\x12\xd1\xa2\x88\xaa\xed\x7d\xff\x64\xbc\x3e\x15\xe3\x60\x4e\x2c\x07\xa3\x8c\x6e\xae\xfd\x3c\x09\x90\x8c\x03\x19\xb1\x8e\xe0\x24\xcd\x0a\x41\xc8\x9e\x47\xb1\x68\xd1\x1b\xcc\x34\xa9\x19\xec\xab\x24\x83\xf4\xf9\x59\x3c\x1d\xeb\x3e\xa1\x66\xdc\x5a\xf1\xf9\x19\xa6\x1f\xb0\xb3\xa5\xf9\x6f\xec\x22\xae\x83\xe1\x95\xba\x6a\x23\xbb\x43\x1e\x17\x97\xc2\x45\xe0\x32\xd9\x13\x97\x53\x12\x7e\x6e\xaf\x0a\x6b\x0a\x40\x4a\xf7\xd6\xde\x9e\xb9\xc6\x02\xa9\x86\x5e\x46\x06\x26\xf7\xe0\x06\x6b\xf2\xaf\x28\x13\x07\x6a\x57\x5e\xf7\x71\xaa\xa1\xc4\x3a\x9e\x86\xbd\x52\xc8\xed\x0a\x1d\x1d\xc3\x3e\x22\x77\x27\x6e\x8f\x71\xb4\x17\xce\x0f\x95\x9e\x4a\xd8\x41\xc4\xed\xb0\x08\x33\x53\xca\x44\xa4\xc5\xa4\xe1\x41\x37\xdd\x0e\x27\x64\x13\xfd\xfb\x8d\x37\x1a\x60\x59\x0c\xf1\x19\xe6\xf4\x5f\xeb\x93\x50\x36\xd4\x1c\x53\x65\x01\x9b\x46\x7b\x0c\x22\x8f\x4a\xb8\x69\x6a\x82\x2e\x10\x1a\x94\xa7\x68\xda\x66\x7b\xe8\x37\x82\x78\xa4\x6c\xeb\xd3\x88\xd8\x4a\xa2\xc1\x6f\x4f\x61\xce\x11\x76\x73\xf4\x69\x36\x8d\xa2\xd3\x5b\xf8\xc3\xf5\xa7\xea\x7b\x0c\x0c\xc0\xf4\xba\xd2\x03\x5a\xa7\x3d\xc1\xe7\x9a\xf1\xfb\xb0\xbc\xdb\x7b\x22\x27\x69\xe3\x30\xab\xc7\x9e\x76\xba\xe9\xb1\xbb\x57\x45\xea\x96\xe4\xf7\xe1\x54\x06\x36\x4e\x43\x87\x2b\x39\xc2\x52\xcd\xad\x11\x7a\x3a\x08\xc4\xdf\x0b\x7b\xa6\x95\x5d\x8b\xd3\x3d\xd0\xac\x6b\xc5\x52\x88\x91\x05\x1e\x85\x06\xb4\xf0\x32\xa6\x4d\xee\x51\xbd\xe6\x8d\x0c\x61\x0d\x32\xf4\x34\xb5\x02\x37\x14\xb0\xb4\x9f\xe3\x76\xa0\x51\x87\xf4\x0a\x24\xa4\x84\x44\xff\x21\xdd\x1c\x70\x15\x09\x69\x3b\x55\xbf\x19\x33\x05\xa2\xfd\x56\x91\xea\x31\x15\xfa\x22\x01\x81\x6d\xf9\x87\x55\x24\x89\xc1\x11\x6f\xc3\x8a\xfe\x01\x45\xbc\x16\xb2\x53\x69\xc4\x92\x04\x9f\x1e\x45\x78\xdd\x1f\xb1\x01\xf4\xaf\x7a\x3c\xa7\x42\x23\x45\x42\x0d\xe6\xa3\xff\x36\x9f\x1c\xde\x8a\x48\x3e\x11\x69\xd1\x35\x50\xfa\xc2\xb2\x5c\x01\x00\xa0\x74\x97\xd4\x71\x37\x37\x71\xb7\xe0\x33\x73\xb5\x30\x71\xb7\x00\xd8\x58\x58\xb9\x18\x59\xd8\x19\x59\x79\x35\x58\x39\xf8\xd8\xd8\xf8\xd8\x38\xe9\x59\x58\xf8\x58\x58\xc0\xac\xf1\x7d\xff\x97\xe0\xe0\x64\x6e\x63\xe9\xf3\xff\x17\x52\xec\x39\x20\x00\x00\x90\xfa\x8f\xe0\xe6\x64\xe9\xee\x65\xe2\x6a\x01\xc8\x3a\x98\x58\x59\x28\x9a\x58\xd9\x98\xd9\x91\x71\x31\x71\x33\xf1\x30\xf2\x92\xb1\xb1\xb0\x72\x30\xb2\x70\x32\xb2\xb2\x91\xa9\xb2\x72\x91\x59\xbb\xbb\x3b\xf3\x31\x33\x7b\x79\x79\x31\xd9\xfc\x87\x76\xf8\x2f\xcd\xe4\xe4\x6a\xb5\x15\xf9\x07\x00\x00\x00\xef\x3f\x3f\x6a\x58\x7b\x38\x98\xf2\xf1\x49\x38\x99\x79\x38\x58\x38\xba\xf3\xf1\xa9\x98\x58\x59\xb8\x01\xac\x55\x9f\x3f\x98\x01\x00\xc0\xf9\x1f\xe6\xbf\x9d\x7c\x7c\xd6\x16\x36\x56\xd6\xee\x00\x4b\x8e\x26\xed\x20\x00\x00\xd8\xff\x2f\xa1\x6d\x63\xee\x6e\x0d\xb0\x7c\x57\x6c\x94\x07\x00\x00\xff\x7f\x00\x45\x1b\x07\x0b\x77\x1f\x67\x0b\xe0\xbf\x13\x31\x3b\x3b\x5a\x09\xb7\x68\x29\x01\x00\x80\xfa\x3f\x90\xba\x8d\xaf\x05\xc0\x22\x26\x96\x5e\x2a\x74\x09\x00\x00\xc6\xff\x3c\x69\xaa\xc9\x02\x96\x36\xf6\x16\x7c\xcc\xcc\x43\x5e\x71\xf3\xff\xd9\x42\x56\x52\x49\xa2\x41\xcc\x38\xf4\xff\x04\x00\x00\xff\xff\xbb\xd1\xa1\x95\xec\x21\x00\x00") + +func staticImgCowyoAppleIconPrecomposedPngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAppleIconPrecomposedPng, + "static/img/cowyo/apple-icon-precomposed.png", + ) +} + +func staticImgCowyoAppleIconPrecomposedPng() (*asset, error) { + bytes, err := staticImgCowyoAppleIconPrecomposedPngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/apple-icon-precomposed.png", size: 8684, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoAppleIconPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x53\x74\x9d\xe1\x16\xae\xff\x38\x59\xb1\xad\xa6\xb1\x6d\xdb\x76\xd2\xd8\xb6\x6d\xdb\x36\x1b\xbb\xb1\xd1\xa8\x8d\xb9\x62\x36\x68\x63\x9e\xb1\xf7\xd5\x3e\xe3\x8c\x73\xf1\x5e\x7d\xcf\xf3\xbd\x73\x5e\xcc\x18\x15\x25\x69\x64\x10\x01\x08\x00\x00\x64\x59\x19\x09\x35\x00\x00\x06\xff\x13\x78\x28\x00\x00\x2c\x20\xf3\x39\x01\x00\x80\xb6\x12\x55\x14\x05\x80\xe6\x24\xc4\x37\x13\x18\x00\x00\x20\xdc\xd4\xa4\xc5\x80\x86\x39\xa2\x33\x00\x00\xc8\xcc\x64\xd4\x14\x01\xc0\x97\x0a\x00\x82\xc3\x01\xe0\x05\x00\x80\xe0\x53\x00\xf0\x60\x01\x80\x73\x63\x00\xe0\xcb\x06\x00\x5c\xe7\xfc\x1e\x55\x01\x00\x80\x02\x54\x14\x34\x24\x3f\x3f\x3f\x5f\x5f\x5f\xdf\xdf\xdf\x3f\x3e\x3e\xde\xde\xde\x4a\x4b\x4b\xf5\xf5\xf5\xdd\xdd\xdd\xd7\xd7\xd7\x6f\x6e\x6e\x12\x13\x13\xf5\xf4\xf4\xc2\xc2\xc2\x4e\x4f\x4f\xfd\xfc\xfc\xfe\xd3\x0e\x0d\x4d\x48\x48\xb8\xbf\xbf\x2f\x27\x27\x07\x03\x03\xc3\xcf\xcf\x7f\x7f\x7f\xbf\xb1\xb1\x81\x88\x88\x08\x0f\x0f\x1f\x1f\x1f\xdf\xdd\xdd\x0d\x07\x07\x57\x5f\x5f\x1f\x17\x17\x07\x05\x05\xa5\xa1\xa1\x91\x93\x93\x03\x09\x09\x29\x24\x24\xf4\xf8\xf8\x48\x47\x47\x47\x4d\x4d\x1d\x1a\x1a\x0a\x01\x01\x01\x0b\x0b\xbb\xb6\xb6\x36\x34\x34\x84\x8e\x8e\x7e\x75\x75\xa5\xac\xac\x6c\x65\x65\xf5\xf4\xf4\x44\x4e\x4e\xce\xc4\xc4\x74\x7b\x7b\x8b\x8b\x8b\x5b\x55\x55\xb5\xb4\xb4\xd4\xdf\xdf\xff\xe3\xc7\x0f\x5b\x5b\x5b\x47\x47\x47\x43\x43\x43\x01\x01\x01\x36\x36\x36\x06\x06\x06\x4a\x4a\xca\x97\x97\x97\x89\x89\x89\xc5\xc5\x45\x62\x62\xe2\xd4\xd4\xd4\x83\x83\x03\x19\x19\x19\x4b\x4b\xcb\xc6\xc6\x46\x24\x24\x24\x02\x02\x02\x5e\x5e\x5e\x0b\x0b\x0b\x76\x76\xf6\x91\x91\x11\x6b\x6b\x6b\x05\x05\x05\x4e\x4e\x4e\x5a\x5a\xda\xe4\xe4\xe4\x84\x84\x84\xde\xde\xde\xf4\xf4\xf4\xe2\xe2\xe2\xa3\xa3\x23\x54\x54\x54\x31\x31\xb1\xad\xad\x2d\x45\x45\x45\x0f\x0f\x8f\x95\x95\x95\x9f\x3f\x7f\x3a\x39\x39\xb9\xb8\xb8\x90\x90\x90\x3c\x3c\x3c\x88\x88\x88\x20\x23\x23\xff\xf9\xf3\xe7\xe2\xe2\x02\x05\x05\xc5\xdc\xdc\xbc\xaf\xaf\x4f\x47\x47\xe7\xee\xee\x8e\x83\x83\x43\x5d\x5d\x7d\x7c\x7c\x9c\x8a\x8a\x0a\x1b\x1b\xfb\xf7\xef\xdf\xdf\xbe\x7d\xcb\xcc\xcc\x0c\x0c\x0c\xbc\xbe\xbe\x3e\x3e\x3e\x3e\x3c\x3c\xfc\xfb\xf7\x6f\x5b\x5b\x9b\xbc\xbc\x7c\x52\x52\xd2\xd4\xd4\x54\x64\x64\xe4\xaf\x5f\xbf\x28\x28\x28\x66\x67\x67\xbf\x7f\xff\xee\xec\xec\x2c\x25\x25\xc5\xc3\xc3\x83\x89\x89\x09\x02\x81\xd0\xd0\xd0\xf0\xf0\xf0\xc8\xc8\xc8\xb4\xb5\xb5\xed\xec\xec\x2a\x2a\x2a\xc6\xc6\xc6\x5c\x5d\x5d\x3b\x3a\x3a\x9e\x9f\x9f\x6b\x6b\x6b\xbd\xbc\xbc\xb8\xb8\xb8\xbe\x7c\xf9\x52\x58\x58\x88\x81\x81\xb1\xb9\xb9\x39\x37\x37\x17\x13\x13\x23\x2d\x2d\xbd\xbc\xbc\xcc\xc2\xc2\xf2\xf5\xeb\x57\x23\x23\xa3\x7f\xff\xfe\x65\x64\x64\x68\x69\x69\x6d\x6f\x6f\xe3\xe0\xe0\x78\x7a\x7a\x36\x37\x37\x07\x04\x04\x10\x11\x11\xd9\xd8\xd8\x94\x97\x97\x1b\x18\x18\x8c\x8e\x8e\x82\xc1\x60\x33\x33\xb3\xec\xec\xec\xd5\xd5\x55\x3e\x3e\x3e\x56\x56\x56\x15\x15\x15\x5d\x5d\xdd\x82\x82\x82\x85\x85\x05\x25\x25\xa5\xdc\xdc\x5c\x7a\x7a\x7a\x46\x46\xc6\xae\xae\xae\xc1\xc1\xc1\x92\x92\x92\xf3\xf3\xf3\x99\x99\x19\x53\x53\x53\x09\x09\x89\x9d\x9d\x1d\x04\x04\x84\xf0\xf0\xf0\x93\x93\x93\xb4\xb4\x34\x55\x55\xd5\xa6\xa6\x26\x5f\x5f\x5f\x61\x61\xe1\xf6\xf6\x76\x7c\x7c\xfc\x94\x94\x94\x9e\x9e\x9e\xd8\xd8\xd8\x86\x86\x86\xb3\xb3\x33\x4d\x4d\xcd\xe8\xe8\xe8\xbd\xbd\x3d\x66\x66\xe6\xb2\xb2\x32\x6e\x6e\xee\xf9\xf9\xf9\xea\xea\x6a\x6f\x6f\x6f\x7b\x7b\xfb\x90\x90\x90\xc9\xc9\xc9\xe0\xe0\x60\x07\x07\x87\xd6\xd6\x56\x13\x13\x13\x2c\x2c\x2c\x1a\x1a\x9a\xce\xce\xce\xe9\xe9\xe9\xcb\xcb\xcb\x88\x88\x08\x41\x41\xc1\xe1\xe1\xe1\xa8\xa8\x28\x7f\x7f\xff\xdd\xdd\xdd\xac\xac\xac\xca\xca\xca\xba\xba\x3a\x71\x71\x71\x37\x37\xb7\xbc\xbc\x3c\x51\x51\x51\x49\x49\xc9\x9a\x9a\x1a\x63\x63\x63\x1f\x1f\x9f\x96\x96\x16\x35\x35\x35\x59\x59\xd9\xa2\xa2\xa2\xfc\xfc\xfc\xa0\xa0\x20\x52\x52\xd2\x81\x81\x81\x8d\x59\xfd\xb4\xff\x1c\x91\xa9\xbc\xb4\x04\x10\x0d\x43\x2c\x03\x00\x00\x82\xb3\x8c\xae\x1b\x00\x00\x32\xff\x8d\xd4\x94\x9d\x10\x00\x10\x8d\xc8\x4a\x88\x6a\x78\x6f\xfc\x11\x44\xf0\xd6\x90\xfc\x75\x8f\x02\x83\xb4\x06\x95\x98\x2d\xb2\x16\x62\x15\x8c\x2b\xc3\x22\xe2\x2c\x4a\x96\xf8\x97\x22\xf2\x55\x85\x2b\x44\x13\x97\x15\x8d\x05\x3e\xda\x95\x22\x94\x08\x21\x8a\x00\x3e\x0b\x92\x10\x17\x07\x1d\xa1\x93\xac\x3e\x14\x8d\x09\x46\x43\x02\x5a\x14\x0b\x46\xd5\x40\x12\xcb\x63\xfd\x7e\xf7\xfd\xb3\xe1\x3c\xd0\xcd\x3c\xd1\x7c\xf8\xe7\xd7\xcf\xcf\x75\x52\xd8\x9f\x79\x67\xda\xcb\x86\x5e\x9a\xda\x50\x6f\x5c\x81\x84\x03\x09\x9f\xd2\xe2\xaa\x58\xed\xa5\x26\x34\x16\xd6\x44\x52\x8c\x60\xf1\x37\x65\x44\x93\x0e\x50\x30\xe9\x90\x3a\xd4\x50\xb5\x91\x57\x40\x46\xad\x4a\xce\xa3\x48\x98\x2d\xf7\xa8\x46\x23\x44\x20\xeb\xc2\x9e\x94\xa5\x19\xa7\x9d\xa6\x25\x12\x47\x57\xcc\xfa\xfa\x6c\xfb\xbb\x49\xf1\x30\x63\xf3\x4f\x92\x89\xf3\x60\xb5\x45\x63\x58\x22\xbe\x25\x0b\x4f\x7d\x81\xba\x89\xcf\x23\x76\xac\x27\xe2\x5d\x00\xae\xee\xfa\xda\x84\x12\x1f\xc4\x01\x66\x21\xb8\xd4\x12\xe6\x2f\x16\x15\x13\xff\x98\x34\x4e\x70\xaf\x6e\xf3\xaf\x17\x31\x4b\x0c\x9e\xc2\xc8\x7b\xfa\xd5\x8d\xa2\xc8\x7b\xf7\x66\xa2\xe6\x7a\x24\x29\x12\x65\x99\x2f\xf5\x54\x44\xd7\x6f\x5e\x3a\xe2\xf0\xf4\xd3\xbc\x63\x9a\x3e\x8a\x43\xc6\x26\xb1\xce\xbe\x09\x27\xb0\xb0\x5d\xe1\x68\x81\xc2\xf3\x3b\x1d\x23\x6e\x9d\xf3\x0f\x59\x91\xdc\xcb\x47\xca\x4e\x91\xa8\x95\xbb\xe8\x34\x9d\x3c\xb9\xb8\xe0\xaf\x6e\xd0\x7f\x13\x53\x45\xce\x17\x70\x68\xe1\xbd\x8a\x0d\x2b\x28\xc9\x61\x1c\xc1\x4d\xec\xe5\x25\x0f\xb9\xdc\x55\x7f\x3f\x15\x31\x27\xf1\x2f\x95\xac\x2c\x8e\x4c\xa7\x46\x24\xc4\x15\xfb\x6c\x64\xa2\x7e\xe0\xa5\x25\xad\x6d\x67\xb8\x23\x72\x54\x6f\x8b\xd6\xb3\xed\x46\x11\xf6\xda\xc8\x90\xb3\x87\x76\x0d\x8e\x7f\xd4\xa5\xb2\x85\x80\x88\xcd\xd0\x25\x30\x11\xde\x49\xae\x35\x57\x4a\x84\x10\x54\x31\xd1\x4f\x35\x64\xd1\x17\xf6\xbe\x95\x92\x0d\x93\x6f\xcf\x58\x1e\x88\xb5\xb1\x8b\x15\xa5\x27\x4e\x7a\xd4\x94\x0b\x14\x8b\x6b\x7f\x4d\x7b\x72\x24\x0a\x0c\xf3\x78\x34\x87\xc4\x2a\x85\x85\xeb\x93\x56\x3e\x66\xc9\xe9\x93\x3d\x32\x87\x44\xf6\x65\x1d\x31\xef\x7b\x75\xd6\x71\xb8\x14\x52\xe6\x43\x97\x4a\x0d\xdb\xde\xcd\xfa\xb4\x30\x0b\xaa\x4e\xe7\x28\x17\x95\xa2\x62\x27\xae\x37\x0a\x8a\x0c\x7a\x5f\x74\x83\xc3\xf2\x0e\x8e\x2f\x87\x23\xfd\x72\xf8\xa1\x41\x8b\xbe\xb0\x87\xea\x9f\xe0\x60\x0f\x6c\x4d\x21\x85\x09\x0a\x2c\x84\xfd\xd2\xf4\x86\xb6\xa1\xb6\x5b\x00\xdb\x5b\x12\xd4\xfb\xfc\x69\x72\x0e\x89\x14\xaf\x28\xda\xcb\x56\x0a\x21\x6f\x9b\x16\xdf\x53\xb5\x3c\x78\xe3\x9b\x44\x2e\x87\xe5\xe5\xcc\xd9\x33\x1e\x01\x48\x0e\x64\x72\xed\xbd\xbb\x03\x20\x51\x9a\x43\xc5\x99\xf7\x3a\x6d\x6b\xaf\x1e\x1f\xc9\x7f\x22\x21\x50\x24\xc3\x48\xa1\x44\x92\x44\x03\x7e\x5b\xb3\x35\x74\x1a\x47\xc6\x9b\x6b\x34\xc1\xd4\xd1\x08\x85\x0c\x70\x90\xf0\xdd\xb8\xee\x7a\x72\x73\xa7\x87\xac\x66\xec\xa9\x69\x13\x15\xd5\x42\xa4\x48\xf8\xa8\xc4\xe3\x69\xc5\x39\x00\x4b\x0a\xde\xc3\x37\xee\x64\x3e\x05\x31\xfe\x5c\x41\x18\x96\xf5\x48\x8e\x3b\x77\x39\x19\x8e\xf0\x19\x7a\xe1\xc6\xd5\x6c\xb6\xfb\x48\xab\x9e\x1d\xcf\xf7\xb6\x33\x9b\x59\xfe\x79\x19\xb9\x22\xfc\xbc\xbc\x74\xee\xba\xc7\xa6\xc0\x56\x7e\x8f\x82\x7f\x4b\x5b\x56\x76\x15\x3a\xcc\x9a\x62\x9b\x48\x30\x85\x14\x5d\xfa\x10\x02\xca\xf9\x1b\x13\xb3\x35\x38\x90\xc8\x64\xa4\x57\xe4\x04\x04\x7a\x9e\x5c\x2b\xd0\x37\xbe\xed\xfa\xc7\xb3\x45\x5a\x0b\xfc\x05\x30\xa4\xb7\x88\x20\x47\x87\xd6\x9b\x2b\xd1\x67\xe8\x74\x35\x4b\x22\x0d\xbc\x56\x78\x4d\xcd\x2d\xd3\x60\x4a\x73\x16\x8d\x5b\x09\x30\x53\x8c\x08\x64\xaf\x88\x75\x7f\x34\xa2\x46\x65\xc2\x98\x6c\x7a\xc5\x41\x91\x6e\x66\x3a\x4d\x02\x6d\x14\x72\xd4\x88\x09\x5e\x25\x27\xd2\x08\x79\x90\x5d\x2c\x2a\x2f\x5b\xd6\x67\xf7\x72\xaa\x58\x6e\x31\x03\x8f\x75\x2c\xe6\xb7\x7d\x67\xde\x35\x23\x9e\x35\x7a\x8c\x14\x30\xbf\xcf\x17\x67\x61\x07\x39\x28\x67\xb1\x84\x0c\xa4\x82\xc8\x01\x9c\x2f\xdf\x33\x5b\xa6\x72\xe7\x52\x18\x0c\xee\x5d\x73\x81\x99\x10\x95\xdf\xc2\x08\xd6\x51\xe2\x62\xb3\x41\x8c\xcd\x43\xd2\xe1\x71\x4f\xc3\xe7\xda\x0d\x33\x60\xfb\xc6\xac\xbf\x38\xd8\xab\x6a\xfa\x23\x30\x5f\xa5\x8d\x49\xa2\x58\x29\x70\xd0\xbd\x97\xd3\xe0\x56\xe4\xa0\xb1\x88\xa5\x4a\x7a\x8e\xed\x9d\x0f\x40\x87\x50\x86\x8b\x50\x57\xd0\x42\x36\x1b\x65\xbc\x5f\x2e\x9b\xf0\xe1\x0b\x83\xe7\xe0\x65\x84\x61\x4d\xcd\xe0\x05\x9c\xb9\x15\x32\xf5\x07\x32\x20\x43\x54\xc1\x77\x35\x2a\x3c\x17\x31\x67\xc3\x59\x06\x99\xf3\x31\x35\x34\x28\xe8\x3a\x27\x33\x50\x17\x21\x07\x3d\xe4\x28\xa2\x7b\xad\x55\x4e\xf6\xbd\x25\x1d\x6b\xc2\x63\xf3\xdf\xaa\xf9\x68\xbe\x73\x95\xc4\x29\xa2\xe5\x91\x24\xe7\x9d\xc5\xb9\xfe\x23\xf0\xf8\x71\x5f\x39\xab\x6f\x6a\x6a\xda\xd0\xb8\xdb\x6a\x24\x3a\x82\x22\x2b\x9b\x83\x72\xd1\x5d\x4e\x99\x88\xfa\xd9\x0d\xae\x11\xcb\xff\x69\xb5\xed\x81\x5f\x3d\x4b\xfa\xba\x11\x57\x03\x8d\x2e\x2f\x21\xaf\x1b\xf1\x7d\x14\x0a\xca\x1f\xdd\x3b\xf5\x53\x2e\x8a\x3a\x87\x38\x65\xcc\xa1\xa3\xca\xd1\x2f\xc0\x3b\x25\xd8\xf0\x3e\x73\xbf\xa7\x52\x70\x80\x58\xd8\x12\xed\x06\xb2\x63\x8d\x18\x06\xb3\xb6\xfe\x73\xf3\x80\x53\x8a\x1a\xd7\x37\xac\x1c\x59\x81\x44\xb0\x6b\x8a\xd0\xa9\xff\x2d\x8b\xe9\x8f\xd5\xe4\xb6\x48\xb2\xc2\x5b\xf7\x29\x65\x15\x21\x5e\x09\xeb\x61\xa7\xd7\x55\xed\xe3\x4a\x28\xcf\x57\xe5\xb6\x0c\xcc\x75\xc7\x7e\xc2\x61\x9a\x7b\xb6\x48\x8d\x35\xcc\xa4\x63\x98\xf5\x35\x02\x24\xf0\xa7\x27\x9a\x8e\x44\xed\x58\xde\x46\x2f\x87\x97\xab\x83\x5d\xe0\x2f\x8d\x1e\x14\x33\x4b\x7d\x52\x0a\x70\xeb\x8b\xc7\x06\xbf\x7b\x51\x16\x89\x8a\xa6\x21\xca\xf5\xbb\x7c\x61\xdb\x67\x06\x54\x0d\x24\xc2\x07\xec\x88\x49\x93\x62\x1a\xcf\xbd\xeb\xa0\x47\x56\xa0\xf3\x15\xef\x1a\xf8\x8f\x97\x2b\x8c\x1b\x79\x6d\x97\xc6\x0f\x69\xb7\x1b\x2c\xef\xbc\x52\xfd\xa8\x2d\x01\x32\x22\x39\x25\x0e\xc9\xe8\x10\x94\x28\x29\x67\xae\x43\x8d\xd9\x20\xb9\xaf\xd9\x2e\x5d\xbb\x3d\xbc\xd2\x3b\x86\x06\x9b\x62\x3e\x6f\x72\x96\x6e\x0e\x4b\x14\xd7\x7d\x41\x4b\x8a\x6d\x3d\xe7\x76\x82\xf0\xad\x62\x5e\x4e\xa6\x7b\xef\x01\xc2\x93\x62\x1d\xee\xe0\xaf\x0c\xfd\x89\xf7\x53\x6f\x89\x76\x46\x7e\x0d\x17\x1d\x55\x98\x8c\x39\x96\xf0\xa7\x8a\x99\x01\xf1\x4b\x98\xbc\x99\x54\xf4\x1f\x0b\x23\x96\x5a\x60\xfc\xd4\x42\x44\xde\x38\x37\x3c\xb2\xaa\x65\x17\xb8\x94\x5a\xf2\xa7\x59\xca\x0f\xfb\x82\x1f\xd8\x5b\xff\xa6\x9b\x93\x32\x7b\x07\x59\x47\x95\x6f\x62\x3c\xe7\x37\xcb\x10\x30\x7e\xcf\x50\x2d\x23\xc8\x1a\x74\x04\x7c\x97\xb6\xf8\x77\xcf\x99\x9c\xb4\x56\x96\x76\x71\x8f\xdf\xf4\x2c\x01\xa1\x1a\x8f\x66\xbb\xdf\x4e\xc5\x9a\xe3\xd3\xe5\x0b\x7b\x0a\xfd\x29\xcb\x4f\xb7\x89\x52\x38\x9e\x0f\x49\x9a\xf6\xa1\x27\x98\xdd\x11\x11\xa4\x34\xf0\x9e\x88\x73\x4b\xf2\x46\x35\xfa\x43\xbe\xbf\xd8\xba\x4a\xbb\x51\x20\x43\x74\x30\x0b\xdd\x93\x99\xe1\x46\x93\x91\x90\x43\x62\xff\xe8\x33\x87\xca\xed\x5f\x17\x65\x5d\xb9\x39\x0b\xee\x92\x53\xc1\x60\x44\x4c\x24\x06\x8c\x69\x34\x8c\x92\x5f\x2e\xff\x96\xa1\xa3\x44\xe4\xf8\x15\xf4\x0b\x67\x00\x16\x97\xc0\x72\x47\x0a\x50\xf8\x30\x98\xba\xdf\xc6\x06\xcb\x5b\x39\xa6\x99\x5a\x91\xcd\xb4\xba\xc0\x43\x1f\xb2\x51\x0c\xb5\x6e\x09\x2b\x76\x91\x9c\x3b\x3a\xaa\x0d\x2a\x18\x56\x43\xcd\xb7\x95\x3b\xc7\x30\x1a\x19\xb8\x8d\x41\xab\xb6\xea\xbd\xe4\x8c\xb0\x33\xe6\x0f\xe5\x10\x14\xf7\x4f\x66\xa6\xdb\x2f\xbe\xd4\x7b\x3a\xbb\x4a\x59\x99\x5e\x20\x44\xb2\xab\xb0\xaf\x37\x66\xcb\x0a\x1a\x2a\x41\x2d\x07\xf1\x5e\xde\x49\x1c\x38\xf1\xf7\x44\x4c\xca\xdc\x10\xd0\x0a\x5f\x60\x37\x8f\xc0\xd6\x07\x79\x11\xa1\x81\xd3\x85\xd4\x44\xde\x91\xf6\xbc\x9a\x2c\x29\x0f\xc4\x9e\x27\x24\xd7\x38\xae\xeb\xc3\x0b\xaa\x73\x3f\x1a\x3a\x0e\x13\xfa\x8b\x50\x5f\x87\x29\xc7\x8f\x84\x5a\x95\x68\x55\x62\x89\x8b\xd3\x14\xe0\x83\xb3\xcc\xdd\x24\x4a\x20\x76\xd5\x98\x13\xb2\xfa\x4f\x0d\xde\xfb\x4e\x06\x88\xe8\x2d\x55\xb7\x26\x1d\xb3\x95\x16\x31\xd9\x6f\x4b\x30\x1c\x1b\x41\xea\xa6\x08\x50\x61\x63\xf1\x1e\x25\x64\x0a\x46\xb7\x8d\x99\xb8\x24\x45\x2f\xcb\xd5\x8d\x88\x7a\xe6\xd3\x78\xe7\xda\x5d\x45\xa2\xb4\xe1\x76\x19\x70\x76\x4f\xff\x1a\xb1\xbb\x9c\x5d\xbc\x4b\xda\x23\x6b\x21\x3d\x5a\x25\x06\xa9\x1d\xfd\x1a\xcf\xee\x77\x3f\x4e\x15\x12\x16\x63\xf3\x87\x67\x0d\xf3\xad\x40\x84\x13\xea\x37\xa3\xe3\x54\x2f\x3a\x79\x7c\xf9\x55\x51\x5b\x8d\x53\xf5\x85\x97\x15\xdb\xb2\x6f\xba\x78\xa2\x72\xb9\x6b\x23\x66\x15\x0c\xc2\x04\x72\xfa\xaf\xcd\x6b\x4e\x6f\xe4\x5a\x1e\xd0\x66\x30\xfc\x86\x1a\xe0\xf0\xb8\x75\xf3\xd0\x0a\x27\x8f\xbd\x99\xd5\xed\x30\x01\x97\x7b\xf5\x63\x2e\x5c\xb5\xd5\xa1\x8f\x2b\x2b\x33\x6c\xeb\x17\x18\x17\xcc\xdd\xf0\xa8\x81\x29\xf4\xcc\xdc\x13\x3b\x04\xd4\x2a\x30\x39\x21\x3f\x36\x51\x20\x16\x54\x04\xf3\x44\x29\x44\xef\xf4\xab\x05\xcf\x75\x49\xca\x4f\x93\xc7\x36\x98\xfc\x26\x50\x05\x74\x0f\x7d\xec\x82\xd5\xb7\xb4\xb2\x8a\x92\x86\xf5\xf0\x96\x58\xfb\xd8\xc7\x37\x8c\x4a\x94\x5d\x25\x5c\xba\xbc\x32\x97\xa7\x34\x51\x70\xe5\x57\x54\x39\x7a\xb9\x2f\x65\x37\x00\x34\x66\xfe\xd3\x58\x7a\x96\xd6\x81\xde\xba\xae\x7e\x63\xa7\xcb\x0d\xe2\xa6\x73\xcc\xc8\x89\xf7\xcf\x83\x90\x34\x79\xf4\xfd\x21\x1f\xa1\x26\x1b\x1a\x27\xbb\xa0\xd5\xcd\x0a\xd6\xbf\x73\x70\x37\x5a\xee\x8a\x4e\x06\x0c\xf7\xf4\x27\x65\xf3\x24\x4b\xd6\x27\xbd\x9d\x67\xd8\xae\xf5\xfc\x44\xc8\x18\x7c\x62\x31\x29\x6f\x86\x70\x7a\xf0\x4e\x13\x50\xdd\x52\x03\xe9\xd2\xc9\x5f\x5d\x65\xe7\x22\x62\xbf\x68\xcb\x1e\x35\x60\x59\x76\xf9\x66\xc0\x33\xfe\x3e\x18\x63\x0e\x1a\x62\x28\x98\x15\xc2\xc3\x5a\xd8\xdc\xe7\xe7\xec\x26\xdd\xa5\x96\x80\xe0\xae\x3b\x79\x6c\xef\xeb\x0c\x21\x54\xcc\xc1\xc2\xd1\xc7\xf4\x46\x89\xb8\xfe\x88\x1d\xaf\x31\x25\xc0\x5a\x7b\xd4\xb7\x93\x93\x78\xee\x3c\xe3\xe0\x3e\x19\x39\x3a\x45\x4c\x76\xc6\x52\xe7\xce\x91\xf5\xe3\xdf\x31\x43\xb4\x7e\xc7\x98\x9b\xf3\x94\xb1\x4b\x54\xce\xe1\xda\x49\x3a\x3b\xff\x80\x0c\xba\xfb\xf0\x9c\x91\x39\x90\x58\xb7\xfe\x80\x6d\xfb\x64\x70\x55\x05\x0b\xb5\x94\x6d\xc0\x38\xe7\x44\x28\xd5\xfd\xa0\xdc\x86\x2c\x0a\x4b\xa7\xf5\xc9\x60\xa9\xf3\x5b\x97\x84\xff\xc3\x76\xe3\x21\xbf\xd9\xff\x34\x62\xfd\x12\xdc\xb4\xb8\x50\xba\xb4\xb5\x60\xa7\xe2\x11\x28\xce\xf1\x53\xa1\xb9\xb2\xe6\xd5\x8d\xac\xeb\x78\x6f\x8d\xb2\x77\xdd\x80\x4c\x41\xd8\xd2\xd1\xdf\x81\x43\x66\x3e\xe9\xf3\x4c\xf2\xd5\x7f\x87\x14\x13\xfd\xce\x76\xe2\x7c\x13\x59\x54\x20\x3c\x74\x48\xcf\x98\x2e\xf4\x54\x47\x98\x67\x3b\x39\xdc\xb8\xe5\x19\x84\x0b\x6a\x32\xe5\x84\x7b\x09\xae\x76\x09\xfe\xe2\xea\xfb\x7b\x22\x94\x0a\x81\x34\x35\xc8\x1e\x37\x6e\x2d\x77\xf8\x8b\xe2\xcb\xb9\x98\x4d\x29\xa1\x8c\xd9\xc9\x67\x49\x89\xc5\xf9\x7e\x52\xfd\x8b\x07\x73\x31\xfe\xcc\x89\x00\xad\xf1\x34\x73\x37\x54\x6e\x72\xab\x1f\x53\x40\x01\xcd\xc0\xd7\x78\xfb\x21\xc8\xf0\x80\xef\xef\x88\x32\x90\xae\x97\x48\x9e\xfe\x8c\x46\x32\xd8\x52\x9d\xc6\x31\x5b\x35\x39\x12\x17\x25\xc6\xbd\x51\x4e\x43\x49\x60\x0d\x96\xe5\x1f\xd7\x97\x1d\x0c\xb7\x36\xb7\x66\x43\xcd\x2e\xbf\xc6\x69\x2d\x8a\x41\x0b\xfd\x03\x97\x68\xe6\xc1\x87\xa3\x86\x89\x5c\x8f\x1d\x12\xcf\xef\xe8\xeb\xaa\x13\x02\x5b\xa8\x8a\xad\x58\x47\xa9\xfd\x98\x97\xf0\x6c\x01\x31\x84\x44\x86\x1b\x8b\x8e\x82\x49\x0b\x94\x44\x04\x18\xd4\x43\x27\x69\x89\xfe\x49\x75\x3c\x8a\xcb\x6a\x0d\xf0\x8f\x9a\xa3\x8b\x12\xb9\x73\x43\xbe\xa5\xc1\xfc\xbe\x67\x8c\x26\xf6\x79\xfb\x76\xf5\xdb\xc3\xfe\x34\xb3\x7e\x0f\x62\x10\x57\xb9\x07\xc3\x45\x03\x69\x88\x85\x9d\x4c\x9a\x61\xc2\x33\x60\x92\x3e\x15\x97\xd7\x19\xe9\xd5\x9f\x67\xa6\x3a\x0d\x70\x25\xfe\x17\x04\x26\x1d\x9b\xb5\xae\xa7\x9b\xf9\xe2\xc6\x48\xe4\x25\x07\xd7\x78\x71\xe1\xc5\xb6\x2f\x96\xe1\xbb\xe3\x2f\x31\xef\x87\x7e\x5b\xf0\x61\x85\x79\xc6\x46\xbb\xd2\x56\x5d\xc5\x13\x7f\x18\x02\xed\xaa\xb5\x3c\x6f\x6c\xc8\xac\x5f\xbf\xc9\xb3\x7f\x85\x71\x9d\x4f\x9a\xf7\xf6\xd6\x57\x6c\x1b\xd5\x4e\x43\x27\x33\x5e\xad\xfb\xd3\x5b\x37\x1f\xe2\x98\xa3\xe0\x1b\xb5\x1f\xd1\x5c\xe6\x79\x34\xb2\xc6\xf0\xf5\x6c\xd9\xe8\x9d\x23\x6e\x4a\xf7\x46\x77\xbf\xe7\x43\x02\x7e\x0b\x28\x24\x5b\x19\x38\x06\xf1\xe2\x4a\x5a\xf3\xae\x6e\x2b\xd4\x8e\xfb\x32\xb2\xfb\x36\x5e\x9f\x2a\x53\x67\xc4\x42\x52\x63\xbe\x5f\x79\x10\x27\xd3\x41\x9b\x87\xd6\x12\xdb\x13\xf4\xa9\xe4\xbc\x6c\xe5\x5f\x30\x17\xe5\xa5\x58\x44\x68\x64\xdf\x25\x63\x6e\x2a\x13\x85\xe7\xda\x30\xb6\xc6\xcb\xed\xf1\x1c\x50\xe3\xdc\x3f\xa9\xac\x8d\x11\x2c\x6d\x90\x83\x95\x8b\xcc\x65\xa1\x61\x8e\xa3\xbf\x96\xc3\xdd\xd9\xaf\x24\x53\x2a\xd1\x40\x5d\xbc\x10\x86\xbb\x4f\x4f\xe8\xe3\x74\xc7\xa4\x70\x60\x8e\xb3\x6b\x78\xcb\x53\x21\xdd\x4a\x1e\x16\x1e\xe8\x2b\x76\xbc\x2b\xff\x90\xb9\xe9\x51\x2b\xe5\xe2\xa6\x76\xd8\xe5\x5f\x6b\x51\xd1\xe8\x8a\x21\x1f\xc8\xeb\x10\x67\x8a\x54\x2b\x46\x0d\x90\xe4\x79\x95\xe9\xa0\x97\x9e\x75\x0b\x4d\xe2\x42\xb6\x21\x54\x21\x8a\xef\x6e\x08\x14\x68\x1d\xa6\xfe\x12\x55\x39\x8c\x61\xb9\x36\xe5\x82\xb1\x47\xa6\x67\xe6\x79\xb2\xe9\xf1\xaf\x82\xbf\x5c\x5c\x99\x9e\x92\xee\x81\xe9\x76\x51\x13\x81\x09\x2a\x4e\x9f\x40\x19\xb1\xe3\x69\x8d\x11\x2d\x3c\xb3\x84\x99\xec\xae\x39\xa8\xbf\x2d\x6d\xa5\x74\x6b\x21\x4e\x3b\x45\xe4\xa3\x69\x47\x31\xe7\x90\x93\x1c\xd2\x70\xb1\x45\x70\xf4\xf2\xcb\x87\x25\x66\xb9\x85\xa5\xd3\x96\xb0\x45\xb1\x5f\xb7\xfb\xda\xcf\xfd\x45\xde\x92\x2a\x76\xee\x7e\x5d\xe8\x1d\xb1\x26\xc1\xb8\xce\xd6\xa7\x1a\x12\x3a\xc3\x90\x3e\x48\x88\x8f\xd2\x14\xd6\xf9\x24\xd1\x0e\x94\x75\x4d\xe4\xe8\x30\x2d\x87\x65\x33\x44\x09\x02\x4f\xc4\xe9\x6e\xdb\xba\x9c\x19\xb8\xe6\x84\xa7\x97\xc6\xed\x34\xcd\x97\xf2\x7b\x31\x24\x6d\x10\x55\xb4\xd3\x9a\xfd\x95\x52\xbb\x04\x96\xc6\xc9\x37\x9e\x2c\xfb\x79\x5f\xea\x9e\x5a\x4c\xc8\x5b\x1b\xc3\x55\xd3\xbb\x32\x7b\x93\xdf\x2d\xc8\x26\x14\xd5\x27\x8b\x52\x60\x2a\x66\xdc\x50\x15\xaf\x70\x0a\xd6\x77\xe7\x38\x4b\xc3\xa2\x3c\x7d\x4d\xf4\xa2\x5b\x3d\x26\x6c\x94\x0f\x17\x3d\x85\x2a\x2b\xa1\xf3\xc6\x6e\xaa\x1b\x03\xec\x6c\xd7\x9e\xdb\x08\x8c\xc0\x3f\x6e\xe1\x83\x3e\xa0\xab\x70\x8b\x3f\x7d\x3b\x93\xcf\x6a\xdd\x98\xed\xd3\x52\xe8\x9f\x72\x3a\x5b\x41\x46\x89\x33\x35\x7f\x03\x8a\x5e\x71\x03\xb3\x30\xd0\x7f\xf5\x36\xa9\x75\x19\x83\x43\x8d\x8f\x75\x9c\x23\x89\x7d\x2f\x0a\xb6\x93\xaf\x3d\xe1\xab\x39\x10\xf2\x31\x68\xa2\x67\x05\xe9\x04\x65\x28\x6b\xf5\xd8\xf8\xc9\x28\xb4\x28\xa4\xa5\x19\x94\xbf\x0f\x2b\x47\x8b\x9c\x10\x99\x04\xd4\x1c\xc9\x60\xc1\x14\xf5\x13\x2b\x0d\x18\xdc\x8a\x88\xfc\x6e\x8c\xc8\x5c\x88\xbb\x7b\xeb\x81\x74\x70\x49\x6a\x4d\x92\xb2\x8c\xe1\xa0\x11\x61\x37\xcf\xf6\xf3\x94\x3f\xcd\x44\x44\x98\x2d\x35\xe8\xbc\x51\x37\x06\xbe\x18\x33\x25\x28\x50\x19\x85\x61\x46\x8b\x84\xd0\xeb\x0d\xed\xb2\x1d\xbf\xf5\x6d\x7b\x61\x30\x91\xef\x8b\xe8\xe9\xc8\x16\x6e\xf9\xfe\x11\xda\x3e\x82\xd4\xfd\x50\x78\x74\xb5\x32\x91\xc7\xb7\xa1\xa1\x50\x92\x81\xe6\x19\x85\xe3\x2e\x95\xcd\x6d\xbb\x5c\xf6\x72\x2b\xb6\xaf\x6c\x23\xaa\x7e\xb7\x2d\x7a\xe6\x60\xcc\xb3\x2b\xd9\x77\x14\x46\x4d\x47\x87\x87\x59\x51\x29\x3c\x3f\x89\x36\xff\xcb\x89\x97\x65\x2b\x6b\x83\xee\xe7\x03\xb7\xad\x9d\x02\xd2\xbd\x93\x7f\x0c\x67\xdb\xc4\xc2\x83\x30\xd2\xeb\x43\xaf\x21\x87\x12\x04\x3b\xce\x83\x6c\x97\xf6\x1e\xb5\xe8\xe8\x20\xe1\xab\x55\xea\xf0\x02\x8e\x1a\x78\xf8\x8d\x3e\xa8\x63\x23\x60\x2c\x73\x70\xf8\x5f\x48\x18\xd3\x64\x13\xc0\x9d\x81\xf5\xd9\x97\xb4\x6c\xee\x3c\xba\x7c\x1f\x25\xea\x93\x1b\x19\x89\x09\x48\x90\xa8\x53\x02\x29\x69\x75\xf9\x8b\xac\xbf\x02\x5a\xa7\x14\x50\x8c\xa6\x7b\xe9\x5e\xe5\x24\x21\xa6\xde\xfd\x71\xa3\x8e\xa6\xa2\x93\xf9\xa4\xf7\x46\x61\xe7\x70\x94\xf0\x94\x1a\xa3\x15\x7c\x38\x2b\xf7\x17\x77\xf5\xa3\xa1\x37\xf5\xc2\xeb\x89\x2b\x37\x7b\xa5\x9c\xbe\xbc\x86\xd8\x0e\x85\x62\x84\xef\x8c\x41\xce\xd4\xb5\x4f\x8d\x02\x30\x14\x07\xe7\x87\xff\xb4\x19\x3a\xf6\x06\x28\xd4\x67\x4b\x07\x2f\x0e\x31\x3f\x91\xda\x95\x85\x6c\xfb\xb8\x6c\xe6\x72\x49\xfb\xe7\xd2\x1a\xc8\x43\xdb\x4f\x3d\x04\x9d\x15\x92\x0f\x3a\x9e\x58\x3b\x4f\x66\x31\x98\x8b\xae\xdc\x6a\x2b\xa3\xc3\x78\x74\x46\xee\xe5\x6d\xdb\x5a\x0e\xea\x53\x6a\x50\xb3\x3c\xfc\x18\x6c\x5e\x5c\x23\x1b\x28\x87\x9b\xbf\xe3\xc0\x36\xeb\xf7\xf3\xf2\x63\x3a\x78\xee\x6d\x17\x66\x63\xc0\x43\xf5\xbf\x31\x9b\x4f\xc1\x63\x50\x67\x24\x04\x90\x4a\x2c\xb2\x74\xa5\xb9\x8f\xf3\xe2\xb8\x0c\x53\xe6\x91\xa0\x4b\x56\x8a\x50\x9f\x25\xeb\xce\x38\xe5\xd1\x28\x8f\x59\xab\x70\xdc\xe6\x8b\x84\x7c\xe2\x3e\x8a\x21\x50\x4c\x73\x8a\x2e\xf2\xbb\xde\x2b\xe2\x3c\x3e\x33\x49\x96\x6b\x71\x66\xf3\xfd\xca\x98\xc7\x2c\x29\xd4\x2d\x59\x0e\x0d\x8f\x0e\x86\x8f\x74\x16\xde\xdf\xca\x62\x5b\x17\x7b\xf0\x1f\x5e\x56\x6c\x28\x5e\x0b\x17\x13\xae\xd5\x08\x69\xed\x56\x90\x72\x4f\x85\xbd\x74\xd3\x1d\xac\x85\xe4\xf4\x05\xa5\x62\x3c\xf4\x4d\xfd\x7a\x94\x84\x84\x28\x88\xcd\x40\x0b\x74\xbd\x21\x2a\x42\xbe\x33\xe6\xd4\xa8\xdf\x58\x3e\x30\x0d\xf9\x63\xff\x5b\x88\x14\xc9\xfd\x49\xc9\x72\x73\xed\xa7\xf6\x78\xf4\x5d\xc6\xbd\x4c\xd8\x05\x49\xa5\x44\x4e\xc6\x31\x3f\x3e\x82\x7e\xa8\x02\xf9\x8c\xb4\x9c\x3d\x57\x45\x38\x7b\xcc\x4e\xf5\x06\x77\xd2\xca\xda\x5c\x66\x46\xdb\x04\x96\x77\xe8\xd4\xe8\x41\x9c\x50\x0e\xf3\xdc\x56\xd8\x05\x83\x33\x0c\xbe\x02\x17\x2d\xa4\x41\xfd\xd0\x20\x4a\x35\xb7\xfa\x0f\x8e\xeb\x00\x70\x7f\xda\x07\xb4\x50\xe5\xaa\x30\x19\xdb\xbe\xc6\xa1\xa1\xc0\xac\x45\x13\x39\x46\x92\xae\xd3\xb4\x7f\xf1\xa3\xb6\x26\xde\xe3\x65\x4a\xa7\x90\xb7\x0f\x96\xe4\xe6\x17\x13\xa4\x9a\x05\x97\x4a\x1a\x42\x42\x9a\xdf\x29\x81\xc9\x87\xc9\x8c\x0a\xa3\xfe\xb9\x05\xdf\x1f\x95\x5a\x57\xb2\x29\x31\x98\x0d\x1f\x82\xf7\x3f\xeb\xbe\x84\x0a\x64\xc5\x97\x74\xa3\xab\x40\xf3\x5d\x7e\x61\xf4\xa1\xc0\xb1\x87\xbe\x0d\x35\xfe\x83\x9b\x9e\x70\xae\x72\x9a\x71\xfa\xf1\x63\xb2\x25\xd1\x15\x16\x1a\xf9\xdf\xc5\xf3\x42\xfa\xb7\x16\x6e\x05\xf8\x62\xe5\x43\xa9\x62\x12\xda\xfd\xd5\x41\x7c\x0d\x31\x9e\xbd\xf8\x49\xd5\xa5\xfb\xfa\x0c\x99\x2b\x85\x81\x57\xca\xea\xc2\x8e\x5a\x31\xfb\x4b\x37\x44\x88\xf8\x4b\xba\x23\x4a\xea\x8c\xcc\x75\x53\xee\x8b\xf0\x5f\xd7\xf2\x14\xca\xd4\x56\xda\xa3\x77\x7f\x52\x8f\xb8\x60\xed\x84\x9b\xb0\xce\x4a\x45\x95\xac\xd2\xcd\xb5\xeb\xad\x2b\x57\x8d\x4a\x86\x1b\x6d\x70\xaf\xbe\xf1\x6d\xa8\xc9\x81\x70\xc3\xf0\x78\x85\xd4\x09\x20\x41\xcb\xb2\x9b\x3a\xa8\xca\xd0\x3d\x98\x16\x44\x21\x6f\x6a\xdf\x6a\x11\x3a\x03\xc3\x79\x6a\x2b\xc4\xfe\xb4\x3a\x7c\x3c\x0f\x12\x3e\x1f\xa9\x22\xd2\x61\x71\xe6\xd9\xf0\xb4\xf4\xa0\xe0\xd4\x95\x0c\xfa\x8b\x19\xcb\xd1\xc6\x55\x8f\x14\xe3\x84\x0f\xfa\x2a\x43\xcf\x25\x3b\xcb\xca\x33\x21\xfb\xa9\x71\xad\xa8\x32\x62\x93\x38\x89\xee\xbe\xae\x82\x17\x58\x55\xf6\x66\x0c\x62\x87\x9a\xa5\xda\x4f\x37\xf9\x7e\x4a\xe1\x17\x69\xc6\xa6\x6a\x14\x1f\x51\x68\x64\xa7\x2e\x2f\x26\xd4\xc0\x4a\x4b\x63\x20\x2b\x12\xea\x80\xbc\x52\x7b\xb2\xe0\x9d\xe1\xca\xd9\x0f\x56\x7a\x12\x66\x1a\x92\x1d\x10\x99\xee\xe7\x59\xf9\xb5\xbe\x52\xb6\xe4\x99\xc7\xd6\xe0\x3a\x5e\x85\x16\xc3\x19\x77\x15\xad\xa4\x2c\x11\x6b\xe5\xfb\x5c\xa6\x43\x16\xc1\xd3\xba\xff\x03\x83\x9f\xed\x24\xd3\xdf\xf9\x9a\x44\x8c\xa2\xc8\x15\x34\x28\x29\x5b\xce\x4b\xe8\x60\x61\x02\xdb\x19\xb8\xe1\xec\x90\x65\x52\x79\xa3\x16\x91\xd6\x88\xe3\x43\xbb\x5c\xab\xf3\x62\x77\x0f\x22\x53\xb5\xef\xa2\xf5\xeb\x91\x61\xbe\x11\xef\xc0\x13\xa0\xe0\x88\xba\x85\xf5\xc9\xdb\x14\xe3\xab\xf1\x12\x16\x96\x24\xb7\x20\x13\xa3\xe8\x78\x86\x25\x08\x8a\xde\xbe\x7c\x78\x4a\x80\xe5\xc0\x15\xe0\x60\x4a\x0d\x72\xbb\xc9\x21\x57\x2f\x9f\x20\xa5\x08\xd9\x75\x0d\x48\x93\x5c\x6e\x2a\x68\xd1\x21\x04\x07\x99\xf0\x80\xa8\xf3\x86\x1a\xec\x9d\xa3\x97\x01\x8b\x68\x3c\xeb\xa6\xc5\x84\x41\x44\x0d\x7b\x1e\xd9\xa6\xd1\x00\x1d\xce\x63\x54\xff\x7e\x76\x6d\xe9\x64\xc3\x4b\xe3\xb3\xef\x01\xa8\xc3\xc4\x72\xe9\xed\x24\x27\xe3\x66\x3e\x51\x46\xde\x7f\xf7\xfc\xa4\xd0\x1f\x4e\xd0\x42\xe2\x1c\xa1\x51\x92\x10\xd1\x21\x88\xbf\x79\x50\xdc\x10\x93\xb3\x18\x90\xfc\xb2\x83\x51\x22\xa5\x2b\xfd\xfa\xaf\x1c\x57\x91\xca\xf5\x90\xe2\x7d\x8d\x0d\x84\x34\x5b\xae\x46\xa4\x44\x2e\xcc\x78\xab\x1f\x55\xc1\x67\x62\xdd\xcc\x23\x2e\x91\x33\x2a\x5a\xc3\x84\xc1\x87\xce\x87\x50\x90\x21\x60\x4c\x70\xcc\xa4\x04\x01\x32\xc0\xa0\xf6\x47\x3a\x40\x88\xc7\xf6\x13\x4d\x6a\x27\xf1\x7a\x9f\x51\xf2\xcc\x37\x31\xdb\x7e\x79\x4d\xe3\x04\xd9\x5b\xd3\x10\xe1\xc2\xb1\x5f\xf9\x50\x94\x98\x4f\xe2\xb3\xbe\x08\x29\xad\x80\x0a\x8a\x5f\x66\x79\x99\xa8\xfa\x99\x35\xa8\x8e\x3b\x0e\xb1\x33\xad\xb3\x2b\x29\x0a\xed\xbe\x12\x1b\x7d\xd6\x0c\x46\xff\x13\xfd\x89\x97\x3c\x56\x10\x6b\x0f\xc1\xf2\x50\x66\x51\x39\xb3\x9e\x7b\x70\xf7\xc9\x45\x6c\x8b\xda\x0c\xd2\x53\xe8\xb8\x9c\x64\x4c\x67\x5d\xc5\xd6\x16\xb5\x1a\x3f\x51\x58\xca\xc3\xaf\x27\x14\x03\xf8\xaf\xcd\x35\x08\x66\x03\x41\xef\x48\x6c\x45\x0d\x7d\x34\x81\x9b\x0c\x71\xb4\x66\xf5\x8c\x2e\x4d\x97\xea\xea\x02\x42\xdd\xf7\x03\xa4\x09\x98\x08\x7c\xee\x2b\x99\x49\xa8\x3a\xf6\x83\x8c\xa1\x35\xa8\x71\x2a\x78\x57\x9a\xb7\xe1\xca\x03\xee\x3d\x45\x4c\x39\xec\x6a\xe5\xbb\x37\xca\x3b\x3c\x6a\xd0\xbb\xfd\xe2\x91\x26\x0a\xd5\x0c\x0a\x4e\x61\x87\x4e\x1d\x13\xb8\xb8\x6f\xa7\xe9\xb6\x60\xe8\x94\x64\xf2\x50\x5a\xa9\x1f\x9b\x0f\x1f\x06\x8f\x1f\x35\xd2\x42\xaf\x16\x51\x9a\xf7\xc1\xdf\x4c\xb6\x36\x97\x43\xb1\x5e\x9c\x39\x55\x1d\x02\x7b\xa5\x53\x20\xfc\x7c\x0f\x32\xfb\x06\x76\xfc\x6e\x56\x83\x1e\x15\x5a\xf5\x51\x08\xbf\x18\xdb\x8b\xb8\x7c\x17\x93\xfb\x3d\xde\xb9\xcc\xab\xdb\xcf\xce\xb6\x05\xab\x26\xf4\x53\x45\xd2\xb0\x18\xf6\xe0\xaf\xb3\xc3\x25\xca\xef\xd8\x18\xef\xf4\x13\x5d\x04\xeb\x89\x3a\x7a\x39\x56\xee\xe7\x63\xac\xb1\x9f\xee\x11\xed\x0a\x8d\x36\xd6\x56\xf1\x19\x12\xe2\xa5\x34\x52\x7a\x2e\x47\xf1\xe0\xb4\xa4\x92\xe9\x7d\x1e\x19\x25\x31\x08\xb6\xf2\x10\x4d\xeb\x50\x5a\x95\x11\x3a\x2d\x4a\xa2\x96\x4e\x0e\x5a\xc1\x8e\x68\x52\x9d\x1e\x26\xf5\x4c\x12\xf6\xdc\x10\x3a\xc9\x66\x34\xfc\xb4\xbe\xeb\xef\x5f\xe4\xe5\x60\x4f\x38\xde\x73\x73\x43\xac\x99\xf8\x57\xd8\x96\x7e\x0c\xe7\x48\xdf\x1c\x5d\xf1\xe9\xa8\x53\x15\x4b\xff\x64\xfe\x4b\x1b\xf6\x8f\x5f\x05\xc6\x5f\xbf\x8a\x7b\xca\x2f\xaf\x4e\x0e\xeb\x5f\x0d\x1e\xbd\x9e\x7c\x54\xed\x48\x90\xad\x5e\x54\x49\x1b\x4b\x51\x70\x69\x7d\x0f\x43\x78\xeb\x88\xe6\xe0\x8c\x9a\xb2\x11\x31\xbc\x0a\xce\x0d\x02\x4c\x7f\x7b\xfb\xbc\xc6\xb3\x72\x2f\x16\x08\x05\xfd\xab\x65\x47\xe3\xbc\x9b\xd5\x99\x58\x03\x7d\x38\xd1\x78\xc9\xc2\x33\x2d\xdc\x2b\xc9\x5f\x8f\x05\x6a\xe5\xcb\x16\x99\x4c\x15\xc2\x9c\x9a\xdf\x2f\x5b\x19\x44\xa6\xfd\x85\xbf\x08\x9f\xe9\x09\x88\x4e\x39\xe5\xf5\x0c\x9a\x6d\xb4\xcf\xb1\xce\x64\x9a\x97\x2d\xc9\xa8\x95\x11\xdd\x8c\x25\x43\xe6\x65\x62\x4d\x07\x23\x41\x55\x7a\x38\x7d\x8b\xe7\xf7\xb0\x76\x73\xc2\x81\xe4\x51\x85\x51\xb9\xec\x2b\xee\xcd\xc3\x08\xf4\x3d\x03\xc2\x5e\x57\x43\xec\x66\x34\xca\x0a\x90\x60\x9e\x71\x23\x9c\xf4\x99\x18\x84\x16\xf3\x26\xc2\x8a\x13\xa4\x45\xcc\xe1\x4d\x24\x1a\x69\x9b\xee\xc1\xa1\x8b\xb8\x4c\x87\x92\x11\xa3\x85\xe2\xc4\x57\xae\x5e\x7d\x11\xdb\x41\xe3\x19\x81\x9d\xaa\x99\xb4\xa0\xd5\x0e\x95\xec\x2a\x09\xc3\xcb\x5c\xc9\x90\xa0\x34\xd1\x80\x20\x1d\x71\xf1\x2d\x16\x9b\xc3\x1c\xd2\x38\xf0\x42\xb7\x68\x2c\xec\x7d\x92\xc9\x91\x29\xb6\x10\x83\xd4\xca\x8b\xd5\x21\xe1\x8f\xe2\xcf\x78\x88\xe0\x7e\x13\x49\x91\xa8\x4f\x72\xda\x97\xc7\x49\x52\x68\xad\x1a\xd7\x45\x29\x8b\xce\x3d\x42\x50\xaf\x84\xda\xdd\xc1\x24\xc5\x20\xf6\xd0\x17\x3e\x6d\x62\x2d\x2a\x2d\x30\x87\xec\xa2\xb5\x7b\xf8\x42\x71\xdf\x7c\xc8\x39\x0b\x19\x0b\xb4\x85\xfe\x55\xf1\x24\x3b\x2b\x6f\x18\xd7\x0c\x09\xf2\xaa\xca\x1e\x08\xbb\x36\x7d\x82\x09\xd5\x83\xe6\xe6\xdb\xba\x58\x30\x39\x92\x63\x4f\x3d\x8e\xf4\x74\xd9\x02\xda\xf0\x79\xb0\x33\x67\x3c\x7c\x75\xd3\x12\x56\x77\x08\x8d\x3b\xc5\xa0\xaf\xb0\x0d\x77\xa4\xcb\xdc\xb5\x3c\x49\x52\xfc\x96\xca\x99\x00\x5b\xc1\x1e\xfc\x66\xbe\x96\x75\x9f\xc7\xe1\x3d\xde\xaf\x3a\x37\xde\xd8\x12\x37\x13\x7b\xaa\x48\x84\x4c\xe7\x7f\x9a\xe0\x92\x11\x2e\xaf\x70\x3e\x03\x75\xa5\x1b\xde\x5d\xfc\x6e\x72\x8a\x25\x93\x36\x69\xce\x49\xa3\xe0\xbc\x0d\xfd\x04\x39\x7d\x82\x19\x12\x41\xac\x8e\x77\xad\x12\x3a\xec\x14\x7f\xb4\x02\x92\x00\x3e\xa2\xaf\x29\xe8\x0d\x0a\x45\xaf\x12\xcf\xdc\x8b\x67\x67\xa5\xc3\x8c\x1d\x37\xb1\xe4\xf2\xb1\x52\x95\xc9\xd3\x56\xce\xac\xee\x56\xde\x05\xa8\x30\x4a\xe8\xaa\x2b\x09\x28\x08\xba\x57\xbb\xbf\x4d\xdc\xe2\x6a\x8a\x57\xcc\x9b\xcd\xca\x96\xb2\x63\x08\x5c\xa7\x04\xd4\xbd\x71\xa0\xf3\x2e\xf0\x2e\xbd\x35\x8a\xe1\xb6\x6e\xcd\x5a\xb8\x18\x14\x9e\x7d\xf1\x14\x9a\x2b\x3b\x54\x4b\xc9\xb4\xa9\xd3\xe8\x4c\xc4\x06\xff\xaa\x8d\x5c\x1c\xc2\xe0\x13\x98\x97\xfb\x61\x13\x19\x1c\xa8\x14\x33\xff\x39\xb5\x5b\x14\x2f\xa6\xcc\x58\x8b\x94\x47\xd2\xed\x4e\xf8\xae\xba\x6f\x32\x0a\xd6\xb2\x9d\xe2\xa4\x12\xc0\x93\xa9\xc1\xf9\x46\xcd\x79\x8a\xa6\xb8\x08\x99\x8f\xc0\x08\xf7\x66\xbd\x23\x45\x59\x6d\x81\x4c\xbc\x83\x5a\x76\x8c\x75\xa5\xa3\x11\xaa\xe7\x08\x1d\xbe\xc6\x83\x8d\x03\x8d\xb5\x2e\x7c\xe5\xb5\x78\xe1\x48\xbd\xa1\xc4\xf7\xe6\xa9\xcc\x84\x0a\x59\x35\x95\xe7\xc3\x15\xfb\x5e\x5a\x23\xf6\xcb\xbc\x9b\x73\x38\x24\x24\xde\xeb\x24\xb3\xcc\xb2\x6a\x2b\x6c\xae\x34\xbc\xe6\xed\x97\xab\xea\x67\x1a\x9a\x26\xb4\x84\xb5\x85\x2d\x1e\x9a\x8a\x09\x1b\xa2\x57\x72\xf1\x52\xc9\xc8\x73\x93\x47\x86\x04\x49\x87\xcf\x63\x5f\xdc\xdb\x82\xb1\x15\x06\x49\xc2\x0e\x56\x64\x37\xd6\x13\x55\x0b\x75\xdc\x1b\x0a\x36\x53\x14\x3d\x5b\x08\x75\xdc\x88\x4d\x7e\x96\xc3\xe4\xa4\x04\xde\xf0\x1e\x01\x12\x41\x4c\x5e\xb7\x61\xdc\x17\x54\xfd\xa8\xc6\x91\x45\x32\xdd\x28\x66\x59\xda\x87\x68\x2a\x44\x70\xbf\x13\xe5\xe2\xe2\x65\x2e\x82\x76\xd5\xc3\xb7\x6f\x9a\xc5\x8b\x78\x04\x34\x14\x12\x88\x11\x76\xc4\x7c\xf5\xad\xd3\xf0\x65\x31\xc0\x2e\x64\x4b\xb5\x59\xe3\xfd\x38\x0a\xfa\x3e\x8b\xee\xb7\xc3\x39\xf0\x0b\x69\xa9\xca\xd3\x06\xe2\x2d\x67\x75\x4a\x42\x5b\x17\xef\x06\xae\x95\xce\x32\xa5\x5b\x03\x7a\x88\x73\xed\x68\x32\xac\xb6\x45\x77\xc3\x43\x3c\x25\x09\x0c\xbe\xd0\x3f\x1a\x67\xb8\x3f\xe6\x7d\xd6\xd7\xc1\xb0\xe7\x9e\xe5\xdb\x97\xf1\xa9\xc8\x39\xa1\x90\xa5\x19\xf6\x46\x72\x30\x4d\x7b\x2d\x76\xe2\x04\xc3\x64\x8c\x8b\x98\x71\xd3\xba\x7f\xe1\x28\xe1\x08\x96\x6c\xd5\x1e\xf9\x5e\x53\xf3\x63\x6d\xeb\xb5\xef\x36\xfb\xf4\x47\x2f\xd0\x55\xc7\x5d\xdb\x9b\xff\x35\x38\x15\xe6\x61\x19\x1f\xae\x08\xb8\xbc\xd8\x33\xce\x4f\xd3\x13\x4b\xc0\x6c\xf6\x9c\x1a\x05\x96\x0d\x87\x45\x76\x6a\x8f\x67\x7d\x3e\x90\xb0\xe7\x58\x95\x14\x5f\xb3\xe8\xba\x6c\x5e\x2d\x81\xe2\x22\x97\x2d\xff\xed\x9c\x52\x0c\x4e\xb0\x98\x87\x8e\x8e\x69\x95\x91\xc8\x74\x35\xeb\x78\xee\x22\x73\x20\xc1\x69\x91\x12\x24\x05\x58\x3b\xe4\x81\x98\x23\xd9\x45\x30\x7f\x35\x61\x70\xaa\x45\x9c\x37\x59\xe5\x08\x0c\xd1\x13\x72\xbf\xa2\xb8\x08\x6d\x1e\x1b\xc7\x05\xe2\x4c\x60\x69\xd0\xc4\x4a\xe2\xc8\xc4\x29\x39\xd6\x7c\x85\xfc\x3e\x19\x9d\x43\xf1\x2a\x5f\xa0\x30\x86\x89\xdf\xf2\xc0\x85\x06\x11\x13\xea\x91\x37\x24\x94\xe2\xd0\xde\x50\xc6\x7b\xac\x2d\xf1\x23\x00\x99\xcd\xb5\x66\xd6\x47\x48\x93\x9c\x79\xb6\x55\xae\x48\xf7\xb6\x43\xbb\xc7\xf3\x2f\xc9\x85\xe9\xd3\xda\x2f\xca\x45\x3a\xaf\xce\xd6\x2c\xc9\xb1\x47\x60\x63\xac\x04\x7b\x18\xb2\x25\x4d\xc6\x34\x88\x81\x84\xa4\x53\x61\xd8\xa9\x09\xb3\x13\xba\x18\x0e\x59\xcb\x80\x39\x89\x28\x5b\xe7\xef\x58\xc4\xca\x20\xcc\xd2\x45\xa7\xe9\x95\x08\x26\x75\x13\xf1\x1a\xaf\xfa\xc9\xf0\x28\xd3\xaa\xb0\x0b\x14\x4d\xbf\x38\x87\xf0\x78\x9a\xb0\x16\x54\xdf\xda\xe6\x33\xd2\x8f\xea\xc6\xf5\xe3\xd8\x6e\x36\xf1\xa3\x06\xf8\x42\xca\xae\x61\x08\x7c\x25\x6e\x9b\x98\xcd\xb6\xd0\x51\xaf\xbf\x7b\x6e\x7c\xe6\xa2\x13\x32\x3b\x10\xd4\x05\x93\x08\x5e\xcf\x7a\x39\x51\xcb\x97\x3e\x47\x4a\x22\x9d\x99\x7c\x0d\x66\x9c\x1f\x39\x83\x13\xac\x9c\x11\x73\x48\x2a\xb8\x9e\x6d\xe6\xf7\x26\x6d\xe4\x46\x5a\x0b\x15\x94\x6b\x55\xc4\xf3\x1d\x5c\xc5\xfa\x88\x78\x33\xbd\x62\x51\x8b\x04\x09\xc8\x83\xa9\x04\x72\xdf\x04\x78\xbc\x7c\xb8\x02\xae\xd9\xb0\x54\x6b\xf6\xc7\x41\x21\x24\xf5\x2b\xfe\x6b\x2d\x72\xd5\xbf\xc9\xcd\xfe\x84\x0f\xfd\xfd\xf8\x78\x04\xf8\x31\x7f\xab\x82\x29\x0e\x2c\x7f\x0d\xc5\x4c\x48\x6a\x3c\xe6\xc4\xf6\xb4\x4a\x84\xd9\xd6\xac\x21\x5e\xc7\x2d\x12\xa6\xa4\xdb\xff\x30\xee\xe0\x51\xca\xea\x1c\xfd\xac\x08\xf2\xab\xe1\x46\x79\x35\x65\x7d\x0b\x23\x0b\xb2\x61\x27\xa6\xeb\xd5\x31\xe9\x04\x62\x5b\x35\x60\x5f\xb7\x83\x92\x31\x2a\xa1\x0c\x74\x98\x12\xd7\x29\x19\x6f\xbd\xac\x76\x90\xa1\x85\x2b\xb1\xc1\x8e\x18\x5d\x13\xfc\x14\xc2\xdc\xf1\x8e\x22\x63\x84\x95\x27\x31\x08\xda\x9b\xa3\xeb\x2d\xfe\x5d\x82\xca\x1c\x85\x05\x47\x66\xbb\x17\x37\x0d\x97\x7f\x1f\x50\x2f\x59\x3b\x46\xf8\xc2\x8e\x8d\x3b\x35\xb7\x38\xe3\x09\x2e\xf3\xc8\x1b\xab\x30\x96\x97\xf8\x04\x9e\x58\x4c\x8d\xad\x06\xd2\x83\xe5\xc2\xf2\xab\xc6\x4a\x1e\x85\x6f\xa9\x87\xcb\x2c\xf7\xd3\xc7\xcb\x41\xbd\x3c\xb2\xb8\xf7\xb5\xe1\x50\x63\x8f\x1e\xa7\xd9\x54\xd0\x16\x08\x4d\x58\x3a\xcc\x7a\xf4\x1f\xd8\xb3\x3c\x26\x50\x08\x63\x7d\x02\x5f\x0c\xb9\xa6\xe3\x07\x35\x65\x41\x2d\xad\xf4\x9f\xb3\x8b\x91\x87\xa5\xe9\x2a\x4a\xee\x42\x00\x25\x76\x4e\x09\x5d\x3d\x9a\xf4\xf9\x93\xd3\x83\xd6\xa1\x64\xa1\x3f\x63\x96\xee\xea\xdb\x3b\x19\xd9\x5c\x96\x62\xba\x1c\x16\xa7\xed\x02\x8c\x7a\x0d\x31\x28\x82\xb9\x4c\x54\xf8\x82\xe6\xe8\x10\xd4\xe7\x3b\x73\x2e\x73\x50\x9b\xb1\x68\xac\x32\x90\xba\xba\x05\x1f\xcd\x9d\x3a\x59\xff\x25\x31\x41\x97\x5a\x89\xe8\xd2\x08\xdb\xef\x19\xbf\x2a\xc2\x7e\x08\x72\x5c\xcd\x85\xa3\xe1\x1c\xd2\xc5\xe0\xae\x98\xdb\x22\x3a\x95\x2c\x71\xe3\x4a\x4c\xd4\x46\xdd\x06\x8e\xe8\xb2\x07\xd4\xef\x23\x8f\x0d\x97\xb7\xcd\x70\x03\x41\x82\xd6\xde\x9c\x57\x22\xd1\x05\x63\x6b\x81\xc8\xe9\x0f\x3a\x7d\x80\xe3\x03\xcd\xfc\x49\xcc\x07\xf5\x07\x2a\x45\xc4\x91\x30\x0c\x9a\xd8\x88\xe2\xb2\x96\xbf\x4e\x4a\xd9\x0b\x99\xb1\x9f\x12\xd1\xa2\x88\xaa\xed\x7d\xff\x64\xbc\x3e\x15\xe3\x60\x4e\x2c\x07\xa3\x8c\x6e\xae\xfd\x3c\x09\x90\x8c\x03\x19\xb1\x8e\xe0\x24\xcd\x0a\x41\xc8\x9e\x47\xb1\x68\xd1\x1b\xcc\x34\xa9\x19\xec\xab\x24\x83\xf4\xf9\x59\x3c\x1d\xeb\x3e\xa1\x66\xdc\x5a\xf1\xf9\x19\xa6\x1f\xb0\xb3\xa5\xf9\x6f\xec\x22\xae\x83\xe1\x95\xba\x6a\x23\xbb\x43\x1e\x17\x97\xc2\x45\xe0\x32\xd9\x13\x97\x53\x12\x7e\x6e\xaf\x0a\x6b\x0a\x40\x4a\xf7\xd6\xde\x9e\xb9\xc6\x02\xa9\x86\x5e\x46\x06\x26\xf7\xe0\x06\x6b\xf2\xaf\x28\x13\x07\x6a\x57\x5e\xf7\x71\xaa\xa1\xc4\x3a\x9e\x86\xbd\x52\xc8\xed\x0a\x1d\x1d\xc3\x3e\x22\x77\x27\x6e\x8f\x71\xb4\x17\xce\x0f\x95\x9e\x4a\xd8\x41\xc4\xed\xb0\x08\x33\x53\xca\x44\xa4\xc5\xa4\xe1\x41\x37\xdd\x0e\x27\x64\x13\xfd\xfb\x8d\x37\x1a\x60\x59\x0c\xf1\x19\xe6\xf4\x5f\xeb\x93\x50\x36\xd4\x1c\x53\x65\x01\x9b\x46\x7b\x0c\x22\x8f\x4a\xb8\x69\x6a\x82\x2e\x10\x1a\x94\xa7\x68\xda\x66\x7b\xe8\x37\x82\x78\xa4\x6c\xeb\xd3\x88\xd8\x4a\xa2\xc1\x6f\x4f\x61\xce\x11\x76\x73\xf4\x69\x36\x8d\xa2\xd3\x5b\xf8\xc3\xf5\xa7\xea\x7b\x0c\x0c\xc0\xf4\xba\xd2\x03\x5a\xa7\x3d\xc1\xe7\x9a\xf1\xfb\xb0\xbc\xdb\x7b\x22\x27\x69\xe3\x30\xab\xc7\x9e\x76\xba\xe9\xb1\xbb\x57\x45\xea\x96\xe4\xf7\xe1\x54\x06\x36\x4e\x43\x87\x2b\x39\xc2\x52\xcd\xad\x11\x7a\x3a\x08\xc4\xdf\x0b\x7b\xa6\x95\x5d\x8b\xd3\x3d\xd0\xac\x6b\xc5\x52\x88\x91\x05\x1e\x85\x06\xb4\xf0\x32\xa6\x4d\xee\x51\xbd\xe6\x8d\x0c\x61\x0d\x32\xf4\x34\xb5\x02\x37\x14\xb0\xb4\x9f\xe3\x76\xa0\x51\x87\xf4\x0a\x24\xa4\x84\x44\xff\x21\xdd\x1c\x70\x15\x09\x69\x3b\x55\xbf\x19\x33\x05\xa2\xfd\x56\x91\xea\x31\x15\xfa\x22\x01\x81\x6d\xf9\x87\x55\x24\x89\xc1\x11\x6f\xc3\x8a\xfe\x01\x45\xbc\x16\xb2\x53\x69\xc4\x92\x04\x9f\x1e\x45\x78\xdd\x1f\xb1\x01\xf4\xaf\x7a\x3c\xa7\x42\x23\x45\x42\x0d\xe6\xa3\xff\x36\x9f\x1c\xde\x8a\x48\x3e\x11\x69\xd1\x35\x50\xfa\xc2\xb2\x5c\x01\x00\xa0\x74\x97\xd4\x71\x37\x37\x71\xb7\xe0\x33\x73\xb5\x30\x71\xb7\x00\xd8\x58\x58\xb9\x18\x59\xd8\x19\x59\x79\x35\x58\x39\xf8\xd8\xd8\xf8\xd8\x38\xe9\x59\x58\xf8\x58\x58\xc0\xac\xf1\x7d\xff\x97\xe0\xe0\x64\x6e\x63\xe9\xf3\xff\x17\x52\xec\x39\x20\x00\x00\x90\xfa\x8f\xe0\xe6\x64\xe9\xee\x65\xe2\x6a\x01\xc8\x3a\x98\x58\x59\x28\x9a\x58\xd9\x98\xd9\x91\x71\x31\x71\x33\xf1\x30\xf2\x92\xb1\xb1\xb0\x72\x30\xb2\x70\x32\xb2\xb2\x91\xa9\xb2\x72\x91\x59\xbb\xbb\x3b\xf3\x31\x33\x7b\x79\x79\x31\xd9\xfc\x87\x76\xf8\x2f\xcd\xe4\xe4\x6a\xb5\x15\xf9\x07\x00\x00\x00\xef\x3f\x3f\x6a\x58\x7b\x38\x98\xf2\xf1\x49\x38\x99\x79\x38\x58\x38\xba\xf3\xf1\xa9\x98\x58\x59\xb8\x01\xac\x55\x9f\x3f\x98\x01\x00\xc0\xf9\x1f\xe6\xbf\x9d\x7c\x7c\xd6\x16\x36\x56\xd6\xee\x00\x4b\x8e\x26\xed\x20\x00\x00\xd8\xff\x2f\xa1\x6d\x63\xee\x6e\x0d\xb0\x7c\x57\x6c\x94\x07\x00\x00\xff\x7f\x00\x45\x1b\x07\x0b\x77\x1f\x67\x0b\xe0\xbf\x13\x31\x3b\x3b\x5a\x09\xb7\x68\x29\x01\x00\x80\xfa\x3f\x90\xba\x8d\xaf\x05\xc0\x22\x26\x96\x5e\x2a\x74\x09\x00\x00\xc6\xff\x3c\x69\xaa\xc9\x02\x96\x36\xf6\x16\x7c\xcc\xcc\x43\x5e\x71\xf3\xff\xd9\x42\x56\x52\x49\xa2\x41\xcc\x38\xf4\xff\x04\x00\x00\xff\xff\xbb\xd1\xa1\x95\xec\x21\x00\x00") + +func staticImgCowyoAppleIconPngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoAppleIconPng, + "static/img/cowyo/apple-icon.png", + ) +} + +func staticImgCowyoAppleIconPng() (*asset, error) { + bytes, err := staticImgCowyoAppleIconPngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/apple-icon.png", size: 8684, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoBrowserconfigXml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\x41\x0e\x82\x30\x10\x05\xd0\xbd\xa7\x20\x75\x0d\x6d\x43\x08\x2e\x4a\x59\x78\x05\x2f\x80\xb5\x34\x93\x94\x19\x6c\x41\x7b\x7c\x13\x84\x18\x0c\xb3\xfc\xff\x2d\xe6\xab\x36\x0d\x3e\x7b\xd9\x10\x81\xb0\x61\xb2\x10\x2c\xb3\x68\xe8\x01\xe8\x1a\x36\x4f\x7d\x7e\x61\xad\x3e\xa9\x7b\xa0\x77\xb4\xc1\x10\xf6\xe0\xb4\x1a\x62\x37\x8e\x1e\x4c\x37\x01\xa1\x56\x13\x78\xab\x55\x7c\xce\x5d\xb0\xb5\x48\xb5\xf0\xe4\x28\x8b\xc1\x34\x8c\x0f\x31\x07\x43\x98\x2f\x79\x31\xa2\x63\x7c\xa3\xb2\x12\x49\x56\x47\x78\x6d\xf6\xbc\x94\x22\x95\xf2\x88\xaf\xcd\xc6\x6f\xe0\xed\x95\x3c\x05\x7d\xee\x97\x53\xfc\x17\x29\xfe\xfd\x96\xff\x6d\xe0\xfb\x89\x9f\x00\x00\x00\xff\xff\x48\x63\x5a\xb8\x19\x01\x00\x00") + +func staticImgCowyoBrowserconfigXmlBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoBrowserconfigXml, + "static/img/cowyo/browserconfig.xml", + ) +} + +func staticImgCowyoBrowserconfigXml() (*asset, error) { + bytes, err := staticImgCowyoBrowserconfigXmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/browserconfig.xml", size: 281, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoFavicon16x16Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x7d\x01\x82\xfe\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\x79\x71\xc9\x65\x3c\x00\x00\x01\x1f\x49\x44\x41\x54\x78\xda\x94\x92\xb1\x71\xc2\x40\x10\x45\x0f\xa1\xc0\x19\x2a\x41\xa1\x33\xab\x04\x51\x01\x74\x80\x3b\x80\x0e\x3c\xaa\xc0\x26\xb3\x23\x4c\x05\x1a\x32\x32\x20\x24\x32\x54\x20\x1c\x3a\x53\xea\xc8\xfe\xcb\x3c\xcd\x9c\xe5\x13\x03\x3b\xf3\xb4\x92\x6e\xf7\xef\xdd\xee\x39\xe7\x5c\x22\x72\x77\xbb\x65\x46\xac\xc7\x58\x4c\xc4\xf6\x46\x01\xcb\x49\x4c\x20\x65\x07\x26\x74\x10\xb5\x78\x14\xa3\x56\xc2\x4e\xbc\xb3\x9e\x43\xdd\xe7\x08\xf7\x78\x13\x79\x11\x2b\x51\x88\x6f\xb1\x14\x7b\xf1\x20\x5e\x89\xb1\xd8\x3b\x0a\x9e\xcd\xd4\x4a\x51\xe1\x17\xe2\x03\x2a\xbe\xcd\xcf\xf0\x1b\x76\xe9\x62\x6f\x8b\x47\x18\x88\xb9\x38\x51\xa9\xf6\x62\x72\xaf\xaa\xad\x25\x11\xaa\x53\x9a\x38\x60\x31\xc5\xd7\xad\xae\xe7\xfc\x2b\xf8\xb7\x88\xa8\x94\x91\xf4\xc9\x7b\x19\xe8\x7a\x49\x1f\x9a\xb1\x5b\xd1\x55\xcf\xab\x38\xe6\xdd\xba\x3f\xec\x18\x5d\xc9\xf1\x1c\x85\x4f\xa1\xa0\xcd\x85\xd9\xff\x5b\x8b\x02\x41\xcd\x91\xae\xb2\x90\xc0\xb1\x43\x20\xf3\xe7\xde\x58\x1c\x08\xb4\x69\x3c\x35\x57\x95\xae\x27\x24\xef\xae\xdd\x59\xc5\x25\x9a\x51\xd9\xbe\x7f\x10\xfa\x63\xfd\x0e\x81\x94\xa3\xac\xe9\xc9\x17\xc9\x6f\xed\xc0\x5e\x87\x80\x05\x3f\xb7\x2e\x54\x11\xea\xc1\xaf\x00\x03\x00\x6c\x03\x41\xc3\x90\xb5\x39\xa5\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x23\x02\x1f\x8d\x7d\x01\x00\x00") + +func staticImgCowyoFavicon16x16PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoFavicon16x16Png, + "static/img/cowyo/favicon-16x16.png", + ) +} + +func staticImgCowyoFavicon16x16Png() (*asset, error) { + bytes, err := staticImgCowyoFavicon16x16PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/favicon-16x16.png", size: 381, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoFavicon32x32Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd5\x69\x50\x53\x59\x16\x07\xf0\xa3\xdd\x4c\x23\xc6\x82\xb8\x80\x6d\xab\xc5\xb4\xda\xce\x08\x49\xde\x7b\x49\x88\x84\x16\x11\xc2\x12\x81\x08\x21\xac\xa3\x98\x97\xe4\x65\x01\x92\x40\x12\x82\xa0\x22\x9b\xa8\x88\xc3\xda\x0e\x36\x0d\xa8\x05\x2a\x8b\x18\x50\x50\x81\xb6\x40\x69\x36\x19\x64\xb1\x61\x50\x2c\x5b\x1a\x64\x64\x51\x44\x19\x44\x54\xa6\xe2\x97\x71\x9c\x9a\x0f\xe7\xd3\xfd\xfd\xcf\xbd\x75\xea\x56\x9d\x13\x3e\x3c\xf7\x15\x66\xeb\xcc\x00\x60\x05\xd7\x83\xc3\x07\x00\x6b\x63\x99\x7e\x01\x00\x9c\xe2\xb4\x16\x00\xf8\x52\xb6\xcb\x7b\x17\x40\x55\xc6\xf2\x77\xb8\x09\x00\x2c\xd1\xf2\xdd\x9d\xa1\xb2\x6b\xfd\x33\xa3\x14\x7b\xf0\xbd\x01\xe2\xbe\x03\x48\x48\x01\x78\x0b\x00\x09\xff\x04\x88\x46\x00\xc6\x85\x00\xec\x3c\x00\xab\xc8\x9f\xea\x7c\xbf\x07\x58\x4a\xf5\xf1\x12\xb8\x2e\x2e\x2e\x7e\xf8\xf0\xe1\xfd\xfb\xf7\x8f\x1f\x3f\x3e\x7a\xf4\xe8\xf4\xf4\x74\x4e\x4e\xce\x9d\x3b\x77\xb2\xb2\xb2\xd6\xac\x59\xd3\xdd\xdd\xcd\x62\xb1\xe2\xe2\xe2\xa4\x52\xa9\x99\x99\x59\x49\x49\x49\x57\x57\xd7\xa6\x4d\x9b\x3c\x3c\x3c\x5e\xbc\x78\xf1\xea\xd5\xab\x80\x80\x00\x37\x37\xb7\x83\x07\x0f\xde\xbf\x7f\xbf\xb6\xb6\xf6\xec\xd9\xb3\xb9\xb9\xb9\x85\x85\x85\x55\x55\x55\xf7\xee\xdd\x7b\xfe\xfc\xf9\xa9\x53\xa7\xf6\xee\xdd\xeb\xe9\xe9\xe9\xeb\xeb\x7b\xee\xdc\xb9\xa8\xa8\xa8\x8a\x8a\x8a\x81\x81\x81\x85\x85\x85\xc1\xc1\x41\x1f\x1f\x1f\x2e\x97\x1b\x1c\x1c\x1c\x1e\x1e\xae\xd7\xeb\x63\x62\x62\x54\x2a\xd5\xbe\x7d\xfb\x22\x22\x22\xda\xdb\xdb\x1f\x3e\x7c\x78\xf8\xf0\xe1\x1d\x3b\x76\x5c\xba\x74\x69\xcf\x9e\x3d\xad\xad\xad\xef\xde\xbd\x23\x08\x22\x2d\x2d\x2d\x34\x34\xd4\xcb\xcb\xcb\xc9\xc9\x49\xa7\xd3\xdd\xba\x75\xeb\xd9\xb3\x67\x6f\xdf\xbe\x9d\x9c\x9c\x6c\x6a\x6a\x4a\x4d\x4d\x75\x76\x76\xf6\xf3\xf3\xe3\xf1\x78\x41\x41\x41\xc9\xc9\xc9\xf5\xf5\xf5\x67\xce\x9c\x99\x98\x98\xe8\xed\xed\xbd\x72\xe5\xca\xd4\xd4\x14\x86\x61\xf3\xf3\xf3\x42\xa1\xf0\xea\xd5\xab\x4f\x9e\x3c\xd9\xb6\x6d\xdb\xf8\xf8\x78\x43\x43\xc3\xed\xdb\xb7\x8b\x8a\x8a\x12\x12\x12\x02\x03\x03\x87\x87\x87\x8f\x1d\x3b\xe6\xee\xee\xbe\x61\xc3\x06\x8d\x46\x93\x97\x97\x17\x16\x16\x26\x93\xc9\xd4\x6a\x35\x9f\xcf\xbf\x71\xe3\x06\x82\x20\x07\x0e\x1c\x28\x2e\x2e\x8e\x8d\x8d\x2d\x2d\x2d\x0d\x09\x09\x69\x6e\x6e\x7e\xf3\xe6\x4d\x52\x52\xd2\x85\x0b\x17\x6c\x6d\x6d\x0f\x1d\x3a\x54\x5d\x5d\x3d\x3a\x3a\x3a\x3b\x3b\xab\xd5\x6a\x33\x32\x32\xee\xde\xbd\x9b\x9e\x9e\x2e\x97\xcb\x05\x02\x41\x4d\x4d\x0d\x87\xc3\x61\x32\x99\x2e\x2e\x2e\x28\x8a\x1e\x39\x72\x64\x64\x64\xa4\xad\xad\xad\xbf\xbf\x7f\x6e\x6e\xee\xf2\xe5\xcb\x76\x76\x76\x3d\x3d\x3d\x75\x75\x75\x54\x2a\xd5\xda\xda\x3a\x3f\x3f\x7f\xf7\xee\xdd\xf1\xf1\xf1\x2f\x5f\xbe\x74\x75\x75\x5d\xbf\x7e\x3d\x83\xc1\x70\x70\x70\xf0\xf6\xf6\x7e\xfd\xfa\xf5\xa3\x47\x8f\x4e\x9e\x3c\xb9\x7f\xff\xfe\x8e\x8e\x8e\xec\xec\x6c\x83\xc1\x90\x99\x99\x29\x12\x89\x52\x52\x52\x12\x13\x13\xaf\x5d\xbb\x36\x36\x36\x56\x5e\x5e\x3e\x33\x33\xd3\xd7\xd7\x27\x16\x8b\x0b\x0a\x0a\x5a\x5a\x5a\x14\x0a\xc5\xd3\xa7\x4f\x29\x14\xca\xf9\xf3\xe7\x2d\x2d\x2d\xad\xac\xac\x48\x24\xd2\xd0\xd0\x90\x8d\x8d\x8d\xa3\xa3\x63\x63\x63\x63\x67\x67\x67\x59\x59\x19\x8e\xe3\x0f\x1e\x3c\xb8\x79\xf3\x26\x44\x97\xf3\x8c\x5f\x4e\xe4\xe9\xce\x81\xe3\x26\x1b\x3c\x00\x60\x59\xa4\x47\xb0\x16\x00\x3c\x3e\x96\x5b\x7b\xb8\x23\xc0\xd2\x9d\x5c\xce\x2e\xc1\xf6\xbb\x62\xa1\x50\x28\x69\x5c\x96\xe7\xa4\xe9\xb4\xad\xd8\x3e\x3a\xf8\x8f\xc4\xcd\x5f\x6d\xb5\xa2\x9a\x54\x0c\x7d\xef\xb4\xfc\xc0\xfc\x9b\xa8\x3f\x5b\x58\xac\x5e\x29\xb5\x20\xaf\x59\x75\x6c\xc6\x75\xf3\xe6\x92\xe2\x41\x89\x64\x74\xe4\x5c\x17\xdf\x47\x30\x2c\xb2\x08\x08\x20\xf3\xfd\xfd\xfe\x36\xd0\x3d\xd2\xd3\xdb\xdf\xf3\x6b\x1f\x0b\x11\xf0\x31\xac\x5f\xc8\xcc\x62\x30\xe9\xd7\x0d\x12\x43\xb5\x1d\x71\xbd\xea\xd7\xda\x55\x35\x31\x91\x3a\x8d\xd4\x20\x12\x09\x35\x51\xd1\xda\xb9\xe9\xd5\x33\x33\xff\x7a\x59\x33\x2d\x16\x4e\x5b\xcd\x9a\x99\xea\x70\xf3\x6c\xa9\x48\x68\xaa\x27\x2d\x23\x4c\xfb\x58\xe6\xa7\x57\x8c\x65\x58\xfc\x75\xc4\x3f\x6d\xe9\xe0\xc8\xca\x29\x9c\xfc\xbb\xe5\x37\xe4\xd6\x8d\xb4\x1f\x33\xf3\x36\x53\x4f\xe7\xfe\x34\x9c\xfd\xa3\x65\x91\xea\xa2\xc5\x1f\xb4\xfb\xdc\xbc\xa4\x01\xb5\x79\x1a\x5e\x25\xb7\x50\xef\x15\xbf\x0b\x27\x27\x2b\xa2\xb8\xa5\xc8\x90\x03\x95\x20\x61\x6e\x33\xf8\xb7\xe9\xa4\xf4\x99\x6f\x9d\xe2\xed\x57\xb9\xb8\x6e\x71\xf9\x21\xca\x9e\x13\x42\x77\x6f\x2f\xbc\xc8\xde\xf3\xc5\x16\x53\x7e\x98\xe0\x97\xdc\xb0\xf9\xe5\x09\x9d\x75\x71\x3b\x3c\x17\xd3\x52\xdd\xc8\xab\x4d\x98\xde\x68\x67\xe2\x4d\xfd\xdf\x4d\x48\xa3\x1d\xed\x67\x7d\xac\x2c\xc2\x14\xca\xe4\xf6\x90\xd4\xda\x87\xfa\x84\xb5\x95\x05\xe3\xa4\x80\xe1\x8e\xcb\x4e\xe6\xfa\x68\xfd\x5c\xb3\xb3\x12\xef\x98\x98\x55\x4f\x8a\x85\xf2\x2b\x13\x45\xdd\x5d\x8d\x48\x96\x4b\xe7\xe9\xad\xe1\xbd\x92\xe0\x52\x9f\xa0\x66\x87\xa7\x61\xbc\x33\xeb\xf8\x7e\x0e\x94\x38\x76\xde\xce\x4d\x0f\xa4\xd2\x47\x15\x8e\x92\xad\x6b\xff\xd2\xf9\x3c\x9f\x3e\x60\x1e\xdc\x26\xdc\x88\xd1\x62\x1c\x57\xc5\xdd\xdf\x36\x6d\xfd\xca\xd2\xb6\xf9\xf8\x82\x6b\x6c\x57\x5b\x13\xf2\x95\x4b\x62\x5d\xb7\xe8\xcb\xd6\x8e\xc8\x65\xa9\x49\x25\x96\xf3\xa6\x3c\xce\x22\xd6\xf9\xba\xe6\x90\x49\xd2\xcf\x9a\x75\xa7\x53\x22\x42\x8e\x0b\xaf\x96\x8a\x3a\xe8\xb6\x2b\x29\x06\xaf\xf2\xe0\x9a\xb2\xef\x08\xb2\x38\x8d\x61\x69\x52\xbe\xe0\xdf\xef\x75\x22\xb4\x5e\xaf\xfc\xbd\xae\xa6\xa3\x32\x68\x35\x32\x53\x19\x28\xc8\x26\x84\x99\x7d\xa1\x1b\x2b\x99\xe4\x93\x4b\x53\x27\x57\x94\xd8\xf7\x93\x48\xb6\x96\xdf\xb0\x7e\x11\xe7\xc8\xe4\x83\xb6\xd7\x09\x1b\xc4\x46\x95\xff\xa7\xb2\x54\xff\xc4\x16\xfd\xe1\x23\x27\x2a\x2b\x89\x71\x7e\x8e\x5e\xe8\xdf\x68\x88\xf8\xa1\xe0\xe2\xd8\x35\x45\x5f\x83\x1e\xfb\x0d\x9a\x12\xe3\xe3\xc9\x64\xf2\x68\x9b\x08\x96\x0c\x24\x95\xbc\xff\xda\xf0\x02\x00\xb6\xe8\x5c\x83\x74\x12\x5c\x47\xb0\xc5\x1a\x02\xd7\x11\x80\x21\xa8\x1d\x05\xa1\x53\x50\x7b\x01\xca\x60\x63\x18\x1b\x63\xda\x20\x08\x1b\x41\x7e\x43\xd3\x7f\xfe\xaf\x80\x52\x2d\x51\x48\x63\xff\x7f\x20\x2b\x82\xb1\x04\x00\xdc\x8c\x01\xad\x5a\xaa\x8b\xc1\x35\x04\x70\x95\xb8\x8c\xf0\xc6\x65\x0a\x71\xb8\xb5\x1d\x95\x45\xdd\x4e\xb1\xb7\xc6\x10\x94\x41\x41\x98\x14\x14\xb3\xf6\x45\xed\xac\xe5\x3a\x5d\x24\x9b\x46\x8b\x89\x89\xa1\x2a\x8c\x5a\xf9\x51\x53\xd5\x1a\xd9\x50\xea\x14\x00\xc0\x5a\x63\x47\x81\x3c\x5a\x29\x62\xb3\x39\x6a\x71\xb4\x92\x50\xe9\xd8\x6c\x1f\x5c\x46\x68\x01\xbd\xb8\x58\x4f\xfb\xcc\x7c\xbc\x93\xcd\x96\x13\x0a\x99\x5c\x07\xa8\x3d\x66\x0e\x9a\xa3\x00\x60\xf5\xbf\x26\x50\x21\xd1\xc9\x8d\xa4\xaf\xe2\x8f\xa6\x00\xf0\xf5\x27\xc4\x5b\xa1\x24\x74\xb1\x91\x04\x7c\x7c\x15\x2d\x52\x25\xdb\x59\x1d\xc0\xfb\xac\x8f\xb7\x40\xa1\x24\x00\x65\x30\xb7\xd3\xed\x59\x74\x06\x33\x70\xd4\x60\xdc\x33\xe6\x9f\x10\x3f\x45\x1c\x01\x88\xb3\x73\xee\x79\xc7\x49\x00\x08\xf8\xe4\xc8\x9f\xcf\x05\xa9\x22\x82\x60\xd3\x68\x34\xa5\x4a\x17\xa1\x96\xd1\xa4\xb8\x5e\x21\x56\xab\xb4\xb4\xff\xcc\x99\x26\x25\xec\x09\x7b\x06\x0b\x47\x31\x8c\x4e\x97\x48\xa4\x84\x94\x8e\x8b\x24\x2c\x14\x67\xa2\x28\x41\x97\x30\xa9\x0a\xb1\x9a\x1a\xa9\x92\x35\x48\x4e\xb4\x1b\x07\xc6\x75\xe5\x71\x2a\x9d\x85\x49\xff\x0e\x00\x00\xff\xff\x44\xae\x60\xbd\x01\x07\x00\x00") + +func staticImgCowyoFavicon32x32PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoFavicon32x32Png, + "static/img/cowyo/favicon-32x32.png", + ) +} + +func staticImgCowyoFavicon32x32Png() (*asset, error) { + bytes, err := staticImgCowyoFavicon32x32PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/favicon-32x32.png", size: 1793, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoFavicon96x96Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x97\x77\x38\x15\xee\xe3\xfe\x1f\x2b\x23\x33\x5b\x99\x95\x55\x38\xc7\x76\xc8\xde\xe3\xd8\x5b\x71\x1c\x67\x58\xe7\xe0\x38\xf6\x8e\x50\x59\xf5\x0e\x25\x1c\xd9\x32\x42\x24\x24\xb2\x0e\x2a\xd9\x22\xa2\xec\x3d\x2a\xbb\x7e\x57\xef\x7f\x7e\x9f\xef\xe7\x7b\x7d\xff\xb8\xff\xba\x5f\xf7\xfd\x3c\xd7\x7d\x5d\xcf\x1f\x4f\xb2\x05\xdc\x80\x89\x81\x8f\x01\x00\xc0\x64\x64\xa8\x6b\x05\x00\x70\xfb\x2b\x3a\x2a\x00\xc0\x98\x7e\xe2\x5f\x83\x1a\xa3\x65\xa6\x05\x40\x6d\xda\xf9\x53\x04\x0d\x00\x80\x82\x60\x65\xa0\x0d\xaa\x3f\x5e\x5a\x05\x00\x08\x21\x0d\xad\xcc\x00\x08\x13\x05\x20\x26\x1e\x80\x63\x00\x40\xcc\x0a\x00\x44\x08\x00\x6b\x6e\x00\xc0\xb2\x01\xe0\xf6\x7b\xda\x6c\xa9\x06\x00\xe5\x99\x85\xa9\x8d\xde\x9f\x3f\x7f\xc6\xc7\xc7\xab\xaa\xaa\x96\x96\x96\xce\xce\xce\x3e\x7e\xfc\xf8\xe2\xc5\x8b\xf5\xf5\xf5\xef\xdf\xbf\x6b\x68\x68\xd0\xd3\xd3\xfb\xfb\xfb\x1f\x1d\x1d\x4d\x4f\x4f\xcb\xc9\xc9\x31\x32\x32\x46\x45\x45\x9d\x9c\x9c\x14\x14\x14\xd0\xd1\xd1\x01\x00\x14\x14\x14\xd6\xd6\xd6\x1a\x1a\x1a\x98\x99\x99\x25\x24\x24\x66\x66\x66\x7e\xfe\xfc\x69\x67\x67\xc7\xcf\xcf\xff\xf9\xf3\xe7\x87\x0f\x1f\x52\x53\x53\xd3\xd2\xd2\xe6\xe7\xe7\x0f\x0f\x0f\x9f\x9e\x9e\xfa\xf8\xf8\x38\x38\x38\x3c\x79\xf2\x84\x86\x86\x86\x92\x92\x32\x3d\x3d\x7d\x67\x67\xc7\xc0\xc0\xe0\xf2\xe5\xcb\x07\x07\x07\x37\x6f\xde\x44\x22\x91\x22\x22\x22\x0c\x0c\x0c\xa5\xa5\xa5\x8b\x8b\x8b\x10\x08\x04\x06\x83\xb1\xb2\xb2\x06\x04\x04\x74\x76\x76\xb2\xb3\xb3\xeb\xe9\xe9\xdd\xb8\x71\x83\x9b\x9b\xbb\xbf\xbf\xff\xce\x9d\x3b\x14\x14\x14\x4e\x4e\x4e\x3c\x3c\x3c\xcf\x9e\x3d\x0b\x09\x09\x09\x0e\x0e\x3e\x77\xee\x5c\x76\x76\xf6\xfe\xfe\xbe\x85\x85\x05\x1b\x1b\x5b\x49\x49\x89\xa2\xa2\xe2\x95\x2b\x57\xe6\xe7\xe7\x23\x22\x22\xce\x9f\x3f\xff\xeb\xd7\xaf\xad\xad\xad\xa9\xa9\xa9\xd9\xd9\xd9\x95\x95\x95\x8d\x8d\x8d\xdd\xdd\xdd\xd1\xd1\x51\x21\x21\x21\x28\x14\x6a\x6e\x6e\xce\xc9\xc9\x39\x30\x30\xe0\xed\xed\xcd\xc2\xc2\xd2\xd4\xd4\x34\x37\x37\xf7\xfb\xf7\xef\x1f\x3f\x7e\x2c\x2c\x2c\x14\x17\x17\x13\x89\x44\x2d\x2d\xad\x6b\xd7\xae\x09\x0a\x0a\x8a\x8a\x8a\x4a\x4b\x4b\xeb\xea\xea\x9a\x9a\x9a\xc6\xc4\xc4\x64\x65\x65\xd5\xd7\xd7\xff\xf3\xcf\x3f\x5e\x5e\x5e\x87\x87\x87\x58\x2c\x96\x89\x89\xa9\xae\xae\xae\xa5\xa5\xc5\xd3\xd3\x93\x8a\x8a\x0a\x8f\xc7\x2f\x2f\x2f\x37\x37\x37\xc7\xc5\xc5\x59\x5b\x5b\x73\x71\x71\x5d\xbc\x78\x51\x49\x49\xc9\xc3\xc3\x23\x33\x33\xf3\xc3\x87\x0f\xc7\xc7\xc7\xb5\xb5\xb5\x41\x41\x41\xad\xad\xad\x1c\x1c\x1c\xaa\xaa\xaa\x09\x09\x09\xef\xde\xbd\x1b\x1a\x1a\x8a\x8e\x8e\xbe\x70\xe1\x02\x1f\x1f\x9f\x98\x98\x98\xac\xac\xac\xa6\xa6\xa6\xba\xba\xba\xb2\xb2\xb2\x8c\x8c\x0c\x1c\x0e\x27\x91\x48\xe5\xe5\xe5\x45\x45\x45\xae\xae\xae\x35\x35\x35\xdb\xdb\xdb\xb7\x6f\xdf\x96\x94\x94\x34\x31\x31\xf1\xf3\xf3\xcb\xc8\xc8\xe8\xe8\xe8\xf8\xfa\xf5\xeb\xe6\xe6\xe6\xea\xea\xea\xb7\x6f\xdf\x06\x07\x07\x5f\xbd\x7a\x95\x9b\x9b\x9b\x94\x94\x84\x40\x20\x04\x04\x04\xaa\xab\xab\xdb\xdb\xdb\xdf\xbe\x7d\x8b\xc1\x60\xa4\xa4\xa4\x22\x23\x23\x5f\xbf\x7e\x6d\x68\x68\x68\x6c\x6c\x9c\x98\x98\x38\x36\x36\x56\x51\x51\x11\x16\x16\xd6\xd3\xd3\x93\x93\x93\x93\x9a\x9a\x6a\x65\x65\x85\x46\xa3\x79\x79\x79\xdb\xda\xda\x62\x63\x63\x51\x28\x94\x8b\x8b\xcb\xc8\xc8\x08\x81\x40\x10\x16\x16\xce\xcb\xcb\x6b\x6c\x6c\x0c\x0c\x0c\xc4\xe1\x70\xb7\x6e\xdd\xda\xdb\xdb\x9b\x98\x98\xe8\xeb\xeb\x4b\x4e\x4e\x7e\xfa\xf4\xa9\xaf\xaf\x6f\x59\x59\xd9\x97\x2f\x5f\x2e\x5d\xba\x74\xf7\xee\xdd\xeb\xd7\xaf\xdf\xbf\x7f\xff\xc1\x83\x07\xe2\xe2\xe2\xce\xce\xce\x95\x95\x95\x3a\x3a\x3a\xf6\xf6\xf6\xe1\xe1\xe1\x2a\x2a\x2a\x6f\xde\xbc\x51\x53\x53\xeb\xea\xea\x0a\x0d\x0d\x75\x73\x73\xeb\xee\xee\x4e\x4b\x4b\xb3\xb5\xb5\x8d\x8f\x8f\x7f\xfc\xf8\xb1\x8d\x8d\x0d\x99\x4c\xd6\xd6\xd6\xd6\xd7\xd7\xb7\xb4\xb4\x7c\xf9\xf2\xa5\xbb\xbb\xfb\xa3\x47\x8f\x8c\x8c\x8c\xae\x5e\xbd\x5a\x58\x58\x98\x92\x92\x32\x39\x39\xf9\xe9\xd3\xa7\xde\xde\x5e\x47\x47\xc7\x7b\xf7\xee\x99\x99\x99\x3d\x7f\xfe\x5c\x5e\x5e\x9e\xa4\xfa\x07\xfa\xf7\x05\xb9\x9b\x18\xe8\x82\x24\x1a\x7e\x43\x00\x00\xbd\x9f\xa1\x23\x01\x00\x60\xf8\xaf\xf4\xfb\xbc\xd5\x01\x38\xaf\x64\xa4\xab\x65\x83\x9d\xdd\x74\x0c\x75\xb0\xb6\xe7\x8a\xd6\xe6\xa0\x17\xef\xb9\xf4\xc8\x96\xdd\xd4\x3b\xcf\xd0\x86\x41\xbf\x70\x9c\xd6\xeb\x2e\x87\xb0\x2e\x1d\x89\x4e\xa7\x9d\x86\xe6\x9e\x66\x57\x53\xad\x82\x64\x19\x13\x43\xc3\xdd\xa2\x54\x4a\x7d\xfe\xa1\x46\x5c\x93\x8d\xe7\x0c\x77\x11\xd1\xb7\xd6\xeb\xd1\x38\xca\x87\x5f\x69\x14\x96\x7b\x14\xf6\xd5\x44\x9b\x92\x7a\x8f\xee\x54\xee\xab\xd2\xdb\xe8\x07\xfb\xb3\xaf\x97\xbf\x2c\x56\x1e\x20\x26\xff\x68\xb1\xdc\xf4\xf1\x51\xb5\x17\x2a\xf4\x56\x52\x65\xaf\x6b\xb9\x31\xd2\x51\x6b\xcd\xf9\x63\x65\x75\xf4\x1e\xea\x4a\x78\x7d\x81\xf9\x57\xb8\xed\xa7\x41\x5e\x17\x97\x8b\x12\x4a\xc1\x20\xed\x77\x6e\x85\x1b\xa0\x6d\xca\x4b\x19\xd5\x64\x01\xcb\x51\xb9\x12\xf9\x07\xcc\xa0\x75\x1d\x2d\x44\xbb\x4b\xb1\xd3\x91\x5b\xde\xee\x4d\x67\x35\xe7\x3b\xc9\xd1\x61\xa1\xdb\xf1\xe2\xa3\x1a\x6a\x62\xde\xf0\xd9\x60\x78\x58\xff\x04\xcb\xa4\x0b\x0f\x62\x42\x38\xc3\x2c\xf6\xa3\x03\x39\x31\x83\x91\x5f\xc1\x98\xba\xb0\xb7\x7d\xf2\x40\xd5\xb2\x43\x39\x6e\x5b\x10\xe8\xb4\x06\x8e\x86\x28\x9a\x66\xd3\x7d\x63\x81\x99\x47\xcd\x5d\xa1\x3b\x86\xf0\x88\x26\xae\x90\x2d\x58\xc3\x83\x1e\xc6\x44\x3b\x38\x23\x79\x10\xb7\xac\x54\xa7\x59\x27\x24\xe6\x67\x2e\x7b\x0c\x93\x1b\x59\xae\x4b\xf2\x95\xfc\xca\x3f\x07\x1d\x91\xb8\xcb\x7d\xde\x3f\xfa\x5e\x70\xec\x8a\xf8\xfe\x97\xbd\xf8\xae\x03\x0c\x63\xde\xaa\x86\x87\x5d\xfe\xe7\x59\x23\x81\x21\xc2\x52\xaa\x21\x9c\x57\x71\xbb\x70\x54\x3a\xd2\xd9\x5a\x2e\x9f\xc5\x73\x95\x97\xe4\xa0\x69\x59\xc9\xc8\x8a\xae\xe3\x8a\x0b\xb0\x8c\x6f\xa5\xb9\x86\xdf\x7d\x50\x3c\xe0\x52\x97\xad\x2c\x4f\x6b\x90\x91\xfb\x30\xe7\xc0\xdf\x63\x00\x5a\xb1\xaa\x42\x72\x48\xad\x02\x4b\x8c\xb9\x71\x09\x42\x2e\x71\x55\xef\x69\x83\x3a\x2a\xc6\xee\x8d\x98\x39\x3a\x7a\xab\xf7\xb1\x59\xd5\xf9\x97\x34\x43\xc2\x36\x9b\xd9\x7e\xe9\x75\xe7\x57\xe7\x3f\x95\x57\x84\x9b\xa6\xa7\x75\x27\xe4\xfb\x26\x61\xeb\x1e\xc6\xce\x2b\xd6\xce\x52\xdf\xcf\x44\x30\xcf\xd5\x5b\xbe\xa2\xb9\x1c\xeb\x18\x57\x3c\x48\x38\x67\x71\xb7\x04\xc7\x67\x7f\xdc\x56\xa5\xaf\xf9\x61\xe0\xd7\xfe\xbc\x61\xb3\x55\xd3\xd1\xb6\x73\xe3\x47\xf1\x75\xab\xbc\x49\x7b\x3b\xe1\xaa\x17\xd3\x25\xc4\x99\x36\xe4\xb2\x46\x10\xa7\xad\x71\x3a\x57\xe3\x19\x2e\x16\x1e\x98\xb0\x9e\xb7\x7b\xad\x24\xd4\x24\xdd\x3d\xeb\x91\xc7\x29\xfd\xb1\x76\x29\xb1\x94\xa7\xcd\x06\x81\xbb\x98\x58\xd6\xe7\x38\x0f\x87\xba\xa6\x08\x34\x07\xb7\x1f\xbe\x8f\x3c\x39\xd2\xec\xba\xa4\xdc\x64\x75\xb1\x4f\xae\x7e\x68\x75\xb8\x42\x87\x79\x3d\x1b\xac\x75\x1a\x64\x0a\x9e\x4d\xcd\x3b\xd4\xbe\x7a\x62\x26\x7d\x2f\x3f\x30\xa2\xf9\xd2\xfa\x3c\xe5\xec\xb1\x9f\x12\x84\xaf\xc2\x7a\xa8\x66\x29\x07\xcf\xc2\x18\x6c\xb7\xd6\xe8\xd0\xc7\xc5\x40\x6f\x91\xef\xe0\x8b\x7e\x68\x96\x4a\x7e\x55\x64\xc8\xe8\x9e\x11\x57\xa3\x71\xa5\x1a\x7b\xd6\xd7\x6a\x8d\xcd\xa7\xb2\xf7\xe3\xdb\xb4\x22\x3e\x89\x91\xc3\xb0\x93\x51\xfa\x70\x95\x03\xa2\x53\xff\x92\x8f\xb0\xbd\x51\x35\x7a\x6b\x4b\xd1\x2c\xcb\x29\xcb\xb7\x2c\xdd\x45\xa9\x57\x4c\xa3\x7c\xb0\x65\x79\x30\x75\xaf\xf8\x4e\x97\x6b\x7a\xcc\xca\xd3\x58\x68\x94\x46\xcc\xb7\x6f\x6c\x67\x47\x75\x5e\x11\x32\xa8\xb0\x28\x55\x2e\xa1\xd2\xc6\xd7\xe4\x9d\xed\x36\x3c\x63\x46\xc5\xf0\x80\x09\x79\x8c\x7e\x4f\x17\x74\xef\xd7\x5c\xf2\xdf\xbc\x58\x92\xc6\x54\xb7\xab\x62\x9c\x1e\x81\x93\xcf\x7e\xfe\xdb\x54\xa8\xba\x5b\x00\xfa\x78\x5b\x48\xd0\x4f\x65\xd8\x34\xc2\x75\xf0\x92\xcb\x1b\x73\x73\xdd\xca\xfe\xe1\x5e\xca\x31\xa2\xe8\x97\x26\x8f\x1f\x39\x49\x0f\x84\x57\x48\xe7\xa3\x0d\x21\xbc\x15\x47\xb5\xcc\xb4\x22\x73\xe8\x55\xc5\xb3\x54\xef\x93\x98\x05\x9f\x91\xb3\x24\x41\x9b\x78\x38\x87\xa3\x3c\x7d\x4d\x3e\x2e\x59\x2b\xd4\xb1\x3d\x5d\x84\xfd\x6e\x2b\x53\x17\xff\x1b\x7e\x3a\xf8\xcd\x3f\xbc\xb5\x50\x96\x2f\x28\x05\xde\x8f\x49\xb0\xfc\xf8\x8f\x46\xfe\xf8\xb1\x1f\x9a\x0f\xf2\x3a\xe2\x39\x64\xbe\x7b\xbf\xb6\x3f\x43\x68\x48\x87\xde\x25\x3a\xe9\xf6\x45\x1d\x33\xf2\x36\xf8\x79\xc4\x9f\xf6\x57\xba\xb2\x46\x7f\x76\x38\x34\x36\xd9\xc2\x7d\x2b\x70\x1d\x24\x2d\xbc\x93\x9e\x94\xf0\xf6\x77\xaf\xd8\x64\x77\xe9\x22\x87\x55\x88\x7d\x70\x65\x2f\x83\x51\x6c\x30\xa5\xe0\x37\xb6\xa2\x5f\x69\x9c\x2b\x4f\xdb\x5f\x8a\x09\xcf\x76\x1e\xbd\x2d\x22\xb6\x80\x44\x46\x31\x74\x7e\xbc\xaa\x35\x2f\xc1\x68\x12\x42\x07\x2f\x6e\xdd\x1a\xe0\xae\x3a\xa0\x10\x8a\x3f\xb9\xc1\x9d\xa3\x70\xc3\x2e\x8d\xa2\x8f\x2c\xaf\xe5\x12\xba\x31\xe4\x53\x56\xf9\x6e\x01\x37\xec\x3b\x8f\xfa\xd3\xea\xc2\xda\xa9\x15\x74\x61\x0e\x57\xcf\x9d\xd8\xeb\x3c\x53\x38\x74\xa9\xdb\x9a\x56\xcc\x7d\x2f\x92\xa8\xe9\x72\x5f\x57\xe7\x95\x64\x72\x62\xd6\x19\x07\x16\x12\x1d\xd0\xa3\xe2\xf9\x3c\x53\x2a\x0b\x9d\xf7\x8b\xa0\xed\x43\x36\xdc\xee\x7b\xf1\xf5\x34\x3a\x9f\xaf\x4a\xff\x5b\x0c\x9d\x64\xb6\xfd\x7a\x66\xaa\x95\xe0\xc5\x55\x91\xa7\x9b\xcb\x89\x42\xc2\x5f\x49\xad\x3f\xe3\x03\x4a\x66\xe0\x31\x0f\x87\xeb\xff\xfc\xd4\x8a\x3e\xff\xd8\x72\x2c\x32\x78\x23\x2c\x40\xb2\x8f\xaf\x47\xa4\x3f\x98\x2e\x28\x68\x6f\xf6\x7d\x1b\x99\xb2\xb8\xde\x70\xd8\x93\xd0\x43\xa9\xea\x95\xba\xef\xdf\x64\xab\x97\xa2\xcd\xcb\xd8\x25\xf0\xf0\x5c\x70\x55\x06\x32\xb3\xc0\x38\xa2\xd9\x90\xe2\x40\xf2\x85\x0e\xa1\x4e\x89\x5b\x63\xcb\x36\xc0\xb8\xb0\x1e\x3f\x4b\x0a\xaf\x17\x18\x74\x16\x78\x36\x2c\xf7\x2b\x3a\x68\xbe\x62\x4b\xd0\x49\x6b\xe7\xc0\x32\x56\x3e\x7e\x1d\x11\x4e\x75\xda\x88\xa8\xd8\xfb\xdd\xc6\x49\x2f\x4a\xb0\xb2\x35\x34\x33\xba\xfe\x7e\xce\xb8\x2c\x60\xda\xc4\x15\x16\xb7\x21\xc0\x28\x83\xa7\x8d\x16\xa0\x8d\x26\xa9\xea\x71\x16\x4a\xb5\x41\x7c\x27\xc4\x99\x8e\x4a\x97\xe4\xc8\x53\xb3\xcc\x34\xce\xfe\x8b\x84\x1f\x9d\x65\xcd\x79\xe1\xbf\x4f\x62\xe9\x97\x1e\x87\x2c\xe6\x89\xad\xd7\x55\xb8\x4e\x92\x62\x32\xda\x9e\x43\xb3\x47\xb4\x65\xdc\x0e\xf4\x47\xfa\x9f\xeb\xd4\x3a\x44\x6c\x22\x92\xab\x1e\x7f\x99\x5c\x7c\xf8\xda\x46\x9e\xb6\x40\x47\xad\x27\x84\xf6\x5b\xd0\xa7\xac\xc1\xe3\x0b\xc5\xc4\x4a\x93\x6a\xea\xcf\x3c\x12\x5d\xcb\xcb\xcb\xf7\x72\x6a\xb1\x82\x6f\x74\xfb\x23\x5d\xac\xe2\x5e\x93\x2e\x0d\x85\xcf\x59\xe8\x68\x17\x27\xb4\xa3\xda\x5b\xfd\x42\x14\x29\x1e\xe4\x14\x33\x71\x8f\x17\x3a\x74\x49\xad\x89\x42\x10\x16\x3f\xaf\xcd\x91\x16\x88\x27\x9d\x3b\x4f\xba\x06\xa9\x2c\xca\x18\x76\x28\xce\xca\x87\xe2\x44\x79\x8f\x68\xf7\x72\x8b\xaa\xc8\x55\xb6\xc2\x6f\x5c\x49\x16\x22\xc7\xdd\x3c\xa9\xef\x6e\xa1\x0a\x68\x5b\xfa\xcb\x2c\x6a\x9c\x1e\xbc\x2f\x6a\xf4\x12\x8d\xa4\x09\x52\xd1\x9c\x7b\xca\x73\x10\x16\x69\x38\xe6\xf3\x72\x99\x2a\x3a\xab\x60\xd1\xed\x86\x45\xcc\xf0\x6f\x4f\xa4\x68\xf2\xe4\x0b\x89\xd0\x78\x1e\xae\x3a\xec\x35\x3a\x0d\x2a\xe2\x77\xf5\xb2\x1a\xa8\xfa\x2e\x13\x13\x25\xbc\x6c\xf6\xf2\x76\x38\x90\xb3\xf3\x86\x69\xce\x11\xed\xa9\xb7\x70\x2f\x39\x47\x97\x3a\xbf\xa3\xbf\xac\xde\xde\x63\x2a\x7e\x7a\x0a\x99\xe3\xcd\xf8\x70\xc7\x25\x45\xb4\x90\xdf\x29\xb7\xa4\xaa\xf2\xfd\x4e\xca\x33\xca\xfd\x0b\xc2\x11\x9f\x23\xde\xe0\x06\x2c\xe8\x4a\x7f\xef\x0e\xc7\xe4\x4c\xb8\xdb\xdf\x46\xc0\x83\x47\xf9\xef\x88\x7e\x75\xf9\x5c\x81\xdf\x43\x1f\xa6\x30\xdd\x4a\x95\x6f\x5d\x1e\xf9\xd6\xb5\x50\x6e\x64\x51\x25\x33\x99\x16\x30\x8f\xf2\xaa\xef\x37\xd8\xa7\xae\x7e\xd3\xf3\x2e\xb5\x50\xde\xfa\xc0\xdf\x9b\x61\x36\xdd\xb7\x27\x45\x80\xe7\x17\x55\x2c\x0b\x56\x31\x7a\x50\x4e\xb3\x6b\x4d\xca\xb6\x91\xb1\x78\x65\xdd\xec\x84\x65\x95\xdd\x22\x0b\x61\x3b\x41\x3e\x3c\xad\x50\xa0\xc1\x58\x9e\xbb\x72\xc3\x74\x0b\x74\x71\x59\xd7\x63\x6c\x8a\x0b\x0e\x23\x85\x66\x35\x0f\xa2\x63\xa9\x4e\xf4\x2a\x92\xd9\x94\x71\xb6\xe9\x79\xe3\xc5\x0f\xae\x87\x3a\x11\x93\x08\xfe\x2b\xc4\x71\xc1\xec\xef\x72\xa3\xba\x51\x13\x3c\x95\xb6\x35\x82\x63\x6c\xed\x91\xe1\x63\xe4\x72\x33\x6b\x12\x2b\xb4\xbc\xc0\x45\x89\xe9\x4e\x50\x1e\x1f\xaa\x81\x22\x5b\x88\xeb\xf5\x41\x8a\x52\x95\x44\x99\xca\x47\xea\xd2\xc7\xb8\xe6\x4c\x73\xd9\x1f\xd5\xb9\x39\x92\xa6\x84\x31\xd1\xcd\xab\xfd\x61\x8f\xbe\x17\x95\x54\xd2\x33\x75\x88\xcb\xc9\x62\x5c\x23\xfc\xb0\x83\x79\xd7\xc2\x4f\xd2\xbd\x13\x55\x3d\x8e\x72\x64\x7d\x88\xeb\x46\xc6\xe3\x7e\x18\xe4\x95\x47\x37\x9a\x7c\x84\x74\x2f\xe3\x96\x8f\xc5\xcc\x45\xaf\xb9\xff\xec\x3b\xf9\x50\x69\x2c\xb0\xb7\x9d\x57\x44\xf5\xfd\x42\xc3\x93\x64\x65\x5d\xda\xa7\x73\xa2\x75\x16\xb7\xcc\x60\x68\x36\x6b\x35\x92\xdb\x98\x53\x71\x01\x81\xd5\x40\xc3\xd9\xbd\x27\x91\x67\x6a\x16\xff\x26\xb7\x8c\x2f\x93\x7d\x7f\x39\x4e\xe9\x33\xc4\x09\xe9\xa8\x98\x20\xab\xf0\x85\xb9\xd2\x89\xf8\xdc\xea\x8a\x0d\xe6\xe4\xe6\x7b\xd5\xab\xd8\x04\xe8\x86\xd7\xea\x73\xbd\x1c\xc5\xdc\xa8\x28\x8d\x0b\xfb\x44\x8a\xb7\xdd\xf2\x9c\xf2\x2f\x10\x22\x4f\x0a\x4a\x7a\x33\xde\x5b\x66\x71\x9d\x9f\x42\xa3\x8b\x4a\xad\x53\x17\x7f\x52\x53\xce\x7e\xca\x48\xdd\x01\xf6\xcc\xa4\x3e\xaf\xf8\xef\x10\x1d\x5e\x2f\xb6\xfb\x52\x73\x84\xe2\x19\x86\x17\xf4\x36\x5c\x45\x54\xa3\x9c\xcb\x13\xc3\x48\x85\x6e\x4b\xe8\x8c\xb1\xae\x1d\xc0\x4c\x59\xc7\xad\xd4\x5e\x66\x86\x97\x61\xfd\xe1\x46\x71\xf9\x55\x4d\x2b\x93\x02\xc0\xbc\x15\xeb\x1f\xc5\xa6\xfb\xda\x34\x9c\x0d\xca\x39\x1e\x54\xda\x9d\x1c\x96\x3c\x12\x68\x3c\x8c\x4e\x52\x03\xc8\x96\xe1\x6f\xa7\xd4\x87\x82\x0d\xae\xea\x3d\xc6\x54\xf9\x3a\x81\x3c\xfc\x84\x69\x5b\x1d\xde\x5d\xd0\xfb\xb6\xa4\x33\xf1\xee\xf1\x9a\xc2\xb8\xf8\x61\x1a\xb5\xec\x4a\xb6\xe5\x6b\x25\x6a\x67\xa2\xd8\xf1\xb9\xc7\x6c\xb9\x7e\xaf\x9c\xa8\x7b\xa7\x86\x78\x79\x10\x27\x9c\xa3\x09\x9f\xe6\xa6\x25\xee\x74\x8e\x93\x7b\x2f\x08\xdc\x0e\x53\x60\x6a\xb3\x60\x15\x6c\x30\x8e\x3d\x95\xaf\xc2\x72\x84\x30\x8e\x86\x57\x5a\xc5\xe4\x2e\xbe\x63\x18\x60\xe6\xa8\x65\x16\xed\x1d\x49\x47\x9f\x7b\x3e\xe6\x77\xbd\x43\xc4\xde\x97\x71\xa3\x94\xdb\xca\x49\x53\xf5\xa2\xcb\x05\xa9\x80\x48\x72\xfc\x79\x35\xbe\xe1\xf7\x40\xc1\xeb\x99\x65\x66\xf6\x02\xbb\xa6\x1a\x19\x76\xc4\x13\x44\x7b\xc8\x85\xf7\xa6\x2a\x8d\x4d\x4a\xad\x7a\xac\x47\xcf\xee\x2e\xa5\x40\xbf\x2b\x83\xa8\x5e\x8c\xf4\xa1\xf1\x66\xe8\x68\x7b\x47\x39\xd8\xa6\x1c\x62\xf8\x36\x03\x7b\x6e\x34\x95\x7b\xad\x05\x15\x4a\x52\x6c\x6d\x65\x9b\x17\xe6\xbc\xf3\xe8\xa6\x58\xd2\xed\xf1\xfe\x5e\x87\xda\x76\x1f\x52\x57\xef\x1f\x65\x5f\xf8\x4b\xfa\xd6\x5e\x97\x49\xad\x6e\x41\xa5\x03\xe6\x48\xd5\xcf\xed\x09\x03\x64\xea\xd0\xf3\xea\x8b\xaf\x9a\x9c\x98\xa7\x74\x6f\xbd\xec\xc2\xdf\x69\xb0\x6b\xe6\x4d\xae\x4e\xf0\x80\x61\xe4\x6d\x2e\xc7\xae\x41\x0b\x1f\x12\xb3\x6d\x6d\xd4\x12\x6d\x0e\x25\xbc\xdc\xf2\x60\x9d\xbe\xcf\xd3\x62\xd6\xa2\xf7\xb7\x91\x3f\x31\x64\x75\x64\x44\x82\x3e\x4b\xb9\xcd\x5a\xf3\xbd\x56\x3b\xa9\xbb\x06\x19\xf0\xa3\xfe\xb0\xa3\x6c\x35\x8e\x1d\x41\x0b\x9b\xab\x7e\x74\xd8\x30\x25\xd9\x7c\x9d\x1d\xfa\xd6\xac\x0d\xae\x85\x89\x60\x4d\x8a\xc6\x4e\xde\x92\xe2\xa5\xce\x14\x8f\xf6\xaf\x4f\x32\x79\x46\xc2\xe3\x46\xde\x79\x35\xd5\x42\x41\x0f\xb9\x32\x33\xd5\xed\xc4\x75\x67\x67\x99\xd5\x64\x40\x92\x22\xdf\x43\xed\xfd\xa6\x0a\x78\xf5\xce\x3c\xce\x9d\x91\x7b\xcb\xc1\xb2\x96\xa7\x83\x00\x8a\xe3\x2b\xe3\x4c\x18\x62\x95\x71\x74\x55\x75\x1c\x31\xc4\x86\x49\xb8\xf4\x9c\xd0\xfb\x8d\xa4\x88\x8a\x98\x22\x69\x24\xaf\xa2\x00\x2b\xb2\xc9\xab\x31\xa3\xfd\x58\xe3\x93\x3a\x0d\x29\xb8\x9b\xff\x14\x86\xb6\xbf\x1f\x9f\x5e\xdb\x7e\x10\x5c\x68\x10\xd9\x45\x11\xfd\x0f\xa5\xe4\x27\xd5\x08\x97\xde\x85\x42\x81\x8b\x0d\xb7\x4c\x32\x7a\x05\x96\x75\x66\xbc\xcf\xea\x8f\xbd\xdc\xcc\x4d\x7b\x43\x9c\xc1\xb3\x69\xc2\x2e\x9a\xab\xc6\x35\x4e\x84\xf3\x43\x23\xd8\x4b\xe3\xdb\xe2\xb8\xc4\x22\x49\x72\x30\x8e\x8c\x09\xc7\xaa\x2c\x3a\x6a\x7e\xc8\x4f\x4f\x53\xcb\xb4\x7f\xd2\x32\x1d\x52\xbc\x1e\xf4\x6b\x66\xc6\x70\x5a\xbc\xc1\x16\x45\xb4\xa6\x83\x6b\x7f\xba\xf9\xe3\x5a\xb0\xbc\x82\x41\x28\x8f\x91\x94\x85\x26\xae\x57\xa3\xf6\x17\xe5\x69\xea\xd1\x09\xd7\xb8\x48\xbb\xea\x05\xb1\x1f\xe2\x03\x71\x3e\x17\x09\xa1\x66\xb6\x0f\x68\x26\x4a\x82\x5d\x62\xe7\x64\x29\xc6\x96\xf3\xd1\x51\xf5\xcb\xf7\xf4\x37\xca\x6b\x04\xc7\xf0\x1e\x5c\xe2\x62\xc3\xde\x75\x53\xfa\x11\x0c\xcc\x4d\xf5\x10\x32\xb5\x57\x86\xe1\xc2\xfd\xdb\x7b\x05\x78\x31\xb2\xc1\xcf\xa1\x4c\xed\xab\x2f\xe3\x65\x4f\x22\x96\xc9\x06\x2d\x3f\xa6\x3b\xee\x63\x5a\x0c\xd5\x4e\x88\x65\x14\x62\x3d\x63\x0c\x30\xe9\x29\xa0\x32\x60\x99\x18\x18\x4b\x51\xc1\xac\x37\xf4\x47\xf8\x94\xa6\x3a\xc8\x8f\x56\x51\x69\xa8\x02\x00\x70\x35\x50\xcf\x21\xd0\x03\x11\x88\x82\x21\x03\x50\x88\x40\x14\x90\x85\x40\x15\xa5\x20\x72\x52\x50\x15\x1b\xa8\x3c\x4c\x56\x16\x26\xab\x70\x0d\x02\x81\x41\x20\x73\xd0\xfb\x6f\xfe\x47\xc0\x17\xef\xe1\x89\x0e\xfd\xbf\x03\x19\x3e\xf2\x14\x00\x00\xfd\xbf\x01\x02\x1e\x1d\x18\x8c\x08\x40\x01\x23\x5f\x04\x06\x65\x86\xc0\x78\x22\xbd\x85\x14\xa5\x95\xa4\x95\xa5\x54\x84\x64\x21\x50\x79\x29\x88\x82\x14\x54\x56\xc8\x12\xaa\x28\x84\x0d\x0c\xf4\x83\xc9\xc8\x04\x07\x07\x4b\x7b\xfe\xa5\x7d\xff\xa5\xa5\xf1\x01\x98\x2f\x77\x36\x01\x00\x80\xe7\x6f\xa3\x0d\x96\xe8\xeb\x0e\x83\xe9\xe2\x91\x44\x5f\x14\x2e\x10\x06\xb3\x40\x60\x50\x04\x00\x2d\xfd\xd3\x22\xf3\x5f\xcc\xbf\x67\xc2\x60\x58\x94\x27\x06\x1b\x08\xa0\x2a\xb2\x2c\x20\x20\x01\x00\xc0\xfd\xbf\x19\x7b\x4f\x8f\x40\xec\x5f\x64\xa4\x52\xf8\xef\x47\x9a\xf7\x3f\x10\x33\x4f\x5f\x54\x60\xa8\x1f\x0a\xfc\x7b\x2b\x19\x3f\x1c\x46\xa3\xce\x0e\xfe\x5f\x3d\x66\x36\x9e\xbe\x28\x00\x95\x57\x50\x96\x53\x51\x92\x93\x57\xb0\x5f\x7c\x61\x05\x00\x60\xf9\x0f\xc4\xda\x33\x0c\x05\x20\xda\xda\xff\x3c\x53\xdf\x00\x00\xd8\xfd\x87\x65\x6b\x65\x04\xd0\x9e\x3e\x28\x98\x8c\x8c\x8c\x2f\x2e\xd0\x07\x8f\x91\x41\x23\x82\x3c\x91\x78\x1c\x41\xe6\xff\xef\x2c\x83\x46\xa9\xa0\x54\xe4\x95\x10\x50\x59\x59\x39\x39\x0f\x0f\x34\x0a\x2d\x87\x70\xf7\x50\x82\x22\x14\xa0\x50\x94\x9c\x87\x82\xb4\x27\x12\x2f\xed\x87\xc3\xb4\x7a\x24\xf7\xfd\x1d\xcc\x48\x0f\xae\x5b\xad\xed\x16\xf7\xff\x02\x00\x00\xff\xff\x29\xe2\xb4\xa5\xc8\x10\x00\x00") + +func staticImgCowyoFavicon96x96PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoFavicon96x96Png, + "static/img/cowyo/favicon-96x96.png", + ) +} + +func staticImgCowyoFavicon96x96Png() (*asset, error) { + bytes, err := staticImgCowyoFavicon96x96PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/favicon-96x96.png", size: 4296, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoFaviconIco = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\x41\x88\x12\x61\x14\x7e\x4b\x4b\x41\x87\xf2\x10\x41\x51\xb1\x87\x58\xf6\x52\xd8\x21\x58\x22\xe8\x10\x1b\x46\x34\x07\x91\x3a\xed\x22\x21\x16\x26\x03\x2b\x7f\xb3\xad\xd1\x60\x83\x0c\xb3\x93\x08\x99\x98\x90\xd8\xe0\x49\xc2\x0a\x6c\xa2\x41\x44\x41\x06\xf1\x20\x34\xa7\x39\x08\xd1\x30\x78\xf2\x60\xe2\x41\x4c\x5c\x26\x5e\xed\x50\xbb\xeb\xa6\x0d\x3c\xfe\x9f\xef\xbd\xef\xf7\x7d\xdf\xff\x7e\x01\xe6\x60\x0e\x1c\x0e\x5c\x17\xe0\xc1\x3c\xc0\x49\x00\x58\x02\x00\x07\x00\x2c\xc0\x6f\xfc\xd7\x37\x0f\xfb\x3e\xcb\xb2\xf6\x45\xbf\xdf\x3f\x2a\x8a\x22\xe1\x79\x7e\x13\x23\x1a\x8d\x6e\x9a\xa6\x79\x66\x52\xed\xa4\x48\x24\x12\x0f\x1b\x8d\xc6\xe5\x4e\xa7\x73\x62\x38\x1c\x1e\xd6\x34\xed\x22\xcb\xb2\xcf\x66\xe5\xbb\xdd\xee\x77\x81\x40\x20\x59\xab\xd5\xae\x9a\xa6\x79\x9a\x10\xf2\xdc\xe9\x74\x7e\x99\x85\xdb\xeb\xf5\x8e\xc5\x62\xb1\x75\x86\x61\x04\xec\x1b\x83\xa6\xe9\xb8\x24\x49\x6b\x9a\xa6\x5d\x98\xc6\x57\x14\x65\x05\x7b\xdf\x8b\xa3\x96\x54\x2a\x75\x7f\x1a\x5f\x14\xc5\xd0\x60\x30\x38\x32\x29\xc7\x71\xdc\x93\x69\x7c\xec\xf7\x1f\xb9\x89\x7c\xf4\xb8\x54\x2a\xad\x54\x2a\x95\x6b\x07\xd5\xd8\x67\xb7\x5a\xad\xf3\xa8\x6f\x34\x1a\x1d\x42\x4c\xd7\xf5\x45\x42\xc8\x56\xbd\x5e\x5f\x2e\x97\xcb\xd7\x43\xa1\x50\xcc\xe3\xf1\xbc\xdd\xcb\xf5\x7a\xbd\x19\xd4\x86\x77\xab\x28\xca\x0d\x86\x61\xb6\xf0\x5e\x91\x87\x33\x82\xfe\x24\x93\xc9\xc0\x41\xfa\xbb\xdd\xee\xf1\x42\xa1\xe0\x16\x04\x61\x03\xf3\xb8\xcf\x66\xb3\x6b\x98\x6b\xb7\xdb\xa7\xf0\x5c\x55\x55\x97\x11\xb3\x7b\x1b\x8f\xc7\xbb\xce\x50\x55\xf5\x8a\x24\x49\xab\xe8\x23\xd6\xda\x38\xce\x26\xcf\xf3\x8f\x09\x21\x22\xae\x82\x20\x3c\x62\x59\x96\xa5\x28\xea\x43\x30\x18\x7c\x19\x8f\xc7\xd7\xc3\xe1\x70\x14\xfd\xf1\xf9\x7c\xaf\x39\x8e\x7b\xaa\xeb\xfa\x12\x72\x9b\xcd\xe6\x25\xcc\x65\x32\x99\x7b\xe8\x8f\xcb\xe5\xfa\x84\x9a\xf0\xb7\xb1\x06\x75\xe1\x0c\xca\xb2\x7c\x93\xa2\xa8\xf7\x91\x48\x84\x4d\xa7\xd3\x3e\x9e\xe7\x37\x8a\xc5\xe2\x6d\x9c\x09\x9a\xa6\x5f\xa0\x8f\x76\xcf\xb2\x2c\xdf\xb2\x67\xcf\x8e\x7c\x3e\x7f\x07\xef\x09\x6b\x0c\xc3\x38\x87\xfe\x21\x8e\x3a\xfc\x7e\xff\xab\x59\xdf\xc6\x5f\x73\x46\x72\xb9\xdc\xea\x4e\x9f\x8b\xff\xcb\x37\x0c\xe3\x2c\xbe\x73\xcb\x02\xb0\xbe\x01\xfc\x78\x03\xb0\x5d\xc5\xff\x83\xdd\xf1\xf1\xeb\x9f\x7d\xf7\x2e\xc0\xe7\xef\x00\xd5\x6d\x80\xea\x0e\xf6\x33\x00\x00\xff\xff\xc2\x41\x88\x86\x7e\x04\x00\x00") + +func staticImgCowyoFaviconIcoBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoFaviconIco, + "static/img/cowyo/favicon.ico", + ) +} + +func staticImgCowyoFaviconIco() (*asset, error) { + bytes, err := staticImgCowyoFaviconIcoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/favicon.ico", size: 1150, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoManifestJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xd0\xb1\x6e\x86\x20\x10\x07\xf0\x9d\xa7\xb8\xdc\xfc\x7d\x2a\x48\x55\xdc\xfa\x1c\xb5\x83\x51\x62\x18\x44\xa2\x0e\x58\xe3\xbb\x37\x10\x92\x2e\x24\x85\x95\xff\xff\xf8\xe5\xee\x26\x80\x7a\x5c\x25\xf6\x80\x9f\xc6\xe0\x8b\x00\xaa\x69\xd3\x07\xf6\xf0\x45\x00\x6e\x02\x00\x78\xec\x93\x2b\x0c\xe5\xa8\xe7\x7d\x53\xf3\xdb\x55\xde\x75\x63\xeb\xa6\x30\x7a\x71\x53\xae\xa5\x7e\xa4\x9b\x43\x1f\x84\xc7\xf3\x32\xfe\x73\xb5\x8e\x8b\x1c\xca\xbf\xf6\x2c\xf5\xa1\xce\xcb\x65\x55\xd1\x7e\x20\x01\x78\x5e\xff\x88\xbc\xb3\xbc\x8b\x89\x3e\xc8\x10\x69\x51\x25\x81\x2d\xb3\x2d\x8b\x81\x3e\xc8\x02\xd3\x36\x14\x8d\x15\xd1\x9b\xfa\x20\x03\x64\x89\x1b\x52\xce\x2d\xe5\x3c\x46\x86\x28\x03\xad\x53\x51\xc1\x2c\x15\xd1\xc3\x86\x28\x03\xe5\x01\x25\xf0\x4d\x9e\xdf\x00\x00\x00\xff\xff\xab\x34\xe2\xab\xd0\x02\x00\x00") + +func staticImgCowyoManifestJsonBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoManifestJson, + "static/img/cowyo/manifest.json", + ) +} + +func staticImgCowyoManifestJson() (*asset, error) { + bytes, err := staticImgCowyoManifestJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/manifest.json", size: 720, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoMsIcon144x144Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x65\x54\xd4\x61\xdb\xed\xff\x80\x94\x34\x48\x48\xb7\x20\x39\xd4\xc0\xd0\x03\x48\x08\x92\x4a\xc7\x00\x33\x74\x0e\x8d\xa4\x74\x87\x0a\x48\x77\x77\x89\x94\x74\xb7\x74\x4a\x77\x23\x2d\x67\xf9\x7c\x39\xcf\x79\xcf\x7a\x3f\xec\x4f\xf7\x6f\xef\xfb\xba\xf6\x5a\x57\xb8\xda\x3b\x79\xbc\xe7\x94\xcf\x01\x00\xc0\x53\x54\x90\xd5\x00\x00\x20\xee\x9f\xb0\xd0\x00\x00\x18\x4f\x26\x8e\x00\x00\xe0\x99\x85\xb4\x8a\x34\x00\x54\xc7\xe2\x3c\xc0\xd0\x01\x00\x40\x41\x6a\xc8\x43\x81\x8a\x51\xea\x3d\x00\x00\xe8\xcd\x14\x34\x54\x00\xc0\x8b\x15\x00\xfc\x83\x00\xe0\x0e\x00\x00\xff\x5d\x00\x70\xe5\x05\x80\x7d\x13\x00\x80\x24\x03\x00\xb9\x63\xda\x0f\x75\x31\x00\x40\x03\xd4\x94\xb5\xe4\x9e\x9e\x9e\xfe\xfe\xfd\xfb\xf8\xf8\xb8\xb1\xb1\xf1\xf5\xeb\xd7\xd8\xd8\xd8\xf9\xf9\xf9\xd9\xd9\xd9\xb8\xb8\xb8\xa4\xa4\xa4\xe3\xe3\x63\x7d\x7d\xfd\xe7\xcf\x9f\x63\x61\x61\xbd\x7b\xf7\x6e\x67\x67\x67\x73\x73\x53\x46\x46\x06\x1b\x1b\x1b\x07\x07\xc7\xcc\xcc\xec\xfc\xfc\xbc\xa9\xa9\x89\x88\x88\x08\x05\x05\x05\x15\x15\x95\x92\x92\xb2\xb1\xb1\xb1\xa6\xa6\x06\x0f\x0f\x8f\x9a\x9a\xfa\xc7\x8f\x1f\x77\x77\x77\xd6\xd6\xd6\x68\x68\xff\x16\xf8\xf6\xed\x9b\xbb\xbb\xfb\xed\xed\x2d\x37\x37\xb7\x8f\x8f\x8f\xb3\xb3\xb3\xa0\xa0\xe0\xe2\xe2\x62\x5a\x5a\x1a\x2e\x2e\x2e\x0c\x06\xbb\xb8\xb8\x50\x50\x50\x28\x2b\x2b\x13\x15\x15\x5d\x5e\x5e\x5e\x5b\x5b\xe3\xe3\xe3\xb3\xb0\xb0\xf8\xf3\xe7\xcf\xf4\xf4\x34\x27\x27\x27\x0d\x0d\xcd\xd0\xd0\x50\x47\x47\x07\x3d\x3d\x7d\x65\x65\x65\x55\x55\x55\x72\x72\x72\x75\x75\xf5\xf5\xf5\xb5\xa3\xa3\xe3\xc7\x8f\x1f\x3d\x3d\x3d\xd1\xd1\xd1\xbd\xbd\xbd\x4f\x4e\x4e\x34\x34\x34\xf6\xf7\xf7\xd5\xd5\xd5\xc7\xc7\xc7\x05\x04\x04\xd8\xd8\xd8\x26\x26\x26\x5e\xbd\x7a\xf5\xe6\xcd\x1b\x0e\x0e\x8e\xa9\xa9\xa9\xd2\xd2\x52\x1e\x1e\x1e\x26\x26\x26\x7c\x7c\xfc\xda\xda\x5a\x32\x32\xb2\x17\x2f\x5e\x84\x87\x87\x63\x62\x62\x8a\x8b\x8b\xcf\xcc\xcc\x88\x88\x88\x60\x60\x60\x04\x04\x04\xdc\xdc\xdc\x48\x4b\x4b\x8f\x8d\x8d\x09\x09\x09\x3d\x3c\x3c\x98\x98\x98\x68\x6b\x6b\xcb\xc9\xc9\x41\xa1\xd0\xa3\xa3\x23\x2d\x2d\x2d\x17\x17\x17\x29\x29\xa9\x8c\x8c\x0c\x06\x06\x86\xee\xee\xee\xcb\xcb\xcb\xd3\xd3\xd3\xbd\xbd\xbd\xdf\xbf\x7f\x2f\x2d\x2d\x75\x75\x75\x91\x92\x92\x66\x65\x65\xdd\xdf\xdf\xdb\xd9\xd9\xa5\xa7\xa7\xd3\xd1\xd1\x85\x84\x84\x2c\x2c\x2c\x8c\x8c\x8c\xf4\xf4\xf4\xb8\xba\xba\x1a\x1a\x1a\xea\xe8\xe8\x30\x33\x33\xbf\x7c\xf9\x92\x85\x85\x85\x8b\x8b\x4b\x53\x53\xd3\xd8\xd8\xd8\xcd\xcd\x2d\x3e\x3e\xbe\xa2\xa2\xc2\xcf\xcf\x2f\x3a\x3a\xba\xa8\xa8\x48\x57\x57\x77\x7d\x7d\xbd\xad\xad\x2d\x31\x31\xd1\xc3\xc3\x43\x4f\x4f\x0f\x0c\x06\x43\x20\x10\x2f\x2f\xaf\x2f\x5f\xbe\xac\xac\xac\x18\x19\x19\x5d\x5d\x5d\x65\x67\x67\xaf\xae\xae\x16\x16\x16\xe6\xe6\xe6\x9e\x9d\x9d\x8d\x8e\x8e\xa6\xa4\xa4\xd0\xd2\xd2\xa6\xa6\xa6\x3a\x38\x38\x94\x94\x94\xf0\xf3\xf3\x87\x86\x86\x6e\x6d\x6d\x11\x12\x12\x92\x90\x90\x10\x10\x10\xbc\x7f\xff\x3e\x27\x27\xe7\xd3\xa7\x4f\x73\x73\x73\x99\x99\x99\xcf\x9e\x3d\x53\x52\x52\xa2\xa2\xa2\x7a\xfd\xfa\xb5\xbf\xbf\x7f\x58\x58\x58\x7e\x7e\x7e\x79\x79\xb9\xad\xad\x2d\x3b\x3b\xfb\xee\xee\xae\xbc\xbc\x3c\x05\x05\x05\x31\x31\x71\x42\x42\x82\x84\x84\x44\x4c\x4c\x4c\x5f\x5f\x9f\xb2\xb2\xb2\x95\x95\x55\x73\x73\xf3\xe0\xe0\xe0\xe4\xe4\xe4\xdb\xb7\x6f\x65\x65\x65\x7b\x7b\x7b\x23\x23\x23\x0b\x0a\x0a\x0c\x0c\x0c\x06\x06\x06\x14\x15\x15\x03\x03\x03\xb7\xb7\xb7\x87\x87\x87\xfb\xfb\xfb\x1b\x1a\x1a\x8a\x8b\x8b\x41\x20\x50\x54\x54\x14\x2f\x2f\xaf\xb9\xb9\xb9\x98\x98\x58\x5e\x5e\x9e\xb0\xb0\xf0\xf7\xef\xdf\x83\x82\x82\x82\x83\x83\x7f\xfd\xfa\x55\x5f\x5f\xff\xf9\xf3\x67\x46\x46\xc6\xce\xce\x4e\x49\x49\xc9\xc3\xc3\xc3\x83\x83\x03\x7b\x7b\x7b\x72\x72\xf2\x9f\x3f\x7f\x22\x91\xc8\x88\x88\x08\x35\x35\x35\x38\x1c\xde\xde\xde\xde\xda\xda\xca\xca\xca\x6a\x69\x69\xe9\xeb\xeb\x6b\x6a\x6a\x5a\x57\x57\xa7\xa2\xa2\x82\x40\x20\x3e\x7c\xf8\x60\x63\x63\xa3\xaa\xaa\xea\xe4\xe4\xd4\xd2\xd2\x02\xc6\x79\xf5\xef\xc2\x50\x4c\xdf\xca\xcb\x02\x61\xe8\x34\x0a\x00\x00\x60\x3b\x2a\xe8\x22\x01\x00\x50\xf8\x8f\xde\x0c\xd8\x48\x00\x00\x29\x81\xa2\xac\xb4\x96\xc7\xc2\x91\x81\xa7\x8e\xa6\xfc\x6c\x3b\xd2\x49\x8e\x10\xab\x60\x29\x32\x90\x21\xd7\x64\x9a\x02\x6e\x95\x67\xcd\x51\xc4\x2e\xe7\xa4\xfd\x4c\x7d\xaa\xc8\xc9\x78\xf0\x43\x04\xa3\x96\x93\x8d\xa1\x9a\x8d\x74\x7c\x89\x0e\x47\x91\x3f\x8e\xdc\x92\xda\xaf\x92\xef\x1f\x8f\xf5\xcb\xdf\xda\xe8\x97\x9a\xd6\xcf\xcc\x96\xd4\x1f\xb9\x23\xec\x85\xe8\x4d\xb0\xa4\xdb\x4f\x3c\x57\x2e\x42\x13\x06\x86\x53\x56\xd3\x44\x90\xdb\x69\xfc\xfc\xb0\xe4\xa7\xc9\x27\x63\xe8\xee\x93\xce\x2c\xe7\xfd\x0f\x42\x86\x44\xc3\xc5\x5f\xc5\xfa\x27\x82\x0c\x25\xab\x59\xd9\x2a\xe8\x71\x0d\xd1\x87\x87\x54\xa2\x2d\x64\x62\x31\xef\x18\x77\x58\xd7\x9d\x3d\xc6\xa9\xb8\xa9\x4f\x16\x2e\x05\x7f\x4a\x17\xa5\x50\x8d\x35\x81\x79\xb4\x5f\x9f\xc5\x39\xcf\xb5\x8d\x1e\x00\xdd\x0d\x55\x1b\xbc\xab\x93\xb5\xb6\x4e\x3e\x3c\xb8\xbf\xf6\x05\xd9\x88\xa0\x0e\x81\x9c\x8e\x07\x42\xf0\xc8\xc5\x41\xac\x2c\xb7\xf3\x59\x7f\x85\x25\x5a\x34\x7a\xdd\x50\x3e\x1b\xe3\x95\xa0\xb5\x8e\x15\x89\x4a\x5a\x82\x8d\x03\x4c\x71\xe4\x92\xfe\x73\x33\x29\x9a\x47\xf6\xac\x46\xd1\x56\x0c\xa9\xf4\xe6\xf1\xb6\xd6\xa8\x0f\x12\xd0\x13\xe1\x29\xe8\x44\xf3\x70\x69\x66\x6d\x45\xd6\x14\x3d\x63\x23\xd0\x95\x96\xfd\xd3\x9e\x9a\x6b\xf3\x87\x77\x9b\xb5\x54\xd8\x51\x80\xd5\xea\xe0\x35\xee\x36\x25\xba\x88\x13\xf5\x2b\x74\xa9\x93\x76\xaf\x72\xfc\x63\x6c\xcb\x43\x94\xc4\xc4\x72\x5a\x82\xa9\x21\x52\xb3\x24\x42\x0b\xfc\xeb\x3f\x3e\xd3\x1e\xc9\x12\x3e\xb0\xf0\xab\xda\xae\xef\x4f\x80\x38\xbd\x80\x5a\xef\x6f\x69\x43\x4c\x33\x6e\x97\x7e\x8e\xd5\x8b\xd4\x80\x3b\x37\x2b\x8a\x90\xa6\x53\x7c\x0c\x29\x19\x26\x0f\x31\xdb\x1b\xac\xe1\x52\x09\x8f\x1e\x7d\x09\x8d\xc6\x4d\x11\x31\xe7\x5f\x96\x6a\x29\xd9\x77\x1a\x23\x14\x31\x3b\xbd\xaf\x17\x3a\xb4\x37\x6c\x4b\xbb\xa2\x6f\xf0\xe0\x98\x00\x8b\xad\x6b\x50\x94\x6d\x5f\x97\xd7\xbe\x10\x8c\x71\x6c\x43\x91\xd2\xd0\x6a\xdc\x7c\x98\x43\x1f\xa4\x69\xf2\xa8\xf2\x38\x6e\xf0\xce\x85\x79\x5f\xa1\x49\x78\x50\x68\x01\xc4\xda\x90\xa1\x1a\x65\x56\x65\xf7\x59\x87\xb6\x78\x66\xb7\x1d\x6c\xa6\x40\xd7\x03\x3b\xfc\xe3\xf4\x20\x00\xfc\x62\x53\xd2\x3e\x9c\xa3\xbc\x70\x9b\x4a\x41\xc1\xae\xba\x41\x58\x8e\x0f\x79\xc4\x3d\x67\x63\x03\xed\x25\xe2\xe3\x21\x46\x95\x7c\xfd\x1e\x2c\x9f\xe6\x0d\x97\x76\xbe\xbf\x1a\x4e\x07\x2f\x58\xfd\x9d\x53\x95\xd4\xaf\x3a\x4d\xcc\x9b\x63\xcb\xab\xd4\x27\xad\xbd\x91\x7b\x8d\x3f\x56\x3a\xc6\x89\x21\x12\x3d\x95\xfa\x26\x95\x70\x78\x40\x43\x60\x9d\x45\x0d\xc2\x57\x30\xd8\x21\x4d\xa0\xd0\xea\x32\xbf\x33\xd4\xae\xa0\x12\xa6\xe9\x24\x36\x86\xfc\x15\x84\xdd\x8d\x8d\x4e\x04\x33\x9c\x44\x94\xeb\xcc\xcf\x4f\x24\x96\x2f\x80\x10\x29\x97\x5a\xc3\x67\xa5\x7c\xc9\x3c\xd2\x86\x1a\x24\xae\x5b\xa5\x8f\xc0\x38\xe5\x57\x43\x9c\xc8\x31\xdf\x82\xdc\xbc\x08\x4f\x68\xca\x41\x9b\x1e\x71\x8d\x04\x74\x97\x36\x6c\x27\x2a\x7c\x87\x0d\xfa\x7c\xa2\xed\xed\xc1\x7b\xe3\x6b\xa2\xdc\xc1\x14\x10\xf1\x2a\x1e\x63\xd5\x84\x6e\xd8\xcb\xa2\x20\x57\x09\x83\xeb\xe9\x49\x5b\x46\x06\xff\x03\x95\x9b\xa8\x95\x9b\x01\x56\xf3\x64\x6a\x33\x7c\xdb\xf5\xcb\x8c\x63\xb7\x40\xb6\xcb\x84\xdf\x4c\x69\xe0\x9d\xa0\xd0\xd0\x9d\x4d\x48\xa9\xf0\xa7\xb2\xfe\xd9\xb4\x74\xef\x15\xb2\xcc\xf3\xe7\xf9\x5b\x91\xd4\x92\x4b\xfb\x85\xa8\xfc\xe2\x22\x14\x20\x9b\x9f\xe8\x03\x2b\x05\xa5\x52\x2e\xfd\x9e\xa2\x43\xd6\x94\xdb\xc4\x1f\x6e\x91\x6d\xba\x67\x5b\x45\x96\xd8\x4e\xad\xd1\x33\x44\xd0\xd2\xd0\x98\x18\x42\x66\x14\xe7\x6d\x19\x1c\x37\x61\xae\x94\x99\x12\xc7\x9d\x41\xf6\xe6\x1a\x88\xcb\x5c\x7a\xbd\xcd\xdd\x60\x7a\x70\xf9\x1f\xe6\xd8\x55\xfd\x35\x0c\x7f\x6c\x36\x5a\x24\xe3\x09\x86\x10\x06\xd9\xe7\x57\xd0\x0c\x39\xc5\x45\xef\xc3\x45\x1e\x96\xf7\x11\xed\x51\x16\xf3\x68\x3f\x91\x35\x2b\xaf\x55\x85\xb1\x4a\x6d\x45\xb4\xf0\xf4\xaa\x53\xe8\x03\x89\x42\x8e\x55\x52\x5d\xd9\x0e\xf4\x43\x95\x9b\x28\xad\x7a\x72\x77\x1d\xd5\x82\xf7\x7e\x32\x41\x2d\xe8\x24\x6a\xce\x2d\x07\xfc\xf3\xa5\x49\x0b\x67\xa7\x84\xb6\x75\x06\xa8\x70\x56\x20\x12\xd3\x2a\x72\x2c\xc1\x72\xaf\x50\x51\xeb\xa1\x50\x6b\xcf\xed\x82\x44\xdd\xa7\x29\x4b\x59\x07\x30\xa7\x0b\x69\xa3\x20\xb1\xd0\x94\x38\xaf\x7f\x35\x24\xf1\xd3\x1c\x53\x0b\xbd\x30\xeb\xf9\x2f\x0f\x46\x66\x23\x35\x54\xdd\xb3\x98\x8d\xc2\x24\xbf\xe9\x4b\x65\x0d\x9f\x54\xb6\xd4\x31\x67\x36\xcc\xad\xa5\x5a\xfe\x90\xb2\x51\xad\x2a\x3d\x71\xde\xec\x3f\x52\xdf\xa2\x86\xe7\xfc\x91\x1b\x18\x3b\x9a\x0a\x30\xfd\x31\xf9\xf9\x5f\xed\x8e\x67\x1a\xb3\x63\x94\x3e\x53\xcd\x3a\x88\xca\x4c\x2d\xf2\x42\x4e\xf4\xba\x70\x5a\x0c\x3a\xbd\x7d\x32\x61\xd3\xc6\x4f\xe8\x11\xcd\xca\x2e\x64\xe9\xab\x93\x15\x95\xe2\xf1\x60\x55\x18\x11\x8b\x6b\xc6\xd4\x96\x52\xbb\xae\xc5\xfb\xa0\x60\xdb\x55\x77\x0b\xbe\x01\x0d\xef\x70\x39\x79\x97\x1f\x9f\xde\x1d\x53\x9f\x28\x7f\x13\xa1\x93\x14\x3f\xb6\xee\xa4\xb6\xe8\x8c\xe1\xcb\xe7\x7f\xbd\xff\xf8\xc8\x8d\x09\x09\x6d\x36\xa7\x26\xff\xb1\xcc\x5b\x20\xe4\x2d\xdd\xa8\xc1\x83\x25\x43\x76\xad\x78\x96\xdc\x62\x5c\x30\xc9\xc3\x5c\xfe\xa7\xb3\x7d\xd0\x66\x96\x66\xa4\x8a\xbb\xf7\x07\x55\xed\x63\x08\x31\x12\x43\x65\xb6\x26\x32\x6e\xe4\xa5\x08\xd7\x81\x0e\x73\x3d\xd3\xf0\x00\x21\xdb\xc5\x5b\x01\x81\x2b\xe6\xed\x70\x82\xa6\xe2\x99\xd1\x80\x4e\x37\xad\x41\x02\x12\xcd\xc7\x1d\xcb\xa4\x46\x32\xb5\xb9\x08\x0a\xf3\x05\xa5\xf7\x01\x71\x2a\xab\x6a\x65\x72\x79\x82\x98\x15\x7f\xc1\xe7\xbe\xc3\xfb\xf0\xd2\x71\xa1\xf7\xe0\x21\x0c\xcf\x62\xa1\x9a\x37\xe5\x93\x7d\x24\x37\xd8\xfa\x66\xbb\x55\x61\x2d\xba\x79\x12\x7e\x07\x85\x99\x38\xe0\x61\xba\xb3\xb7\x1d\x88\x8c\xaa\xfb\x7c\x3b\x13\x96\x1a\x69\x5b\xad\x37\xb7\xf9\xe5\x3a\x10\x69\x1b\xb1\x4d\x8e\xe5\x62\x4f\x36\x6e\x8a\xb4\xaf\x8d\xd9\x55\xa3\xaa\x34\x34\xbf\xb0\xb0\x89\x83\xfc\x4c\xf5\x49\xe3\x6e\x91\xe7\x82\xdb\xfe\xf6\xc6\x0c\x37\x47\x7e\xe2\xae\x85\x51\xe5\xc0\xa2\x2b\xd8\x6d\xb9\xc7\x5b\xc9\x64\x0e\xae\xf2\x11\xae\x51\x95\xee\xcb\xd8\xa4\xa9\x2b\x8b\x9f\x08\xc5\xcf\xfc\xc5\x55\x7e\xb0\xe6\x00\x83\xc7\x26\xb8\x56\xbb\x33\x07\x6a\xb9\x3c\xa8\x9f\xba\x38\x98\x46\x9e\x46\x3b\x0c\xd5\xc9\x1f\xf6\xc4\xdf\xe6\x89\x5d\xa7\x96\x5d\x90\xd6\x10\xd9\xb5\xc0\xb0\xf2\xf5\xd7\x55\xc2\x31\x4b\xde\xac\xa8\x86\x08\xa6\x91\xdb\x09\x04\x14\x69\xd2\xee\xae\x25\x2b\xd8\x55\x66\xe0\x19\x9a\xb4\x30\xd1\x0c\x3a\xb2\xfa\xf5\xda\x8a\xfc\x56\xfe\xcc\xe0\x67\x8c\xfd\x7a\xac\x71\xa4\x95\xba\xc4\xc9\xbe\xaf\x5d\x6f\x84\xf2\x80\xeb\x5c\x0c\xd3\x6d\xd9\x37\x7e\x61\x93\x52\x3e\x02\x4e\x7b\x2c\xab\x2e\xb3\xff\x72\x30\x42\x22\x53\x5e\x67\x84\x9c\x89\xd9\x71\x30\xed\x45\x40\x53\xd8\x89\x8e\x99\xb0\xc2\x64\xf5\xb1\xc2\x0f\x8c\xa6\xaa\xd5\x49\x0e\x5e\x79\xe5\xed\xad\x3a\xac\x12\x8f\x9a\x99\x60\x45\xe7\x4f\x39\x39\xb2\x35\x18\x7d\x3d\xc9\xfe\x5d\x55\xee\xdf\x2a\x94\xb2\x70\x08\x63\xd3\xb3\xb8\xcc\x72\x6a\x46\x21\x24\x12\xf9\x36\x82\x61\xa4\x91\xc5\x15\xbd\x31\xfe\x4a\x4c\x1f\xa8\xea\x71\xf7\x97\xec\x8c\x9e\x4d\x23\x9b\x9d\x4e\xcc\x93\x0d\xc8\xfa\xb7\x03\x8c\x25\xca\x73\xf4\x9e\x7a\xb6\xba\x3d\xa4\x4b\xc2\x8a\xd1\xb8\x3d\xde\x29\xa1\xc7\xf3\x29\xaf\x95\x57\x3c\x46\x88\xc0\xce\x1c\xe9\xe8\xb3\xc7\xb3\xbb\xba\xd4\x20\xdc\x4f\xf5\xd6\x79\x56\x90\xa7\x47\x04\xe7\xad\xa9\xa8\xc7\x40\xcd\x9e\x5e\xbf\xb2\x79\x66\x88\x45\x57\x5e\x9d\x9e\xec\xfe\x8e\xdc\x17\x4e\x8d\x20\x81\xae\x46\x04\x07\xba\x3e\x0c\xec\xb5\x1d\x67\x89\x67\x2b\xa1\xb0\x42\x81\x31\xfb\xf7\x9d\x88\x00\xdb\x0a\xb8\xa7\xcb\x38\x1f\xcc\xc9\xcd\x5e\xc5\xab\xde\xa2\x1a\xd9\xd5\xd4\x39\xbc\x93\x1e\x84\xad\xd7\xf0\x69\x67\xa7\x27\x81\x2c\xb5\x25\x5b\x8f\x44\xc4\xd5\xd8\x54\xf2\x6f\x6b\x63\x43\x7e\xbf\xb7\x93\x2d\x29\x37\xab\xa9\xc0\x22\x65\x94\x23\x49\x03\x7d\x8b\x9f\xce\xb5\xbc\xfb\xf4\xf0\x29\x0d\x61\x81\xc0\x38\x98\xf1\xa9\x6f\xc8\xa7\x46\x0c\x1a\x81\x3e\x94\x20\xe9\xad\x26\xd1\x9f\x2b\xc1\x54\xfd\x58\x04\x6f\xe0\xe7\xd2\xba\xad\xc7\xc2\x70\xb0\x58\xc6\xe2\xbd\xe6\x5e\xd5\x78\xe0\xff\x29\x4c\x50\xd2\x27\x7b\x67\xf4\xf7\x31\x82\x1e\x3a\xec\x60\x2f\xd9\x13\x5a\xbc\xd0\xf4\x4c\x01\x9f\xdd\x53\x53\x04\x25\x81\x6f\x67\xcd\x7b\x08\x7f\xd3\x51\xf8\x41\x5f\x9c\x3e\x5c\x26\x53\x92\x76\x53\xfc\xeb\x19\xaa\xe6\xc4\x97\x2d\xf2\xbf\x68\x6d\x9f\xdc\x07\x1e\xcb\x5f\x75\x9e\x5b\x65\xd7\x3d\x25\xea\xe0\x55\x41\x84\x5e\xa6\xbd\xf0\x2d\x5b\x4b\x59\xc1\x30\x16\x7c\xd8\x10\xf4\x3b\x26\xd4\xeb\x2c\xf8\x9e\x3b\xa0\xa9\xff\xd5\x93\x3d\xe0\x4e\x7e\xc5\x48\x60\x38\x7a\x0a\x62\x22\x52\xb1\xc6\x5c\x87\x1f\xe2\x90\x43\x87\xa7\x7b\x71\xd1\x64\x3f\x76\xf7\x43\xc1\xd5\x38\xe4\xca\x40\x57\x95\xe4\x23\x5e\xc1\xb0\xb8\xa8\xfc\x41\x29\x7b\x6b\x46\x54\x04\xe6\x83\xed\x0e\x6c\x9c\xd8\xf8\x80\xe9\xb4\x75\x9a\xce\xcc\x2a\x39\x6c\xb6\x81\xd3\xe7\x8f\x61\xa6\x54\x2d\x98\x01\x23\x1f\x93\x7a\x9e\x63\xa3\x0e\x89\x49\xc4\x25\xec\x2b\x31\x80\x7d\x6f\xc8\x88\xbb\xa2\xfd\x77\x9b\x6a\xf9\x84\x24\x8b\x25\x16\x4f\xe2\x25\xb9\x57\xf9\xb1\xbf\x07\x04\x27\x7c\x45\x56\xef\x02\x62\x23\x6a\xe8\x05\xd5\xc7\xd6\xfb\x91\xe7\xda\x7e\xf4\x53\xeb\xd5\x09\x8e\x20\xe9\xde\xac\x85\xa7\xba\x6b\xe0\xb2\x88\xee\x68\x0e\x19\x86\x03\xa9\x07\x2b\xae\x8d\x27\xfb\x42\xe2\x07\xc3\x8d\x1c\x0e\xd2\x2b\xe3\x7a\x51\x88\x51\xe9\x8b\xc6\xc8\x0e\xc9\x45\x27\x2d\x0b\x6f\xdb\x3b\x6c\x2a\x01\x37\x95\xd4\xdb\x37\xf1\x85\xf3\x6a\x51\x3d\x2f\x74\x1c\xee\x33\xe2\xd4\x50\x2d\xdb\x92\xe1\x8d\x73\x53\x5b\x23\xc8\x12\x91\xe2\x31\xf2\x55\x82\x99\xdd\x67\xbe\xde\xaf\x5d\x8f\x0d\x2b\xc4\x1c\x3c\x86\x2c\xc9\x88\x35\x3d\xad\x16\xf8\x7c\x08\x49\xf8\x69\xf5\x76\xc8\xa9\x79\x1e\xf6\x3e\xb6\xa4\x68\xc2\x51\x49\x72\x2b\xdc\x2f\x84\xb1\x8a\x7d\x58\x4d\xa9\x17\x8f\x08\x0e\x9c\xb7\x3c\x72\x49\x93\x78\x58\x11\x14\xa2\x0c\x01\x9a\x6d\x22\xf7\xb3\x17\x68\xb1\xfb\x16\x9f\x53\x82\x6f\x16\x79\x3e\xb8\x08\x7c\xbc\x64\xc0\xbf\x8f\x8c\x4c\x4d\xa6\x2c\xdc\xa5\xf2\x87\x2b\xe1\xa0\x0a\xad\xdb\xd1\xf8\x9c\xf8\xab\x0e\x7d\x36\x2e\x3e\x4b\x49\x39\xc7\x55\xe9\xb9\x2a\x55\xa3\xf2\xa1\x90\xc0\x32\x88\x0a\x9e\x11\xe6\x49\x5e\xc7\xfd\xc0\xaa\x13\xda\xa9\x35\x93\x6e\xab\x53\x36\x90\x3e\xba\xdb\xc5\x96\x30\x74\xd3\xf5\x5d\x45\x90\x97\xde\xcc\x88\xa6\x53\xa4\x45\xa2\x15\x8a\x39\x9d\xff\xae\x0a\xfd\xa4\xbd\xe8\xa9\x68\x82\x37\x6a\xfe\x4c\x48\x2b\x89\xe3\x72\x3a\xb6\x6d\xe4\xf7\x7a\x1e\xe5\xce\x9d\x92\x81\x48\x45\x96\xec\x62\xb0\x6a\x6d\x4f\xa4\xe8\xe7\x39\x7a\xfe\x5e\xac\x4e\x82\x3b\xf3\x8e\x3c\xd0\x98\xbb\xd1\xe5\x0b\x6b\xe3\xdd\xc8\xa6\xa5\x6d\xc1\x8c\xfb\x7b\x6e\x0a\x55\x95\x1c\xf1\xa5\xc7\x79\xaa\xa5\x18\xac\x6b\xdf\xf2\x95\x2a\x1f\xab\x0a\xd9\x09\xa7\xb3\xb6\x8e\xee\x8e\x24\x09\xa3\x63\x99\x83\x5e\xa3\xe0\xef\x42\xa5\x21\x9e\x4c\xdd\x87\x18\x8d\x8f\xaf\xb1\xbf\xce\xe3\x78\x8e\xea\x2d\x46\xe0\x8c\x0a\x5d\x7e\xd1\x9a\x56\xf2\xf5\x5b\x30\xf1\x66\xb8\x09\x18\xe9\xbd\x67\xf7\x78\xec\x67\x7d\x76\x51\x63\x28\x88\x1e\x44\x89\xda\x77\x46\xc8\xdc\x3f\xeb\xb5\x27\x46\xb6\x8f\x6b\xb8\x2c\xd2\x32\xd9\x2f\xfd\xd8\x87\xd4\x36\x4a\x12\xa4\x2f\x37\x20\xbf\xad\x29\xda\xc5\xd8\x96\x73\xb5\x7e\xae\xe0\x8c\xef\x76\x7f\x7d\x82\x91\xe1\x29\x7d\xf4\xc3\x50\xaf\x7d\xde\x0d\xaa\x7d\xeb\xeb\x0a\x4e\x49\x03\x8f\x9c\xe2\x1d\x04\xd3\x2c\x55\xbc\xdd\xb0\xf2\x84\x75\x8f\xcb\x2b\xdb\x7f\xaf\xa8\x25\x7f\xb6\xa0\x6a\x5d\x24\x53\x16\x28\xdb\x77\x5c\xbb\x3d\x16\xbc\x4c\x8a\xf4\xa6\xea\x5d\x88\xa2\xbc\x69\xa9\x0c\x73\x63\x5b\xb8\x16\xa8\xca\xf1\xc8\x29\x18\x4e\xd4\x10\x3e\xf6\xf3\x13\x34\x28\xeb\xa7\x3e\x2f\xfd\x6c\x2b\x9e\x73\x4a\xbd\x2e\x27\x51\x99\xfd\xae\xf6\x9c\x45\x00\x41\x9a\xd6\xdd\x6b\x61\xf9\x95\x2b\x77\x64\x6c\xc3\xc0\x32\x33\x3f\x58\x6e\xab\x50\xf8\x4f\x3f\xe2\x5b\x45\xf2\x8f\x42\x4f\xd6\xe8\xcf\x1d\x07\x04\xb3\x72\xe5\xd4\xf6\xd4\x96\xd8\xb8\xb9\xf8\xdd\xe2\xc1\x69\xd8\x8e\x1f\xbd\xe3\x79\xe5\xba\x33\x30\x8c\x25\x39\x73\x33\x36\xf6\xe6\x6a\xae\xe4\xd3\xf3\xf5\x34\xf7\x9d\x34\xb2\xeb\xf1\xb2\x7c\xd9\x57\x18\x0d\xbf\xa7\x90\x19\xf0\x4b\x29\x8f\x0b\x76\xd2\x7d\x1c\xfb\xce\x22\x8f\xf6\x92\xe9\x7a\x0a\xa6\x64\xc3\x87\x7e\x2b\x1e\x9d\x8b\xe5\x62\xcb\x5c\xcc\x65\xfd\xf0\xe6\xcd\x4b\x11\x1e\x43\xde\x0a\x87\xb9\xb4\xc7\xb5\xf5\xe0\xb9\xe4\xd5\x46\x45\xe7\xb4\x48\x11\xf5\xfb\xf7\x2a\x6d\xf7\x45\x4b\x30\xd6\xdc\xf0\xd6\x24\x19\x42\x9a\x78\xaa\x53\x65\x1d\x68\xf7\x07\xde\xae\xec\xb2\xfd\xc0\xf8\x34\xc7\xdf\xe9\x0c\x54\x47\x45\x60\x83\xdc\x97\x32\xad\xeb\xbc\x3b\x5e\xe1\x45\xa8\x25\x84\xed\xfd\xfa\x71\x68\xd9\xa7\x9c\x32\x03\x64\xeb\x97\x37\x3c\x97\x65\x26\x04\x96\x1b\xf7\x4d\x14\x4f\xa6\xf6\x3f\xbe\xf3\x49\x81\xb3\x23\xfb\xd2\x95\x4f\x8a\xfb\x2f\xf8\xc2\xeb\xdb\x67\x23\x15\x1e\x70\xb7\x4b\x1d\x58\x9a\xd1\x4c\x1b\x9a\x4c\xb9\xed\x1b\xff\xa0\x99\x1d\x7f\x65\x53\x0e\x2d\x54\xa3\xa9\x66\x5f\x23\xbc\x2f\xaf\xc8\xa3\x2c\x35\x7a\xd7\x72\xe2\xb2\x6c\x91\x70\xa9\x95\x5e\x2a\x20\x4d\x73\x88\x5e\x9a\xc5\x11\x9c\xa3\x48\x47\x5c\xa5\x62\x5a\xa1\x63\xdb\xfe\xf1\xa2\x67\x1c\x05\x35\xab\xc1\x4d\xcc\xbe\xb5\xb8\xe6\x9b\xba\xd9\xe0\x26\x05\x8d\x0c\x6f\xd2\x09\x43\x65\x99\xdb\xb6\x84\x5a\x15\x5d\x7f\xe6\x4b\x43\xcd\xeb\x24\x23\x1f\x7a\xc4\x70\x8e\xca\x6a\x97\xc1\xce\xaa\x87\xac\x47\x16\x94\x34\x36\x3d\xe7\x75\x31\xbb\xa4\x7c\x60\x9a\xdf\xe5\xfc\xa7\xa8\x29\x93\x3a\xa1\x27\xfa\x0a\xf3\xb7\xf1\xb1\x5b\x9e\x0f\xb4\x14\xaf\x46\xfe\x98\x9a\xa2\x42\xe9\x8a\x52\x92\x48\x12\x86\xd5\x26\xf0\x0e\xb4\x19\xc9\x1b\xb0\x0f\xdf\x94\x0a\xb0\x72\xf0\xc5\xb4\x07\x13\xa7\x4f\x94\xb2\x43\x87\x96\x14\x59\x0b\xf4\xa3\x14\xb9\x4c\xf9\x7d\x31\xa5\xda\x39\x08\x35\x37\xb9\x28\x58\x2a\x63\xb6\xb1\xd8\x1e\xbf\x11\xd2\x4c\xd4\xbe\xbd\x95\x18\x7e\xdb\x9c\xb2\x46\x70\x76\x1f\x1a\xad\x68\x70\xe4\xf6\x93\x6d\x79\x43\xa4\x0b\x3f\x24\x67\xa9\x51\xd9\x0e\xaa\xc0\x56\x4b\xb4\x76\x23\x4a\x99\x1d\xd9\x03\xad\xe0\xbd\x34\x46\x02\x2c\xd8\xa1\xcd\xcc\x68\x31\xc9\x17\xc5\x00\x17\xf3\x40\xd0\x47\xea\xd0\x3f\xac\xbd\xb3\xb7\xad\xca\x1b\x15\x76\x49\x43\x61\x2f\x5d\x8d\x57\xaa\x1f\xf6\x9e\x41\xf7\x2b\x85\xd0\x56\x27\xc2\xb1\xd2\x07\x88\x80\xad\xbf\x1d\xc9\xd2\x76\x6f\x70\x88\x9d\x57\xf0\xa8\xb5\x8d\x19\xe6\xee\xae\xd8\x33\xab\xf5\xee\xce\x04\xbf\x25\x62\xa7\xaa\x7f\x68\x8f\x3b\xea\xe5\x35\xa5\xca\xf7\xe5\x8f\x51\x8c\xa2\x79\x1b\xc4\xb7\x40\x46\xd8\xa6\x39\x0b\x62\xbb\xc9\xe2\x85\x6b\xef\xa7\x06\x60\xa2\x37\x68\xa8\x4b\x16\xb8\x42\xaa\x44\xf9\x93\xf6\xa7\x3a\x52\xad\x7f\xc7\x45\x23\x2e\xa7\x69\x0e\x32\x08\x3f\x12\x56\x6a\x46\x9c\x6b\x92\x24\x6f\xc9\x83\xbd\xf3\x9f\x5a\xb7\x3b\x42\xd2\x7f\xd5\x8e\xe4\x09\x43\xc6\x45\x2c\xa4\x8a\x55\xbf\x24\x48\x1a\x92\x25\xe7\xfe\xc2\xad\xf5\x62\xb4\x0d\xbe\x7d\xcc\x24\xd6\xde\x5f\xe6\xdd\x4f\xf8\x7d\xe5\x4d\x3b\xff\xc6\xcb\x7a\x7d\x3a\x5e\xbd\xaf\x8d\x7a\x83\xc7\xbc\xcc\x99\xea\x4b\x32\xe5\x44\xf9\xd3\xe7\xc9\xca\xfc\x9e\xd9\x95\x25\x43\x0d\xbf\xa9\x20\xec\x98\xc6\xaf\xae\x99\x85\x2f\x50\x4d\x9a\x33\xc3\x30\x1b\xb7\x4c\x3a\xef\x26\x24\xe5\xbf\x05\x87\xc2\x46\xe9\x6e\x16\xad\x34\x5e\x7d\x5b\x2b\x62\x0a\x6a\xfd\x29\x6e\x71\x9e\xa9\x8a\x2f\x7e\x73\x58\x97\x58\x5a\x1b\x67\x56\xad\xba\x48\x6c\xae\xd1\xcd\xb6\x91\x1e\x9a\xbd\xb0\x66\xa8\xe5\xb8\x75\x68\xec\x57\x7f\xcd\x53\x80\x9f\xa7\x81\xcd\x75\x30\xbe\xf4\x50\x00\x7f\xba\xb3\x1e\xee\x96\x71\xee\x32\x2d\x6f\x12\xc7\xa4\x76\x5b\x1a\xf7\xce\x4d\x8b\x1b\xc4\xac\x51\x15\xad\xfb\xc1\xb7\x43\x30\x73\xb5\xd5\x25\xa2\x61\xab\xb0\x82\x63\xef\x70\xe3\xb0\xb1\x16\x9b\x62\xdd\xb0\xa0\x1f\xca\xbd\x13\x2e\xc0\x0f\x1a\xe3\xd9\xbb\x34\x95\x8c\xc5\x93\xb7\xa5\xe0\xd8\x58\xf0\xa3\x19\xfa\xd0\x43\xa8\x22\xbc\xef\x04\x47\xa6\xc8\xf8\xa7\x75\xa1\x9c\xdb\xff\xac\x88\x5f\x8a\xda\xd4\x80\xdb\xe6\x52\x06\x20\xdd\x54\x69\x3c\x9f\x9a\x66\x11\xcb\xf1\xdf\xca\x4e\xfa\x5f\xa5\x1b\x7f\xad\x66\x94\xd7\xb5\x9b\x19\x3d\xbc\x8e\x8c\xfc\x3c\xfa\xde\xaa\x41\x7e\xc6\xb0\xfb\x05\x6a\xa7\x45\x8a\xe0\xa9\xa9\x8f\x3c\x6a\x28\x06\x25\x59\x71\xa3\x21\xcf\xe5\xcd\xc1\xfc\xaa\xf1\xd2\xbd\xc9\x5d\x30\x36\x25\x3f\xaa\x35\x65\xe3\x42\x59\x73\xbb\xdb\x19\xe6\xce\x3e\x22\x7d\x89\x4c\xa1\x60\x17\x19\x56\x8c\x31\xdd\x6d\xc1\x3c\x4b\x7e\xb8\x3a\x3d\xda\xe0\x05\x55\xaf\x73\x1c\x47\xd8\x6f\xd2\xa7\x79\x28\x32\xdf\x9d\x7a\xc3\xa8\x93\x2b\x24\x04\xc3\x0a\x18\x62\x7a\xef\x7e\xd2\x32\xbc\x3d\x97\x81\x73\x63\x7f\x16\xab\x98\xe0\xc2\xed\x16\x40\x77\xd8\x4d\x52\x27\x8b\x2d\x44\xbd\xbd\xeb\xf8\x5a\x37\xb3\xae\x43\x54\xcd\x01\xfb\x52\xd8\xa3\x37\xb7\xf4\x6c\xf9\xaa\xf7\x63\x37\x6e\x24\x4b\x37\xc6\x5f\x34\xff\x04\xbb\x72\xf7\x72\xd9\x84\x28\xcf\x63\xd5\x5a\x3c\x53\x74\xec\x09\x36\xa7\x84\x9e\x23\x0e\x3e\xd9\xe5\x2f\x62\x19\xd4\xe6\x4e\xf7\x45\x24\x90\xcc\x29\x25\xff\x39\xf6\x51\xb1\xd1\x98\xea\x64\xe9\x61\x93\x53\x68\x81\x3e\x11\xe1\x73\x20\xb3\xf1\x04\x3d\x32\xd5\x3d\x84\xb7\xf5\x61\x6b\x92\x12\xc5\xf4\x4d\xfc\xa7\x08\xfc\xaf\x42\xf2\x49\xb0\xe9\xb1\x45\x04\x0c\x99\xf8\xe2\x30\x54\x04\x6e\xf8\x16\xa5\x3a\xf4\xd0\x33\xcd\x6b\x25\xc2\x23\xee\x86\xc1\xb6\x8e\x83\x73\xc9\x90\xe8\x9e\x4c\x16\x9b\x00\xad\xdc\x23\x25\x6a\xc4\x03\xff\xe0\x8f\x66\x75\x30\x67\x6e\xaf\x99\x44\x7b\xbe\x60\xe5\x22\xc3\x88\x3b\x7d\x36\x6c\x8f\x4c\x28\x76\xa0\xb7\xc5\x50\xdf\xc6\xa8\x51\x66\x98\x50\x74\x2e\x6a\x46\x77\xee\x61\xdd\x20\x6c\xf4\x9b\xee\x35\x94\x51\xd1\x7b\xc7\xa5\xa1\xea\x8c\x9d\x1c\x7f\xac\x09\xbe\x6c\xd3\xb0\xb9\x2b\x0b\x59\xee\x94\xb6\x7f\x56\x28\x58\x0e\xb9\x26\x1a\xc9\x5a\xcb\x58\x3b\x6f\x7d\x69\x39\x00\x91\x49\xf0\xfb\xe9\x47\x63\xb3\xa5\xdf\x70\xd6\x8e\x32\x25\x16\x99\x9c\x93\xd3\xfb\x83\xa2\xe3\xdb\x25\x90\x76\x48\x38\xd4\x32\x87\xf2\x08\x4a\x6a\x9f\x59\x48\xb2\x1d\x60\x78\x6f\xf0\x2a\xf2\xc5\x85\x39\x7b\x5f\xcf\x34\x27\x8b\x65\xa0\xd7\x51\x4f\x9a\x6d\x16\x4b\x1b\x2f\x52\x69\xe0\xf7\x4a\x5f\x19\xde\xee\xc7\xd7\xc2\xd1\x04\x9c\x40\x77\x89\x7e\xa0\xba\xb8\xfd\x48\x7a\x54\x02\x84\x80\x71\x94\xa7\xc4\xef\x07\xde\xf1\xba\xec\x9c\xdb\x0f\xc5\xb2\x32\x28\xd6\x48\xd8\xda\x19\xd6\x5b\x5a\x02\x74\x0b\x64\xda\x65\x40\x3d\x7a\x90\x1a\xd9\x8d\x80\x77\x29\xdd\x00\xbd\x4b\x0d\x05\xd2\x09\xa7\x1c\x3f\xac\x49\x2d\xa2\x7a\xe8\xdb\x3e\xd8\xbc\xf2\xd3\xfd\xe2\xd3\xd7\x7a\x14\xd0\x70\x3a\x11\x75\x9f\xf6\xaa\x3a\x39\x6a\x90\x8d\x7b\x79\x0c\xa6\xdc\x28\x2a\xcf\x81\x2a\x12\xf9\x1e\x83\x38\x13\x9d\xea\xe9\xeb\x55\xe5\x5d\xee\x4d\x74\x95\x97\x43\x5d\xb1\x5b\xd7\x5c\x69\x32\xb9\x60\x19\xba\x94\xf2\x85\x1a\x7e\x73\x46\xb1\x5b\x57\x01\x7a\xf2\x90\xb8\x1e\x55\x25\xbf\x57\x40\x6a\x7e\xc9\xdf\xaf\x75\xc2\x99\x5d\x8f\x36\x5e\x0b\x88\x84\x88\x8c\x8e\x02\x1f\x55\xf5\x11\x15\xd1\x53\xf4\x02\x72\x4a\x1b\x94\xb8\x02\x96\xaa\x63\xf2\xf7\x2a\x33\xa5\x04\x81\xef\x24\x8b\xa3\xc1\x6a\x61\xb7\x0b\x29\x5d\xe8\x21\x2a\x35\x11\x03\xfc\x77\xfb\x39\x1c\xbd\x35\x85\xf5\xf4\x74\x59\xfc\xc8\x81\x0d\x8c\xae\x47\x2f\xcf\xc9\x4b\x64\xe4\xf3\xa1\x89\x1c\x02\xb2\x67\xdd\xfb\x0e\xa4\x4c\x6e\xcd\x11\x5d\xb1\xf7\xbf\xf0\xb3\x76\x05\xb0\x2a\x11\xfb\x64\x55\x47\x3f\xaf\xef\x07\xab\xb0\x35\xbe\x18\x59\xb9\x2b\x7a\xe7\x85\xbc\x70\x08\xa8\xf6\xd0\x99\x62\x3a\x52\x0a\x5b\xa6\xdf\x3a\xed\x68\xee\xec\xe7\x61\xde\xa1\xac\xe9\x83\x63\x0f\x46\x4a\xb6\xd2\x9b\x7f\x3a\x2e\x90\xee\x20\xe1\xf0\xae\xd4\x63\x6c\x26\x0e\xdd\x21\x7e\x1b\xb4\x8e\xd6\xe2\xf1\x1b\xca\x60\x1c\x53\x77\x8d\x7b\x2b\xad\x7b\x49\xb8\xe3\x86\xdf\xdb\xc3\x5e\x7f\x31\x4e\x08\xea\x5b\x02\xbd\x2a\x91\xf9\x65\xd1\x6f\xf2\x9b\xc6\x78\x6e\x7e\xb3\x7a\xc0\x8b\x72\xf1\xe2\x77\x57\xef\x7c\x76\x67\xf1\x9b\x4e\x4a\xbc\x28\x58\x80\xb8\xcf\x9d\xa6\x68\x10\x1f\x41\xd7\x69\x2c\x1b\x21\xff\x5a\x89\xe3\x90\xef\xf8\x88\x72\x13\x28\x3c\x20\x50\x73\xfb\x79\x23\x3f\x02\x2c\xaf\x00\xa2\x63\xfe\xe3\x6e\xd7\xca\x2f\x9b\x20\x77\xc9\x08\x8e\xa0\x4c\x1c\x53\x97\xe5\xda\x6b\xf5\x77\xce\xdb\x63\x25\x7d\xa7\xf4\x67\x9e\xb7\xeb\x11\x64\xe1\x57\xd4\x60\x74\xc5\xb0\x6d\x4c\x1e\x85\xe4\x01\xa1\x6c\xbe\x26\x68\x72\xbb\xf0\x0e\x09\xb7\x4e\x78\xf2\x1f\x2a\xf9\x6c\xca\x9d\xc3\x5d\x8b\x2e\xd0\x7e\xe3\x76\x24\xce\x7f\xf9\x12\x45\x8a\x75\xf9\x91\xe4\x99\xe0\x97\x25\xe6\xe8\x52\xcd\xdf\x46\x62\x09\x87\xa8\x2a\x9a\x2c\x04\x4c\xe0\xe1\xa4\x15\xa6\xc2\xc9\x0f\xf8\x39\xd1\x8a\xcb\x78\x90\x53\xdf\x67\x01\x74\xd7\x46\x48\xe7\x25\x72\xdf\xa2\x25\xee\xe0\xf5\x59\xdc\x90\xbd\x28\x7d\x21\x16\x72\x24\xb7\x21\x0a\xd9\xac\x8c\xa1\x0d\x2a\xa3\x27\x6e\x72\xa0\xfd\x1a\x73\xd2\xca\xa8\x0e\x2d\x4a\xe0\xe0\xb2\x0e\x62\x26\x0e\xf1\x5b\xeb\x77\x41\xa4\x83\xd0\xb0\xae\x35\xe8\x7b\xab\xbc\xcd\x85\xab\x93\x97\x50\xef\xa4\x23\xed\xc6\x00\x48\xf9\x12\x49\x4a\xff\x7a\x45\xa3\xf7\x7a\x5f\x96\xd6\x70\x27\xf6\x0a\xae\x43\x30\xce\xec\x5c\x6c\xad\x53\x2e\x91\xfe\xde\x7b\x13\x87\x63\x37\x83\x32\x7b\xd7\x6a\xf3\x2e\x33\x33\x96\x88\xfe\x96\x16\x48\x7d\xd2\x66\x0c\x54\x19\x4e\x99\xd9\xf4\x56\xb0\x26\x22\x80\xa2\x34\xd5\x51\x4d\xef\x6c\xe6\x1e\x31\x13\x6d\xa7\x45\x6f\x1c\xe8\x67\x19\x3d\xc0\xe8\x9c\x51\xbf\xc8\xaa\x56\x55\x1f\x8c\x2c\xbc\x20\xfc\x74\x6c\x94\xbb\x93\x81\x7d\x19\x82\xad\xc9\x47\x7e\xe1\xc6\x15\xb5\x1d\x65\xe0\x51\x9f\x0a\xfd\x12\xd2\xd2\x8e\x71\xc0\x7b\x1c\xd3\x93\x9e\x82\xae\x50\x13\x3f\xaa\x6b\xb3\x9f\xe8\x36\x1c\x09\x84\x76\xdf\x14\x3e\xdb\x6d\xf6\x69\x07\x9c\xbf\x88\x9c\xd2\x39\xef\x0d\xef\x36\xc9\x70\xa9\x17\x76\x98\x9f\xd8\x3e\xe3\xa6\x1f\xb4\x94\xa7\x45\x89\x32\xb2\xbe\xb4\xeb\xc5\x60\xfc\xea\x69\xb1\x8b\x66\xeb\x9c\x69\xee\x60\x6a\x87\x36\x08\xd4\x6f\xc9\x61\x2a\x80\xa5\xc1\x3f\x0d\x9a\x11\x5f\xf6\x9c\x7e\x9a\x2b\xbf\x8a\x26\xe2\x56\x43\x5e\x97\xa5\x70\x83\x55\x4e\x42\x60\xdc\x97\xec\x3e\x1d\x93\x32\xdd\xd7\x6d\x46\x7f\x02\x99\x5e\xcf\x17\x6e\xb6\xee\xf2\x70\x09\x1f\xa3\x49\x49\xea\x88\x1e\xa8\xc7\x43\x54\x7b\x3c\x2e\x42\xb5\x38\xe5\xec\x2c\x3e\x6b\x79\x6c\x7c\x69\xbb\x69\xbc\xdf\x64\xa0\x8c\x80\xe0\x71\x54\x84\xd6\x6b\x46\x92\x16\x93\x88\x10\xfe\x55\x4c\x7e\x35\xf3\x8b\xe4\xbb\x87\x34\xa2\x3f\xa0\x85\x7b\xee\x75\xb1\xab\xd4\x26\x0d\xb2\x5b\xed\xc8\x4e\x2d\x31\xb6\xaa\x8e\x70\x66\x04\xc3\xbb\xbe\xf4\x8f\x9f\x9a\x14\x88\xe8\x23\xf7\xc9\x65\x92\x9d\x5a\xff\x85\x7c\x18\x78\xa5\xc2\x77\xd7\xd0\x10\xba\x6b\x26\x8a\x5f\xba\xf2\x82\xbf\x48\xc9\x94\xa7\x1c\x13\xd3\xbc\xed\x6a\x8a\x97\x94\x88\x8b\x45\x7b\x03\x7a\x32\x3d\x55\x55\xa0\x80\x23\xdf\x52\x2a\x99\xdc\xbf\x7e\x50\x1f\x8b\xa9\x65\x0e\xe6\xfc\x58\x86\xab\xeb\xf4\x7a\xeb\x5c\x94\x94\x2d\x8b\x7d\xbc\x99\x8b\x95\xb8\x50\x63\x81\xb9\x64\xfb\x31\x45\x3a\x82\x0e\x7e\xe9\x9c\xac\xcc\x8a\x2c\x55\xc8\x96\xb2\x77\x13\x40\x20\x95\xca\x3c\x2d\x10\xea\xe3\xa3\x1a\xef\xbe\xb3\xbc\x7f\x19\xef\xa0\x15\xea\xdd\x5a\xb3\x7a\x88\x85\xeb\xf8\x7c\xcb\xe9\xcb\x8b\x89\xad\x81\x49\xed\x1b\x19\x81\x7e\xd8\xda\x35\xd3\x43\x0b\xae\x80\x43\x28\xe8\xf6\xfe\x6a\x51\x78\xb0\xa5\xf4\xe3\x0c\x6a\x50\x5c\x9e\xe5\x95\x10\x1a\x9e\x24\x42\x99\xc6\x27\x97\xf3\x23\xf4\x03\x89\x02\xcf\xed\xdf\xe9\xce\x5b\x9e\x56\x89\x3b\xe3\xf2\x28\x1c\xa7\x5a\x89\x0d\x4f\x00\x00\x58\x5c\xe4\x74\x5c\xcc\x61\x2e\x70\x88\x99\x33\x1c\xe6\x02\x07\xf8\x78\x41\x42\x5c\xbc\xfc\x5c\x20\x11\x2d\x90\x00\x84\x8f\x0f\xc2\x27\xc8\xc1\xcb\x0b\xe1\xe5\x5d\x03\x45\xb5\xfe\x3f\x06\x3b\x07\x73\x2b\x84\xe7\xff\x6e\x88\xb7\x15\x40\x01\x00\xe0\xcd\x3f\x03\xd2\x01\xe1\xe2\x0e\x73\x86\x03\x8a\x76\x30\x0b\xb8\x0a\xcc\xc2\xca\xcc\x86\x5e\x88\x1b\xcc\x2d\xcc\x25\x42\xcf\xc7\x0b\x12\xe0\xe2\x15\xe4\x02\xf1\xd1\xab\x83\x84\xe8\x2d\x5d\x5c\x1c\x21\x3c\x3c\xee\xee\xee\xdc\x56\xff\x68\xbb\xff\xd0\xdc\x0e\xce\x16\x4b\x21\x47\x00\x00\x00\x14\xff\x12\xb5\x2c\x5d\xed\x4c\x21\x10\x59\x07\x33\x57\x3b\xb8\xbd\x0b\x04\xa2\x06\xb3\x80\x23\x01\x50\xe1\x53\x33\xcf\xff\x60\xfe\xf3\x27\x04\x62\x09\xb7\xb2\xb0\x74\x01\x40\x22\x7c\x04\x80\x73\x30\x00\x00\xe4\xff\x3f\xa3\x6d\x65\xee\x62\xf9\x0f\x99\x2a\x63\xc0\x02\x00\xe0\xe5\x7f\x21\x2a\x56\x76\x70\x17\x4f\x47\x38\xf0\x9f\xa9\x78\x1c\xed\x2d\x24\x6b\x3e\xbc\xfb\x1f\x39\x2a\x5a\x56\x76\x70\x00\x24\x20\x28\xcc\x2f\x02\xe6\x17\x10\xd4\xde\xaa\xd2\x00\x00\x80\xe0\xbf\x10\x4d\x2b\x2f\x38\xc0\x0b\x85\x7e\xce\x91\x38\x04\x00\xe0\xc3\x7f\x3d\xbd\xd7\x50\x04\x10\x56\xb6\x70\x08\x0f\x0f\x8f\x9d\xbd\x8b\xad\x83\x05\x0f\x02\xe6\x66\x65\xe6\x60\x8f\xe4\xf9\xbf\x3d\xf3\x20\xe0\x22\x70\x11\x01\x30\x0c\xc4\xc7\xc7\xcf\x6f\x6e\x8e\x80\x23\xf8\x61\xa6\xe6\x60\x10\x4c\x10\x04\x82\xf3\x9b\x0b\x72\x5b\x99\x39\x70\x3b\xda\x5b\xb4\x98\x87\x0f\xfc\x2b\x4c\x51\xee\x9d\x6c\x05\xd4\x24\xf0\xff\x04\x00\x00\xff\xff\x7f\xd8\x56\x73\xa3\x1a\x00\x00") + +func staticImgCowyoMsIcon144x144PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoMsIcon144x144Png, + "static/img/cowyo/ms-icon-144x144.png", + ) +} + +func staticImgCowyoMsIcon144x144Png() (*asset, error) { + bytes, err := staticImgCowyoMsIcon144x144PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/ms-icon-144x144.png", size: 6819, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoMsIcon150x150Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x65\x54\xd4\x0d\xd7\xf5\xff\x94\x28\x21\x20\x29\x28\x9d\x92\x43\x77\xc7\xd0\x29\x0c\x21\x31\x30\xc0\xd0\x31\xb4\x84\x4a\x0a\xd2\x21\x2d\x29\x9d\xd2\x0d\x82\x74\x77\x37\xd2\xdd\x30\xbc\xeb\xba\xbe\xbc\xf7\x73\x3f\xeb\xf9\xb0\x3f\x9d\xdf\xde\xe7\xac\xbd\xd6\x09\xd3\x50\x53\xc0\xc5\x22\xc7\x02\x00\x00\x57\x11\x2c\xab\x05\x00\x40\xe2\x3f\x7a\x8e\x06\x00\x00\xf6\xca\xa7\x51\x00\x00\xd0\xad\xa4\x54\xa5\x00\xa0\x32\x0a\xfb\xc1\x0c\x03\x00\x00\x14\x57\x2d\x05\x69\xa0\x6c\xf8\xcd\x2e\x00\x00\xd4\xe6\x60\x2d\x55\x00\xf0\x66\x04\x80\x80\x40\x00\xb8\x03\x00\x20\xe0\x2f\x00\xb8\x71\x01\xc0\x9e\x29\x00\x08\x7f\x07\x00\x52\xa7\xb4\x46\x4d\x51\x00\x40\x7d\xd4\x50\xd1\x91\x7b\x7a\x7a\x42\x22\x91\x8f\x8f\x8f\xe3\xe3\xe3\x25\x25\x25\xa3\xa3\xa3\x77\x77\x77\xf7\xf7\xf7\x63\x63\x63\x4d\x4d\x4d\x82\x82\x82\x24\x24\x24\xdc\xdc\xdc\x8d\x8d\x8d\xb5\xb5\xb5\x7c\x7c\x7c\xfc\xfc\xfc\xc7\xc7\xc7\x10\x08\x04\x00\x00\x54\x54\x54\x2b\x2b\xab\xf3\xf3\x73\x13\x13\x93\x8e\x8e\x0e\x3a\x3a\x3a\x14\x14\x94\xdd\xdd\xdd\xf5\xf5\x75\x05\x05\x05\x72\x72\xf2\xbe\xbe\xbe\xc0\xc0\x40\x34\x34\xb4\x37\x6f\xde\x2c\x2e\x2e\x4e\x4c\x4c\x70\x72\x72\x7e\xfe\xfc\x79\x63\x63\x43\x5a\x5a\xfa\xe5\xcb\x97\x3d\x3d\x3d\x04\x04\x04\xa2\xa2\xa2\x47\x47\x47\xcf\x9f\x3f\x4f\x49\x49\x79\x78\x78\x48\x4a\x4a\xaa\xab\xab\xbb\xbd\xbd\xf5\xf6\xf6\x86\xc3\xe1\xd7\xd7\xd7\x3e\x3e\x3e\x18\x18\x18\x5e\x5e\x5e\xa7\xa7\xa7\xe2\xe2\xe2\xca\xca\xca\x37\x37\x37\x87\x87\x87\x4a\x4a\x4a\x12\x12\x12\x3b\x3b\x3b\xdd\xdd\xdd\xc4\xc4\xc4\x4c\x4c\x4c\x0b\x0b\x0b\x4b\x4b\x4b\xd4\xd4\xd4\xed\xed\xed\x91\x91\x91\x2f\x5e\xbc\xa8\xa8\xa8\xe8\xec\xec\xc4\xc3\xc3\x83\x42\xa1\xcf\x9e\x3d\xc3\xc2\xc2\xfa\xf6\xed\xdb\xd7\xaf\x5f\x09\x09\x09\xcd\xcd\xcd\x2f\x2f\x2f\x57\x57\x57\x79\x78\x78\x0c\x0d\x0d\x2f\x2e\x2e\xf4\xf4\xf4\x34\x34\x34\x64\x64\x64\xe8\xe9\xe9\x11\x08\x84\x80\x80\xc0\xec\xec\x2c\x17\x17\x97\x85\x85\x05\x25\x25\x65\x57\x57\x57\x61\x61\x21\x11\x11\x51\x73\x73\x73\x66\x66\x26\x19\x19\xd9\xaf\x5f\xbf\x30\x31\x31\xd3\xd2\xd2\x6a\x6a\x6a\x4a\x4b\x4b\x43\x42\x42\xd0\xd1\xd1\xff\xfc\xf9\xf3\xe9\xd3\x27\x7f\x7f\xff\xde\xde\x5e\x46\x46\xc6\xed\xed\x6d\x45\x45\xc5\xbf\x7f\xff\x6e\x6d\x6d\xad\xad\xad\x2d\x2f\x2f\xcf\xcc\xcc\x0c\x0d\x0d\x6d\x6e\x6e\xca\xc9\xc9\xcd\xcd\xcd\x09\x09\x09\x19\x1b\x1b\xeb\xeb\xeb\xfb\xfa\xfa\xb6\xb6\xb6\x9e\x9c\x9c\x34\x34\x34\x14\x14\x14\x84\x87\x87\xbb\xb8\xb8\x80\xc1\x60\x79\x79\x79\x31\x31\x31\x06\x06\x86\x57\xaf\x5e\xe1\xe2\xe2\xbe\x7d\xfb\x36\x22\x22\x82\x82\x82\x22\x28\x28\x68\x7f\x7f\x5f\x45\x45\xc5\xd4\xd4\xf4\xec\xec\xec\xc3\x87\x0f\x66\x66\x66\xf5\xf5\xf5\xf6\xf6\xf6\x31\x31\x31\xce\xce\xce\xc2\xc2\xc2\x54\x54\x54\x22\x22\x22\x06\x06\x06\xae\xae\xae\xb1\xb1\xb1\x4e\x4e\x4e\xaf\x5f\xbf\x56\x57\x57\x3f\x38\x38\x00\x81\x40\xa9\xa9\xa9\xdf\xbf\x7f\xdf\xdb\xdb\x33\x32\x32\xc2\xc6\xc6\xce\xca\xca\x7a\xff\xfe\x3d\x3e\x3e\xbe\xae\xae\x6e\x4e\x4e\x4e\x59\x59\x19\x1b\x1b\x9b\x8e\x8e\x8e\xa5\xa5\xa5\x9f\x9f\x5f\x5c\x5c\x5c\x76\x76\xf6\x8f\x1f\x3f\xa2\xa2\xa2\x56\x56\x56\x68\x69\x69\xd5\xd4\xd4\xec\xec\xec\x46\x46\x46\x54\x55\x55\x93\x93\x93\x8b\x8a\x8a\x6c\x6d\x6d\xa7\xa7\xa7\xdd\xdd\xdd\xaf\xae\xae\x5a\x5a\x5a\x60\x30\x18\x29\x29\x69\x5b\x5b\x9b\x87\x87\x07\x2f\x2f\x2f\x3b\x3b\x7b\x70\x70\xf0\xbb\x77\xef\x98\x99\x99\xb5\xb5\xb5\x6d\x6c\x6c\x64\x65\x65\xf3\xf2\xf2\xa4\xa4\xa4\x68\x68\x68\x3e\x7e\xfc\x98\x9b\x9b\x3b\x38\x38\xf8\xfb\xf7\xef\x81\x81\x81\x84\x84\x84\xaa\xaa\xaa\xb0\xb0\xb0\x80\x80\x80\xd0\xd0\xd0\xc9\xc9\xc9\xe8\xe8\xe8\xe2\xe2\x62\x2d\x2d\x2d\x37\x37\x37\x56\x56\xd6\xe1\xe1\x61\x1c\x1c\x9c\xa9\xa9\xa9\x9f\x3f\x7f\x56\x57\x57\xb3\xb0\xb0\x54\x56\x56\x5a\x5b\x5b\x4b\x4a\x4a\x26\x26\x26\x72\x70\x70\x78\x7a\x7a\x66\x64\x64\x94\x97\x97\x7f\xf9\xf2\x65\x7e\x7e\xde\xd1\xd1\x51\x53\x53\xb3\xbf\xbf\x3f\x3d\x3d\xdd\xc1\xc1\x21\x3f\x3f\x5f\xdb\xda\x82\xeb\x9f\x0f\x82\x2a\x2b\xc8\x02\xa1\x18\x6f\xc1\x00\x00\xbc\x70\x02\xeb\xbb\x02\x00\x00\xfe\x57\xf2\x7d\xb6\xe2\x00\x40\xd2\xa3\x28\x2b\xa5\xe3\x39\x7f\x68\xf4\x42\x47\x5b\x61\xa1\xd5\x75\x0a\x3d\xf7\x2b\xc2\xe1\x03\x47\x28\x2e\x09\x31\x7c\xd5\xc6\x26\x62\xf2\x47\xe8\xfb\xaf\x92\x1a\xe4\x8f\x5a\x72\x05\x3a\x06\x11\x35\x95\xcc\xef\xa8\xdf\x3b\x77\x34\x56\x86\x66\xd7\xd8\xbc\x7f\xc0\x27\xe8\x2e\x9d\xff\xba\x6a\x60\xf0\x4e\xb7\xe4\x7e\xbc\x51\xb7\x72\xde\xf7\x74\xdf\x05\xe9\x71\xa4\x0a\x46\x0d\x0b\xc6\xdf\x94\x78\x7a\x6a\xd9\x71\x02\x33\x7a\x58\x66\x78\xed\xa4\x7b\xa4\x26\x2b\x6b\x3e\xe5\x3d\x29\x07\x8e\x3e\x1d\x23\xa9\x3e\x95\xf8\x11\x2c\x65\xc3\x58\x35\x79\xa4\x5f\xd5\xd9\xec\xd2\x97\x45\x4d\x34\xd4\x0c\x68\xdb\xa7\x44\xc5\x14\x94\x16\x2b\x8b\xec\x78\x77\x3b\xa8\x9b\x3f\x93\x98\x68\x6d\x30\xa5\xa9\x7b\x39\xea\x8f\x59\xd7\xf8\xe8\x71\x10\xa8\x5f\x5b\xe3\xc3\x93\x95\xcd\x1c\x35\xfc\xbd\x3b\xe3\xc3\x5e\x00\xb1\x18\x6b\x07\x99\x8f\x9b\x3d\x3f\x64\xc4\x0b\xcd\x90\x7e\x49\x76\xfb\x60\x6f\x19\xad\x1d\x9a\x99\xa1\x73\x3e\x48\x9b\x3d\x7f\x03\x6d\xbf\x6c\x9e\x2c\x21\x12\xba\x07\xaa\xc9\x24\xfc\x23\x1d\x28\x21\x08\xce\x4e\x92\xe9\xba\xba\xdd\x6c\x99\x2a\x52\x32\x66\x18\xbd\xef\xef\xa1\x2e\x76\x83\xe5\x24\x86\x0a\xa2\xc7\x41\x53\x8c\xe6\xde\xa4\x75\x64\xbf\x65\xca\xef\x76\x14\x74\xa0\x07\xed\x8b\x0a\xd6\xd8\x0f\xd3\xc1\x89\xd5\xa4\x14\xc5\xfa\x60\x1c\x62\x53\x5c\x5c\x10\xaa\xe4\xdf\x2d\x8d\x60\xa2\x2a\x8e\xae\x14\x0c\x12\x69\xb3\x35\xd1\x77\xfc\x17\x30\xf3\x27\x30\x11\x4a\x36\x71\x51\xa7\xdd\xe6\xc9\xf6\xa7\xee\x6f\x1a\x20\x41\x6e\xac\x80\x96\x6c\x7e\x54\xb2\xdd\xaf\xfa\x8a\x4f\x9a\x6c\x03\x48\xe5\x09\x9c\x82\x00\xce\xf2\x2a\x9c\x7d\x61\xf2\x5c\x9f\xc1\xde\x79\xe9\x22\x2b\x5e\x36\xd4\xa7\x4a\xae\x16\x50\xe5\x10\x4a\xf8\x99\x27\xee\x64\x7b\xfd\x1a\x97\x95\x73\x39\x85\xd9\xb7\x28\xab\xca\x15\x0a\x47\x69\x78\x27\xfa\x7d\x88\xdd\xf5\x05\x9d\xcd\x77\xec\x01\x1b\xa6\x56\xe2\xc1\xaa\xac\xb8\x08\xe8\x45\x6d\x24\x6c\x03\xca\xf4\xc7\x2c\xd1\x4b\x61\x32\x7a\x9a\x20\x5b\x53\x4c\x30\x94\xd3\x5e\x83\x35\xec\x1d\x09\xa6\x88\x6a\x32\x16\xe0\xfd\xba\x88\x16\x46\x55\xb1\xcc\xc9\x88\x81\x1b\xd0\x90\x9e\x68\xb1\x01\x04\x49\x8d\xd9\x14\xde\x5f\xbc\xee\x63\x29\x54\xe3\xf9\x89\xb3\xc7\x3d\xc1\xc2\xcf\x20\x04\x6f\x6c\xd2\x51\x15\x08\xfd\x02\x3f\xfe\xbc\xb6\x4b\x93\xce\x47\x01\x34\x53\x0b\xb4\xdb\x48\x60\xb6\xe6\x2b\x77\xbb\x12\xb3\x5d\xa5\x5f\xcf\xe6\x5f\x3c\x24\x4b\xb0\xda\x49\xf5\x74\x5e\x8f\x93\xb2\x1b\xaf\xb7\x4c\x0e\xc0\xf4\x3d\x2d\xeb\xcb\x95\x75\x7f\x5d\x87\x87\xff\xcc\x6b\x4b\x4a\xaf\x5c\xbd\xd4\x47\x79\x98\xb8\xd8\xc8\xaa\x19\x42\x01\x06\x1a\x16\x89\x03\x1c\x60\x01\x28\xba\xcb\xef\x98\x3f\x1c\xca\xb7\x1c\x63\xa8\x18\xd1\xf9\x23\x44\x2c\xbe\x5a\x50\xd2\x50\x95\xa8\x9a\xd4\x89\xf7\x47\xfd\x25\x97\x86\xa8\x97\xac\xa5\x9a\x3c\xdc\xe1\x09\xd8\x2d\x12\x25\x32\x56\x73\x0d\x6d\xe3\x8e\xa7\x7c\xfc\xeb\x5f\xcd\x93\xa7\x16\x72\xf7\xc4\xc1\xd5\xee\xa2\xbc\x63\x96\xb5\x88\x3c\x59\x81\x41\xa9\xad\xd2\x6f\x43\xb3\xcf\xd3\x18\xcb\xe6\xab\xc4\x27\x9f\xa3\x86\x82\xfc\xa0\x38\x2b\xbd\x68\x31\x32\x99\x29\xda\xb3\xb4\x51\xb5\x45\xb8\x59\x74\x6a\x8d\x53\x84\x77\x6f\xdf\x06\x5a\x10\x7c\x37\x23\x25\x7d\x6d\x8a\x61\x47\x57\xb1\x3d\xa1\x53\x0e\xb5\x66\xfb\xa8\x99\xa5\xfd\x69\xd7\x2e\xf9\xf3\x7a\xa3\xc3\x0a\x01\xa9\xe2\x01\xd3\x4a\xc3\x27\x85\xa2\xde\xc1\x57\x26\x26\x2b\xb1\x83\xe0\x84\xd6\x08\x3e\xa7\x18\x96\xab\xf9\x06\xdb\xe7\x45\xd8\x83\xa3\xee\x52\xac\x4f\xc3\xc9\x27\x1f\x2d\x69\xa4\xcf\x84\x00\x5b\xc9\xb2\x64\x3b\xfb\xe7\xb9\x9a\xe3\x64\x89\x9f\xbc\x26\xdd\x95\xa8\x2a\x45\xde\x2b\xc5\x55\x52\xcf\xd7\x17\xe1\x4f\xf1\x35\xd5\x24\xa2\x44\xe2\x67\x48\x46\xb5\xa6\x5e\x5f\xcc\xde\x8f\xf9\x50\x5c\x7f\x9b\x3d\x7e\xda\xfe\x43\xe5\xff\x10\xf6\x84\x24\xb8\xe7\x2f\x7b\xb4\x76\x8c\x12\x4b\x55\x0e\x15\x32\xef\xeb\x62\x23\x6c\x3c\x92\x84\xb3\x73\x58\xc7\xf0\xbe\xf8\x98\x94\x7f\x44\x19\xe3\xa7\x81\xad\x0a\x1a\xfc\x65\x11\x00\x79\x66\x3e\xb7\xaa\xdb\xf4\x2a\x13\x05\xb2\x2f\x1a\x0a\x77\x49\xf8\x7b\x4b\x75\x2c\xfc\x63\xf1\xe9\x51\x46\x2b\x19\xac\xb2\x4f\x21\xb3\x77\x8a\x56\x23\x4a\xc8\x95\x73\x32\xe7\x22\xf8\x04\x5e\xf0\xe2\x51\xce\xbb\xec\x62\x48\xfe\x85\xd8\x6e\xae\xab\xdd\x2e\x9f\x5d\xcf\x31\x0d\xc4\x2a\x02\x29\xf0\x81\x47\x68\x0c\xd8\x62\x31\x28\xf7\x7c\x37\x67\x81\x19\xcf\x16\x7a\x30\xf4\x19\xca\xf0\x06\x28\x60\x63\x02\x0b\x8d\xed\x82\x9b\x9a\xe3\x16\xc7\x4f\x92\x5d\xfc\xda\xe2\x86\xa9\xef\x5c\x3c\xc1\xb9\x8c\xe2\x2c\x29\x2a\x33\x36\x96\x84\xa8\x80\x80\xa1\x8d\x54\xdd\x0f\xd5\xca\x7e\x2f\x4d\xd5\x84\x9e\xb4\x50\x95\x31\x29\x93\xb8\xd5\x70\xc3\x02\xfe\x35\x76\xc7\x7e\xbe\x76\x52\xcf\x9a\xf3\x46\x36\x16\x4c\x48\x16\x9f\xc8\x0d\x7b\x38\x7b\x40\xcc\xd4\x2b\x51\xe9\x46\xbd\xe0\x49\x35\xf1\x8a\xd4\xb1\x46\xc3\x8e\x65\x29\x99\x32\x8c\x77\x25\xf9\x68\xc2\xca\x54\x9d\xff\x72\x57\x9b\x38\xf2\x5b\x55\xd7\x5f\xa2\xf9\x93\x2f\x4c\x33\x87\xec\x4f\x67\x15\x91\xf1\x60\x35\xb9\x37\xec\x09\xae\x51\x33\x8a\xa2\x60\x67\x39\x25\xf9\x10\x9b\xb7\xbb\xc6\x86\x57\xb0\xdb\xdd\x39\x26\xbc\x3b\x6b\x62\xe1\x1e\x59\x41\x5f\x79\x5f\x3e\x75\x99\x1e\xed\x18\xbc\x95\x0f\x2a\x9f\xab\x7e\xf0\x9c\xe8\x74\x6a\x8e\xe2\x8c\x92\x24\x79\xbb\x6f\x34\x9c\x63\xad\x97\x9d\x69\xfd\x9e\xe4\xf0\xa6\xed\x51\xe6\x44\x10\x9c\xf6\xa7\x57\x05\xdd\xec\xc8\x6a\xdf\xc9\xcb\xd8\xd6\x0c\x8e\xd5\x29\xa1\xab\x3b\xb7\xfe\x99\x0d\x2f\x7c\xe3\x15\xb1\x1d\xe9\x4d\xe0\x96\x61\xc9\x5d\xf6\xd8\x4d\x8d\x36\xd6\xb4\x19\x5f\x01\x8d\xcf\x4b\x12\xdf\xad\xcb\x11\x6e\x86\xb0\xf6\xb2\x9b\x43\xdc\x62\xca\x8d\x13\x35\x75\x2f\xa2\x83\xa4\xbb\x4a\xde\x71\x66\xf2\x5b\x0b\x52\xe2\xab\x7c\xae\x15\xfc\x78\x12\xe9\x97\x69\xc4\xf2\xfe\xec\xa3\x42\xfc\x19\x94\x57\x3f\x5a\x4f\xf5\xcb\x0b\x63\xf3\xb5\x1b\xbf\xbb\x20\x15\xf2\x38\x4c\x4f\x15\xe4\x5d\xea\x4b\xb1\x79\xd5\x4b\xf4\xda\x73\x63\xda\xc8\x36\x5d\xd3\x04\xce\x4b\x33\x14\x4c\x74\x19\xd4\xa5\xc6\x91\xcb\x2d\x43\x53\x22\x03\xaa\x91\xc2\x43\x6f\x44\x3d\xf2\xd2\x22\x0a\x68\x30\x26\x59\x3b\xce\x23\xec\x98\x4d\xd3\xcf\x5d\xde\x9c\xe9\x25\xda\x7d\x66\xcc\x36\x3e\x80\xb3\xc6\x9a\x2d\x54\xd9\xb8\x2a\xef\xf8\xe4\xf8\x4a\x84\x60\x36\x41\x60\x4a\x17\x1d\x8b\xe6\x34\xcf\xf1\xc1\x6a\x92\x25\xee\x8a\x7c\xff\x38\xff\x69\x11\x99\x8f\x7d\x9c\x30\xf2\x98\x5f\x71\xfd\x0d\xb5\xe6\xfb\xc6\x42\xb9\x5c\x8b\x6f\x58\x64\x68\xaf\x76\xd2\x50\x2e\x9a\xf3\x39\xf4\xc6\xcb\xa4\x76\x43\xd7\xf8\x90\xfe\xb5\x5c\xc1\x86\x86\x35\xf7\x3b\x43\x7b\x5c\xa2\xf4\xfb\x4f\x02\x2f\xdf\x8a\xac\xd8\x21\x95\x06\xc2\x9d\xeb\x25\x98\x26\xa5\x52\xd6\x92\xb9\x7e\xe5\x99\xd5\x48\xcc\x70\x08\x7a\xfb\xf5\x1c\x3a\x75\x12\x33\xe6\x67\x48\xe5\xa7\x5f\x91\xc4\x4d\x45\x7d\x19\x60\x24\x1e\xcb\x1f\xc0\x21\x7f\xbe\x88\x9d\xf0\x6b\xc5\xe0\xca\xc8\x6c\x12\xa3\x6e\x38\x5a\xfc\x78\x91\x8f\x45\xb7\x4d\x42\x1e\xc3\xe6\xcc\x35\xb9\x23\xf9\x79\x2f\xa6\x7a\xc0\xad\x1e\x07\xb7\x6d\xea\x2b\xa6\xf4\x74\x92\x6e\xd6\x8c\xde\x74\x0f\xf6\xe7\xd2\xab\xa1\x36\x1d\xd0\xc9\x08\x21\x17\x75\x78\x36\x80\x7f\xf9\x41\xd4\xd9\xca\x0a\x12\x6d\xe3\x19\x4a\xe9\x55\xe9\xcf\xd8\x46\x6b\xf9\x67\x9a\xa4\xdf\xb2\x0c\x97\x11\xf5\x48\x60\x91\x0c\x3f\x8a\x3e\xc6\xe7\xc1\xd7\xbc\xe9\x44\xca\xd5\xfa\xe6\x00\x3c\xce\x9e\x28\xda\x9b\x68\x60\xc4\x97\x2d\x35\xa2\x83\xd5\x2f\xa9\x77\x09\x37\x2c\x8c\x19\xd1\x82\xa6\xad\xb7\x95\xff\x24\x0a\xad\x63\x6a\xe4\x5d\x5f\x82\x3e\x0a\x7f\x28\x9c\x4e\x72\xf1\x20\x3c\x3e\xf1\x66\x38\x0f\xd9\x7d\xbe\xf5\xd2\x76\x2e\xfd\x98\x9a\x8e\x6c\x7e\x37\x9a\x89\x57\xe6\x4d\xf8\xaf\x1c\x93\xa5\xb1\xfd\xcc\xb4\x33\x8e\xb4\x1a\x62\xca\xd1\x7b\xb8\xc9\xb2\x81\x69\x4f\xb1\xbf\xbb\x0d\xc6\xab\xe9\x23\x62\xa7\xcb\xd3\xb6\xc5\xbd\x39\x7b\x25\x1d\x5e\xbb\xc5\xb7\xa5\xcb\xef\x2a\x1a\xad\x82\x2e\x0b\xec\xdc\xd6\x73\x3f\xef\x34\xe9\xf1\x97\x2c\x7e\x3e\x43\x4f\x12\x92\xcb\x95\xef\x30\x66\x1e\x68\x54\x38\x1d\x72\x39\xfc\x69\x74\x03\x82\x14\x0c\xb0\xa5\x6e\xa4\x59\x89\x6d\x4b\x4f\x3e\x60\xa8\xfb\x28\x05\x3a\x48\xcf\x38\xf6\x82\x87\xbe\x98\x39\x4b\x7c\xf2\x86\xf0\x2f\x0b\x92\xac\x69\xcb\xcd\x5b\x85\xe5\x7c\xbc\xf5\xfa\xf3\xea\xc4\x75\x76\xe8\x3a\x2c\x9c\x60\xf2\xfe\x5c\x90\x92\xe8\x8a\x05\x1b\x45\x5f\xc3\x24\x14\x1d\xcf\x17\x55\xa2\xf5\x90\xe1\xc7\x81\x4f\xc7\xaf\xf1\x06\xbd\x32\x8e\xe5\x92\x57\x92\xbb\xc3\x0a\x1f\x09\x4e\xc0\x39\x28\x11\x09\x22\xe5\xa7\xd3\xbb\x98\x59\xf3\xe7\x5d\xdd\xba\x87\x5b\xbe\xab\xae\xfb\xfa\x77\xfa\x84\x36\x98\xc3\x69\xbc\x57\x69\x51\xb2\x8e\x13\xf9\x89\x51\x28\x0c\xb7\xae\x2c\xc4\x93\x20\x1f\x83\xfc\x76\xc7\xee\x10\x3d\x6c\xb0\x2b\x76\x52\x47\x5d\x41\xa4\x68\x89\xd6\x73\xa7\xef\x09\x08\xad\xd9\x4f\xe9\xc6\xc2\xba\x12\x77\xee\x6d\x17\x3a\xf3\xab\x04\xda\xfd\x32\x98\xf9\xb7\x64\x46\x0d\x29\x33\xba\x9c\x6d\x68\x54\xdb\x3a\xd1\x54\x42\x91\x84\xb6\x9f\x9f\xdd\x1e\x8b\x3c\xba\xbe\xc0\x4b\x47\xf1\x3d\x9c\x3f\x74\x19\x97\xf4\xcc\xb5\x81\xae\x7f\x3d\x17\xee\x18\x19\x6f\x71\x17\x4b\xac\xe7\x24\xe6\x6c\x92\xbc\x2e\xaa\xf9\x98\x42\x10\xe6\x21\x1d\x24\x46\xaa\x8b\x18\x97\xe8\x56\x5a\x37\x11\x73\x31\xb2\x8b\x1b\x50\xef\xe1\xcb\x19\xaa\xc4\xe4\xeb\x6c\x0c\x3c\x05\xb4\x7f\x39\x12\xde\xe3\xbb\x3c\x76\x56\xb6\x48\x44\x92\x63\xd9\x8d\x3f\xe5\x0f\x35\xf8\xba\x87\x46\xb8\xf4\xa3\x84\x71\x46\x8e\xbb\xbe\x26\x95\xa8\xe1\xd2\x55\xb1\xe8\x3e\xc4\x30\x81\xc6\x99\x1c\x72\x80\x1b\x6e\xd0\xbf\x63\xcb\xff\x2c\x67\x63\x81\xd7\x1d\xbb\x38\xa0\xd1\x0a\x79\xaa\x65\x3c\xec\x07\x6b\xf3\x05\x2f\xcf\x9d\x84\x71\x7d\x79\xed\x6c\x90\x80\x8e\xbd\xfc\x96\xe5\x7d\xda\xf1\xc3\x81\x0a\x2e\x18\xab\x91\xcc\xd8\x36\x14\x34\x2c\x7c\x20\x21\xc3\xf6\xfc\xc4\x33\x3b\xe6\x24\x40\xff\x8e\x2b\x6c\x21\xb7\xd4\x2d\xf5\x73\x71\xe4\x63\x22\xab\xad\x29\x42\xf1\xd7\x97\xbb\xd1\xa9\xf7\x1e\x44\x90\x80\x4b\xd6\xbf\xbb\x51\x15\x81\xa0\x1b\x22\x88\xcf\xde\x14\x67\x5b\xef\x56\xcd\xf3\x6c\xbf\x19\xa5\x8b\x6e\x71\x09\xbf\x26\x49\x83\x62\x83\x48\xeb\xac\x7a\x57\xec\x16\x9b\xac\x06\x34\x54\xb6\x83\xea\x4d\x48\x8f\x32\x6d\x20\x39\xe5\xd9\x19\x1f\xaa\xe5\x11\xb9\x07\xd6\x9b\x8f\xd3\x56\xac\x41\xb2\xc7\x7f\x3d\x6d\x8b\xb5\x61\x1c\x62\x3c\x1e\x0f\x0c\x85\x6b\x2c\x81\xf3\x8c\x60\x7a\x61\x39\xeb\xe9\xa8\x99\x23\x3c\x10\x71\x02\x0b\x13\x71\x0c\x85\x16\xee\x0a\x5c\x1c\xad\xf3\x19\xa7\x62\xf3\x53\xec\x20\x92\x2b\x8d\x4a\x25\xe3\x0f\x13\x35\x55\x16\x7d\xc2\xb9\xc2\xef\x55\xcc\xf7\xe9\x74\xfc\x7e\xf8\xdc\x55\x60\x38\xf9\x27\xea\xdb\xb9\x97\x04\x78\x84\x86\x3d\x8d\x33\xbb\xaa\x8b\xb0\x95\x72\xb9\x9a\x15\x6b\x67\xda\x5e\xdd\xc5\xcf\xbb\x4a\xf7\x27\xdf\x79\xd8\x4b\x53\x60\x44\x4b\xbd\x3b\x5f\x7f\xf1\x16\x1a\x31\xae\xef\x45\xc5\x27\x86\x79\xfe\x6c\xcb\xa0\xc1\x77\x65\xc4\x0b\x3b\xef\xe0\x2c\xc5\xca\x7d\x13\xfb\xc3\xcd\x03\x83\x60\xc5\x7a\x95\x92\xca\x0e\x02\x2d\xc9\x83\x9e\x7f\x27\x0f\x13\xe1\xc2\x39\xca\xe2\x2f\x9d\xe2\xa2\x4c\xae\x40\x23\x46\x3c\xb3\x27\xa4\x21\xe9\xa7\x90\x91\x75\x54\x9c\x7d\x22\x93\x61\x50\xb3\xf3\x49\x7d\xc0\xb7\x76\x2b\xc5\x93\x1a\x59\x01\x2a\xe4\x31\x79\xb1\x62\x24\xd7\x5b\x00\xdb\x10\xbf\x00\xc4\xee\x7d\xaa\xf8\x8d\x7d\x3e\xa6\x55\xf8\x49\xdc\xe5\x11\x7f\xc3\x89\xc1\xad\x4f\x2a\x32\xfe\x34\x6a\xc2\xe6\x55\x4c\x5a\xf2\x69\x7d\x0a\x7f\x74\x33\x0f\x59\xa6\x3d\x74\xf9\xbd\xfb\x13\x5c\x11\xb7\xeb\xc6\x2b\x5d\xb1\xf9\x18\x39\x1b\x8d\x41\xb3\xf5\x0d\x2d\xa7\xb8\x83\xb5\xbd\x51\xec\x31\x38\xfa\x27\x7c\xae\x9a\xbe\xf1\xb1\x0b\xa5\x02\xab\x48\xb2\x65\xb3\x6b\x5c\x12\x41\xba\xbc\xbf\xf9\x98\x15\x28\x37\x57\x59\xa5\x30\x02\x93\x84\xdc\x4e\x42\x65\x48\xe4\x2f\xd7\xd0\x85\x9c\xff\xe2\x99\x86\x58\x70\x12\x4c\xb9\xbd\xfb\xfe\xb4\x5f\x21\xb8\x70\x2c\x1c\x86\x21\x36\x24\x13\xde\x7c\xae\x8c\x9d\xc7\x67\x1a\x3a\x2e\xa8\xa0\xa3\x84\xc3\x1f\xf8\x70\xae\xf2\xe6\x45\x7d\x19\x2a\xdb\xb1\xcc\xcb\x80\x29\x98\x98\xe5\x83\xbb\x66\x7f\xd3\x16\x43\xf3\x8e\x33\x52\xad\x59\xf6\x78\x11\xa1\x24\xea\xa0\xf9\xbb\x7d\x2c\xcd\x65\x50\x9b\xcb\xa3\x64\xc4\x36\x7c\x3e\x28\x16\xef\xab\x5c\x53\x63\x23\x4c\xa6\xe5\x9c\xe6\x65\x80\x1b\x55\xb3\xc9\x52\x70\x2a\x5e\x8b\x22\xfe\x00\x63\x49\xba\x07\x7c\xfc\x12\x99\xfa\x5a\x9c\x90\x21\xec\x14\x2f\x97\xfd\xf6\x6c\x45\x74\x35\xdd\xe6\x4d\xa3\xd5\x46\xc5\xc6\x92\x79\x08\xd5\x66\x1b\x87\x8f\x0d\x75\xa0\x98\xdd\xe4\xf5\xcb\x80\x9a\xa5\xa4\x5c\x3c\x74\x8f\xc4\x53\xca\x91\x10\x36\x9e\xed\x4b\xb1\x6e\x26\x23\xa7\x9b\xb4\x9d\xbd\xd3\xf0\x26\x84\x48\x6c\xe6\x11\xcc\x0a\x4b\x99\x15\x4c\x91\x5d\x01\xf7\x9b\x8d\xee\x84\xbe\x6f\x13\x06\xa6\x7f\x3b\x4d\x53\xd7\x25\xef\xaa\xa5\x89\xa3\x15\xab\x78\xcd\xf1\xc5\xa3\x5b\xc4\x16\x5d\x0b\xb9\x1a\x55\x29\x8a\x9a\x3b\xdf\xb4\x71\x2a\xc1\xcd\x1a\x68\xe3\x7f\x1d\x53\x6f\x77\xb9\xa2\x1e\x0c\xc8\x1b\xe2\xc8\xc2\x42\xce\x28\x8c\xc9\x8a\xe7\x7d\xa9\x4b\x71\x89\xb2\xda\xc6\xf7\x25\xe2\x70\x48\x08\x5b\x52\x79\x4a\xa9\x91\x47\xa2\x54\xef\x47\x90\xac\xbd\xbc\xf8\xda\x7e\x57\x31\x3f\xd5\x3a\xc1\x60\xe5\xb6\x5e\xf2\xb6\xc3\x33\xf6\xfa\x69\x3e\x4c\xb1\xeb\x83\x66\xaf\x28\x9e\x28\x92\x5d\x56\x09\xfc\x10\x02\x89\xef\x56\x9f\xb1\x5a\x9c\xa3\x71\x68\x6d\xcc\x67\x1a\xf5\x87\x6f\x3f\x44\x3e\x88\xfd\x7c\x20\x7a\x68\xd4\x5c\x86\x40\xc0\x0d\x58\x3c\x76\x51\xac\x23\xb8\x2c\xab\x7b\x5b\x6c\x85\xb7\x8e\x19\x4c\x84\x46\xdb\x66\x6c\x2a\x86\xb2\x9e\x6e\x67\x54\x6e\xbe\x78\x01\xeb\xf1\xc4\x52\x3e\x6b\x3b\x42\x5a\x4d\x4b\x74\x5d\x3f\xb3\xe1\xa3\xc7\xac\xe4\xe1\x3d\xcf\x68\x9c\x53\x33\x15\xd5\xfe\x96\x9c\xfe\x91\xc6\x97\xab\x7d\x87\xae\x8f\x4f\x15\xbb\x1b\x7f\x8d\x02\x39\xce\xcf\x9a\xff\x1c\xfc\xa9\xe8\x92\xb0\x51\x1c\xef\x90\xfe\x5d\xa9\x8e\xc2\x62\xc5\xe5\x89\x4f\x43\x0f\xb5\x2b\x71\x26\x21\x5e\x73\xe9\x25\x9b\x9b\xc0\xf7\xcb\x38\xef\x7d\x99\x81\x2d\x23\x34\xd1\x17\x44\xa3\x7c\x35\x60\x7f\x72\xfa\x84\x4d\x79\x3c\x27\x5d\x56\xa6\x98\xa1\x88\xb1\x1a\xaf\xdb\x00\x5c\x0b\x89\xfa\x5e\x6f\x13\x64\x0c\x9b\xda\xea\x39\x25\xb3\xfd\x0c\x4f\xf1\xf5\x9f\xf9\x37\xc5\xbd\xf3\x1c\xc3\x67\x8b\x2e\xda\xb3\x15\xc7\xa8\xdc\xfd\x57\x55\x36\x09\xdd\x86\x8a\x45\x74\x2b\xd1\x24\xd2\x67\x51\xab\xa7\xab\x02\xa5\x86\xa7\x8a\xf8\x07\xb0\x33\x96\x1f\x3e\x4f\x57\x71\x60\xa2\x52\x7b\x9d\xdb\xd0\x94\x4d\x39\x5d\xe7\x21\x8c\x57\x30\xad\x16\x42\xea\x56\xe4\x10\x77\x71\x87\xc2\x0d\x1f\x36\x23\x03\xd2\x76\xe3\x98\x4a\xe1\x93\x1d\xee\xa3\x2c\x9c\x5d\x00\x44\x13\x02\x7b\x34\x8d\xd5\x6c\xe7\xa1\x6f\x37\x9b\xe5\x91\xb1\xeb\x92\xbb\xfa\xde\x7b\x57\xb4\x49\xa8\x47\xf5\x65\xfe\xec\x8d\x85\x17\x60\x7d\x77\x4c\xcf\x49\x77\xdb\x3b\x04\x61\x5e\x92\xfc\xd5\x30\x50\x43\x3d\xf0\xbe\x60\x26\x47\x0a\x43\x1d\x5d\xb3\x6d\xb3\xcf\x56\xe6\xc0\x75\x9a\x1f\x42\xc8\x8f\x5d\xa8\xb8\x84\x02\x62\x1e\xaa\xcb\x4a\x2a\xe1\x0a\x17\x0b\xe5\x38\x0c\xa5\xf7\xb6\x5d\x15\x9b\x38\x23\xb1\x18\xc0\x29\xee\x97\xde\x24\x21\xe1\x5c\x5f\xc6\xe9\x89\xb0\x28\x8b\x90\xa9\xbb\xf0\x61\x1a\x94\x5e\x30\x7d\xd4\xce\x1e\xf9\xce\x41\x3a\x06\xbe\xc2\xbe\xad\xaf\xf6\x49\xd7\xa7\xb7\x75\xeb\x0d\x55\x93\x1d\xd8\x70\xf3\x4f\xb9\x45\x5e\x6c\xcd\x7d\xb4\xf4\xf6\x6d\xd3\x45\x7c\x50\x8f\xd9\x96\x6e\x56\xa4\x6e\x51\x1d\xa2\xd9\x21\x47\x49\xbc\x62\x5a\x30\x55\xa5\x2c\x09\xb9\x24\xfd\x16\x6d\x89\x7b\x5b\x42\xa1\x67\x33\x8e\xd6\x46\x93\x52\xf5\x24\x97\x10\xdd\xd0\x66\xbb\x2c\x90\x7d\x9c\x58\xe8\xd9\xf6\xa7\xc9\x31\x1c\xab\x1a\x40\x0b\x5b\x26\xeb\xf6\x31\x31\x9f\xa7\xeb\xdf\xf0\x32\x7b\x25\x32\xc7\x7c\xbe\x57\x4e\xd4\x3c\xf3\x8a\x07\xdb\xe0\x9d\xf0\x90\x9e\x6e\x7c\x10\x4b\x4c\xf4\x03\xcd\xfd\x8b\xc3\x63\x63\x43\xd2\x3e\x1f\xfc\xd6\x15\xef\x49\x3d\xa4\xe2\xa3\x91\x27\x9e\xb4\x9b\xd3\x62\x45\x4c\x8f\xa7\x34\xff\x66\x6a\x56\x27\xe5\x92\x30\xf3\x26\x77\x73\x6f\x52\xec\x16\xf7\x82\xa9\xa6\x8c\x5a\x88\xf9\xc1\xce\x7c\x70\xc1\x68\x3c\x99\x99\x8a\xca\x74\x8a\xc0\x38\x16\xaf\x92\x57\x80\xcf\x75\x45\x6a\x4e\x0b\x7a\x9d\x3c\x45\xdc\xd8\xf2\x38\x6d\xe9\x6c\xcb\xac\x7a\x6f\x16\xb1\x9e\x2f\xd2\x36\x55\xc2\x24\x85\x20\xde\x25\xef\x5a\xa4\xcc\x0f\x32\x92\x65\x01\x6d\x76\x2c\xf5\xe4\xba\x5c\x44\x5e\xf1\x67\x4b\xeb\x68\xac\xf5\xa7\x0f\x38\x9e\x2c\x09\xc1\x76\xeb\x2e\x2a\x72\x2d\xae\x22\x43\x7c\xd5\x9b\xc7\x57\xa6\xf4\xb2\xd4\x5d\xdf\x5f\x1f\x2a\x19\x8e\xa1\xd1\x39\xea\x16\x5e\x88\xb0\x7c\x5d\xdd\x63\x98\xb8\xcb\xf4\xa9\x88\xd8\xe2\x99\xd8\xd4\x50\xd4\x51\x5f\x8e\x26\x72\x7b\x3d\xd9\x82\x32\x8d\x49\x92\x5c\x11\x61\x2a\x76\x0f\x64\x62\x6e\x4e\x1e\x4d\x9d\xe0\x7b\x59\x41\x48\xc5\xdc\xab\x7a\x1b\x39\xd5\x7f\x5a\x46\x15\x81\x56\xb6\xb7\x64\xbe\x51\x2e\x25\x9a\xf1\x9f\xb3\xd9\xcf\x02\xb6\xb3\xb5\x2d\xe2\x64\x3f\x97\xcf\xcc\xe7\xd2\x0c\xaf\x47\x88\x53\xed\x16\x5e\x4d\xdf\xd6\x23\xc5\xb5\x91\x05\xfc\x66\xd6\x7d\x0b\x0a\x0a\xf7\xaf\xf7\x09\x08\x7c\x47\x05\x60\x89\xa4\x96\xd2\xd5\xf6\x8b\xfe\x55\x2a\xbc\x75\xc4\x0f\xb5\x79\x5f\x34\xb4\xd6\xd6\xcf\x0d\xba\x96\x6b\x57\xee\x8a\xc4\x9b\xe2\x28\x59\x0b\xf1\xc1\xb5\x4f\xae\x9e\xb2\x83\xdb\xd0\x2c\x83\xa1\x3b\xe4\xd2\xd1\xd7\xd1\x0b\x9b\xd0\xdc\x57\x14\x6e\xc3\xb1\xba\x7e\xac\x66\x15\xb6\x58\x9e\xd4\xe3\x15\x41\xfe\x3f\x39\xf7\x9c\xf3\xed\xb6\x7a\xd6\xce\x2d\x7b\xad\x2d\xbe\x68\x44\xb7\xb2\x46\x8e\x2c\xf8\x56\x1f\x77\xb5\xdd\x2f\x3d\xb0\xb3\x85\x12\x61\xfc\x7a\x46\x03\x59\x62\x76\xa0\x19\xf2\x6f\xbf\x3f\x5a\x31\xc6\x47\x11\xa6\x2e\xe5\x9d\x6b\xe9\x1c\xcd\x52\xc5\x7d\x5e\xf5\x63\xd2\xda\x46\x5d\xa9\x77\x22\xab\xcf\x55\x6b\x61\xcf\x30\xab\xf9\xd3\x8f\xf6\x0c\x50\x6f\xfe\x18\x8f\xe3\xea\x5f\x95\xc8\xdc\xd1\x6c\xd9\xb7\x5f\xfc\xd5\xec\x75\x7a\xf2\xff\xd2\xcf\xf6\x54\x46\x8a\x86\x06\xfd\x55\x47\x50\x97\x69\x93\x8f\x31\x4a\x7b\xb0\x82\x08\xbd\xda\x63\x76\x02\x08\xee\x54\x43\x9c\xd5\x16\xe4\x3b\x6c\x76\xbb\xaa\x06\x18\x05\xaf\x3c\xcf\x88\x34\x8c\xba\x15\xc8\x79\xb8\x53\xde\x5c\x0c\x08\x1d\x41\x20\x32\x6a\x9f\xdf\xdd\x07\xd9\xa2\xb3\xfd\x52\xef\x5e\xdd\xdb\x8d\x44\x97\xa3\xb9\xe6\xe6\x22\x62\xe5\xfb\x46\x56\xe4\x49\xcc\xf6\xdb\x2d\xb2\x97\x25\xa5\x3d\xa5\x8d\xdc\x74\x89\xc3\x46\x96\x50\x8e\x0a\x1a\x9c\x4c\xe7\xf1\x97\xc5\x34\xf7\x01\xc3\xb4\x46\xc4\xc1\x1f\x2d\x7e\x82\x65\x14\x6f\x46\x2e\x32\x48\x8e\xf8\x33\xe6\xfa\x5c\x25\x01\x6e\xe0\xdb\xdf\x25\x47\x76\x39\x38\x41\x18\x06\xd1\x80\x7b\x4d\xde\x12\x39\xaa\xe6\x53\x40\x14\xd1\x5d\x6b\x4e\x54\x8d\xda\x6b\x1c\x65\xe7\xe2\xa5\x01\x8a\x2c\x2b\x29\x1a\xbc\x1a\x13\xac\x12\x0d\xb6\xb0\x6f\xfc\xba\xb3\xb8\xca\xc8\x06\x27\xc1\xf6\x8e\xcd\x67\xa7\x9f\x4e\xe9\x0d\xba\x0a\x4d\x31\xdb\x0d\x60\x8e\xd3\x7f\xee\x9c\x24\x82\x9c\xe6\x45\x86\x8e\xee\xaa\xa7\xf9\xbe\x2e\xe8\xb2\x2c\x44\x99\xb9\x1e\x5c\xd3\x48\x53\x53\xce\xd8\xbb\xfd\xfa\x4d\xb7\xd7\xc4\x9c\x78\x79\xbf\xec\x90\xdc\xb6\xf5\x67\x3d\x90\x3f\x12\x43\xce\x74\xe8\x40\x16\xea\x5e\xe9\xbb\x87\xef\x9c\x4a\xcd\x51\x70\x04\xd5\xdb\x52\xd0\x72\xc0\xb1\xa4\x37\x99\x2b\xcc\xd3\xa4\x14\x22\xbe\x85\x7e\xdd\x30\xeb\xd3\x0b\x28\xf4\x9d\x59\xde\xb8\x98\x48\x02\xea\x84\x75\x04\xdf\x10\xaf\xf7\xbe\x0e\x56\xab\x74\xc7\x3a\xec\x2d\x64\xcb\xf1\xf9\xb3\x56\xd0\xfe\xed\x9e\x23\x16\xc6\x9a\x7e\x18\xeb\xf5\x4a\xb3\xda\x4e\x95\xf3\xcf\x4a\x81\xe4\x73\xa8\x1b\x52\x30\xf0\x6d\x02\xdc\xa1\xed\x6b\xb7\xf1\x79\xca\x7a\xb6\x82\x12\x53\x62\xcc\xa6\xeb\x95\x4e\x9e\x1c\x1e\x8d\xcb\x3c\xb4\x8d\xbb\x56\x8d\xd9\x94\x17\x7c\x88\x25\xd0\xb4\xd7\x8f\x57\x8d\x63\x7c\xe0\x19\xc6\x74\x7b\xa3\x8e\x32\x6d\xe7\x73\xb4\x49\x53\x64\xcb\x7b\x13\x60\x9b\xb2\xce\x48\xb6\xee\x17\x5b\x21\x38\x40\x29\xf7\x4d\x23\x55\x29\x31\x6c\x71\xcb\x9a\x4a\xe3\x47\x85\xd2\x60\x51\xed\x3c\x5a\xb8\x70\x6c\x1f\x34\x53\x4a\xd5\x35\x88\xcf\x9d\xc8\x7a\xcf\x0f\xb7\x71\x2e\x9b\xe9\x14\x0f\x67\x40\xd7\xc3\x11\x4b\xe3\x47\x61\x5f\x69\x5e\x15\xb5\x88\x29\x71\x4b\xb8\x3e\xa3\x58\xb9\xe2\x91\x38\xed\xa9\x38\x7e\x59\xc7\xf5\x41\x81\x77\xe8\x22\x75\x4d\x23\xdf\x34\x64\xde\xb8\x6b\xfd\x44\xe0\x60\x34\xec\x35\x03\x7e\x66\x84\x23\xf9\x58\x76\x01\x27\x75\x3e\xf4\xe0\xf9\xe5\xa8\x9b\x06\xbb\x36\x85\x7f\x74\x27\x16\x46\xfa\x97\x76\xc1\x0f\x13\x1a\x10\x70\x63\xff\xc1\xbb\xf4\x1c\xc5\xe6\x14\xd8\x1c\x7b\x7e\x5d\x43\x09\x4c\x6c\x48\xc0\x1a\xda\x57\x78\x1d\xa2\x9a\xb5\x71\xdb\x5a\x90\xba\x2a\x1b\x2f\x98\x6a\xf7\x48\x97\xb7\x80\xc0\x26\x2a\x20\x49\xce\xa7\x12\xe1\xe8\x12\x9c\x6c\x2b\xfc\x1e\xa4\x31\xa2\x34\x18\xe8\x30\xde\x25\x1d\x5f\xbf\x3f\x66\x7e\xf8\x4c\x6f\x26\xa7\xa3\xfc\xed\xd1\x74\x6d\x93\xd9\x3e\x59\x18\x49\x27\x56\xa4\xab\x83\xca\x4c\x54\x7e\x6e\x1c\xb5\x91\xc8\x96\xb7\x0e\x5d\x48\xdd\x84\x52\x85\x1c\x14\x11\xb3\x73\xb5\x2f\x90\x18\xbd\x0d\x0f\xee\x90\x10\x16\x75\xe1\xab\x52\xbe\xfa\x12\xd8\xb1\xdc\xac\x10\x59\x1f\x8d\xf4\x7b\x90\xa2\xc9\x17\x8f\x51\x05\xbd\x11\x5e\xc5\x5d\xe6\xcf\xd9\x14\xa1\x8e\x2d\x77\x52\x7d\x16\xbe\x5d\xfb\x0e\xc2\xbf\xe6\x43\xab\xb3\x78\x3d\x75\xf7\x96\xac\x34\x93\x05\xfe\x09\xd1\x59\x86\x13\xb9\x2c\x37\xec\x33\xbe\x42\x38\x72\x01\xd6\x5e\xbe\x6c\x41\x95\x2a\xd8\x44\x55\x5c\xac\xdb\xa5\x3f\x48\xbd\xcd\x40\x3e\x36\xbe\x68\x79\xbc\xaf\xb1\x9d\x99\xce\x60\x25\xb8\x4a\xae\x12\x27\xe9\x00\xb6\x8b\xc8\xd2\x5c\xeb\x5e\x98\xf0\x7d\xca\x8f\x63\x3f\x5d\x68\x08\x4d\xe1\xd3\x10\xf4\xce\x7f\xe4\x0e\xe0\xa7\xf3\xdb\xe9\xf3\x2d\x73\x52\xc7\xc7\x7b\x29\x05\xf6\x7e\x29\x28\xc0\x55\xf1\x22\x39\x68\x93\xe9\x47\xb9\x9a\x18\xcb\x25\x24\xc1\x69\x88\x05\xf9\x8c\x81\x1a\x44\xb7\x37\xaa\xf3\xd8\x6a\xa4\x4f\xc0\xb7\x45\x5d\x12\xe0\xeb\xde\xd3\x52\xdb\x91\xdd\x1a\xbc\x3b\xa6\x96\xeb\x43\x49\x6f\x68\x85\xd3\xd3\x1d\xc7\x96\x9e\x94\xe5\xcd\x64\x5a\xc2\x9a\x68\xca\xef\x42\xcb\x27\x1a\xdf\xdd\xfd\x72\xf8\xcf\x4c\x1e\xc5\xfb\xf6\xcf\xf6\x13\xd7\x1d\x44\x89\xb9\x4c\xed\x07\x76\x2f\x0a\xfd\x5d\x03\x6d\x9c\x83\xdf\x2c\x88\x54\x52\xfa\x99\xc4\x3f\x4b\x0c\x71\xbb\xac\x28\x16\x48\x55\x54\xfb\x7c\xd5\x61\x26\x5b\x35\xbc\xb4\x80\x7d\x17\x7a\xe9\x57\x1c\x19\x1e\x19\x3d\xc1\xeb\xa2\x7e\xe0\x74\x2d\x2e\xac\x91\xd3\x52\x2b\xf9\xad\x3c\xe5\x8a\x81\x31\xf4\x8e\xf5\x4d\xb5\x9f\x6d\x75\xbb\x6f\x6b\xcf\x07\x63\x25\xc4\xef\xf1\x17\x6e\x37\x09\xf3\x99\x8b\x97\x83\x70\x45\xff\x67\x31\x30\xd5\x26\xa7\x08\x1e\x47\xbe\x4b\x56\x13\xe8\x75\x00\x3d\x26\x2b\x97\xe1\x2d\x5f\xf7\x92\xb0\xfa\xe4\x44\x9f\x6e\xbe\xf0\x0b\x45\xba\xde\xac\x96\xd5\x62\xee\x22\xe6\xe0\xb4\x75\xf4\x1e\x31\xb7\x1c\xb8\x94\x66\x01\x34\x4f\x16\xf2\x65\xb9\xcf\xf4\xd0\x3d\x93\x56\xe1\x9a\xf6\x4c\xe5\xe5\xe4\x58\x5d\x6f\xc3\xef\x40\x34\xe2\x50\xdd\x24\x6c\xac\xa4\x43\x3a\x47\x1b\x08\x73\x8e\x7c\xbd\x94\x7e\x8f\xed\x09\x3f\x1e\x78\x79\x2f\xba\xaf\x89\x61\x72\xb3\x59\x4d\xa7\x36\xe5\x61\xaf\x7c\xc3\xac\xdb\x8a\xf7\x71\xff\x4d\x6c\xd1\x4d\xd3\xcf\x22\xab\xdb\xf3\xe1\x0b\x37\xd3\x65\x8d\x89\x4d\xd4\x39\x8b\xee\x70\xac\x9b\x58\xd6\x87\xbe\x97\x07\xf3\xb2\xa0\xa8\x17\x63\x55\xd8\x9b\xa6\x0c\x86\xd5\x01\x12\x5f\xcf\x5e\x13\x64\x5a\xc7\x3d\xaa\xe7\x0a\xe1\x30\x24\x74\xdd\xe2\x6e\x6e\x82\x36\x89\x82\xa0\x26\x13\xbf\x4b\xb7\x79\x99\xc3\x07\xd7\x34\x90\xa5\xf4\xfe\x0e\x34\x21\xe2\xfd\x2a\x47\x9e\xb4\xa7\xef\xd9\x1b\x78\x5a\xa3\x9b\x55\xe4\xc4\x13\x23\xa8\x8f\xfa\xe3\x3c\x2f\xc7\x1f\xa6\xd0\xfb\x97\x01\x97\x98\x7c\x2e\x22\xc8\xc6\xd4\x82\x0a\x42\x54\x17\xbf\x66\x2c\x65\x45\xd5\xa7\x9a\xec\x63\xa6\xfc\xe1\xf5\x9c\x1a\xfb\x06\x8a\xae\x89\xf8\x9e\x0f\x2b\xe6\x46\xd6\xc2\x10\x5e\x7f\xb6\xcc\x44\xbb\xd0\x22\x28\x93\x28\x58\x0e\xad\x24\x48\x15\x8e\xf7\x0d\xb1\xf5\x52\x65\x9d\x11\x29\x69\xd1\x3e\xe4\x61\xf2\x41\x43\xe0\x41\xc1\xbf\xe4\x5b\xc3\x52\x5c\x66\x3d\x0d\x68\x75\xd8\x38\x4e\x8c\x00\xe2\xe1\xff\xcc\x01\x97\x54\xe5\xe5\xcc\x07\x9b\xb5\xe7\xf6\xdd\xce\x8f\xc5\x85\x48\x27\x0c\xc8\xb1\xe8\x6b\x48\x1e\xd5\xde\x71\x09\x85\x06\x84\x69\x47\xd0\x89\x02\xb7\xce\x25\xf5\x3b\xaa\x3c\xe1\x48\xd6\x64\xf0\x16\xc3\xdd\xab\xc5\x2a\xe6\x7b\x01\x05\x0a\xe9\x50\x72\x94\x7d\xf5\x4a\xf5\x5b\x41\x7b\xd9\x1c\x0e\xae\xa5\x9b\x2e\xc6\x59\xfa\x8a\xe7\x03\x70\x96\x0b\x5d\x7d\xe6\x9f\xa3\x39\xa1\xd9\xe6\x98\x01\x63\x89\xcd\x1b\x01\x84\x87\xfc\x6b\xb1\x6e\x74\xd7\xb7\xd9\x67\x9c\x5b\x8d\x0d\x18\x9b\x53\x4c\xdf\x0c\x4a\xa7\x07\x8f\xfd\x7e\xf1\xc9\x94\x35\x8b\x5e\xcb\x4a\x12\x28\x19\x74\xac\x68\x86\x2e\x10\x54\x7a\x2f\xe2\x5d\xc2\x87\xba\x42\xf0\x66\x22\xee\x41\x71\x69\xca\xae\x0d\x37\x9b\xcb\x65\x21\x1c\xec\x20\x1f\xaa\x70\x18\xad\x82\x88\xb2\x7c\x41\x26\xd9\xbb\xf6\x2d\x44\xe3\xec\x66\x40\x26\x71\xe7\x60\x47\x66\x06\xfd\xbb\xe8\xcb\xf6\xd4\xfd\x75\xaa\x21\xb6\x12\xc1\xb6\xc3\x33\x42\x3f\x16\x0a\x69\x23\xb8\x3c\xb2\xf6\x6d\x9d\xed\xee\xc5\x5f\x62\x4b\x44\x63\xd7\xf1\xdb\xf3\x8c\x40\x05\x6d\x4c\x32\x4f\x43\x2f\x0c\xb9\x86\x9a\xcd\x0c\x0b\xf9\x06\x72\x8b\xeb\xc3\xe9\x9e\xaa\x92\x61\x3d\x9e\x9a\xa0\x94\x65\x6d\x24\xe7\xa3\x63\xfe\x13\x8a\x78\xbb\x76\x89\x5f\x47\x2e\x36\x00\x00\x0c\x08\x39\x08\xc2\xc2\x0c\x01\x13\x36\x77\x81\x99\x21\x60\x00\x37\x17\x88\x9f\x9d\x8b\x87\x1d\x24\xa4\x03\xe2\x15\xe6\xe6\x16\xe6\xe6\x63\xe5\xe2\x12\xe6\xe2\x5a\x05\x45\xb4\xfc\x0f\x83\xbd\xa3\x05\xdc\xd2\xeb\xff\x36\xc4\xd8\xf1\xa2\x00\x00\x20\xff\x8f\xc1\xd5\xd1\x12\xe1\x61\xe6\x02\x03\x14\xed\xcd\xac\x60\xaa\x66\x56\x70\x73\x5b\x6a\x7e\x0e\x01\x0e\x41\x76\x21\x6a\x6e\x2e\x10\x2f\x3b\x17\x1f\x3b\x88\x9b\x5a\x13\xc4\x4f\x6d\x8d\x40\x38\x09\x73\x72\x7a\x78\x78\x70\xc0\xff\xa1\xed\xff\xa5\x39\x1c\x5d\xac\x16\x83\x0f\x01\x00\x00\xc8\xfe\x49\xd4\xb1\x76\xb3\x87\x0a\x0b\xcb\x3a\x9a\xbb\xd9\xc3\x1c\x10\xc2\xc2\x1a\x66\x56\x30\x57\x00\xf4\xf3\xa9\x89\xf3\xbf\x98\x7f\x77\x0a\x0b\x5b\xc3\xe0\x56\xd6\x08\x00\x24\xc4\x8d\x07\xb8\x04\x01\x00\x40\xfa\xbf\x19\x3d\xb8\x05\xc2\xfa\x1f\x64\xa2\x84\xe6\x39\x00\x00\xaf\xff\x03\x51\x85\xdb\xc3\x10\x5e\x4e\x30\xe0\xdf\xab\x38\x9d\x1c\xac\x24\xaa\x74\xd5\xfe\x2b\x47\x55\x07\x6e\x0f\x03\x40\xbc\x7c\x82\x3c\x42\x02\x3c\xbc\x7c\x7a\x5b\x15\x5a\x00\x00\xe0\xfd\x07\xa2\x0d\xf7\x86\x01\x5c\xd2\xd2\xf1\xd9\xe2\x07\x00\x00\xe8\xfe\xc7\xe8\xbd\x96\x22\x60\x09\xb7\x83\x09\x73\x72\x72\xda\x3b\x20\xec\x1c\xad\x38\x2d\xcd\xdc\xe1\xe6\x8e\x0e\xae\x9c\xff\xbf\x67\x4e\x4b\x98\x10\x4c\x88\x57\xc0\x0c\xc4\xcd\xcd\xc3\x63\x61\x61\x09\xb3\xe4\x31\x83\x5a\x08\x80\xcc\xf8\x40\x20\x18\x8f\x05\x1f\x07\xdc\xdc\x91\xc3\xc9\xc1\xaa\xd9\x22\xac\xef\x9f\xc2\x14\xe5\xd4\x64\xcb\xa4\x4d\x3f\xff\xbf\x00\x00\x00\xff\xff\x08\x8d\x92\x80\x57\x1c\x00\x00") + +func staticImgCowyoMsIcon150x150PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoMsIcon150x150Png, + "static/img/cowyo/ms-icon-150x150.png", + ) +} + +func staticImgCowyoMsIcon150x150Png() (*asset, error) { + bytes, err := staticImgCowyoMsIcon150x150PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/ms-icon-150x150.png", size: 7255, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoMsIcon310x310Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x1b\x40\xe4\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x01\x36\x00\x00\x01\x36\x08\x03\x00\x00\x00\xdc\x62\x4e\x9b\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x03\x00\x50\x4c\x54\x45\xff\xff\xff\xfe\xfe\xfe\xfc\xfc\xfc\xfd\xfd\xfd\xfa\xfa\xfa\xf7\xf7\xf7\xf6\xf6\xf6\xf8\xf8\xf8\xfb\xfb\xfb\xf9\xf9\xf9\xd5\xd5\xd5\xb3\xb3\xb3\x9d\x9d\x9d\xa3\xa3\xa3\xbe\xbe\xbe\xe7\xe7\xe7\xe8\xe8\xe8\xc1\xc1\xc1\xa6\xa6\xa6\x9e\x9e\x9e\xaf\xaf\xaf\xd1\xd1\xd1\xf4\xf4\xf4\xef\xef\xef\xcc\xcc\xcc\x8d\x8d\x8d\x5f\x5f\x5f\x46\x46\x46\x4c\x4c\x4c\x6d\x6d\x6d\xa4\xa4\xa4\xd8\xd8\xd8\xdc\xdc\xdc\xab\xab\xab\x71\x71\x71\x4f\x4f\x4f\x47\x47\x47\x5a\x5a\x5a\x88\x88\x88\xec\xec\xec\x75\x75\x75\x2c\x2c\x2c\x12\x12\x12\x10\x10\x10\x0f\x0f\x0f\x18\x18\x18\x35\x35\x35\x95\x95\x95\xea\xea\xea\xee\xee\xee\x91\x91\x91\x44\x44\x44\x1b\x1b\x1b\x11\x11\x11\x29\x29\x29\x5e\x5e\x5e\xc2\xc2\xc2\xeb\xeb\xeb\x8c\x8c\x8c\x31\x31\x31\x05\x05\x05\x00\x00\x00\x01\x01\x01\x0a\x0a\x0a\x64\x64\x64\xc5\xc5\xc5\xf2\xf2\xf2\xf3\xf3\xf3\xcb\xcb\xcb\x57\x57\x57\x04\x04\x04\x26\x26\x26\x97\x97\x97\xe6\xe6\xe6\xf5\xf5\xf5\xce\xce\xce\x5d\x5d\x5d\x07\x07\x07\x02\x02\x02\x03\x03\x03\x9a\x9a\x9a\xe3\xe3\xe3\x33\x33\x33\x06\x06\x06\x0d\x0d\x0d\x69\x69\x69\xe5\xe5\xe5\x41\x41\x41\x2f\x2f\x2f\x7b\x7b\x7b\xde\xde\xde\xd9\xd9\xd9\x2b\x2b\x2b\x38\x38\x38\x8b\x8b\x8b\xed\xed\xed\xcf\xcf\xcf\x27\x27\x27\x1e\x1e\x1e\x61\x61\x61\xd6\xd6\xd6\x84\x84\x84\x15\x15\x15\x60\x60\x60\xdd\xdd\xdd\xb6\xb6\xb6\x3e\x3e\x3e\x0e\x0e\x0e\x4a\x4a\x4a\xc9\xc9\xc9\x76\x76\x76\x22\x22\x22\xc0\xc0\xc0\x3b\x3b\x3b\xc4\xc4\xc4\xbb\xbb\xbb\x1a\x1a\x1a\x2a\x2a\x2a\x8e\x8e\x8e\xd7\xd7\xd7\xca\xca\xca\x73\x73\x73\x30\x30\x30\xb9\xb9\xb9\x42\x42\x42\x19\x19\x19\x5c\x5c\x5c\xf0\xf0\xf0\xa0\xa0\xa0\x09\x09\x09\xad\xad\xad\x08\x08\x08\x0c\x0c\x0c\x36\x36\x36\x20\x20\x20\x98\x98\x98\xe2\xe2\xe2\x85\x85\x85\x14\x14\x14\x83\x83\x83\xe9\xe9\xe9\xd4\xd4\xd4\x52\x52\x52\x7d\x7d\x7d\xdb\xdb\xdb\xc3\xc3\xc3\xf1\xf1\xf1\xb8\xb8\xb8\x13\x13\x13\xb4\xb4\xb4\x99\x99\x99\xbf\xbf\xbf\x2e\x2e\x2e\x16\x16\x16\x54\x54\x54\xd0\xd0\xd0\xa7\xa7\xa7\x3c\x3c\x3c\x21\x21\x21\x80\x80\x80\xe0\xe0\xe0\x32\x32\x32\xb0\xb0\xb0\x93\x93\x93\x24\x24\x24\x1f\x1f\x1f\xda\xda\xda\x72\x72\x72\x0b\x0b\x0b\x58\x58\x58\xd3\xd3\xd3\x48\x48\x48\xb5\xb5\xb5\x37\x37\x37\x55\x55\x55\x8f\x8f\x8f\x92\x92\x92\xb1\xb1\xb1\x79\x79\x79\x2d\x2d\x2d\x78\x78\x78\xc6\xc6\xc6\xc8\xc8\xc8\x40\x40\x40\xaa\xaa\xaa\x53\x53\x53\x49\x49\x49\x94\x94\x94\x25\x25\x25\x3a\x3a\x3a\xa5\xa5\xa5\xe4\xe4\xe4\x6b\x6b\x6b\x4d\x4d\x4d\x86\x86\x86\xe1\xe1\xe1\x7a\x7a\x7a\x17\x17\x17\x89\x89\x89\x77\x77\x77\x28\x28\x28\xc7\xc7\xc7\x6a\x6a\x6a\x1c\x1c\x1c\x62\x62\x62\xbc\xbc\xbc\x9b\x9b\x9b\x34\x34\x34\xae\xae\xae\x70\x70\x70\x3f\x3f\x3f\xa9\xa9\xa9\xcd\xcd\xcd\x6f\x6f\x6f\x7e\x7e\x7e\x56\x56\x56\xb7\xb7\xb7\x45\x45\x45\x9f\x9f\x9f\x1d\x1d\x1d\x96\x96\x96\x82\x82\x82\xb2\xb2\xb2\x63\x63\x63\x87\x87\x87\xdf\xdf\xdf\xa2\xa2\xa2\x90\x90\x90\x74\x74\x74\x51\x51\x51\x67\x67\x67\x6e\x6e\x6e\x50\x50\x50\x8a\x8a\x8a\x4b\x4b\x4b\xba\xba\xba\xac\xac\xac\x6c\x6c\x6c\x66\x66\x66\x59\x59\x59\xa8\xa8\xa8\x4e\x4e\x4e\xbd\xbd\xbd\x43\x43\x43\x39\x39\x39\x65\x65\x65\x3d\x3d\x3d\x68\x68\x68\x9c\x9c\x9c\x23\x23\x23\xa1\xa1\xa1\x81\x81\x81\x7c\x7c\x7c\x7f\x7f\x7f\xd2\xd2\xd2\x5b\x5b\x5b\x95\x14\x8f\xa4\x00\x00\x00\x01\x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x00\x48\x00\x00\x00\x48\x00\x46\xc9\x6b\x3e\x00\x00\x51\x1e\x49\x44\x41\x54\x78\xda\xed\x5d\x07\x5c\x13\xd7\x1f\xbf\x91\x90\xc4\x05\x2e\x70\xe3\x46\x96\x05\x05\x67\xee\xa2\x60\x83\xa0\xb9\x2b\x06\x71\x22\x8a\x8a\x28\x6e\xc1\x8d\x88\x20\x2a\xe2\x42\x1c\xb8\x17\x16\xf7\xc0\xbd\xa8\x22\x2e\xdc\xe2\xd6\x2a\xb5\xae\xba\xf7\xa8\xda\xff\x1b\x77\x49\x98\x42\x8b\x0c\xfd\xbf\x4f\xab\x18\x2e\x77\xef\x7d\xef\xf7\x7e\xef\xb7\x7f\x04\xf1\xff\xf1\xff\xf1\xff\xf1\xff\xf1\xff\xf1\xff\xf1\xff\xf1\xff\x51\x28\x06\x09\x47\x41\x4f\xa2\x30\x8c\x5c\xe1\x40\x52\x70\xd0\xff\x07\x8e\xfe\x37\x38\xfc\xf0\xb0\x09\x00\xe4\x90\xe0\x48\x5a\x22\x35\x32\x92\xc9\x7f\x74\x72\x23\x49\x4a\x61\x64\x24\x55\xe4\x94\xde\xa4\xc5\x8a\x97\x28\x59\xca\x58\x91\x53\x9c\xbf\xcb\x41\x82\xd5\x9b\x94\x2e\x53\xb6\x5c\x79\x53\xfa\xeb\x1b\x0f\x5c\x6d\x56\xa1\x62\xa5\xca\x55\xaa\x56\x33\x97\xfc\xd8\xb0\x49\xaa\xd7\xa8\x59\xab\x76\x9d\xba\xa5\x2d\xbe\x0e\x1b\x4d\xc8\x4b\xd7\xb3\xb4\xb2\xb6\xb1\xad\xff\x93\x1d\x45\xfc\xb8\x1b\x95\x24\xec\x1b\x34\x74\xb0\xb6\x76\x6c\xd4\xb8\x09\x40\x21\x7b\x1c\xc0\x7e\x6e\xda\xac\xb9\x92\x61\x19\x46\xd5\xa2\xa5\x13\x41\xfd\xa0\xb0\x01\xc1\xc3\xb9\xd5\xcf\x8e\x0c\x00\x42\xed\xd2\xda\x55\x9e\x3d\xfd\x90\x34\xe1\xd6\xa6\xad\x86\xe5\x94\x1a\x5e\xdd\xf0\x17\xd7\x1f\x16\x36\x9a\x26\xdc\xab\xb5\x63\xd5\x6a\xb5\x96\xf1\x68\x5f\xca\x2d\x7b\xd8\x68\x8a\xf0\xac\xd6\x81\x61\x39\x4e\xcd\x72\x1d\x3b\x75\xfe\x91\x61\xeb\xd2\xa0\x2b\xa3\xe6\x39\x9e\xd1\x7a\x75\xf3\xce\x7e\x93\x82\xab\xbb\xd7\xec\xc1\x70\x1c\xc3\xb1\x9c\x4f\xcf\x5e\x3f\x2c\x6f\xa3\x68\xa2\x7c\xef\x1e\x0c\xcf\x81\x5d\xca\xfb\xf6\xf1\xa3\xb2\x3b\x1d\x01\xe7\xa3\xfb\xf6\xf3\x67\x58\x16\xfc\xc7\xda\xf4\x6f\x93\x63\x59\xef\x7b\x1b\x00\xb6\x01\x03\x07\x61\xd8\x58\xbe\xc3\x60\xe7\x6c\x80\x00\x9c\x4d\x6e\xd7\xda\x87\x07\xa8\x41\xd8\x94\x43\x86\x92\x5f\x3b\x42\xbe\xd7\x01\x76\xd9\xb0\xb6\x01\x10\x36\xc0\xb1\x98\xc0\xe1\x23\x48\x00\x4e\x16\x83\xa4\x08\xa3\x91\xa3\x3c\x18\x70\x2d\x3c\x4a\xd9\xd1\x63\x24\x3f\x2c\x6c\x04\x59\x63\xac\x35\x60\x55\x08\xb6\xa0\x71\x63\xe0\x47\x59\x0c\x00\x5b\xf0\xf8\x2a\x21\xf8\x62\xf0\x7f\x8f\x09\x4e\x39\x10\x90\xbf\xc7\x01\x16\x2d\xff\xa5\x51\xa8\x08\x5b\xd8\xc4\x92\xd9\x5d\x4c\x13\x9e\x03\x5d\x94\x88\xda\x20\x6e\xe1\x93\x26\x53\x59\x83\xfc\x1d\x0f\xc0\x9b\x28\xef\x29\x11\x1c\x22\x1e\x28\xba\xd9\x4e\x8d\x94\x64\xc5\xdd\xc0\xc7\xf4\xb4\xe9\x21\x90\x0b\xc2\x8b\x79\x26\x68\x46\x05\xc9\x0f\x29\x82\x00\xfa\x91\xcd\xac\xa9\x64\x30\x12\x10\xb7\x4a\xb3\xa2\xb2\x42\x02\xb0\x41\xb3\xd9\x43\x58\x7c\x29\x84\x2d\xba\xd2\x1c\xd9\x8f\x0a\x9b\x5b\xf9\xf6\xbc\x80\x1a\xd8\xaa\xec\xd8\xb9\x9e\xf0\x74\xcd\x6c\xd0\x24\x39\x62\x78\x23\x46\xc0\x0d\xc0\xe6\xd1\xb0\x84\x94\xa0\x0a\x7a\x0d\x05\x30\x00\x93\x8f\x9a\xd7\x56\x8d\xb9\x15\xc3\xf0\x2c\x17\x38\x6a\x66\x96\xd4\x46\x90\x63\xc6\x05\x21\x36\x88\x61\x0b\x99\xdf\xcc\xed\x87\xe4\x6d\x40\x59\x8a\xac\xd6\x9f\x67\x78\x1d\xb5\xc5\x2c\x58\x98\x95\x81\x1c\x7c\xb8\x68\xb1\xbf\x0e\x36\x8e\xd1\x2e\x59\xea\xfc\x43\xca\xbb\x80\xda\x96\xf5\xae\xcf\xb1\x02\x6c\x40\xe2\x0d\x5d\xbe\xc2\x8c\xce\x8c\x84\xa0\x64\x2b\x5d\xb9\x4a\xa3\xdb\xa4\x1c\xa3\xf6\xad\x69\x47\xff\x88\xb8\x01\xde\xd6\xab\x45\x2c\xd0\x2f\x19\x46\x04\x2e\xa0\xd9\x6a\x79\x66\x0c\x0b\x5c\x2a\x9d\xf9\x6b\x9c\xee\x4a\x88\xb1\x72\xcd\x5a\xe9\x0f\x08\x1b\xdc\x8d\x23\xd7\xf9\xb3\x3a\xd8\x00\xd9\xf9\x8e\x6a\xa9\xc8\x8c\xbb\x01\xc2\xf4\x5e\xbf\x80\x15\x4f\x0f\xa4\x5e\x31\x0d\x8b\x37\x85\xea\xfd\x0f\x36\xc0\xbe\xa3\xe6\x6d\x50\x8b\xfb\x0e\xc1\x66\xbd\xb1\x86\x2c\x33\x6a\x03\x6c\x70\xf2\xa6\xc5\x78\x3f\xe3\xeb\x39\x8e\xa9\xbf\xb9\x7a\x56\xe7\xee\x77\x3c\x68\x92\x36\xdd\x62\x29\xc0\x80\x14\x74\x70\x3c\xb6\xab\xe8\x9c\x29\x6f\xa3\x88\xea\x5b\xe3\x0d\xf6\x33\xc3\xf1\x4c\xa3\x6d\xe5\x7f\x44\xd8\x08\x6a\xf2\xa4\x25\xe2\xd9\x88\xa0\x60\xd4\x11\x55\xdd\xa9\x4c\xce\x52\xc0\xdb\xd6\xf6\xf1\x41\xfb\x99\xe5\x79\x9e\x45\xb0\xf9\xf4\xd9\xfe\x03\x6e\x52\x9a\x90\xec\xd8\x66\xcb\x40\x0c\x18\x5e\xa5\xc1\x86\x0d\x6e\x63\x79\x69\x46\xf3\x23\xf4\x6f\x35\xd9\xa9\x82\x86\x36\x86\x0f\xf3\x57\xf1\x68\x93\x46\xd7\x1e\xf6\x03\xba\x99\x81\x6a\xb5\x6b\xb7\x35\x82\x8d\xf3\x77\x71\x40\x36\x37\x96\xd9\x33\xcf\x2c\x23\x09\x01\xa1\xc4\x7b\x51\x23\x40\x97\x80\xdc\xe2\x3a\xd6\x77\xf1\x80\x96\x71\x26\xb4\x51\xc9\x9c\x78\x09\xbf\xb3\x01\x64\x8a\xbd\x5e\x71\x10\x36\x56\xb5\x6f\xf7\x7e\x70\x36\x40\x12\x5a\x7c\x20\x21\x23\xc3\xa2\x09\xb9\x79\x37\x07\x28\x10\xf3\x4c\x4c\xdb\xdf\x0e\x42\x13\x1d\x40\xdb\xf1\x50\xa2\xe4\x87\xb3\x8c\x93\x84\xd3\xd2\x41\x5a\xc8\xdb\x58\xdf\x0e\x87\xda\x6a\x21\x6c\x3c\x33\x7f\x4a\xb1\x0c\xb0\x81\x03\x41\x31\xf2\x70\x12\x40\x18\xc0\xb6\xe4\xc8\xf8\xa3\xc7\x20\x6c\x80\xf0\xaa\x1e\x77\xfb\xd1\xb4\x79\x92\xa0\x13\x4e\xd8\x70\x70\xdf\x71\xc9\x3f\xaf\x38\x0c\x60\x83\x3b\xcf\xe7\x64\xcb\x0c\x9b\x14\xc0\x26\x3b\xd5\x3e\x82\x51\xc3\x33\xc1\xa5\xe4\xf6\xd3\x67\x20\x6c\xe0\xdc\x5d\x73\x36\x98\x90\xff\x50\xb0\x81\xd3\xd2\xf9\xf8\x6e\x00\x04\xcb\xb3\xfc\xb1\x73\x0b\x57\x5a\x71\x88\x61\x39\x8e\x5d\x9f\xe1\x24\x05\xb0\x49\x27\xfc\x8c\xd8\x20\xcb\x04\x9e\xed\x3c\xfb\x3c\x14\x77\x79\x46\x33\xf6\xa7\xa6\x3f\x18\xb5\x01\x8a\x9a\x3c\x7e\x31\x8b\xd8\x95\x7a\x48\x45\xcf\x0b\x8d\x34\x80\xb5\x01\x0d\xbd\xeb\x22\x3a\xc3\xf9\x48\x13\x46\x93\xfa\x85\x61\xd8\x9a\x0f\x8b\x4a\xe9\xcf\xa0\xd3\x41\x3d\xe8\x62\x62\x7e\xf3\x36\x32\xe3\xc8\x57\xd8\x28\x62\xed\x25\x4b\xe4\xf4\x64\xd4\x97\x8b\x47\x5d\xb9\x6a\x85\xf8\x3c\x17\x7e\x4d\x91\xc1\xb5\x02\xd8\xe0\xd4\x1e\x1a\xe4\xe1\x52\x9f\x1f\x40\xf9\x55\xf2\xc0\x9b\x5b\x55\xa5\xbb\xfc\x5b\xab\xa5\xe9\xe0\xc9\x1c\xb6\x7c\x43\x11\x50\xdb\xd0\xb6\xd7\xb1\xaf\x2f\xa4\x66\x31\xd9\xe0\x3a\xe0\x78\x84\xc2\x88\xed\x8d\x0c\xae\x15\xf0\x2f\xbb\x9a\xbe\x6a\x70\x62\xb0\x5c\xf4\xc6\x11\x84\xc5\xcd\x78\x0d\x3a\x4a\xb8\xfa\xc5\xbd\xb3\x71\x76\xe5\x05\x64\x28\x66\x11\x07\x70\xd2\x59\xda\xeb\x69\xfd\x55\x59\x5f\x96\x37\x13\x22\xc8\xdf\xf7\x7b\x00\x6a\x03\xab\x8f\xa9\x6b\x41\xce\xba\xe5\x83\x61\xf3\xbf\xed\x99\x4e\xaa\x80\x3e\x07\xbf\x4a\xa1\xf0\xa0\x65\xf9\x41\xbf\xa5\x12\xce\x7f\x1c\x84\x3b\x16\x9e\x0f\x77\xcc\xbf\x01\x6c\x10\x07\x3a\x3b\xba\x21\x69\xb9\x44\x22\xa7\xff\xc3\x1d\xfe\xe5\xc4\x80\x24\x16\xb9\xd9\x47\x8d\x0e\xcf\x90\xf8\x6b\x0a\xa2\xd5\x9f\xab\xe0\x26\x65\x19\xd5\xb6\x62\xe9\xf4\x04\x70\xb1\x51\x9b\xbb\x48\xd7\x67\xd5\xcb\x97\xba\x13\x46\xa5\x7e\x73\xc4\xd2\x88\xc3\xbd\x52\x74\x9e\x9b\x78\x21\x89\xc9\x29\x44\x34\x24\x25\x57\x48\xdd\x4c\x9d\xa2\xc0\x08\x36\xb3\xf7\xb6\xb0\x73\x75\x5f\xe6\x37\x73\x75\xaf\xb5\xe5\xcb\xaf\x35\x9f\x39\xd3\x6f\x99\xbb\xb1\x9d\x85\xb7\xbd\x59\x30\xbc\xc2\xc9\xd4\x4d\xaa\x90\x53\x24\x21\x10\x29\x9d\xd7\x7b\x16\x9c\x8d\x6e\xc7\xef\x87\x31\x88\x45\xc5\x3c\xb8\x42\x10\xbd\x1e\xc6\xc3\x1d\xcb\x31\xaa\xf6\x43\x4d\xd3\x1e\x8f\x60\x3f\x3b\x0d\xfd\x0b\x9b\x48\x94\x63\x7f\x32\x21\x24\xab\xeb\xfa\xc2\xb3\x14\xfa\x08\x4b\x48\xf2\x8c\xb9\xe1\xcd\x96\xe6\x66\x92\xe0\x84\x5e\x3b\x1e\x3d\x1e\xff\xcb\xa4\xb9\x3f\x0d\x9f\x32\xe3\xe8\xaf\x4f\x9e\xf6\x6c\xfb\xec\xe7\x8d\xd3\x6b\x1d\x3c\x58\x6b\xf7\xc6\x8d\xcf\xda\x9e\xbc\xf7\xa4\xe6\xd1\x19\x87\x36\xdd\x98\x3b\xe9\x97\xf1\x8f\xc7\x1c\xef\x95\x10\x2c\x4f\x73\x53\x9a\xca\xbb\x5d\x0b\x7d\xc5\xcf\xa7\x87\xe2\x9d\xd6\xe8\x66\x79\x82\x48\x1c\x3f\x11\x6b\x01\x21\xe3\xe6\x44\x65\x80\x2d\x78\xf0\x3a\xe4\x6e\x60\x94\x2f\x0e\x34\x25\xe4\x66\x8b\x2c\x35\x00\x70\xa0\xa0\x46\xcc\x88\xcc\x93\xf0\xc0\x34\x0c\x9d\x92\xda\x27\xac\x5e\x38\xf2\xf8\xd0\x97\xe5\xc6\x37\x98\xfa\xe7\xd3\x35\x7f\x5d\x7d\xd5\xb0\xc3\xeb\xd1\xc7\x06\x25\x27\x59\xf9\xc7\x85\x6a\x95\x70\x5f\x70\x6a\xa5\x32\x34\xce\x26\x3a\x29\x79\xc9\xb1\xe6\xfb\x3b\x34\x7c\x75\xf5\xaf\x35\x6f\xfe\x9c\xda\x60\x7c\xb9\x53\x43\x8f\x0f\x28\xbf\x3a\xc1\x5e\x4a\x65\xb8\xf5\x7f\x85\x8d\x74\xbf\x34\x5a\x89\x61\x7b\xbd\xcb\x15\xf0\xfc\x2d\x6f\xb1\x30\x16\xfa\xe0\x80\x7d\x5a\x19\x16\xc1\xb6\x07\xc3\xa6\x5d\x30\xc1\x9b\x90\xd0\x3b\x36\x06\x41\x3a\x65\x59\x75\xdb\xed\x4e\x79\x60\x3d\x42\x9b\x0a\x1e\x00\x80\x69\xb9\xd9\x27\x4c\x7b\x74\x6d\xea\xbd\x05\x55\xae\x0e\x09\xbc\x1e\x13\xed\x68\xe3\x11\xa7\x02\x23\x44\xa3\x55\x2a\xd5\x3c\x0f\xd8\xb1\x6e\x70\x1c\xcf\x03\xf4\xb4\xa1\x21\xf0\x8a\x38\x0f\x1b\xc7\xe8\x98\xeb\x5d\xf7\x57\xae\xb2\xfb\xdd\xcd\x6b\xc3\xa6\x25\x98\xb9\x29\xd0\x19\x01\x36\x7b\x1e\xc8\x97\xe0\x3e\x8a\x56\x55\x54\x1c\x8e\x1e\xda\xb3\xdd\x94\x20\x82\x4b\x8d\xc5\xdb\x50\x73\x75\x52\xd3\xac\xa9\x4d\x7b\xb9\x9c\x3d\xa1\x20\xcc\xb7\x59\x62\xd8\x18\xaf\x8a\xee\x04\xf5\x9f\xf6\x01\xe4\xde\xf8\x27\x85\x77\x62\xca\x9c\xf7\x75\x0f\x5f\x3c\x39\x7d\xec\xf2\x0f\xb6\xd1\x36\x2a\xbd\x7d\x2f\x17\x83\x53\x59\x47\x27\x7d\x58\x3e\x76\xfa\xc9\x8b\x9d\x6e\xbf\x9f\xd3\x66\x99\xb7\x44\x5c\xc8\x7f\xd9\x17\xe0\x1c\x22\x09\xd7\x6a\xcd\xe1\xa6\xe4\x18\x65\xf2\xfd\x65\x80\x5c\xdc\x8e\xaf\xc3\xb0\x69\xfb\xdd\xb1\xcb\x40\x6d\x66\x2f\x6b\x43\xbb\x12\xf8\xed\x46\x00\x9b\x8c\xf0\xfc\x78\x95\x87\x82\x1b\xcb\x26\x3d\x38\x15\x25\x47\xf3\xf9\xb7\xc8\xa1\x43\x4f\xe2\x6c\xef\xba\x7a\xe8\xd9\x12\x4b\xc7\xbd\x8e\xb5\x0e\x55\xeb\x6d\x80\x2c\xa0\x27\x30\xd4\x6a\x35\xfc\x0b\x08\xe4\x1c\xa6\x32\x3c\xd0\x4f\xc2\xef\xd1\x25\x1c\x6b\xf0\x55\x3e\xc4\xd1\xe7\xf5\xb8\xbf\x4f\x97\x6b\x69\xee\xea\xed\x2c\x01\xcf\xa1\xfe\xe5\x24\xa1\xe0\x01\x36\x84\x3c\x6a\xd8\xfd\xeb\x98\x97\xa9\xc6\x4e\x02\xdb\x8c\x90\x75\x3f\x28\xc0\xf6\xfa\xa1\x49\x06\x6a\xb3\xb8\xd2\x10\x6f\x61\x04\x9b\x84\x94\x16\x3b\xe1\x01\xe7\xcf\xb0\x4a\x9f\x8b\x8f\x9c\x08\xbc\xcd\x72\x4f\x73\xa4\x40\x00\x72\xf7\x26\xcf\x6f\x37\x3e\x1f\x7f\x2c\x3c\xc6\x43\x8b\x62\x9a\x04\x80\xb0\xdb\x42\x87\x13\x9f\xe9\xe0\xf4\x28\xe2\x28\x32\xfc\x0f\x48\x78\x4a\x8f\x98\xf0\x1e\xf3\xcf\x37\x3e\x54\xad\x89\xbb\x0c\x3f\x30\xd7\xc0\x91\xe8\x58\x81\x3f\x45\x35\x39\xb7\x2f\x14\x05\xb5\x31\x36\xed\x5f\x1a\x01\xea\x92\xac\xbd\xcb\xa1\x7f\x2b\xeb\x4f\x31\xfe\x0a\x6c\x40\x62\x72\x6a\xd6\x03\x85\xdc\xb0\x8c\x76\xfe\x9b\x12\xa5\xcc\x83\x75\x32\x7c\x2e\xc4\x25\xcc\xa7\x29\x8b\x5e\xf3\x9e\xd7\xbd\x37\x7d\x43\x12\x6f\x40\x63\x08\x23\x01\x8b\x1c\x6f\x4f\x01\x30\x84\x24\xf8\x4f\xf7\x39\x6f\xbb\xa1\xd6\xbd\x43\xd5\xe6\x15\xb3\x13\x54\x8a\x9c\x03\x46\xeb\xa4\x98\xa8\x2e\x83\xcb\x9e\xe8\xa8\xc6\xef\x45\xb9\xea\xa7\x44\x39\x38\x58\x25\xd3\xee\xb2\x59\xc3\x66\x7f\xaa\xb6\x21\x6c\x14\x21\x3f\xbb\x3b\x02\x59\x38\xc1\x81\x66\xdd\xf5\xe7\x66\x4d\xdc\x9d\xdc\x64\x14\x96\x97\x72\xfc\x42\xc1\x4b\x94\xcb\x4c\x53\x67\xd7\xad\xd3\xce\x16\x30\x7c\x78\x3e\x89\x1c\x1f\x43\x80\xb6\x1f\x54\xf9\x84\x03\x00\x6d\x46\x25\x38\x02\xc4\x01\x7e\x56\xeb\x4f\x09\x68\xb0\x57\x8b\xff\x16\x60\xe4\xd1\xc6\xe5\xb5\x1a\x55\xc4\xe8\x67\x53\xd6\xbb\x9b\xca\x28\x3a\xa7\x99\x2b\x68\x5f\xca\x01\x6e\x94\xcc\x2d\xca\x78\xd6\xf0\x3a\xf1\xfe\x6a\x21\x4e\xcd\x6a\xdd\x3c\xe4\x3c\x90\x75\x7f\x21\x6e\xd2\x23\x19\x37\x69\xf0\xbc\x75\x02\x6f\xbb\x8c\x61\x23\x57\x6f\x76\xc1\x6e\x08\xe8\x95\x0e\x68\xfe\xa2\xfd\x94\x92\x43\x8d\x15\x86\x0f\xfc\x8a\x9a\x43\xa2\x83\xc0\xae\xc9\x9d\x7b\xb5\xe7\x3b\xa8\xc4\x90\x1c\xe1\x74\xe4\xb9\x74\x24\x06\x3d\x18\xda\x38\xab\x24\x87\xf0\x7d\x81\x96\x1d\xdb\x9d\x81\xa3\xfe\x99\xe6\xf1\x81\x2e\x4b\x80\x50\x12\xa6\x81\x5f\x49\xf7\x0d\x4c\x74\xc2\x3b\x80\x9f\x84\x04\xc4\x57\x6e\xdf\xa0\x94\x37\x5a\x52\x76\x33\xc3\xca\x9a\xfe\x12\xb9\xf1\x8e\x6a\xbd\x9f\x3c\x58\xee\x10\x82\xef\x04\x1e\x65\x79\xd8\x1c\xdd\xc4\x6d\x87\xee\x48\xd8\x14\x99\x89\x00\x22\x9e\xa4\x77\x2f\x78\x13\xf0\x05\x18\x6d\x7f\x61\xcd\x22\xe0\x10\x17\xe1\xad\xba\x56\xf9\xf3\x7d\xf1\x26\x0b\xfd\x4c\x82\x8d\x24\x24\x7e\x76\x76\x0a\x36\xfc\xcc\xc8\x35\xa5\xe4\xb9\x89\x8e\xe2\x22\x0d\x04\x0b\xf4\x3e\x34\x21\x71\xfe\xd1\x01\x00\xa7\x8e\xf5\xdf\x36\x5c\xb7\x6e\x5d\x95\xdd\xe3\x6e\xbd\xbb\xff\xe7\xd6\x4f\x9f\xa7\x4e\x41\xa3\xf7\xdf\x33\xb6\xfe\x79\xb1\xfd\xad\x71\x1b\x0f\xae\x5b\x57\xfb\xea\xdb\xfa\xa3\xbb\xba\x84\x07\x44\xfb\xc7\xa9\xb4\x22\x53\x14\x59\x23\xf6\x1b\x31\xac\xd5\xeb\x27\x07\x52\x3c\xa5\x99\x6c\xd4\x4c\x2c\x04\xa4\xc4\x2d\x2a\xd2\x6f\xe1\xac\xf5\xef\x8f\xbe\x08\x8c\x56\x32\x78\xad\x30\x52\x3e\xec\xe7\xf5\x40\xdc\x00\xc4\x65\x3f\x6c\xa7\x20\x80\x54\x9e\xdb\x34\x23\x6c\xa5\x05\xb9\x4d\x59\xfb\x34\x04\x15\x60\xe2\x79\x67\xa7\x86\xc1\x34\x0b\x19\x89\x3a\xd4\x3f\x26\xbc\xeb\xe2\x3a\x4b\xcb\x0c\x5e\xbb\x2c\x8a\xd6\x3d\x59\x50\xb2\xd3\x13\x1e\x04\x55\x61\x7e\x6d\x63\xd7\x08\x95\x1a\x7e\x1d\xed\x43\x81\xcc\xf0\x42\xb5\x8e\x1f\x2c\x9b\x2f\x3e\x78\xeb\xe8\x91\x5f\x76\x5d\x19\x9a\xb2\xb0\x7c\xf9\x69\x5d\x52\x27\x27\x78\xba\x1a\x1b\x9b\x44\x0a\xc3\xc4\xc4\xd8\xd5\x33\xc1\x7d\xd9\xea\x69\x0b\xcb\x2f\x4c\x19\x7a\x65\xd7\xe9\x87\x47\x6f\xbd\x78\xdb\x7c\xfe\x20\x2b\xad\x00\xbf\x7e\xdf\xb3\x90\xdd\xa9\x55\xbe\x2e\x97\xcb\xae\xa6\xc0\xbc\xc8\xb4\xa0\xe9\xcc\x01\xa4\x08\xa1\x3c\x6a\x72\xf9\x26\x17\xfe\x1e\xf7\xd6\x32\x3c\xc6\x3f\x94\x17\x8e\x19\x96\x57\xb2\x61\xcb\x1b\x98\x21\x10\x08\xcf\xe7\xaf\xf1\xc9\x1a\x3a\x7d\x91\x7d\xda\x4d\x0a\x74\x52\xd3\x01\xc2\x16\x56\xd7\xef\xed\x09\x7f\x4b\x12\xd2\xf2\x0f\x37\x84\x21\xcc\xe0\xbe\x12\xf6\x54\x68\xc0\xf2\xfe\x75\xee\x8d\xba\x5d\x76\x4b\x93\xee\xc5\xfc\x2c\x14\x19\xde\x27\x2d\x0c\x70\x12\xf8\x3d\x3e\x5a\xd9\x96\xd7\x9d\x9a\xba\x6d\xa9\x4d\x5a\xd5\xd1\x6b\x5d\x9d\x27\x97\x1a\xcc\x7d\x5f\x72\xc2\xb0\x1d\x6b\x3b\x9b\x04\xcb\xbe\x26\x39\x40\x5f\xb9\x34\xd8\x24\x75\xda\x8e\x61\x67\x4b\xbe\xff\xe5\xce\xe7\x27\x75\xd6\xbd\x8e\x77\xb1\xd5\xea\xcf\x18\x34\x4d\xf8\x10\xdb\xca\x47\x77\xf9\xc9\x90\x18\x87\x46\x86\xcd\xa0\xb0\xe8\xdc\xab\xcd\xac\xdf\xcb\xde\xae\xf7\x74\x5c\x95\x76\x70\x6b\x0a\xf7\x10\x56\x1a\xb6\xe1\xd0\x42\x64\x1e\xa7\x09\xf3\x8a\xf3\xb1\x4e\x1a\xd2\x67\x4c\xba\xb4\x20\x70\x53\xc5\x88\x3a\x6a\x64\x99\xe4\x63\x9f\xae\x26\xf1\xae\x27\xcb\xdf\x1c\x62\xa5\x81\x2f\x41\xe4\xbd\x48\x78\x06\xb4\x13\x12\xb0\xfc\xee\x93\xbf\xbb\xcd\xdd\xb2\x63\x75\x42\x64\x53\x0b\xfb\x28\x53\xa9\x04\xdf\x51\x20\x3e\xa0\x0c\x04\x8f\xf8\xe5\x45\x10\x87\x68\x41\x38\x01\x59\x46\x1d\x02\x54\xa5\x25\xf5\x17\x9c\xf8\xd4\xad\x5a\x93\x99\xde\x8a\x8c\xab\xc2\xb8\x53\x59\x98\x89\xf4\xef\x45\xe6\x3d\x73\x56\x99\x8a\x5b\x9f\x6c\xac\xbf\x24\x26\xda\x26\x04\x9a\x2c\x70\x88\x3b\xa2\x6c\x75\xd2\xba\x5f\xbe\x04\x4b\x28\xda\x80\x87\x91\x94\x44\x6a\x1a\x65\x6f\xd1\x34\x32\x61\xe6\x80\xdf\x4f\x57\x5c\x7a\x71\xfa\x99\x00\x15\x8f\x4f\x72\x48\xa8\x98\x74\xc1\x0f\xda\x88\xd7\x9f\xba\x50\x02\x6c\x03\x6a\x7e\xc0\xc6\xb7\xb8\x5f\xdb\x18\x65\x80\x8d\xb6\x3b\x17\xa1\x86\x36\x4d\x36\xe4\xd5\x50\x85\xb0\x0e\xd3\x2e\x8b\xda\xbb\x68\x31\x66\x82\x18\x2a\x44\x3a\xf0\x71\xbe\xd7\x57\xf5\xb0\x3c\xf3\x6a\xe3\x89\x19\xcd\x1a\xcc\xad\x51\xaa\x7c\xa2\x59\x1a\x05\x9b\x30\xe9\xfb\xb4\xb9\xaf\x52\xc7\x78\x30\xa5\xf9\xd6\x5f\x73\xf1\xef\x6b\x63\x2a\x14\x5b\x9d\x6a\x1c\x25\x4b\x63\x96\x14\x7e\xcc\x9c\x05\x91\x38\xd4\x3f\x8d\x35\x53\x16\x65\xb2\xac\x4b\xb1\x0a\x8f\xca\x4e\x3d\x77\x79\x43\x84\x4e\xaa\x81\x8f\x03\x2a\xa1\x55\xc7\xdf\x7e\x6f\x9a\x66\x42\xf2\xe0\xc9\x5f\xe6\xd5\x98\xbb\xf9\xe1\xe7\xdf\x2e\xbf\x9a\x68\x79\x6c\x95\x8f\x6f\x1c\x2f\x9e\x52\xc2\x49\x85\x88\x95\x5d\xd5\xb3\xa4\xb9\x11\xb2\x48\x02\xc0\x4b\xd5\x11\xbd\x78\xb7\x13\xd2\x7b\xf1\xc0\x54\xdc\xba\x75\x84\x41\xe2\xe0\x7b\x96\x8b\x22\xb1\x89\x0d\xfc\x1f\x39\xac\xd3\xdd\xe5\x49\x4a\x43\x99\x89\xe3\x0d\xcf\xc0\xb8\x64\xcb\xfd\xe7\xaf\x5e\xbe\xb7\xad\x6e\xeb\x45\xc5\x87\x0d\x2b\xd5\x64\x40\x79\xf3\xce\x9e\x66\xde\xab\x0f\xf4\xbc\x8e\xa9\x9e\xc1\xfc\x5f\x1b\x13\x7f\xfe\xc5\x6f\x15\x27\x34\xf9\xd2\xd4\x40\xc1\x15\x8e\x34\xda\x00\xa3\xcc\x8f\x3e\x3c\x68\x3a\xc3\x01\x4e\x46\x4e\x6b\x52\x63\x78\xfb\x5a\x3b\x2d\x6d\x95\x3a\xd1\x19\x4e\xf1\x43\x9f\x45\x23\x82\xcd\x3c\x53\xcd\xcb\x0f\x98\xf5\xf2\xd4\xa3\x39\xcf\x27\x1d\xd9\xfa\xee\x72\xe5\x9d\xaf\xe7\x5f\x0f\x4b\x23\x08\xea\x34\x13\x74\x86\xc6\x74\xfc\x6b\x6b\x71\x57\xc4\x15\x20\xe9\xbb\x55\xdb\xe0\x8f\xcf\x89\xa0\xd6\xce\x19\xac\xbb\x14\x61\xb4\xe8\xae\x0d\x56\xfc\x7d\x96\xa6\x00\x39\x0f\x73\x7b\xb9\x91\xc9\xf6\x95\x0f\x3e\xf8\x6b\xa0\x70\x05\x44\x26\x41\x6e\x80\x0f\xc3\x8a\x0e\xa7\xd6\x6a\x34\xa1\xaa\x30\x7f\x6b\x5b\x97\xfa\xe7\x3b\xd4\x9e\x7e\xab\xde\xa1\x9f\xca\x0c\x7e\x34\xbc\x61\x9c\x1a\xd1\x18\xe0\xa6\xe0\x38\xd1\xd8\x1c\xab\x75\xfb\xf7\x94\x04\x27\x23\x99\x02\x72\x6b\xb9\xfc\xbf\x66\xe3\x23\x91\x0b\xde\x84\x52\x48\xdd\xa2\x26\xb7\x29\x3e\x65\xfa\x3e\x30\x4d\x08\x02\x8a\xc4\x50\xab\xad\x5e\x4d\x2d\x5d\x6a\x51\xeb\xdb\x03\x6f\xed\xae\x3c\x76\x67\xfd\x1e\xb6\x8e\x1e\x61\xaa\xd0\x50\x8d\x56\x0d\x59\x3c\x5e\x8c\xa1\xf0\x07\x8e\x13\x8d\x7f\x6c\xad\x6e\x4d\x3c\xdd\xb0\x59\x00\xfa\xf3\x56\x77\xb2\xc6\x9e\x2b\x6d\xa3\x03\x14\x91\x11\x36\xd9\xbc\x27\xd1\x50\xbc\xe5\x18\x8f\xf3\xa7\x4d\xb1\xdc\x83\x5e\xaa\xf3\xcc\x47\xef\x3f\xaf\x39\xe3\x10\xaa\x17\x97\x74\x9a\x4e\x1a\x39\x8a\x0f\xb1\xb1\xb1\xb2\x0d\x6f\xd4\xdc\xab\xc3\x8b\xbf\x26\x46\xa0\x70\x08\x2c\xbc\x84\x36\xda\xbd\x74\xfc\x98\x62\x76\x46\x86\x0c\xec\xbf\xda\x79\xd2\xdc\x84\x94\xda\x4d\x7b\x34\xfe\xd2\xe5\x40\x15\x22\x71\xb4\x50\x36\x7a\xf4\x8b\x83\x1d\x5e\x37\x6f\x14\x6e\x6b\x65\x6d\xa3\xe2\x0d\xe7\xaa\x57\x7a\xf5\x02\x64\xa8\xed\xe8\x9f\x3b\xcd\x9d\x3d\x22\x8a\x14\xa4\x17\x9a\x22\xcc\xaa\x55\x51\x62\x3f\x69\x4c\xad\x61\x44\x26\x0e\x3f\x79\x97\xe1\xe1\x88\x18\x19\xde\xa6\xe7\x0e\x27\x02\xcf\x08\x4b\x8d\xd2\xd4\x15\x37\x4f\xd6\x1e\xbd\x24\xc9\x2a\x4e\x2d\x72\x10\x43\xd1\x35\x13\xe9\x95\xc1\x47\x12\x58\x82\xda\x7a\xd5\xab\x51\xbb\x96\x49\x44\x12\xc9\x63\x4f\x00\xa9\x67\xfa\xf2\xce\x67\x07\x56\xde\x67\xad\xe6\x84\xb3\x21\x83\xce\xc6\xea\x34\x5c\x41\x70\x14\x44\x0e\x3e\xce\x31\x29\x7c\x7e\xed\x4a\x33\xca\xcd\x94\x22\xb8\x30\xcd\x90\xb4\xf3\xc8\x37\xab\x78\x40\x49\x00\xb6\xae\x9f\xd7\x66\x8c\x01\x81\x21\xa8\x63\xde\xaa\xe0\xdd\x00\x10\x3d\x7e\xab\x00\x5f\x26\x29\xbc\x53\x82\x54\x98\x79\x76\xae\x70\xb6\xf7\xad\x17\xed\x02\xb4\xfa\xf7\x25\xe0\x25\x1e\x15\xba\x17\xc8\xb1\xa2\x24\x0a\xe9\xcd\xaa\xf6\xed\xa1\xa9\xde\x0a\x4c\x1c\xb9\x50\x17\x73\x41\x76\x98\xed\x01\x71\xc0\x7e\xf2\xd0\x87\x7b\x7c\xd5\x98\x87\xb3\x02\x7a\x06\x7b\x03\xbd\x68\xf8\xaa\xd5\x86\x96\x14\x6d\x4c\xbb\x2a\x3d\x7b\xef\xaa\xe0\xe7\x6e\x26\xc3\x42\x3c\x7e\x1d\x04\x35\xe0\xd2\x31\x8d\xa0\x6c\x8d\xfd\xdd\x2e\x93\xe8\x2b\x70\x06\x14\x6b\xff\x41\x30\xb1\xa9\x02\xb7\x0d\x8e\x82\x9f\xe9\x09\x0e\xfc\xcb\x7b\xe1\x98\x5d\xad\x3f\xdf\x7a\xf0\x6a\xff\xfc\x64\x0f\x36\x3d\x69\x71\x86\xb6\x0a\x41\x7c\x07\xaf\xc9\xda\xeb\xc9\xc7\xf2\x32\x01\xff\x5c\x20\x96\x53\x78\x75\x87\xb0\x70\x77\xd9\xda\x6a\xf7\xbd\xa2\x19\x46\x7c\x75\x06\x76\x15\xd1\x68\x62\x78\xa0\x39\xc4\xbf\x6e\xf8\xe2\xe4\xa7\x1b\x17\x66\x2f\xb4\x13\x81\xc0\x42\x3c\xf8\x23\x6a\xe8\xe1\xfa\x2a\x94\x7e\xc6\xaa\x63\xde\xad\x96\x65\x62\x39\x03\xdb\xd4\xf8\x63\x7f\x2d\x3c\x83\xc0\xfb\xd0\x0c\x6a\xd1\xa4\xa9\x42\x2e\x72\x6d\xb8\x11\x90\x01\x55\x2e\x31\x2b\x36\xac\xe4\xca\x4f\xff\xf4\xeb\x61\x1b\x6d\x65\xed\xa1\xd2\x28\x39\x51\xb5\xc1\xa4\x67\x38\x2f\x56\xad\x4d\xea\x30\xbc\x97\x33\x45\xe7\xde\x7c\x48\xe6\x6c\x2f\xc3\x93\x58\xcf\xe0\x20\x0b\xa0\xdc\x7a\x1d\x69\x18\xa1\x4d\x8b\x10\x67\x30\x41\x78\x8c\x69\x54\x1e\xd6\x56\xd1\xb6\xab\x86\x3c\x3b\xdc\xa0\xda\x95\xb5\xf6\x32\x39\xf2\x08\x51\x86\x0b\x96\x44\x35\xb9\x18\x28\xc8\x82\x4c\x58\x87\xb9\xa6\x99\x85\x5e\xc1\x84\x99\xce\x97\x1c\x94\x88\x9f\xb2\x9c\x26\xfc\xc1\x24\x73\x05\x00\x93\x16\x05\x2a\xd1\x4a\x29\xb5\xf7\x4c\x1d\x31\x72\xd8\xae\x1b\xdd\xa6\xfe\x3a\xee\x6a\xc7\xeb\x1e\x4a\x75\x16\x36\x1e\xc0\x14\x5c\x6e\x95\xf3\x93\x92\xb9\x2b\x7a\xa3\x23\x70\xf2\xab\x50\xeb\x3d\xd2\x7a\xd2\x03\x8a\xf0\xcc\x09\x27\xf6\x31\x0c\xcb\x66\x3e\x2f\x5e\xeb\xe1\x30\xff\xd5\xb3\x9a\x37\x1f\xde\x28\xf3\x68\x64\xaf\xce\xae\x16\x46\xfa\xef\xa2\x1b\xd1\xd0\x07\x20\xe9\xdc\xfa\xe7\x55\x2a\x61\x2f\x31\xb6\x33\x52\xe4\x99\x46\xac\x41\x5c\xd6\x6f\x8c\x61\xb0\xcc\x0c\xf4\x8b\xab\x47\x4a\x25\xca\x0c\xe5\x4b\x9a\x32\xf0\x3a\xc9\x22\x53\xcd\xb7\xaf\x98\x3b\xf5\x5c\xe3\x05\x77\xd7\xbd\x3d\x63\xb9\xef\x7a\x8c\x0d\x3c\xdf\x75\x66\x5b\x70\x9b\xb0\xae\x55\xe7\x38\x7d\xc5\x18\x91\x15\x18\x72\xd9\xd7\x23\x76\x20\x47\x53\x38\x45\xb9\x19\x86\x22\xa3\x17\x6d\x3f\xac\x6a\x60\x88\x41\xc8\xb2\x3a\x34\x2e\x2c\xcc\xc6\x37\x79\x95\xe5\x99\xc5\xb5\x6b\x2d\x68\x5c\xf5\xe6\xa4\xb3\xdb\x7b\x75\x8e\x74\xd3\xbd\x27\xbd\x3d\x04\xd9\x13\x09\xd9\xe4\xc1\x15\x5f\x59\x61\x4b\x06\xf8\xcf\xaa\xf2\xfa\xe0\x2c\xb4\x3f\x30\x09\xd7\x1a\x6f\xa1\x96\x82\xe5\x1e\x95\xcf\xee\xb9\x7e\x6e\x14\x9d\x46\xc0\x12\xbc\xe8\x34\x74\xff\x2a\xa4\xa6\xc1\xde\x91\xcb\x56\x8f\x68\xf5\xe8\xc0\x9d\xc3\x2d\x1e\x9c\xf7\x3a\xd3\xfc\x83\xb5\x52\x17\x31\xcd\x8f\xbe\x34\xd2\x54\x9e\xfb\x22\x41\xe0\x65\xd3\x52\x77\xf3\xc9\x66\x5f\x29\x7c\x03\x10\xa2\x82\xab\x1f\x9f\xd5\xdd\x44\x66\x48\xcd\x50\x2a\x74\x4a\xa9\x1b\xa8\x66\x45\xdc\xd4\xd6\x2e\xcd\xeb\x4f\x3c\x5f\xeb\xd6\xd6\x4d\xd5\x66\xb7\xea\xd5\x25\xd1\xc4\x3b\xd8\xd9\x48\x21\x01\xf7\xcf\x58\xc6\x08\x6d\x74\xd9\xea\xd3\x0b\x1c\x54\x6a\x6c\x53\xe1\x59\xe5\xd8\x9f\x96\xd1\x59\x78\x78\xc0\xa3\x25\xa9\xc3\x77\x2a\x05\xb9\x07\x20\x1d\x74\xfe\xdc\x1f\x0b\x4d\x89\x34\xdb\x85\xcc\x28\x73\x91\x32\xb3\x04\xf3\x0a\x83\xd7\xd7\x58\x54\x66\xd1\xc0\x63\xf8\x2d\x83\xff\x43\x26\xce\x68\xe5\x9c\x83\x9d\x96\x6e\x12\xf0\x7a\xb7\x2f\x25\xfe\xec\x79\xe2\xce\x50\xb3\x6c\xd1\x85\x81\x68\xd7\xee\x3f\xdb\xd8\xf3\xe6\x4b\xb7\x74\xbf\x21\x4d\xdb\xf4\xde\x2f\x86\xc8\xb3\x7c\xd7\x4e\x25\x0e\x94\xa9\xb1\x7e\x5e\x2b\x73\x77\x7b\x19\x9d\xf6\x5a\x43\xb6\x2b\x9c\x2b\xce\x5f\xfe\xb8\x38\x36\x00\x1f\xc5\x50\x64\x0b\xdb\xdf\x0c\x28\x5b\x59\x2d\x04\xb2\x37\xf3\x4d\xcd\xfd\x91\xc4\x83\x44\x3c\xce\xb1\xf2\x94\x79\x9d\xed\x25\x99\xd8\xc1\x33\x58\xfa\xd0\x87\x4e\x25\x47\xab\xb0\xb3\x8c\x0b\x09\xfc\x3c\x40\x9e\xcb\x20\x2f\x2c\x48\x18\x25\xcc\xba\xdd\xcf\x8a\x51\x36\x3f\xda\x4a\x9a\x75\x86\x3a\xa0\x77\xb7\xea\x8b\x6a\xdb\x70\x8c\xe6\xc3\xd1\x62\x46\x69\x4e\x39\x5a\x4e\x18\x8d\xe8\xdd\x28\x14\x4d\x05\xfc\x31\xf1\x40\x42\x1a\x01\x5f\xb4\x37\x64\xb2\x26\x52\x61\x9f\xfa\xb2\x6e\x43\x2b\x9e\x11\x4d\x10\xbc\xff\xc4\x43\xdd\xb3\xc9\x5e\x06\x5f\x93\x4b\xcd\x4f\x5f\x0d\x05\xaa\x87\x60\x14\x53\x5b\xef\x6b\xf8\xe7\xe3\x04\xfd\x8b\x48\xb7\x46\x92\xd4\x4b\x4d\x40\xa8\x71\x1b\x76\x2f\x1a\x1d\xa6\x00\xf1\x8e\xf5\x2a\x38\xe7\xd2\x8d\x44\x22\xde\x29\xe9\xde\xe0\xc1\x2a\x7f\x20\xd3\xc7\x1d\xeb\x06\x4e\xa5\x4c\x5f\x32\x9a\x8d\x5b\xf7\x29\xaf\xad\xa0\x7e\xa7\xe9\xb7\xb9\x73\x5a\x57\x2e\xc0\xd4\xa8\xd5\xd4\x46\x02\xbd\x30\x01\x8d\x1f\x89\xfb\x24\x4b\xcb\xaa\xe8\x95\x5c\x36\x61\x54\xc3\x55\x36\x6a\x51\x84\x62\x19\xed\xab\x4d\x23\x4c\xb3\xe7\x16\x34\xa1\xe8\xfc\xcb\xee\x58\xad\x20\xf7\xc0\x3f\x42\x1a\x5d\xae\xbb\xa2\xbb\xb7\xf0\x36\x32\x3b\x83\x49\xd1\x02\x48\x26\x7e\x9a\xaf\x46\xaf\x97\xd5\x5e\xaf\x3a\xd8\x39\x57\x5e\x69\xe1\xde\x4d\x2b\x2c\xaa\xb7\xd3\x0a\x1f\x5f\x9a\x3a\x2b\x9c\x33\xcd\xd8\x41\x7e\x1d\xbf\x2d\xdb\xbc\xe0\x44\xd5\x1c\xb3\xea\xc9\xc2\x74\xcf\x82\xe1\x19\x3b\x9e\x0e\x52\xa3\x60\x0e\x36\x74\xdf\x14\x77\x05\x4d\xe9\x8d\x06\x19\x6e\x28\xb0\x9d\xc8\x94\x72\x53\x2e\x1f\xc3\x0a\x1a\x8a\xe5\x60\x38\x9f\x83\x3f\xad\x95\x7c\x2d\x0a\x86\xa6\xe5\x16\xc3\x1a\xef\x53\xa9\x05\x13\x33\xf4\x90\x84\xd8\x9e\xef\x34\x26\xc1\x49\x46\xd1\xd9\xb9\x36\xc0\x83\x9d\x07\x57\xd6\xa0\x70\x74\x8e\x0d\x5a\x30\x47\x92\x3b\xf1\x16\xae\x4a\xe1\xe6\xb9\x7e\xe0\x19\x2b\x2d\x0f\x6d\x67\x6a\x26\xf4\x6d\x03\xfb\x4c\x60\x83\x2f\x49\x62\xda\x79\xee\x83\x24\x25\x34\x05\x82\xff\xc2\x6f\xa5\xa4\x97\xe0\x49\x39\x19\xb5\xa5\x8f\x15\xd6\xeb\x59\xf5\xf4\x15\xd9\x44\x85\x42\x81\x8d\xa2\xe5\x52\xa7\xc4\x2d\x03\x87\xd8\x22\x73\x00\x36\xc1\xa9\xd5\xaa\xeb\x7d\xe6\xb8\xca\xe5\x5f\x7b\xfd\x90\x72\xbc\xb7\x37\x3b\x98\x04\x21\xe3\x04\xa3\x0f\x6b\xd3\xe8\x6a\xfb\xd6\x2d\x2d\xb0\x30\x95\x05\x18\xe0\xe3\x85\x53\x5d\x50\x3c\x26\xcb\x69\xcf\x2f\x72\x25\x72\x1e\xa8\x24\xb0\x65\xe7\x85\xe3\x9f\x54\x76\x89\xc3\x4f\x05\xb0\x85\x74\xd8\x9b\x01\x36\xfc\x7c\x79\x97\x6a\x4f\xbd\x92\x78\x74\x21\xcf\x33\x1f\x4e\x20\x6a\x43\x67\xb0\xf8\x66\x69\x82\x32\x3e\xb0\xdf\x06\xa9\x8b\x0c\x73\xec\xd7\x11\x59\x78\xc7\x45\x17\xa9\x3c\xe1\xd4\xa6\x93\x63\x5d\xfc\x39\x9d\xdf\x16\xac\x3c\xa6\x72\xb3\xa1\x76\x39\x09\x1d\x42\x7b\xc5\xef\xda\xb8\xae\x56\x4a\x9d\x13\x0e\xd2\x9d\xd5\xce\x51\x1f\x67\xcd\xb4\x93\x12\x99\xb0\x05\xe1\x7b\xd2\x32\x95\x1d\x71\x18\xab\xd2\xe5\xe8\xe4\x9c\x8a\xb8\x82\x20\x4d\x39\x27\xb4\x39\xfb\x77\x7f\x5f\xb8\x2f\x04\x42\x67\xe2\x7e\xae\x91\xd6\x0c\x8d\x9f\x4c\x45\x75\x9e\x37\xfc\x05\x14\xaa\xd0\x7b\x05\xfb\x61\x31\xe6\x6d\x62\xd8\xa5\x78\x31\x61\x7e\x38\x9e\xc1\x4c\xc3\xa3\xdf\x6c\xb7\x4c\xaa\x73\x88\xfc\xd9\xd4\x78\xc4\xa9\xd6\x27\xa0\x0b\x80\x11\x0f\x44\x96\x55\x46\x5b\xd6\x99\x94\x48\xe4\x30\x0f\x08\xbc\x4f\x45\xd3\x94\xbd\xb5\x6d\x39\x56\xd4\xca\xc1\x5f\xea\xb8\x88\x41\xfd\x3b\x9d\x5d\x6d\x84\xe2\x5f\x32\x1e\x42\x34\x21\x49\xb8\x64\x0b\xdf\x3f\x78\xb9\x36\x2d\x66\x3b\xe7\xf0\x10\x45\xf7\xa2\x49\xb9\x45\xab\xb9\x95\xe6\x07\x78\x28\xf5\xf6\x28\x70\x9b\xa3\x29\x52\xc3\xdb\x08\xae\x60\xfb\x96\x53\xd6\x0d\xf2\x57\x8a\xc6\x6c\x56\x1b\x74\x6e\x9a\x91\xde\x5e\xae\x57\xb5\x08\xa7\xe3\x6d\x35\x08\x37\x8e\xf3\xa9\xd8\x25\x23\x87\x22\x71\x84\x1c\x15\xd5\xbd\x64\xcd\xf3\xc9\x56\x2a\x9d\x19\x02\x6e\x53\x65\xd0\xc1\x9f\x5a\x41\xbb\x7d\x4e\x95\x63\x70\x77\xd9\xea\x5d\x5b\xf7\xf8\x28\x19\x8c\xbb\x20\x38\x5a\x75\xac\x35\xaa\xf5\xfa\x69\x51\xe2\x1a\x0c\xe9\x80\x22\x82\x07\xff\x23\x10\x68\xa8\x65\x59\xd7\x1c\x94\xc2\xd0\x2b\xf7\x76\x29\x8f\xeb\xb6\x18\xeb\x83\xb3\x0b\x75\x0e\x55\x26\xa9\x81\xb1\x5c\x77\x1b\xe1\x62\x59\xe7\xd9\xc3\xfb\xd4\x77\xd4\x59\xd5\x80\x7c\x68\x59\xf3\x91\x29\x9c\x34\xe9\x36\x62\xce\xa2\x5d\x8f\xfc\x28\xfd\x37\xec\x1b\xb4\x8b\xc3\x7e\x27\xff\x3a\x2b\xa4\x44\x5a\xb3\x32\x7e\x36\x65\xb2\x63\x57\xc5\x77\xb5\x1b\x85\x89\x3e\x18\x3c\x03\xf5\x92\x2a\x9d\x1e\xaf\x96\x12\xb9\x88\x51\x43\xb6\x13\xaa\x7a\x99\x4a\x1d\x63\xb0\x8b\x42\xa0\x38\xf0\x87\xe3\xfc\x35\x0f\x87\x75\x89\x8c\xd2\x1b\x58\xf0\x80\x79\x95\x9b\xdf\x72\xd8\x80\x92\xfc\x4f\xab\x9c\x84\xd9\x60\x42\x93\x05\x9b\x98\x97\xfb\x5c\x25\x5c\xc3\x09\x6e\x1a\x1d\x6a\xdc\xaa\x32\x52\xc1\x0c\x4d\xe2\x8b\x15\x4e\x26\xad\x4e\x8f\x3b\x16\x2a\x5c\x09\x2d\x40\x4a\xc7\x76\xbf\xa6\x48\xa1\xb3\x84\x74\x4a\xd9\x7c\x79\x6c\xed\x3e\xd7\x3a\xcb\x84\xdd\x48\x11\x54\x93\x73\xc9\xd8\x64\x1d\x6a\xd9\xdb\x4c\xb7\x49\xb1\xe5\x1a\xac\xd1\xcd\xde\x73\xe1\xe3\x81\xeb\x56\xc5\xc1\xd5\xf1\xa2\x9d\x8e\xe3\x55\x49\xf1\x2d\x16\x75\x96\xe4\xd2\x04\x81\xf8\x83\xd4\xb8\xfb\xf3\x3f\x27\x86\x21\x3d\x09\x6d\x77\x94\xc6\xa6\x4a\x3a\x76\xbe\xce\xd2\x15\x33\x15\x02\x5a\xf8\xdc\x87\x5f\x98\x76\x32\x16\xce\x0f\x3c\x79\x67\x59\xcf\xaf\xbc\x24\x52\xfc\x22\x21\xed\xb2\xeb\xd2\x1a\xaf\x0f\xd1\x5a\x91\x93\x72\xa2\xd9\x9d\x09\xa9\xdf\x97\x16\x97\x88\x6f\x97\xd0\xf7\x53\xad\xf9\xb6\x21\x3a\xff\x28\x60\x84\x49\xbb\xdf\x8f\x70\xc6\x72\x6a\xf9\xfb\xa3\x93\x1c\xa3\x03\x2a\x77\x4b\x15\xf0\x01\x60\x9b\x3c\x5f\x8e\xaf\xe6\xfc\x5b\xa4\x52\xfa\x87\xe3\x0b\x82\x07\x94\xa8\xf9\x60\xe2\x12\x2b\x0d\xcb\x60\x5b\x97\xf0\xf4\xb8\xc5\xf5\x2e\x60\x95\x2d\x97\xd6\x41\x1c\x88\xe0\xdd\x72\x78\xe3\xb7\xb1\xa1\x82\x21\x57\x34\x98\x72\x56\xa3\xeb\xdc\xac\x76\x6a\x6d\xa4\x94\xd0\xb9\xe0\x48\x52\x3a\x6c\x7f\x1c\x0e\x3a\x89\x7b\xf3\x25\x9b\x3a\x71\x3a\x19\x89\xa0\xdd\x4c\xbe\xcc\xfe\xb8\x74\xe3\x7c\x1b\x9d\x9f\x53\xb7\x45\xa1\x58\x61\xbb\xbb\x25\xa1\x0f\x6c\x96\xba\x76\xff\xbd\x62\x1f\x4b\xf1\x35\x22\xd5\x99\xb7\x3a\xf3\xa6\x4c\x22\x9e\x2d\xb5\xb0\x6e\x57\x94\x7c\xed\x58\xfb\x94\x9b\x48\xa4\xb4\xbc\xfb\xcf\xbe\x1c\xc6\xa4\x7f\xe9\x28\x02\xdf\x0c\x1d\x9c\x51\xa9\x3b\x7e\x6f\xfd\xeb\x9e\x0f\x71\xa2\xa1\x5f\x78\x3a\x1b\x36\xa8\x5f\xcf\x95\x2d\xcd\xfe\x5d\xec\x12\xb6\x0a\xc8\x9c\xcc\xab\xbd\x89\x77\xd4\xf2\xa2\xcd\x1d\xb9\x3d\x79\xad\xca\xf1\xc3\x9e\x4e\x5b\xd6\x9a\xb8\x41\x75\x18\xfa\x53\xc0\x69\xff\xde\x07\x9b\xa6\x42\x5d\x1e\x46\x65\x1d\x0b\x87\x82\x9d\xa1\xe9\x0e\xc8\x68\x15\x1e\x6f\x6d\x38\xc8\x46\xa5\xe4\x39\x6c\x54\x17\xcc\x76\x62\xee\xb4\xe5\xe1\x69\x04\x56\x82\x28\xb9\xcc\x62\xed\x85\x9a\x13\x6d\xe1\xb5\x9c\xee\x52\x6d\x50\xc3\x1b\x5f\x9c\xe4\xd0\x9c\x07\x9e\xff\x70\x7e\x1c\xab\x54\xab\xd5\x9c\xcf\xa4\x04\xa1\x2a\x22\x49\x91\x9e\xb7\xbd\x84\x90\xd2\x33\x37\xfc\x08\x0a\xd9\xd5\x28\x89\xcc\xcc\x6f\xd6\xdc\x9e\x13\x03\xfc\x43\xd5\x9c\xf8\x70\xe8\x2a\xe2\xd4\x9a\x98\x89\x55\x2f\xa4\x02\x21\xf5\xdf\xba\x88\x30\x55\x48\xdc\x5b\x96\xdc\x76\x70\x5f\x88\x01\x3d\xe0\x65\x45\x58\x56\xae\x33\xb0\xec\xcb\x11\x4e\x08\x62\x42\xd2\x6b\x4a\x0c\x14\xc9\x79\x26\x7a\xfa\x04\x79\x06\x7f\xa2\xa8\xd9\x08\x1f\xc8\x12\x52\x8a\xff\x74\x6e\xc1\xab\x40\x47\xa1\xa0\x92\xce\xf1\x6f\xe3\x33\x28\x1a\x12\x0d\xf8\xc7\xf9\xf1\xee\xc2\x39\x0a\x8e\x8c\x9b\x75\xc6\xba\xa8\x74\x4e\x4d\x14\xa2\x15\x73\xf5\xd3\xef\xd5\x8d\x04\xa9\x6f\xd9\xe6\xb1\x71\xc8\x7e\xcb\x33\x11\xc3\x53\x05\x65\x18\x1e\x54\xbf\x3f\xd3\x62\x67\xc0\x92\x13\xc7\xf1\xb4\x14\xee\x3b\x26\x1c\x69\x51\xeb\x75\x6c\x9c\x81\x97\x14\xb3\x06\x9b\xf9\x1b\x6f\xd6\x18\xe0\x49\x13\x39\xb1\xf6\x65\x09\x1c\xde\xaa\x92\xb5\x25\x2f\x36\x74\xb1\x8d\xe3\x18\xbd\xcf\x00\x43\x67\x7b\xf5\xb7\x8a\xc5\xdb\xf8\x19\x07\xcb\x08\xc9\x60\xe4\xf8\x02\xb0\xf9\x74\x1a\x49\x91\x94\x1e\x2e\x03\x1f\x27\xfc\x48\xea\xed\xd9\x79\xc4\xcb\xf7\x9f\xdb\xbe\x16\x5c\xc2\xba\x80\x1a\x86\x0d\x8d\x5e\x75\xb0\x71\xed\x25\x50\x86\x01\x0f\xa8\x35\x2f\x18\x5a\x57\x3c\x57\x0f\x28\x73\x69\x63\x0f\x5e\x2f\x53\xc1\x6b\x35\x49\xf3\xd7\xb4\x9e\x46\xa2\x9d\x84\x24\xdb\x9d\x8e\xc8\x39\x0e\xb4\x8b\x7d\x65\x8d\x85\x73\x1c\x96\x9b\x30\xef\x64\xcd\xa1\x84\xd0\xe8\x3d\x63\x08\xda\x39\x32\x71\xda\xcb\xf7\xdb\x2e\xcf\xc7\xf1\x0b\x1c\x8e\x1e\xc1\x62\xb3\x8d\x43\xd7\x5a\x9d\x26\xf8\x91\xff\x76\x7b\xa6\x21\x13\x18\x7b\x64\x91\x3a\xb8\xf5\xd3\x76\x71\x82\xba\xc5\x09\x21\x0d\x40\xac\xb5\x89\x89\x3d\x33\x7d\xdb\xfb\xc1\xc6\x84\x5b\xc9\x2a\x1e\x58\xd6\xdd\x77\xc3\x8f\x26\x85\x59\x53\xe9\x83\xe1\x68\xa7\x11\xc5\xf7\x6e\xad\xf4\x76\x50\x40\x74\x1c\xaf\xa3\x5f\x1c\x59\xc3\x68\xf7\x4d\xaf\xbb\x7d\xf0\xad\x0f\x42\xb8\x48\x9d\xf2\x52\xa0\x22\x8f\xd9\x5c\xf5\xaf\xf8\x00\xab\x50\xec\xaa\x46\x7b\x09\xea\x4b\x1f\xda\x96\x68\x63\x6c\x84\x38\x1f\xb8\x7f\xf0\xfb\xbf\xa2\xf1\xe7\x1c\xeb\xfb\xa2\xa5\x44\x7f\x64\xd2\xd2\x6b\xc7\x34\xc8\xfc\xe3\x31\xe4\x77\x22\x2a\xa5\x64\xef\x9e\x8b\x5d\x82\xac\x42\x58\xdd\xde\x11\xd9\x4f\x74\x87\x9a\xd7\x46\x26\xd8\xff\x8b\x83\x20\xf3\xad\x0a\xff\x32\xf2\x1b\xb6\xb7\xea\xdd\x76\x56\x6c\x06\xee\xcd\x47\xc4\x57\xee\xd9\xfb\x8f\xe7\x27\x2c\x71\xf0\x25\x3f\x71\x7d\x30\x76\xea\xa7\x79\x36\x6d\x64\xb7\x7a\x47\xdf\x1a\xe3\x2b\x8e\xba\xbc\x33\x5e\xf0\xb9\x1a\xc4\x92\x32\x4c\xe8\xa0\x0e\x27\x0f\x4d\xf8\xe2\xd6\xfd\x6e\x04\xda\x32\x5c\xdc\x9a\xdf\xfb\x3e\x9f\xd4\xa9\xce\xf9\x7d\x36\xac\x4e\xa6\xc2\x17\x3b\x36\xff\xb9\xf7\x9c\x65\x72\x9d\xe1\x38\xb5\x5a\xad\x24\xe8\x97\x43\x6e\x90\x57\xad\x13\xf4\x9c\x15\xfc\xbd\xc2\x2b\x0c\xe9\x13\x9a\x0f\x7f\x56\xab\xf8\xe4\xaf\xfa\x3e\x5a\x9d\x43\x52\x0c\xb5\x61\x94\xc9\x6f\xd7\x0c\xbc\x36\x6b\xb2\x44\xc7\x9c\xf2\x60\x20\xe1\x9b\x72\x4e\x7d\x34\x65\x8f\x4b\x44\x98\x06\x73\x70\x56\x0c\x59\x03\x7f\x84\xc6\x8c\xbe\x1a\x6f\x05\xa9\x07\x9c\xa3\x55\xc4\x72\x40\xa4\x5c\xea\x0c\x53\x5b\xbc\x9b\x1a\x2f\xeb\xd2\xeb\xf8\x8a\x95\xbf\xde\xed\x17\x1f\x14\xa7\xc4\xd1\x8f\xfa\x7b\x00\x46\x1c\x6a\x13\x74\xa6\xc5\xb5\xf2\x16\x12\xb9\xe9\x96\x78\x6c\xe5\x54\x47\x37\xfc\x75\x8d\xd7\x3e\x47\x35\x7e\x84\xee\x81\xbc\xc6\xdf\xa1\xf2\xdf\xb3\x9a\x4a\x68\xd1\x9d\xa9\x30\xb9\x56\x39\x82\x15\x0a\x22\x86\xf4\x98\x9a\x6a\x60\x6d\x02\x7f\x5f\xa9\x1d\x8d\x1d\xdd\x71\xc7\xda\x39\xc4\x09\xb7\xe3\x59\xfd\x29\x10\x62\x13\xd0\xf1\x9f\x49\xdb\x5d\xa5\x28\xd2\x26\xef\xf2\x19\x05\xb2\x95\x78\xaf\x6e\x72\x61\xca\xee\xae\xf8\xe5\x73\xfa\x20\x3f\x18\xf1\x6e\x15\xa6\xc4\x01\x4b\x0e\xb7\xfc\xc4\x97\x6d\x31\x72\x42\x89\xd3\x3f\x35\xfb\xbb\xde\xbb\x71\xbb\x6b\x5d\xf5\x9a\x3f\x28\xc6\x26\x84\x13\x34\x01\x83\xed\xc1\xf0\x31\x5e\x2d\x36\xf7\x4d\x49\x70\xa3\x08\x32\xf2\xda\x12\xa1\x80\x9c\x26\xe6\x83\xad\x87\x96\xd5\x33\x6d\x7c\x75\xdc\xfc\x4a\xad\x5f\x76\x89\xa2\xc5\x78\x1a\x52\x52\xec\xe6\xf9\x68\xa5\xc8\xa1\xf6\xfd\xdd\x4a\x66\xc0\x16\x00\x3f\x6d\x52\x29\x19\x15\x99\x64\xf8\x10\x18\x2a\xc3\x8a\xe1\x75\xc2\xc3\xb5\x01\xaf\x9f\xae\x5c\x31\x32\xd1\x89\xd2\x2d\x34\xef\x06\x49\x63\xf1\xd4\xa8\xcb\xa2\xcf\x7d\x3a\x04\x3a\x84\x19\x2e\x47\x1f\x1d\xca\x33\xea\xc0\x81\xee\x04\xaa\x26\x0d\xf4\xb3\xa3\xcf\xfa\x57\xde\xe9\x15\x3f\x28\x26\x4c\xa9\x0b\x25\x10\x83\x6d\x85\x4a\x8e\x4a\x1b\x9f\xe6\x7b\xde\x55\x9c\x9d\x80\x84\x29\x52\x3e\xe2\x48\x80\x61\x05\x0e\xc3\x20\x4c\x70\x7b\xff\x70\xaf\x35\x7f\x17\x37\xa1\x09\xd1\xa7\x06\x14\x7b\xf3\xbd\x67\x42\x71\x21\x0e\x70\x60\x2e\xb9\x37\xd2\xd4\x30\xb5\x0e\xc0\x96\x32\xd0\x85\xd1\xcd\x50\x14\xd0\xb0\x12\xa7\x8c\x1e\xb4\xbc\xd6\xfd\xe1\x8f\x3c\x25\xc2\xa6\xfa\x06\x99\x83\x48\xb8\xa6\x15\xce\xde\xa9\x7d\xeb\x36\x3e\x13\x11\xaa\xe6\x71\xb4\x8e\x78\x40\xe0\xf2\x2c\xca\x33\x53\x51\x54\x21\x4d\xba\x56\x7c\x15\x11\x16\xa6\x0a\x09\xd5\x28\xd5\x68\xaa\x3a\x47\xaa\x18\x2b\xc7\xa9\xd5\x21\xb1\xe7\x9f\xb6\x1e\xea\x6e\x66\x2a\x47\xa1\x30\x84\x62\xf0\x7d\x5f\x86\x17\x6b\xa1\xf1\x3a\xcd\x1a\x9e\xd1\x40\x4e\x1b\xf2\xa4\x5a\x2f\x3b\x53\x89\xfe\x98\x01\x6f\xe7\x5a\x43\x47\x4e\x89\xf9\x1a\x67\xf5\x64\x5e\x70\x1a\x5f\x09\x50\xfa\x7a\xd5\x9d\x2f\xc0\xc6\xe9\x9e\x8e\x62\x7e\x94\x1e\x83\xd6\xd5\x3c\x3d\x32\xd2\xcc\x4d\x8e\x52\xc1\xbe\x51\xb6\xa5\xee\x58\xb6\x98\xf6\xf2\xe3\xcd\x16\xb5\x03\x3d\xf4\x2e\x79\x21\x28\x04\xc0\xe6\x55\xd7\x15\xc6\xe7\xd3\x6e\x43\x5f\x58\xa5\x73\x9c\xa2\x40\x15\xbd\xde\xc9\xdb\x7a\xdd\x3d\x31\xbc\x46\xe9\xea\xce\xf8\xf6\x30\x7c\x40\x5a\xed\xa0\x8d\x0e\x36\x7d\x68\x04\xfc\xd7\xf5\xb7\x8d\x7b\x2f\x1a\xea\x4e\x11\x7a\x57\x3c\x4a\x6c\xef\x3d\x48\x89\x42\x7e\x00\x32\x3e\x7d\xd6\x7b\xcb\xd3\xa4\x71\x82\x5b\x8e\xe8\xd6\x51\x80\x4d\x3f\x51\x78\xbb\x21\x0b\x46\x6d\x2e\xb7\xa3\xb3\x91\xb0\xb6\x6f\x9a\xdd\x0b\x4d\x2d\x90\xcf\xca\x3c\x67\x95\xf8\xb3\xf6\xb1\x58\xdf\x38\xb5\x9e\x4d\xe8\x61\x03\x72\x93\x49\x99\x63\x0c\x2f\x24\xae\x70\x42\xa0\x88\x28\xf3\xb1\xea\x38\xdf\xe4\x55\x5e\xcf\x6e\xd7\x68\xe5\x2d\xc4\x5b\xe0\xb8\x09\xc2\x6d\xf3\x44\x15\x14\xff\x74\x03\x2a\x9e\xac\xd2\xc3\x76\x49\xbb\x4a\x9b\x4e\x25\x50\xfa\xfc\x10\x81\xd8\x88\xa8\x19\x01\x4a\x94\xed\xc3\x2a\x63\xd6\xac\xb7\x4b\x6f\x1c\xa7\x88\x62\xb7\x45\x6a\xc3\xc6\x47\x96\x0b\xb1\x72\x58\x55\xbf\x4f\xb7\x15\xc5\xa2\x28\xd1\x48\xf0\x0d\x21\x13\xde\x2f\xb6\x7d\xc8\x9d\x4c\xaa\x6f\xaf\xb1\xa9\x45\x7d\x5f\xb5\x28\x6b\xa7\x85\x2d\x75\xd2\x2a\x58\x93\x1b\x41\x26\x06\x61\x88\x74\xa7\xb1\xad\xdf\xf3\xd0\x1f\xa7\xbe\x24\x5a\x98\x52\xa2\x9d\x92\x10\x60\xdb\xa0\x62\xb4\xea\xb4\x51\x4c\xda\x80\xf3\xa3\xe6\x5e\x59\x9b\x10\x2c\xc9\x84\x69\xbb\xf5\x5e\xa2\x65\x95\x4a\x40\x6f\xb6\x27\xd6\x83\xf3\x35\xed\x6f\x01\x6f\x5b\x7b\xb3\xab\x0e\x36\xb4\x55\x3d\x02\xa7\x2f\xfd\xe3\xd1\xda\x04\x0b\x23\x9a\xcc\xdc\xb7\xf0\x6d\x90\x13\xdf\x37\x65\xb6\x7a\xf6\xca\xa3\x95\xd6\xcd\x0f\x12\xea\xbe\x21\xde\x06\x23\xa6\x01\x18\x76\x17\xe6\x33\xe9\x23\xe0\x60\x44\x54\x72\xfc\xd8\x8d\x6f\xb6\x6e\xee\xbb\xd6\x44\x21\xde\x4d\x7f\xee\x11\xb2\x15\x75\x3c\x0c\x8f\x84\x10\xab\xf0\x0d\x2f\x5a\x74\xfa\x65\xd6\x64\xa3\xf4\x17\x0b\xe4\xa6\x38\xb0\x27\x0e\x9e\xbd\x5a\xcb\x7b\xb3\xed\xc8\xf4\x56\x3e\x00\xdb\x97\xa5\x22\x6c\x0c\x1b\x12\x73\xac\xc3\xb3\xfb\x47\x76\xb5\x31\x91\x09\xbf\xce\xef\xfa\x09\x48\xfe\xa7\x14\x6e\xf6\xe6\xc5\xff\x5e\xf0\x7a\x89\x8d\x12\xc3\xa6\xee\x38\x23\x01\xdb\xf5\x2b\xd4\x72\x54\x63\x11\x95\xe3\x95\x5a\x4d\x68\x48\x9c\x47\xf4\xbe\x0d\x0d\xc7\x5d\x7a\xde\x6a\xb2\x99\x91\x42\x8e\x02\x4a\xd3\xb2\x14\x9a\x90\xcf\x5c\xd9\x23\x04\x66\xbf\xa0\x10\x4d\xab\xd8\x33\xb5\x6f\x6d\x2e\xb5\xcc\x4c\x0a\x4f\x81\xcc\x94\x6b\xf0\x8d\x2f\x47\x1a\xc5\x85\x84\x58\x07\x76\x6a\x15\x95\xd1\x73\x0e\x60\x2b\xff\x39\x10\xc3\xc6\xaa\x1c\xda\xbd\x18\xb5\x68\x61\xa4\xa9\x02\xfb\xe3\x0b\xa0\x9c\x8e\xde\xa5\xa0\xb0\xeb\x35\x6b\x76\xd9\x5f\xe3\x39\x0c\x1b\x14\x40\x50\x7c\xbe\xf1\xfb\xbb\xbe\x58\x00\xf3\x4f\xda\xb7\x7c\x48\x87\xfe\x8d\xeb\x55\xac\xb6\xfe\xd4\xf6\x69\xae\xa6\xb4\xfe\x06\xe9\x73\x07\xdc\x16\x4e\xad\x15\x7f\xcc\xb2\xfe\xfe\xf3\xaf\x76\x9f\xe8\x5d\xa2\x78\xa9\x01\x7e\x66\x94\xee\xf2\x8c\xd3\x20\xe8\xa8\x2f\x37\x9e\x5e\xdd\xd3\xbe\xec\x42\xe7\x4c\x2a\x42\x1a\x0a\x20\xca\xda\x75\xcf\x96\xee\xee\x69\xa4\x5f\x40\xbe\xa3\x86\x9f\xac\x67\xa6\x4e\xb3\x76\x87\x20\xfb\x07\xbf\x0a\x57\x0e\x01\x92\xc1\xcc\xf1\x95\x5e\xed\x5f\xbc\xb3\xf2\x8b\x67\x6f\xfe\x9c\x5a\x71\x65\x89\x39\x6d\x5c\x65\xfa\x6f\x66\x1a\x55\x09\x43\xaf\xcb\x97\xbc\x74\xf4\xd3\xa1\x8a\x0d\x6e\x2c\x2a\xed\xe7\x9c\xe1\x41\x99\x00\x27\x77\x7d\x39\xe9\xfd\x4b\x7b\x32\x33\x1b\x1f\x8c\x90\xaf\x3a\x08\xc3\x16\x77\x74\x84\x60\x61\xc8\xf7\xbd\x99\xc9\xb4\x91\x24\x4c\xbb\x3e\x81\xf1\xf9\x00\xb6\xeb\x4f\x53\xd1\xfc\x81\x88\xe7\x5d\x7d\xc0\xe0\xd2\xdb\x53\x8a\xf9\x25\xa0\x2a\x01\x4e\x46\x72\x92\xf8\xea\xe6\xa0\xa5\x66\x91\x26\x91\x76\x4d\x2d\xbc\x83\x4d\x15\x74\x0e\xce\x39\x92\x96\x98\x7a\xdb\x3b\xcb\x33\x15\x21\x00\x6c\x2d\x5b\xc4\xe2\x8a\x14\x56\x47\xec\x28\x42\x9e\xd7\x41\xb0\xff\x01\x37\xb0\xb0\xa8\xa3\xc9\x4a\xe8\xb2\xe4\x6c\x2b\x75\xd6\x2b\xf1\x0a\x53\x37\x19\x95\xfe\xe2\x5c\xcd\xfb\xeb\x94\x61\xe0\xe0\xcb\x14\xb6\xc1\x75\x1c\x50\x50\x2a\x6b\xbb\xd7\x99\x26\x0b\x0b\x6a\x78\x76\x40\x7c\xfa\xa0\x45\x49\x36\x56\x6b\x66\xea\xa6\xac\x9b\x61\x16\x79\x59\x99\xe3\x44\xe9\xd2\x60\x72\xea\x6b\xa3\xb2\x4c\x94\x87\x8d\x0f\x6a\xc5\x20\x0b\x08\x1f\x7b\x5a\x5a\xc8\x1a\x19\xd0\x84\xd3\x94\xae\xa1\xa8\x78\x59\xdc\xc1\xb5\x04\x36\x1a\x89\x3c\xdf\xf0\xe7\x9c\x80\x90\x4d\xd6\x60\x36\x5f\xc9\xe2\x37\x04\xd1\xf7\xaa\x15\xf2\x58\x6b\x8f\x95\xcc\x58\xdb\x89\x10\x7c\xab\xdf\x18\x9f\x2c\x56\x43\x13\xce\xc3\x27\x86\xa0\xdc\x24\x65\xc3\x0a\xa4\x38\xbb\xdc\x2d\xfe\x9b\xcc\x97\x20\x7e\xef\x67\x03\xcd\x35\x4c\x48\xf3\x1a\x44\x5a\xd8\xd2\x4c\xed\xdb\x4d\x54\x8c\x2d\xca\x58\xd9\x92\x22\x4c\x27\x75\x88\x63\xd4\xd0\x2a\xbd\x78\xa8\xbc\xf0\xec\x05\x30\x8f\x2d\xb0\xe2\x37\x80\xcd\xe3\xf5\x8a\x74\xc4\x46\x42\x93\x00\x25\xc7\xe1\xce\xdf\x46\x8e\x4b\xc7\xca\xd3\xd2\x35\x2c\x71\xf3\xf1\x2f\x0f\x08\x1b\xc3\xb4\x1b\x63\x5a\x28\x61\xf3\x1f\xb2\xc5\x10\x36\x81\xb8\xa4\x9e\xe6\xc5\xba\x24\x38\xeb\x57\x99\x87\x34\x27\xa6\x4b\x40\x83\xad\xa9\xb3\x1b\x34\xd5\xa7\x89\xaf\x84\x29\x5b\x35\x2e\xdb\xe0\x9c\x5d\xcb\xb3\xdf\xb4\x06\x57\xae\xc7\x16\x58\x1f\x2b\x03\x6c\x70\xfa\x40\x42\x1a\x79\xa5\x44\xb3\x23\xc3\x4f\xaf\x98\x55\xde\x3c\xd1\x5e\x86\x2d\x21\x79\x56\x9a\x48\x34\x50\x48\x9c\x3c\x47\x8c\xdc\xb1\x30\x31\x4a\x9e\x36\x3b\x03\x16\x1b\xbc\x72\x0b\x15\x93\x62\x99\x46\x07\x8c\xe9\xc2\x04\xdb\xd9\x33\x71\x18\xb6\xc5\x06\xb0\x21\x9f\xdc\xe4\x15\xbf\xae\x5b\xfe\x21\x39\xf9\xfa\x92\xf8\xb7\x0f\x5a\x4c\xe9\x5b\xdd\x8d\xc4\xc1\x6e\x79\x80\x9b\xe0\x83\xa1\x83\x3b\x6f\xaf\x71\xe3\x48\xa7\x8b\x4f\x5b\xb4\x3f\x5a\xb7\xc4\xbc\x44\x99\x81\x2b\x11\x66\xba\x95\xbe\x18\x2d\x94\x2e\x9b\xd4\x99\x26\x0b\x4f\x77\x0a\xea\x40\x20\xf6\x5c\x39\x36\x5c\x2f\xca\x76\xf0\xad\xca\x13\x7f\xbf\xb9\xa0\x91\x98\xcd\xa3\xb5\x8a\x9d\xb8\xa6\xde\xf0\x5d\xc7\x3d\x65\x06\x8b\xfe\x2f\xa8\xc1\x78\x73\xa7\x48\xf3\x97\xbf\xd4\x1c\x3b\x28\x22\x4e\xab\x54\x2b\x43\x23\xe6\xb7\xf8\xb8\xd0\x42\xa6\xcf\x92\xa1\x08\x45\xab\xc3\xbe\xd8\x4f\x3a\xa8\x5b\xb1\x42\x03\x1b\x4c\x25\xfb\xc5\x07\x67\x36\xc6\x3c\x18\x46\x08\x8e\x48\x92\x92\x44\x75\xf9\x78\xd0\x41\x8d\xcc\x6f\x42\x6a\x0c\xaf\x54\x05\xed\xac\x59\xa6\x82\x67\xf0\xbf\x77\xc9\x8b\x98\xa1\x6f\x07\x4f\x9b\xf0\x77\x9d\x9d\x1d\x97\x38\x2a\x45\x3b\x6d\x5c\xf2\xc4\x7f\xf6\xc2\xf0\x6c\x31\x9f\x9a\x90\xf4\xba\x6d\x8b\x43\xa2\xc2\x6f\x76\xa7\x0a\x09\x6c\x00\x25\x3a\xf8\x4e\x0c\x2a\x1f\xc2\x24\x37\x6e\x82\x22\xfc\xd0\xfe\x8c\x9c\xf3\xe4\x0c\xce\xad\x16\x42\xc3\xb0\xaf\xc2\x7a\xc9\x99\x5a\xa3\xaa\x2d\x84\x91\x06\xff\x56\x98\xc3\x22\x17\x1d\xec\xb7\xbd\xda\xd2\x67\x1d\xfd\x75\xa6\x6d\xa1\xea\x86\x55\x87\xa9\x63\x26\x4b\xc4\xcc\x4b\x42\xde\xf9\x4e\x10\x83\x42\x47\x63\x3f\xa7\x14\x22\xd8\xe4\xae\x87\x6c\x90\x5b\x82\x19\xf4\x64\x07\x81\x52\xc7\x48\xc2\xc8\xfc\xc0\xc9\x70\x5d\x8e\xb8\x90\xd0\x26\x58\x45\x35\x1f\x1e\xcc\x28\xb3\x7d\x99\x11\x91\xf3\x74\xb9\xb4\xcf\x84\x26\x2e\xb9\xc5\xd0\x4d\xcf\x2c\x23\x3c\x34\xbc\xce\xe7\x83\xfd\x8b\x30\x12\x7a\xfa\x69\x77\xa1\x66\x14\x98\xde\xe4\xbd\x01\x22\x6c\x15\x0a\x11\x6c\xb2\x99\x9d\x54\xb8\x4c\xf3\xb1\xc3\xdd\x09\x98\xef\x4c\x51\xd2\x69\x53\xfb\x59\x2b\x05\xf7\x0e\x6f\x50\x70\x8a\x45\x71\x41\x71\x31\xf1\xff\xfc\x34\xcd\x49\xfe\x6f\x12\xec\xd0\xf6\x93\xad\x06\xbb\xd3\xcb\x41\xe7\xc6\x36\xa8\x4a\x04\x1f\x13\xd4\xf0\xf3\x29\x33\x1c\x44\x44\xca\x13\x57\x0a\xb0\xf9\x1c\x1e\x50\x88\x60\x33\x5a\x58\x33\x14\x86\xce\xf0\x4c\xc7\x66\xe6\xd0\xec\x4c\xc8\x97\x5d\x38\xd1\xce\x5a\xf4\xd6\xa6\x71\x10\xb1\x38\x60\x82\xd1\x26\x2f\xbe\x35\xfc\x14\xac\x50\x90\x3b\xe0\x50\x6d\x11\xa7\xc9\xb3\x56\xee\x0e\xd7\x18\x44\x7f\xe9\x7c\x49\x28\x2b\x8b\x07\x04\x7d\x6f\x8e\x9f\x13\x00\x09\xc0\x96\x70\xc3\x01\xbe\x55\x35\xe3\x70\xae\x49\xa1\x81\x8d\x22\x9c\x67\xdd\x13\x60\x9b\x78\x7a\x19\x10\xa1\x8c\x22\xdb\x94\xa8\xe5\xc8\x0b\x89\xba\x80\x0e\xe2\x22\x1c\x82\x60\x2d\x20\x21\x28\x84\xc1\x65\x24\xd8\xd0\xf9\xed\x6b\x98\x5b\x28\x72\x13\x44\x83\xaf\x6d\x3a\x6f\xdb\xd5\x7d\xd1\x5a\x31\x78\xd7\xd0\x8b\xcc\x8a\xee\x4b\x8d\xed\x90\xa5\x4d\x4c\x71\x01\xfc\x8f\xb1\xa8\x8c\x14\x93\xd4\x73\xb6\xbc\x90\xb4\xc7\x82\x81\x5a\x7d\xdb\x6a\x60\xa7\x2a\x8e\x79\xfd\x47\x02\x41\x99\xad\x9d\xdb\xd8\xd2\x4a\x4c\x0b\xe7\x19\xd6\x63\x62\xa5\x4e\xa3\x2e\x0f\x59\x65\xa5\x14\x9d\xcf\x42\xcd\x12\x55\xd0\xe8\x93\x17\x12\x11\xaf\xca\x29\x6a\x80\x92\x5d\x07\xef\xbd\x65\xa9\xd2\x85\x98\x60\x6a\x56\x47\x84\x07\xd6\xaf\xdf\x35\x9a\x17\x33\x83\x01\x3d\x9f\x39\x51\x76\x96\x5f\x53\xa9\x2c\x61\x92\x0f\x86\x0d\xc5\xb7\x15\x12\xd8\xe4\x84\xf7\xa2\xbb\x1a\x2c\x86\xaf\xba\x37\xe9\x6c\xc9\x3b\xbf\x5e\x4d\x16\x5f\x3b\xb4\x72\xd5\x7f\xb3\x79\xfd\xc8\x59\x13\xe6\x1e\x1a\xb5\xf1\xf5\x3e\x47\x4e\x8c\x77\xc3\xce\xd9\xe4\xdd\x75\x1f\x25\x28\x72\x28\xc4\x41\x56\xe5\xdc\xb9\x46\xa5\x1e\x1a\xb5\x18\x70\xce\xa1\x9a\x14\x61\x8e\xfb\xf6\xdc\xda\x56\x71\xf8\xd6\x75\xb1\x61\x6a\x5d\xf8\xa3\xda\x3a\xbe\xc5\xdc\x2b\x29\x6b\xaf\xd4\xb3\xc5\xb0\xd9\x34\xac\x26\x2f\x24\x5d\xc5\x00\x6c\x76\x73\xaf\x6a\xb1\xbf\x5a\x13\x33\xff\x75\x7c\x40\xa8\x41\x3c\xa6\xd2\x77\xec\x91\x62\x51\x12\x89\x42\x26\x73\x8b\x9c\x75\xa3\xea\xab\x58\xeb\x10\x25\xc7\x61\x7f\x0d\x8a\xd2\x89\xdd\x5d\x66\xa6\x5b\x4e\x8a\x5e\x22\x68\x5d\xcb\xd5\x3c\x7f\x3d\x54\x17\xba\x88\x0e\x99\xa0\x21\x3d\x97\x5e\x7b\x39\x72\xed\xea\x99\x5f\xc6\x34\xab\x12\x20\xd4\x9e\x82\xcc\x20\xc4\xe7\xcc\xd8\x83\x0f\x5e\x35\x0a\xc1\xbe\xab\xb0\x89\xbf\xc8\x0b\x89\x2a\x0f\x60\x33\xae\xb8\x58\x29\xb8\xf9\x39\x95\x47\xa8\x18\xb9\x83\x90\x6b\xd4\xfe\x71\x17\xa9\x68\x16\x0e\xee\xdc\xa6\xef\x8d\x9a\xb5\x93\xd5\xfa\xb0\x78\x86\x51\xda\x2e\x1e\x38\xdb\x9b\xf8\x6a\xdc\x3b\xd4\xd9\x9d\x7a\x8d\x6f\x1b\xce\xe8\x70\x81\x3e\xc8\xa4\x46\x3b\x5b\x0c\xbf\x62\x1e\x8c\x2f\xa2\x3b\x97\x6d\x7b\xcc\x43\x8c\xd7\x4e\x53\x55\x0d\xc6\xee\x1e\xdb\xa4\x28\x3c\xb0\xb9\xd6\xf5\x12\x61\x13\x0f\x4c\x21\xda\x29\x7a\xf9\x9f\xc3\x82\x05\xc3\xb3\xe0\xf7\xb5\x3b\xfe\x4b\xfb\x86\x8d\xac\x94\x86\x5b\xd5\xe5\xde\x84\xce\x8a\xaf\xe1\x06\x64\x35\xa7\xe3\x17\xdb\x39\xea\xa4\x1a\x68\xb0\x55\x0e\xda\x38\xbc\x54\x75\x0b\x67\x19\x25\xc4\x47\x2a\xec\x8f\x1f\x99\xa8\xe2\x39\xdd\x4e\x65\x45\x97\x37\xaa\x20\xda\xdb\x94\x28\x1c\xb8\xa5\x85\x4d\x9f\xd4\x03\x26\xac\x8e\xe8\xff\xc7\x08\x67\xec\x90\x11\xe3\x29\x68\xb9\x91\xf7\xb2\xc1\xc3\xd7\x05\x28\xc5\x40\x5b\xb0\x7e\x4d\x4c\x87\x23\x5f\xc9\x84\x82\xe2\xa1\x5f\xc9\x93\xc7\x42\xf4\x99\xbb\x0c\x6b\xfb\xf6\xde\xa6\xe2\x38\xb2\x59\x6f\x42\x76\xfe\x72\xba\xb1\x4b\xa8\x18\xe2\xc8\xe9\x61\x03\xf4\x6f\xbd\xcd\xa2\x90\x18\xdc\xc0\x49\xea\xf9\xf7\x72\x35\xee\x61\xc8\xea\x84\x4e\x18\xdb\xbc\xe1\xdc\xe3\x44\x89\x01\xb7\xd7\x59\x74\x9c\x47\x4c\x98\xfa\xcc\x32\xce\xa0\x78\x8d\xf5\xe2\x29\xad\x24\xd9\x11\x02\x80\x7b\xc4\xfb\xda\x2a\x8e\x15\xa5\x1a\x75\x88\x6f\xe0\xe5\x3b\x0b\x4d\xd3\x5a\x3f\x61\x06\x09\xe5\x5c\xea\xb7\x76\x56\x1a\x31\x38\x5d\x17\x93\x0a\x4b\xf3\x3c\x49\xfc\xe6\xcd\x02\x72\x08\x1b\x4d\x4c\x1e\xd8\x08\x77\xcc\xd4\x95\x04\xe1\x38\xad\x47\x50\xc3\x29\x0b\xe5\xe9\x0b\xe3\x89\x75\x3b\xc8\xc8\x47\x47\xdf\x26\xc7\xa9\x85\x93\x43\xcd\x86\x1c\xfb\x3c\xcd\x34\xcb\xf3\x14\xd2\x5a\x85\x29\xed\x1c\x85\x30\x18\x48\x6a\xa1\x1d\x9f\x1e\x68\x35\xd9\x8d\x4c\xe7\x43\x40\x66\xcb\xe0\x69\x1f\x6f\x7d\x50\xea\xcb\xcf\xe8\x22\x5d\xb8\x3e\xd3\x0a\x4b\xeb\x3f\x92\x48\xbd\xe7\xc3\xb3\x69\xd8\x2f\xc3\x25\xef\xb9\x3d\xc6\xcf\x34\xd3\x74\x5c\xf4\xa1\xdc\x7e\xe6\xec\x19\xe7\xfd\x59\x46\x90\xe2\xf8\x90\x8e\xbf\x2e\xa4\xb2\xd8\x41\xe0\x7a\xa7\xee\x37\xf7\x73\x98\x3a\xe1\x1e\xf5\xef\xba\xbb\xf7\xec\xa6\x84\x3e\x21\xda\x10\x62\x70\x0f\xcf\xf5\x5b\x0f\xc6\x47\xa7\x29\xb9\x84\x46\x9d\x0a\xa6\x85\xa4\x5d\x11\x49\xac\x7e\x16\x8d\x02\xcf\x59\xa5\xca\x5f\xa5\x09\xb1\x76\x68\xe4\x75\xb0\xe6\xf8\x62\x6e\x59\xe9\x4d\x42\x52\x81\x51\xab\x9f\xda\xce\xb7\xd1\x95\xe6\xd4\xcc\x6f\x36\x2d\x8b\xce\x55\x80\x23\x76\x3f\x14\xaf\x45\xb5\x01\xa1\xea\xa4\xb4\x1a\xf2\xa9\xa5\x89\x2c\xab\x8a\x61\x50\xbc\x73\xf3\x1c\x36\xb5\xb2\x8f\x47\x48\xa8\x16\x96\x7c\x55\x72\xc2\x2e\x7d\x36\x32\xa7\x69\x91\xdf\x18\x34\x30\x87\x2f\x7f\xa9\x84\x3c\xa3\x63\x8b\xdb\x75\x1d\xbd\xf3\xd9\xd6\x12\xa5\x13\x8d\x24\xd9\x1a\xd4\x60\x58\x90\xc2\x2c\xe5\xf3\x10\x1b\x41\x3c\xe5\x59\xff\x21\x0d\x82\x33\x6b\x3a\x0a\xd3\x68\xab\x77\x6b\x17\x27\x66\xe5\x33\x7c\xf3\xfb\x8b\xca\x8b\x91\xc5\x99\xce\x09\x7a\x14\xbc\xd7\x16\xff\xa9\xd3\x9b\xbb\x6f\x97\x37\xdf\x59\xf9\xb5\x03\xaa\x83\xc0\x30\x6b\x8e\x3b\x15\x12\xd8\x48\xf9\xf1\xf3\x3c\xb2\x7f\x84\x76\xac\xfa\xb8\x5c\x99\xc7\xeb\x4b\x2f\x5c\x16\x4c\x7d\xcd\x26\x84\xf6\x92\xe9\x97\x3f\x5a\x08\xc5\x6b\x58\x56\xed\xf8\xf3\x4b\x8b\x4c\xb6\x10\xb8\xd2\xf3\xe3\x3a\xa1\xcc\x0a\xcb\x69\x63\xbc\x2e\xb5\x74\x16\x6b\x72\x65\x79\x77\x58\xb8\xd3\xcc\x7c\x5e\x99\xe1\x4b\x2f\x6d\xde\xfb\xe7\x44\x21\x7d\x65\xf7\x3c\xb3\x42\xd1\x31\x11\x1c\x64\x6e\x8f\xce\x60\x03\x83\xc7\xba\xf1\x32\x51\x77\xc9\x81\x7e\x8e\x1c\x0a\xde\x63\xda\xbb\xa8\x70\x24\x3c\xcf\x34\xea\xb4\x30\xb3\x1e\x7e\xb4\xa2\xc9\xdd\x18\xa1\xaf\x24\xab\x4e\x5e\x53\xae\xb3\xb3\xfc\x6b\xee\x2f\x12\x9b\xcc\x9d\xed\x23\x13\xdc\x23\x57\x57\xeb\x0f\x61\x03\x84\xda\xff\x6c\x64\x61\x81\xcd\xe2\xb1\xa5\x50\x21\x7c\x63\x0d\xd4\x7f\x3b\xa7\x21\x28\xa8\x45\x41\x70\xab\x87\xf1\x6a\x5c\x4a\x84\x09\xdb\xf0\x38\xa3\xff\x97\x86\x65\xef\x56\x09\x61\xdf\x4c\x58\xc7\x73\xbf\x37\x25\x73\xf4\x56\xf4\x57\x38\xbd\xfc\x59\xc8\x31\xdb\x59\xc2\xbd\x00\x60\xcb\xc8\x4d\x68\x92\x4e\x2c\xd1\x03\x9b\xea\xad\xde\xcc\x96\xe2\x72\xc2\x39\x3d\xac\xe0\xd2\x8c\x16\x2e\xf5\x12\xac\x8d\x6c\x4c\x37\xe3\x0c\x29\x78\x14\xe1\xb6\xeb\xb2\x23\xa3\x46\x04\x19\xda\x7c\x60\x4a\x86\x72\xbf\xd9\xbc\x16\xc0\x41\xe5\x12\xc2\x79\x64\x1f\xb8\x45\x81\x22\x3c\xf1\x61\x01\x74\x83\x25\x33\xba\x86\x01\x6c\x23\x86\x7f\xc0\x8e\x21\xdf\x7a\xc7\x65\xc4\x57\x0b\x53\xa4\x83\x5d\x4e\x1a\x8d\xf8\x7b\x89\x16\x17\x00\x50\x55\xdd\x91\xbe\x31\x1f\x78\x5e\xe4\x8c\x55\xb8\xdd\x1f\xa3\x6a\xf7\xf7\xda\xdc\x14\x27\x42\x52\x1c\xac\x7e\xf9\x44\x89\x12\xf6\x98\xae\x47\x7b\xa5\x81\x0d\xd7\x55\xa3\xbe\x1d\x92\xfa\xba\x2e\x69\x36\x08\x10\xca\xbb\x4f\x0d\xc7\x6e\xc8\xa4\x29\xc5\x24\xb9\x3e\xa7\xc0\xc4\x8d\xe6\xfd\xb6\x04\xd3\xab\x66\xf7\x05\xfb\x0c\x75\x77\x25\x23\xc6\x85\xe2\xac\x47\xad\xcb\xd6\x1d\xb9\x76\xdc\xc0\x3a\x13\xc6\x5b\x3d\x58\x04\xdb\x92\x37\xdd\x0d\x60\x33\xa8\x30\xf1\x8d\xa2\x53\x70\x6d\x5e\x85\x9b\x91\x84\x48\x73\x46\x02\xd8\x2a\x7c\x8e\x65\x10\x77\x0a\xba\xd3\xf9\x5f\x98\xb3\x28\x8a\x98\x7c\xad\x3e\x86\x4d\x3b\x76\x6f\xc6\xee\x1c\x51\xb3\xfe\x42\xf6\x21\x86\x8b\xd9\xb8\x43\x96\xfb\x68\x04\xa8\xa7\x1e\x82\x69\x76\x00\x36\xdb\x05\x03\x0c\x92\xc5\x60\xb4\x9a\x5c\x22\x91\xa0\x2c\xe3\x6f\x03\x1b\x4d\x4b\x4c\x4d\xba\x74\x2f\x3f\x33\xd2\x4d\x6e\xf0\x10\x00\x5b\xab\x19\x3e\x18\xb6\x80\xbd\x93\xe5\xb9\x97\xc1\xc1\x26\x82\x35\xc5\x59\x04\xdb\xdb\x4d\x91\x99\xf4\x4b\xa8\x8c\x14\x0f\x46\xbd\xbf\x9b\x31\xf1\xaf\xbc\xab\x12\xd8\x96\x1e\x46\x92\x59\x37\x6c\xa2\x8f\x71\x24\x60\x09\xda\x79\xbb\x3e\x2e\x1a\x33\xcd\x9b\xfc\x16\x96\x11\x68\xc2\xf0\x7e\xd4\xec\x5c\x9f\x3a\xff\x9c\xac\xb9\x72\x70\xb0\xde\x3a\x46\x11\x54\xe9\x8b\x0e\x02\x6c\x37\x12\x72\x4d\x6d\xa8\xd6\xd9\xac\x13\x4b\x84\x36\x90\x7f\x8d\xf7\xce\x40\x6d\x08\x36\xd8\x2f\x41\x59\xf9\x17\x93\xdc\xf2\x4e\x8c\x0f\x59\x16\x48\xcb\x50\xac\x0e\x9d\xf8\x48\x04\x88\x24\x29\xd3\xea\xc3\x56\x3e\x79\xd0\xb0\x4a\x8b\x23\x2b\x8a\x99\x7d\x83\x10\x50\x92\x56\x2c\xdb\xf2\xa6\x2b\x4c\x12\x66\x3d\xda\x5d\x9c\xed\x29\xd7\xc3\x26\x5f\xdf\x36\x06\x85\x8f\x31\xd7\xdf\x47\x52\xb9\x7c\x67\x70\xcb\x49\x57\x1f\xea\x11\x8a\x61\x53\xbd\x29\xe5\x9c\x81\xda\xcc\x4a\xa1\x16\x3a\xb0\x14\x7b\x8b\x69\x19\x75\xd0\xaf\x0f\x9a\xa0\x2f\x34\xb4\xc6\xcd\x15\x03\x57\xc8\x75\x41\x94\xce\x15\x8e\xf6\x5b\x15\x14\x6d\xe3\x68\x1b\xee\xd5\x7e\x8c\x5b\x5e\x9b\x94\x60\x41\xc4\xd4\x06\xaf\x6d\x51\xc6\x25\xc3\xc7\xf9\x54\x7e\xdf\x54\xc4\x07\x48\x55\xbb\x0e\x5a\xe1\xf0\x31\x97\x1a\xce\xb9\x6d\x87\x0c\x77\x7b\xf5\xa5\x1b\x54\x82\x7f\x33\xe2\xb6\xbb\x24\x43\x33\x3a\xb7\x0a\x77\x85\x5c\xbd\x90\xe5\xc3\x8b\x91\xb9\xf7\xe5\x03\xd8\xb6\xdc\xf5\xc5\x8e\x34\x97\xc7\x12\xb1\x74\xba\xb4\xf4\xc0\xf9\x1a\x41\xc5\x57\xae\x6a\x3f\xc7\x3e\xef\x61\x33\x7e\xbf\x4e\x89\x9b\x6a\x20\xfb\xc3\xe5\xb3\x16\x7a\xd8\xca\x0e\xf1\x40\x53\xe2\x97\x8f\xc9\x65\xb0\x22\xdc\xa1\xd2\x36\xdd\xbc\x3c\x58\xdc\x73\xd4\x63\x48\x0d\x69\x3a\xe0\xe1\x39\x98\xda\x1e\xa6\x1f\x43\xf3\x87\xbf\xd7\x70\x4f\x05\x9d\x5b\x71\x01\x08\x7a\x7d\x9f\x25\xe1\x10\xb7\x7d\x35\x50\x2b\x4f\x68\x89\xaa\x7e\x38\x59\x8b\xea\x8f\xf3\x6a\x35\xa7\x4c\xfe\xa7\x82\x24\x4f\xe9\x0d\xdc\x4c\x3e\xe0\x85\x23\x78\x02\x36\xfb\x81\x07\xc5\x56\x4a\xa1\xc4\xf2\x29\x92\x06\x81\x21\xa8\x71\x61\xdc\xce\xa1\xb9\x8b\x4d\x20\x69\xb9\x3c\xea\xcb\xa7\xf8\x38\xa1\x54\x27\x17\xb8\xad\x7b\xc6\x92\x89\x34\x19\x0c\xa3\x48\x51\x19\x31\xb5\xcd\xe2\x9b\x5f\xc8\xdc\x06\x2b\x41\xd8\xea\x08\xb0\x5d\xbf\x16\x8c\x73\xe7\x08\xcf\xf7\x57\x95\xba\x64\x7e\x96\x57\x06\x36\x5b\x9b\x83\xea\x47\x39\x1f\x34\x49\xa5\xce\x6d\xa4\x4f\xb6\x04\x3f\x84\x5a\x7e\xc4\x15\x96\xa0\x3a\xde\xdb\x41\x89\xd2\x48\x63\x76\xa7\xe4\xc6\x04\x88\x4a\x5b\xbb\x96\x3b\xd9\x55\x85\xb2\xc3\x39\x96\xf7\xb8\x3c\xd8\x2c\xe3\x1d\x28\x42\x32\xf2\x93\x8f\xe0\x5d\x65\xe2\x9a\x4f\x19\xd0\x54\x92\x3b\x31\x0b\xc0\xf6\xf2\x8d\x03\x83\x3c\xb7\x31\x0d\x3c\xe1\x69\x0f\x80\x6f\xd3\xc7\x07\xea\xc1\xc2\x9a\xd4\x8c\xf5\xee\xc7\x8a\xbc\x84\x0d\xcc\xbb\xd4\x6f\x31\x06\x3e\x16\xc0\xbb\x23\x3e\x97\x57\xe0\xfc\x25\xda\x6e\xa0\x3f\xb2\x1f\xb2\xc9\x6d\xd7\xe6\x58\xfc\xc0\xe1\xed\xc1\x6b\xc7\xb7\x8d\x61\x71\x91\x0c\x8e\x09\x7b\xbb\xd2\x3e\x33\xbb\x11\x41\xbb\xcd\x7e\xe5\x8f\x1b\x71\xf0\xbc\x6a\x49\xe3\xbe\x26\xb9\xcb\xb7\xa7\x48\x72\xc0\xb6\x25\xf8\xd8\x8a\x9e\x3a\x02\x4d\x9c\x96\xad\x9f\xa8\x31\xa8\x7f\x0b\x5b\x7e\x0e\x97\xe6\xe5\x26\x05\x6c\xe0\xe3\x55\xff\xb4\xb0\x45\x5f\x6c\x22\x83\xd3\xa1\x09\x89\xdf\x3b\x25\xf6\x77\x04\x3c\xeb\x4e\xe6\x54\x47\x80\x3a\x0d\x6d\x34\x6b\x6b\x3b\x1b\x25\x2f\x98\x29\xf9\x46\x77\xcc\x33\x7d\xdd\x00\xc9\x65\x9b\xde\xa2\xfa\x6b\x50\xc5\xe2\x7c\x76\xdf\x19\xe0\x9c\x9b\x42\x22\x60\x52\xdb\xcf\xf9\x60\x05\xd0\xfa\xcf\x1d\x52\xa8\x27\x50\x76\x25\xc2\x19\xc3\xc4\x77\x46\x6d\xdb\x29\x38\xef\x40\x83\xaf\x5b\xda\xa0\xb9\x2a\x2d\x6c\x8e\x4f\xc7\x48\x31\x6c\x46\xe5\x1b\x0b\x9e\x8e\xb0\xfa\x25\x96\xe5\xa8\xcf\x2a\xde\x61\x66\xad\x26\xf5\x9c\xaf\xd2\x95\xd2\x65\x9b\x1f\x6e\x63\x94\xa9\xec\x04\x1f\x32\xe2\xf3\x2a\x4c\x1b\xd0\x8f\xc0\xd7\xef\x54\xda\xc4\x54\x9e\xe3\xaa\x6f\x14\x65\xba\xeb\x81\xaf\x50\x2c\xed\xd6\x6c\x37\xd4\x62\xcc\xaf\xa2\xad\x61\x76\x28\x78\x1d\x36\x35\xed\xbe\xee\xad\xcd\x15\x6c\x77\x3a\x86\xa4\x83\xad\xc5\x15\x04\x1b\x45\x38\x8f\x7c\x26\x1c\xb1\x8c\xcd\x9a\x45\x4d\xe5\x39\x68\xd3\x03\xbb\x0d\x46\x4d\x1e\x33\xa3\x9d\x87\x2e\x20\x84\x0d\x59\xb5\x2d\xc5\x39\x8b\x3d\x0e\xd5\xd6\xe3\x97\xf6\xe1\x62\xfd\xe8\x05\xad\xda\x33\xe5\x78\x54\x0e\xf3\xe1\x68\x39\xe1\x3c\xe0\x49\x8c\x96\x45\xc6\xad\xb0\xe9\x8b\x9c\x21\x6c\x92\xea\x15\x93\xd2\xc1\x66\x9d\xb7\xb0\x81\x4d\xfa\xfe\xbc\x47\x5a\xd8\xac\x4e\xbc\x14\x61\xdb\xb1\x46\x68\x1c\xc6\xf0\x31\x3f\x5f\xc1\x8d\xab\xb2\x06\x0d\x33\x25\xda\x75\xfd\xc0\x86\x4b\xe2\x84\x02\x0e\x70\xf7\x8c\xae\xdb\x2a\xeb\x5a\xb8\xe0\xf3\xa8\xed\xe7\xe2\xb5\x7a\x17\x69\x5c\xfd\x73\x1f\x47\x36\xcd\x41\x7d\x0c\xc0\xfb\x29\xa3\x94\x4f\xcd\xd1\x1c\xa1\x40\xdd\xe1\x46\x30\x54\x83\x29\x93\xf7\x19\x36\xe9\x61\xb3\xbc\xd4\xb0\x00\xff\xea\xdb\x27\x3a\x1d\x6f\xeb\x94\xa2\xc0\xb0\x99\x95\x9a\x2e\xc0\x06\xfe\x88\x7d\xb3\xc2\x55\x9e\x05\xd7\xd1\xa7\xeb\x44\xf5\xea\xbb\xa9\x31\x8c\xcb\x10\xdd\xa4\x7c\xf4\xce\xa9\xe5\xdd\xb2\x79\xd3\x24\x45\x3b\xa7\xfc\xbd\x4a\xa3\x8b\x1d\xe1\x94\xd6\xcd\x4f\xac\x4f\x84\xd5\xc6\xb2\x77\x59\xd0\x72\xca\x68\x5a\xb3\x1e\x4a\xc1\x38\xcc\x68\x9a\x4f\x41\x36\x16\x5a\xb1\xfe\x8c\x36\xed\x91\xd0\xb5\x59\x1e\x1f\x09\x94\xf9\xf0\x41\xfa\xae\x3e\xd0\x1b\x1a\xdb\xda\x1d\xaa\x9f\x40\x0d\x37\xa9\xb1\x8e\x11\xbc\x7d\x60\x39\x8e\xff\xd4\x30\x56\x50\x54\x66\x14\x87\x4c\x5b\x34\xa5\x30\x72\x1d\x7a\xa8\xb6\x8f\x4a\xa9\x2b\x8c\xa6\x56\xda\x5e\x1d\x3f\x59\x9a\xad\xed\x11\xbc\x20\xe7\x36\xc3\x5f\x79\xb0\xba\xb0\x18\x46\x35\xa8\x72\xd5\x49\x03\x2c\xb0\x7e\x99\xa9\x41\x19\x2b\x62\xce\x23\x3b\x9d\x09\x15\x5e\x2c\xcf\x68\x5d\x0e\x7b\xe3\xb2\x52\x29\x6d\x93\xd3\x08\x20\x36\xd3\x6b\xe4\xa9\x00\x02\x1e\xe2\x54\xea\xaa\xbf\x2e\xdc\x1b\x1c\xe4\xb6\xd3\x07\xc3\xba\xa3\x10\xb6\xc4\xd6\x6f\x75\xb0\x81\x05\x5d\xff\xeb\xe1\x76\x37\x3c\x65\x94\xb2\x2e\x66\x12\x0a\x14\xa1\x70\x3d\x3e\xf7\x62\xad\x8e\x62\x18\x1a\x8e\x43\xeb\x78\xff\xf7\x44\xf9\x57\x24\x31\xf0\x24\x49\xe2\x4f\xfd\xc3\x55\x9c\xde\xc3\xcc\xf8\x9e\x3f\xfc\xfc\xb8\x9f\x85\x11\x2d\xa6\xd6\xa4\x29\x2f\x86\xd0\x31\x72\x1f\x76\x29\x9e\x11\xf7\x03\xc7\x28\xc3\xeb\x59\x60\x71\xd7\xbd\xf5\x2b\xd8\xba\x42\x18\x6a\xe5\xb1\xba\x0b\xf3\x34\x8a\x0b\xce\xc7\x7d\xea\xeb\x38\x5e\x17\x25\x6f\xb3\x67\x6e\x02\x62\xdf\x60\x31\x5d\x6e\x36\xd7\xbf\x34\x30\xaf\xb8\x89\x47\xfb\xf6\x8a\x44\xd5\x20\x50\x50\x06\x2d\xd6\x22\x94\x38\x37\x9d\xbc\xf6\x51\x89\xa3\xe7\x7d\x59\x83\x72\x67\x9c\x26\x68\xff\xe1\xd2\xf2\xaf\x97\xf5\x84\xc5\x63\xed\x4a\x55\xb5\xe4\x19\x31\x08\x8c\x63\xd4\x61\x49\x96\x07\x3f\x97\x2b\x16\x8c\xeb\x4e\x90\x86\x2d\xcf\x70\x87\x72\xe9\x88\xcd\x0f\x92\x43\xf4\xf5\x11\x19\xa5\xcf\x28\x04\x1b\xcc\xfc\x06\xca\x95\xd0\xb9\x86\x67\x79\x87\x3a\x03\x8c\xf2\xba\x8c\x10\x21\x1d\x31\xa5\xab\x4a\x88\xf4\x63\x6d\x16\xef\xf5\xc4\xf5\x85\x01\x6c\x5f\xaa\xba\x18\xc0\x06\x5e\x5b\x5c\xd0\x86\x8b\xd5\xba\xdb\xeb\x1c\x0f\xc2\xab\x97\x24\x8c\x9c\xd0\xac\xc5\x86\xf0\xa4\x30\xb5\x2e\x78\x14\xac\x5c\x13\x7e\xeb\xc2\x4c\xe7\x9c\x64\xc1\xc2\x2b\x9c\x06\x1f\xaa\x72\x9d\x67\x0c\x83\xf6\xad\x96\x4f\xbf\xbf\x69\xc2\xbc\x2f\x91\x92\x0c\xdf\x90\x2e\x1b\x5c\xb6\xde\xce\x18\x83\x6e\x18\x80\xf1\xfb\xbe\x73\x15\xd6\x24\x7b\x79\xae\xa3\x4a\xa7\xca\xdf\x7a\x6c\x9f\xd7\x26\x37\x12\x76\x99\xae\xbb\x00\x45\x07\xa8\x63\x96\x8f\x6b\x3d\x4d\x47\x02\x44\xab\x67\x0e\x0c\xa7\xdb\xa4\xe8\x7f\xed\xb1\xfe\xef\x9a\x5d\xe8\x5b\x7a\x64\xaf\x54\x77\x57\xcf\x65\x5d\x16\xb6\x3c\x35\xfb\xf1\xdc\x4f\xb7\x1e\xec\x0f\x57\x32\x69\x82\x29\xd5\x1f\x5e\xfc\x3d\xc6\x95\xce\x99\x51\x03\x55\xdf\x4b\xac\xd1\xd6\xc5\x51\x2b\x76\xeb\x41\x51\xa8\xea\x90\x55\xeb\xde\xdc\x2e\xd7\xdd\xdd\xc4\xce\x3b\xd8\xc9\xd4\xc8\x48\x6a\xe4\xe6\x1c\x6c\x11\xe9\x3e\xe0\xda\xbb\x89\x56\x4a\x21\x6c\x93\x15\x2c\xc4\x21\x6b\x66\x22\x62\x03\x6b\x32\x4d\x19\xe8\x15\xe4\xe8\x1f\xe6\xe1\xe8\x3b\xff\xde\x6c\xd3\xdc\x5a\x6f\x72\x84\x9b\xc4\x73\xc5\xd6\x3d\x96\xb1\xe1\x1d\x6b\x4d\x7d\xe4\xad\x73\x9e\x93\xc4\xac\xda\x8e\x02\x6c\xac\x6e\x29\x1c\xaf\x0d\x3f\x7f\xf9\xdd\xb6\x8a\xef\xab\x3d\x2f\x73\x6d\xe5\xd4\x8b\x3d\xeb\x34\x3c\x66\x8d\x3a\x11\xb1\xbc\x18\xf4\xc1\xf1\x21\x8e\x81\xf7\x76\xb9\x4a\x72\x6c\x90\x86\x44\x2b\x33\x19\xf9\xcb\x3f\x1f\x98\x34\x15\x10\x19\x8d\x55\xf2\xb1\x89\x07\x4f\xde\xef\xd4\xad\x6c\xb9\x53\x2d\x47\xb6\x3a\x5e\x6a\x4b\xd9\x43\xf5\x5a\xf4\x6f\x7e\xdd\xc3\x90\x15\x22\x0e\xc7\xad\xab\x80\xfb\xf4\x40\x83\xdb\xb4\x15\xdd\x9e\x6c\xdc\x73\xf7\xde\x94\xe7\x6d\x2c\xbe\x85\x51\x1c\xf2\x26\xbb\x11\x2d\xb7\x54\x2b\x53\xfc\xf8\x4c\x6f\xd1\xd8\x06\x59\xeb\x95\x33\xa1\xe2\x9b\x64\xc4\xd0\x16\x48\x71\x36\x49\xd7\x3f\x34\xea\xd8\xbc\xdd\xf2\xd1\x5d\x5d\x62\x1d\x6c\x1d\x43\xf5\xf5\xc1\x84\x5a\xe0\xaa\x76\x4f\xca\xa4\x98\x48\x72\x63\x35\xc1\x61\x31\x67\xeb\x35\x5c\xe5\x2f\x36\xf7\xd5\xf5\xda\x52\x46\x5f\x6f\xe4\xd5\xff\x9f\xa7\x17\xff\xac\x57\xf3\xdd\xb8\xfe\x67\x3e\xa0\x5a\x3d\x62\xb0\x0d\xac\x31\x80\x49\xee\xed\x23\x33\xb1\xc4\x37\x41\x98\x56\x1f\x7c\xa1\xec\x81\x47\x23\x82\xf3\x52\xd0\x4d\xf7\xa6\x01\x74\x4e\xa6\x72\xdd\x3f\x10\x6c\xd4\x8a\x40\x0e\x57\xf0\x8d\x8d\x47\xed\xd6\x0c\x57\x92\x76\xb0\xbc\x01\x81\x84\x06\x9c\x59\x53\x77\xb0\x99\x10\x76\x90\x8b\x79\x50\x94\xc4\x34\xe1\xe5\xa8\xd7\xd1\xba\xd2\xb1\x42\xf1\x30\x20\xc9\x68\x35\xaa\x30\x0f\x7f\x7f\x1b\x7f\x8f\x30\x95\x46\xa9\x2b\x2d\x0b\x1b\xbf\x86\xf8\x0a\xc1\xd6\x4c\xfd\x32\x09\x42\x09\x73\x54\xa6\x5f\x6a\xea\x6c\x6a\xa4\xf8\x76\x75\x5e\x60\xec\x81\x20\x50\xe8\x5c\x3f\x04\x29\x79\xdc\x03\xe5\x19\x30\x31\x77\x2f\x5d\x0a\xc4\x75\x6a\x19\x1c\x17\xa4\x16\x42\x04\x0d\x43\xcc\x70\x65\x39\x5e\x6b\x13\xf8\xac\xc4\x5a\x0b\x69\xee\x4b\x5f\x08\xfa\xec\xc8\x6a\x9f\x5e\xb8\x84\x8a\xf1\x9b\x5c\xe6\xef\x49\xe8\x85\x0a\xe7\x33\xe8\xee\x89\x3d\x1a\x1c\x3b\x10\xdf\xa0\x8b\x58\xf9\x3d\x4d\x5c\xdc\xb7\x41\x4d\xac\x81\x6c\xd8\x07\x03\x08\x6e\xa6\x07\x96\xe0\xe0\x75\xdb\x3a\x8b\x5a\x6d\x5a\x30\x48\xab\x5f\x89\xce\x04\x68\xd8\x09\x0e\x0e\x0f\x97\x3d\xf5\x4e\x0f\x4b\x55\xfc\xdb\x8c\x2b\xb8\x68\xa3\x99\x07\xee\xef\x74\x49\x32\xac\x59\xaa\xeb\xb3\xa5\xeb\x54\x26\x50\xbe\xd2\x7a\xd0\xad\x03\x8f\xb6\x7a\xe0\x04\x27\x97\x4f\x29\x50\x02\x10\xd7\x94\x9b\xf2\x14\xff\x1e\xb9\xb4\x1d\x84\x08\xca\x6e\x6e\x80\x00\x5b\xdb\x47\x92\x84\x09\xef\x5e\x27\xdb\x28\xc5\x95\x08\x5b\x56\x3c\x3c\x91\x22\x1e\x12\x91\x6c\xb9\xe7\x62\xd9\x69\xa6\xb9\xb1\xfc\x64\x98\x06\x50\x1a\xa4\x4d\xbb\xbc\xbc\x71\xef\x8c\xa3\x20\x90\x19\x00\xa5\x7f\x59\x3c\xea\x15\xcb\x05\xf5\x6f\x30\xc0\xb8\x3a\x4a\xa7\x03\xb0\xc5\xb6\x9f\xa5\x83\xad\x40\x2a\x34\x40\x6b\x5b\xf5\xba\x11\x38\xdc\xe8\xfa\x93\x26\xb4\xa2\xe9\x88\xb3\x9d\x5e\xd9\xea\xb6\x88\xf8\xda\xf5\x69\x57\x71\x96\x6b\x3e\xfd\xb1\xc3\x2f\xd2\xe8\x3f\x15\x27\x13\x28\xde\xc8\x6f\xd8\xe6\x73\x1b\xdf\xee\x33\xec\xda\xc7\xea\xb8\xa7\x30\xfc\x03\x0f\xd6\xab\xd6\x45\x46\xd8\xaf\x8c\xc1\x59\x88\xc9\x27\xe7\x19\xc0\x56\x00\x03\xe6\xa1\xb7\x3a\xea\x88\x0d\x59\x1f\x96\xb6\x81\x30\x58\x8c\xbc\x76\xf4\xf2\xab\x78\x5f\x4d\x7a\x36\xa3\x74\xfc\xe0\xb5\x6e\xcd\x6f\xdd\xca\xb5\xf2\x44\x65\xa8\xfe\x6b\xb5\x62\x14\xbc\x21\x71\x76\xdf\xfe\xfe\xc9\xdb\x0f\xb6\xd6\x71\x1a\xa5\x1a\x17\x6a\x15\xfb\xe1\x71\x6a\xa5\x26\xce\xda\xa7\xdf\xc0\xbe\x89\x52\x39\xd0\xb2\xae\xf9\x60\x6a\x0b\x68\xfb\x92\x28\xd0\x84\x79\x18\x0c\x34\xe6\x8d\xd0\xa8\x36\xb0\x75\x75\x92\x92\x50\x94\x5c\xea\x3a\x72\x51\xa7\x83\xcd\x07\x39\xf8\x5a\xfb\x7b\xc0\xe1\x6f\xe3\x18\x13\xfb\x21\xfe\xea\xbd\x3b\x5b\x2a\x24\x46\xe1\x02\x65\xff\x9d\x99\x08\xd4\x4a\x39\x25\xb6\x19\xb3\x68\x65\xbd\x05\x13\xf7\x39\x58\xa5\x79\x57\x2a\xdb\xf0\xfa\x3f\xcf\xb8\x76\xe5\x4b\x53\x24\xe3\x28\xfe\x08\xc7\xb0\xf9\xbe\x58\x9f\x8b\x5e\x30\xdf\x06\x36\xe7\x45\xd3\xc3\x70\xe1\xe9\xd1\xbb\x4c\x50\x7f\x04\xb0\x12\x67\xd7\x62\x4d\x8a\x2f\x2a\xb1\x69\xe9\x9f\xbf\x3d\x6d\xf1\xe6\x44\xcd\xc3\x87\x56\x7e\x7c\x5e\xae\x54\x8a\x9f\x9d\x29\xa5\x53\xb6\xf2\xe2\xf9\xa2\xd1\x44\x12\xd9\xea\xc2\x91\xa3\x4f\xfa\xdc\xdd\xe9\xd5\xae\x63\xbc\xa5\x65\x7c\xc7\x76\xfb\x1b\x5e\x7e\x57\xf3\xf6\xe3\x69\x4e\x28\x83\x19\xcc\x4b\x7e\xe1\x98\x1a\x89\xbd\xfe\x43\x2e\x14\x6c\x6e\x02\x4c\xee\xdb\x7b\x1e\xdb\x7d\xd9\xfd\x2f\x9d\x51\x5b\x6e\xd1\x89\xa9\x80\x15\x26\x4a\x9f\x1a\x33\x6c\xf0\xf1\x85\x7e\x91\x6e\x62\x84\x02\x99\xa7\xc7\x16\x8a\xc3\x82\x98\x48\xa3\x2c\xec\x8c\x27\x17\x6b\xd9\xf7\x42\xd9\xd6\x7b\xf7\xb6\x2e\x7b\x61\xf6\x80\x2e\xae\x91\x16\xa8\x95\x93\x90\x34\xdf\xf7\x75\x18\x82\x4d\xd3\xe3\x3d\x95\xd7\xda\x67\xee\x06\x4d\xd8\xdf\x8c\xd7\x20\x6a\x53\xae\xeb\x4e\x11\x62\x1b\x53\x64\x7e\xa0\xe5\x32\x23\x37\x53\x53\x53\x37\x23\x29\xdc\x98\xe4\x37\xe8\xd2\x4b\xa4\x3b\xdc\x49\x23\x7b\xd7\x65\xd5\x57\xaf\xae\xbe\xcc\xd8\x4c\x57\xc6\x0e\xc7\x4a\x91\xc4\xe0\x83\xbe\x28\x7a\x86\x4b\x6a\x16\x45\x7f\x3b\x39\x2d\x27\x73\x26\xbc\xb7\xae\xc2\x45\xbe\x6c\x9e\x55\xd7\x7f\x9c\x85\x75\x37\x4f\xcb\xcd\xa4\xbd\xb3\xa1\xec\xa5\xaf\x7c\xab\x97\xcc\x61\x69\xbe\x5b\xe1\xb8\xc6\x5c\x58\xa7\xc9\x92\x02\x4d\x4e\x20\x09\x8b\x51\xb1\x4a\x08\x1b\x1f\xf4\x34\x21\xdd\xef\x68\xbd\xf5\x8b\xa6\xbf\xb1\x68\x24\x92\x14\x94\x4c\xb0\x95\x2f\x6d\x63\x29\x64\xe1\xda\x8a\xea\x67\xb2\x8c\xf6\xc9\x42\xb7\x82\x84\x0d\x3c\x39\xf2\x89\x2d\x2a\x60\xa8\x4e\x6e\xef\x99\x9e\x5f\xe4\xbe\xd8\xd9\x7f\x47\x0f\x2b\x7f\x19\x0b\x17\x00\xd8\xaa\x37\x98\x08\x4d\x35\x1c\xa3\x6e\x5c\x2a\xaa\x00\x93\x13\xe0\x01\x90\xda\xd6\x03\x25\xc9\xab\x3f\xfc\xea\x5a\x48\xf2\x82\x33\x1d\x60\x93\xba\x3e\xef\x80\xea\xd8\x33\xea\xdd\x67\xd3\x05\xd1\xe5\xeb\x80\xd6\xaf\x94\xbf\xb0\xfb\x51\x3b\x7a\x69\x64\xa1\x48\x2f\xc9\x62\x00\xd8\xbc\x1f\xed\xc1\xd1\x85\xea\x07\xbb\x9a\x16\x20\x6c\x30\x62\x6f\xd8\x79\x21\x0c\xb2\xc3\x5e\x8b\xc2\x0c\x1b\x6c\xff\x36\xf4\x05\x72\xe6\x32\xea\x3d\xe3\x23\x0b\x16\xb6\x84\x32\x42\xac\x72\xc8\xee\xe7\xc1\x85\x1c\x36\xe7\x1d\x0f\x10\x6c\x2c\xbf\xbf\x9b\x7b\xc1\xc2\x66\xbe\x29\x1e\x15\xcb\x64\xe2\x9e\xbe\x2c\x1c\xa9\x73\x59\x0c\x58\x49\xae\xd8\x3f\x6a\x94\x7e\xc4\x77\xad\xd7\xb9\x00\xe7\x0a\xf4\x81\x56\x47\x57\xe1\x43\x3d\x6c\xdb\x17\x69\x61\x86\x0d\x5a\x54\x3d\x7f\xf3\x40\x11\x65\x5c\x72\x1f\xf3\x02\x14\x40\x00\x6c\xa5\xdf\x5c\xc7\xd5\x9d\xad\x8f\x24\x14\xac\x08\xf9\xd5\x41\x12\x51\x33\x92\x71\xfc\xa2\x7f\x95\xee\xff\xce\x40\x9a\x27\x03\xc0\x36\xaf\x67\x32\x8e\x24\x0e\x98\xeb\x94\xf7\xfe\xb2\x3c\x1d\x24\x21\x1d\xde\x11\x47\xcb\x2a\x5f\x0f\xce\xdb\x30\xdd\x5c\x0d\x40\x5c\xb3\x37\x26\x61\xd8\xc2\xff\x50\x14\x92\x92\x07\x59\xce\x96\x90\x5e\x6b\xe8\x8f\x73\xcc\x8f\x4d\x08\xce\x51\x20\xde\x37\x19\x00\xa5\x09\x1d\x84\x70\xff\x55\x07\x0a\xf0\xfd\xe5\x68\x50\x84\xe2\xf7\x71\xd1\x38\x13\xe0\x43\xc9\xc8\x02\x2b\xed\x09\x43\xdf\xc7\x5b\x86\xc0\x90\x0c\x26\x64\xf9\x8a\x42\xac\x22\xa0\xd9\x52\x84\x64\xde\xfd\x24\x9c\xae\xb3\xe4\xb4\x3b\x55\x60\xb0\x11\xa4\xf3\xa6\x00\x9c\x01\x66\x55\xfb\x65\x21\xa9\x13\x91\xe5\x6c\x01\x6c\x2d\xeb\xd9\x32\x30\x00\x85\x89\xbd\xb3\x3a\x4f\x63\xe9\x73\x33\x0f\x9a\x90\xb8\x77\x52\xe1\x9a\x94\xd7\x1b\x1f\xcf\x61\xd7\xe9\x02\x1b\x14\x21\x6f\xb3\x34\x00\xc7\x3d\x07\x7c\x6a\x55\x50\x05\xc9\x60\x56\x4f\x9b\x13\x4a\x54\x6c\x88\x69\x74\xb4\x7c\xa1\x48\x41\xcf\x66\xd0\x04\x35\xf3\x8e\x0f\xd6\x69\x7c\x4f\x5e\x51\x14\x90\x94\x09\x2d\xe2\x8f\xc6\x29\x71\x5f\xd2\xfa\x0d\x0a\x20\x97\x3a\x77\x03\x1c\x9d\x76\xd5\xf6\x61\x0f\xb3\x4d\xff\x6a\xb2\x82\xa2\x36\x8a\xf0\x5e\xb1\x11\xd6\x36\x62\x59\x66\x6c\x0d\xe3\xc2\x0e\x1b\x8c\x11\x1c\xb3\x9c\x47\xce\x2b\x55\xbb\xcd\xd2\x02\x12\xce\x61\xb9\xbb\x03\x07\x11\x6c\x0c\xd3\x7f\x98\x7d\x61\xe7\x6d\x30\xa4\x6d\xe4\xd5\x38\x14\x1c\xa0\x0d\xff\xbb\xa0\x0a\x92\xc1\x02\x64\x3f\x75\x10\x60\x3b\xd8\x24\xaa\xb0\xc3\x06\x71\x2b\xf6\x4f\x10\x87\x22\xd3\xad\x46\xe5\xa0\xce\xde\xb7\x99\x05\x45\x2c\xbb\xd4\x9c\xc7\xde\xbe\x8d\x6d\x8c\x0a\xb7\x46\x8a\x27\x5c\xfd\xa2\x0b\xc7\x42\x3f\x5b\xc8\xbb\x04\xb2\x80\x60\xa3\x89\x2e\x6f\x62\x71\x49\x28\xcd\x2d\xbf\x42\x52\x16\x2d\xbb\x09\x53\x44\xea\xa7\x8e\x3c\x84\x8d\x51\xf7\xac\x5e\x30\x13\x86\x16\x84\xf2\xb5\xac\x11\xab\x50\xc7\x1c\xb5\x2f\xa0\x97\x97\x8b\x41\xcb\x89\xc9\x75\xbd\x30\x6c\xdc\xc6\x56\x05\x53\x90\x0c\x46\x04\x96\xde\x0f\x2b\x06\xf3\x4c\x68\xe0\x43\xa3\x42\x8f\x1a\xa4\x36\xd7\x1b\x63\x79\xcc\x8c\x6b\xff\x6e\x57\x20\xcc\x18\xd6\xad\x3f\xdb\x88\x45\xa1\x6d\x1e\x1d\xde\x4b\x0b\xb3\xdb\x0a\x0f\x00\x9b\x45\xb9\xdd\x6a\x2c\x74\xd0\x65\x58\x13\x6e\xa3\x06\xf0\xd1\x5d\x12\x22\x2d\x20\x5d\xa3\xb7\x91\x53\x4a\x07\xd2\x48\x33\x60\x83\x21\x30\x62\xd2\x25\x29\x25\x29\x52\xd2\x29\x1d\x4a\xb7\x74\x8c\x90\x46\x47\x8a\x20\x20\x8d\x80\xc0\xb9\xfe\xef\x87\x73\xde\xf3\x9e\xeb\x5c\xcf\xc7\xe7\x77\xdf\xcf\x73\xdd\x8e\x9d\x39\xa9\x66\x5c\xf7\xe8\xb5\xf1\x77\xdc\x19\xa9\x5d\x1a\x3e\x36\x40\xf5\x34\x63\xf8\x1d\xa4\xf2\x20\x6b\x3e\x14\x0b\x0e\x8c\xdd\xc8\x4b\x94\x19\x5e\x8f\xba\x76\x4e\x1b\xe1\xfd\xc8\x84\x72\xb0\xf8\x85\x9a\xdf\x71\x20\x60\x81\x21\xe8\x0c\xea\xde\xd8\xf1\x3c\x97\x9d\xa8\x51\x6b\xab\x83\xc3\x2a\x4a\x28\x27\xb3\xae\xaa\xa9\x43\xa0\x9b\x98\xd5\x40\x01\x06\xed\xe9\x8c\xfb\x1d\x3b\x4d\xd4\x1b\x2f\x08\x95\xc4\xa4\x8a\xca\x0a\xc8\xc3\x2c\x5f\xbc\x10\xca\x76\x90\xb3\xf9\xf9\xed\xda\x8e\xc5\x7e\xa7\x7e\x47\xa2\x52\xe5\x2b\x61\x8c\x6e\xaa\x3f\x32\x82\x40\xb0\x2f\x78\xd7\x42\xf7\x47\x85\x05\x15\xc0\xe0\xd3\x56\xb3\x5a\xb2\xd3\x3a\x5b\x01\x97\x5b\x21\xd9\x22\x2a\x7d\x9a\xb2\x23\xf0\x75\x42\x18\x85\xd1\x75\x59\x25\xb1\x4a\xb9\xba\x32\xab\x7d\xbf\x49\x2b\x5b\x22\x63\x38\x63\x2e\x6f\x36\xfa\x82\x54\xed\x93\x40\xea\xf5\xb3\xfb\x5e\x1a\xf8\x1c\xab\xe3\xd5\x35\x11\xb1\xe7\xb5\x74\x59\xb0\x5b\xb5\xb3\x9a\x3b\xb0\x0d\xcc\xa7\x83\x94\xa3\x07\xf9\xea\xe2\x19\x5d\x77\x9c\x4a\xf5\x67\x53\x7e\xdb\x24\x6c\xc2\x91\x72\xbb\xec\xdd\xcd\xda\x21\xad\x64\x39\x0b\xb1\x5d\xe3\x0b\x57\xdd\xeb\x8c\x08\xab\x04\x0d\x02\x2f\x8f\xae\x6f\xa4\xbd\x03\x52\xee\xe8\xc8\xad\xe0\x53\xa2\x4a\xd7\x7d\xef\x67\x61\x1f\x85\x0e\xd9\x21\xc5\x4c\x41\x47\x04\xd4\x80\x2c\xff\x61\x2f\x68\x25\x36\x56\x79\xec\x98\x53\x36\x53\x82\xbd\x25\xab\x2f\x49\xc0\xa1\x84\x8f\x89\x6a\xa1\x7b\x94\x3a\xa8\x85\x9e\xbf\x32\xc2\x6b\x21\xeb\xae\xee\xb5\xb4\xda\x93\xea\x66\xf2\xf1\x35\x15\x19\x0e\xff\xbe\x33\xdc\xd7\xc3\xd1\x3b\x3c\x03\xec\x7d\xe3\xb5\x44\x88\xea\xc6\x59\x2d\xaa\xb3\xcb\x19\x90\x85\xfb\x41\x05\x15\xd8\x0b\x15\xfd\xae\x16\xb9\x34\x24\x46\xd1\xf8\x66\x29\x55\xf1\xad\xfa\x8f\xb6\x4a\xb2\xe6\x27\x17\xd6\xfe\x36\xe5\xda\x81\x35\x93\x0c\x33\x77\x4b\x80\x14\xd8\xde\xce\x9b\x89\x60\xa5\x82\xe7\x4e\x9d\x2f\x4d\x56\x5f\x8b\xce\x13\xda\x90\x09\xec\xa5\xb4\x15\x1d\x9a\x2f\x87\xfb\xd2\x7b\x11\x28\xe7\xc5\x01\x8c\x3b\xc4\xd4\x92\x71\x7e\xf8\x3e\x4b\xa3\x23\xc6\x9a\xda\x7a\xd7\xce\xb2\x42\xf7\x7a\xc5\x5e\xeb\x48\x36\x68\x5f\x3f\x76\x4f\x4e\x9f\x67\xfb\x8d\x4f\xea\xd1\x56\xaf\x4c\xd9\xc3\xe4\xe4\x5b\x25\xc0\x46\xe2\x98\xc8\xb0\x76\x1a\xa0\xca\x3c\x57\xb4\x81\x2b\xfd\xe1\xc9\x83\x7c\x51\x75\x5c\x57\x4c\x1c\x11\xec\xb3\xd7\xa5\xab\xe9\xc7\xb5\x65\xf3\x9d\x01\xfe\x75\xb3\x93\xea\xf3\xf2\xa9\xe3\x5c\xec\x18\x0e\x63\x91\x99\x27\x72\xce\xe7\x3e\xd4\xc7\xde\xe1\xfa\xac\xa7\xc4\xe1\x87\x6d\xb7\xfa\xd8\x8c\x12\x04\xda\xd6\x9c\xf9\xe0\xb4\x1c\x3f\xa3\x66\x9f\x07\x7e\x36\x6b\x95\xab\xa0\xfb\x88\x6c\x20\xdf\xa1\x3c\x54\x9b\x78\xe2\xdb\x97\x47\xe5\x34\x3c\x6e\x5c\x9a\xc7\x6d\x3d\x97\x94\xac\x6a\xe9\x39\x7e\xf4\x24\x55\xc7\x21\x73\x77\x56\x2f\x7e\xb2\x1f\xb7\x46\x87\xb9\x4c\x63\xf4\x69\x85\xb4\xba\x9f\x5c\x28\x67\x75\xad\x44\xa4\xd2\x23\x1f\x59\x87\xdb\x4c\xb4\xfe\xb5\xb3\x4d\x7a\x4d\x65\xbc\x2a\xb1\x34\x4b\xea\x00\x8c\xfa\x82\x35\xda\xfc\xdd\x27\xd8\xbb\xae\xa3\x9c\x1d\x34\x9a\x13\xfc\xc0\xc2\x5e\x56\x30\x1b\xa2\x88\xae\xa4\xfa\xf8\x61\xf0\xf2\xfb\xe9\xc4\xfc\x4f\x2f\x40\xd6\xb7\x7c\xa9\xb2\x26\xbe\x8a\x20\xbd\xce\xc3\x41\x20\x33\xec\x03\xdf\xd2\x69\x5c\xff\xb8\xc8\x63\xec\xa5\xe0\xb1\x41\x07\x9e\x40\xcb\x1c\x5b\x91\xba\xe9\x68\xfe\xcb\xbf\xe4\x02\x5e\xdb\xd6\x54\x5c\xee\xe9\xc1\x1c\x54\xa6\xac\x5c\x4d\x29\x82\x25\x97\x65\xb0\xc7\xd8\xc5\x31\x19\xd9\xa1\xb6\x71\x8d\x26\x37\x71\xdb\x5a\xd1\xb6\x3a\xe6\x65\xae\x66\x87\xe2\x63\xa9\x0e\xea\x90\x4d\xd9\x5f\xed\x2c\x1f\xd6\x97\xd4\x73\x33\x99\xe8\x14\x39\xa8\x00\x59\x47\x27\x15\x65\x2d\xc0\xbe\x33\x65\x9b\xe4\x84\xda\x29\x5e\xd4\xdf\x80\xc6\xc9\xfb\xeb\x46\xbf\xa0\x1f\x68\x33\x82\xba\x27\x17\x81\x9f\xf2\x9e\x8e\x34\xac\x64\x7c\xff\x70\x02\x2c\x78\x5d\x30\x4c\x97\xf5\x16\x9e\xd2\xae\x51\x0c\xba\x1c\xe6\xbc\x3d\x09\x19\x57\x29\xf9\xf0\x75\x9d\x05\x51\xc7\x5f\xba\xc5\x13\x8c\x57\xfb\xc9\xb4\x95\x7c\x6e\x6a\x9b\xf9\x97\x8b\x60\x04\xe4\xa1\xe4\x0d\x60\x17\x33\xd3\xd7\xa9\x10\x3a\xde\x75\x1c\x12\x10\x20\xb9\x50\xa4\x9d\x63\x31\x28\x3b\xf2\x33\xea\x03\x85\x2f\xd4\xfe\x4a\xf5\xde\xf4\x38\xbb\x51\x59\x36\x5f\x30\x92\xf9\x5d\xb0\xac\x38\x17\x4f\x4e\xd5\xbd\x78\xa9\x6b\xdb\xf3\x4c\x86\x34\x9d\x7d\x50\x4e\x47\xfb\xa6\x30\x6b\x1d\x30\xce\xfc\x96\xac\x9d\xf7\xe1\x4b\x76\xce\xd0\x27\xea\x88\x84\x6d\x5c\xde\xc1\xae\x1c\x3b\xc3\x43\x6b\x77\x10\xbe\xb7\xbc\x56\xce\xaf\x0c\x74\x8f\xb0\x8a\x53\xc3\x1f\x08\xbe\xdc\xe9\xa7\x07\x90\xe6\x43\x92\xfd\x12\x76\xc0\x67\xfd\x2e\x22\xf8\x04\xdb\x4c\x39\x34\xe8\x11\x9d\x6a\xc5\xd4\xee\xc7\x5a\x7d\x16\x1b\x9a\xb5\xa6\x25\x06\x76\x45\x0e\x9a\x98\xa2\xce\x15\xea\x41\x25\xe4\xaf\x60\xe3\xcd\xf9\xd7\x91\x66\xbc\x86\xb6\xee\xb8\x91\x1f\xc1\xde\x82\x7b\x5a\x8f\x77\x48\xb4\xa7\x93\xb0\x04\xee\x44\xed\xcd\xfd\xfe\x27\xa3\x3b\xc4\x44\x03\xa0\x36\x10\x1b\x68\xe5\xf7\xfb\x61\x35\x2a\xd9\x64\x5e\x84\xa8\x77\x64\xc1\x80\x62\x66\xb7\x60\xc9\xe5\x97\x0c\x3c\xe7\x03\xe1\x6b\xd5\x09\x80\xcf\x72\x2b\x74\x3a\x45\x4e\xee\x84\x44\x22\x03\x8d\x79\x82\xb6\xdc\x91\x98\x54\xca\x65\x96\x5a\x75\xe1\x39\xb8\x08\xc9\xc6\x73\x9e\xc9\x8d\x52\x67\x14\x2d\x8f\x57\x69\xbe\xfc\x40\xb9\xba\x16\x3d\x10\x61\x38\x52\x7a\xca\xfe\xd3\x8c\xcd\x77\x92\x5c\xe6\xc9\xf6\x5f\x71\x3e\xa6\x47\x76\x59\xb5\xf8\x31\xe9\xed\xe3\xfa\xe3\x79\xd4\xf4\x37\x24\x24\xdb\xa3\x19\xc4\x15\x35\xd8\xe5\xbc\x7e\x23\x8e\x0b\x76\x77\x31\x8f\x32\xd5\x05\x6e\xf3\x2e\x7d\xdb\x94\x4e\x93\x45\xc4\x65\x2f\x22\x4f\x26\x48\xcd\x64\x05\xbb\xd2\xd5\xe7\xa3\x35\xa5\x4f\x37\x49\x2e\xc0\xbd\xab\xf7\x88\x2a\x6c\x77\x42\x26\x33\x49\x79\x71\x57\x5a\xf5\x11\x2c\xa6\x5f\xac\xe1\x67\x5b\x42\x2c\xd4\x26\xb0\x15\x2f\x9e\xeb\xc7\x72\xef\xe1\x3d\x5b\xf4\xa7\xb1\x04\x6d\x72\xab\x77\xb6\x9b\x73\xcc\x22\xa2\x4b\x9d\x10\x23\x42\x38\x01\x6b\xe4\x31\x07\x47\x58\x03\xdc\x96\x83\x72\x34\x6d\x3c\xb1\x85\x79\xb1\x0f\x79\xfa\xa7\x9e\x96\xba\xb6\xc8\xf5\xfb\xe7\x92\x31\xb9\x05\x4d\xad\x45\x9a\x85\x5f\xa5\x4e\x56\xea\x69\xfd\xa1\x9e\x5f\xeb\x45\x37\xe4\x24\xef\xc8\xb5\xd3\xab\x57\x6a\x7a\xff\x62\x6e\x89\xda\x0a\xee\xbd\x4c\x45\xbe\xaa\x1d\x49\x7c\x4f\xe2\x65\xdd\x8f\x89\x4d\x75\x68\x25\xb6\xe0\x93\x97\xdb\x24\xd6\x3e\x30\x5d\x53\xbf\xd7\xf3\xde\xad\xdc\xd2\xb8\xc5\xd3\x7f\x6a\x48\x43\x53\x19\x20\x25\xfc\x4d\xde\xb4\x6c\xde\xbb\x1a\xca\x37\x6b\xff\xea\x5d\x98\x56\x84\x61\x5a\x43\x7e\x1e\xc6\x1b\xab\x59\xb4\x4a\xb0\xc1\x3f\x25\xc0\x91\xd4\xd0\xaa\x50\x30\xa4\xc5\xc9\xed\xdc\x4f\xdd\xcf\x33\xc8\x5a\xf8\x60\x5e\x2e\x4c\x8a\xf0\x44\x30\xc2\xfb\x2c\xc9\xce\xe9\x2f\xf0\xd6\xee\xed\xc0\x1f\xe5\x1c\x34\xe8\x53\xe1\xfb\xba\x06\xf8\xcc\xfd\x1b\x2a\x32\xd4\xc5\x28\x0b\xb5\x91\x2d\xfb\xa9\xbd\x69\x92\x01\xdd\x93\x05\x0b\x6f\x51\x26\xa7\x24\x0e\x91\x0c\xa5\x63\xe6\xd9\x38\x63\x9f\x84\xf4\x6f\xab\x3b\x15\xd5\xcf\x02\x6c\x3d\xa5\x03\x7a\x2d\xd3\xac\xf7\x17\xfd\xe7\xdf\x1a\xf2\xab\x45\x7a\x71\x1e\xbe\x96\xb9\xca\xb7\xea\x8f\xf3\x5b\x67\xc0\x72\x6f\xa9\x4b\x74\x47\x90\x8a\x9d\x91\x7f\x2e\x5a\x7d\xb0\x75\xdc\x15\x3f\xd3\x1e\xc0\x20\x24\x70\x76\x1d\xf8\x74\x43\x91\x9e\x04\x24\x24\xb5\x0f\x4c\x41\xe1\x1e\x28\x7d\x11\xf2\x3a\x5d\x68\xfb\xcd\xa2\xf0\xd4\x90\x16\xb5\x01\xa1\x1c\x36\x87\xdc\x40\xe9\xa2\x69\xb1\x00\xd6\x05\xa9\x2d\xbd\x2f\xf2\x36\x32\x9f\x5d\xc6\x67\x0a\xd4\x93\xd5\x0f\xb4\x83\x9c\x58\xcb\xc6\x04\x6d\x50\x51\x83\x5f\xfc\x3d\xcd\xf9\x98\x8b\x05\x49\xa8\x6d\x20\xb7\xae\x64\xc8\x92\x8f\xb1\x8c\xe4\x8d\xd2\x17\xc1\x2c\x8d\xdf\x04\xbe\x3a\xb2\xb2\x39\xc7\x6e\xb7\xec\xbc\x27\x6d\x2b\x9e\xec\x30\x56\xfa\x43\x4b\x37\x12\xd3\xc1\xe1\x09\x76\x0b\x16\x50\x9a\xf0\xc6\x85\xad\xf1\x14\x45\xc6\x97\x75\xef\x3f\xff\xa6\xdd\xab\xe1\x8d\xb1\xa4\xf7\xd5\x53\xd0\x98\x02\x93\xce\x74\x3c\x4e\x64\xee\x97\x3c\x4a\x10\xc5\x00\xdb\x25\x3c\xf3\x51\xb8\x3e\xf6\x80\x07\x2b\xcf\x53\xa5\xf6\x1c\x53\xf7\x35\x67\x2c\x04\xd7\xf7\xa7\x44\xa3\xaf\x6a\xd9\x5e\x58\x95\x53\xc2\xec\x89\xba\x8c\xa2\x72\xc5\x12\xe3\xc6\x14\x54\xa9\x48\xf7\xcd\x07\x4c\xed\x76\x66\xb6\xd4\x5f\x59\xca\x8a\x68\x3f\x83\x5d\xb9\x52\x4e\x7a\xd8\x5a\x8b\xe5\x37\xc1\x74\xdc\xe8\x97\xce\xbb\x39\x52\xb3\x25\xfd\x54\xb5\x94\xcb\x2d\x1c\xdd\x54\xe9\x3d\xe6\x79\xe8\x5e\x88\x92\x2d\x4b\xe4\x0b\xf4\x8f\x15\x45\x69\xcf\x6d\x5a\x34\x26\xd6\x07\x75\x35\xe6\xfd\xea\x66\x36\xc2\x5a\xcf\x11\x95\x83\xc2\x94\x0c\x40\x48\x27\x5b\x71\x50\x23\xfc\xb2\x28\xe8\x95\x39\x59\xb5\x2e\x73\x00\x38\xef\x23\x6d\x80\x5f\x87\xfe\x4e\xc1\x8f\x40\x60\xb8\xb6\x6d\x10\xaf\xca\x61\x9f\x45\x55\xe4\xbe\x7c\x6d\xbe\xe6\xee\x60\x17\xd4\xc6\x44\x4d\x91\x25\xf3\x4d\x88\x3d\x49\xd4\xe6\x58\xd4\x63\x95\x44\x51\x16\x2d\x63\x21\x82\x10\xf8\xfa\x6b\xe4\x50\xaa\xf8\x42\x25\x71\xd8\x73\x7e\x8b\x39\x09\xcd\xa5\xf8\x9a\xe5\x8a\xa1\x5e\xe2\x71\x6b\xbd\x36\x7c\xbd\xed\xa7\xea\x6d\x9b\x6f\x58\x93\x37\xb4\xa0\x1c\x2d\x3f\xab\xa8\x06\x7f\x81\x97\xf1\x0c\x8d\x14\x6f\x9d\xfc\x2b\x9e\x1b\x17\xea\x2f\x3b\xbc\x9f\x7a\xa1\xeb\x8b\x69\x4c\x93\x73\xdc\x1a\x13\x7e\xbc\xf4\x6d\xef\x6d\x2b\xf3\x63\x02\xdc\x77\x6a\xb3\x31\x2d\x9c\x8e\x84\x60\x6b\xad\x6a\x92\x97\x63\xb0\xf0\xe6\xaf\x2d\x85\x5d\xb5\xe9\xe6\xae\xa8\x93\x88\xdc\x2a\x66\x4b\xac\x42\x88\x93\xc5\xbc\xb7\x5c\x90\xb2\x4c\x8d\x61\xda\xc6\x56\x21\xd0\xd1\xc2\xf4\xc8\xfd\xe9\x87\x6a\x78\x2b\x71\x7d\x62\xbc\xef\x57\x4e\x57\xb1\xb0\x7c\x4e\xe9\x24\xbf\x3b\x82\x84\xe5\xba\x0b\xdc\x81\x85\x7d\x3f\xcd\x13\xbc\xfe\xa0\xe5\x28\xd8\x35\x25\x8e\x44\x16\x84\xf7\x12\x68\xb6\xd0\x6b\x3c\xbc\x6b\xee\x29\x15\x60\x33\xbb\x51\x02\xb2\xe0\x99\x3d\x1d\x69\xe1\x70\x0a\xa4\x50\x2f\xa3\xad\x84\xec\x47\x9b\xf9\xe9\x09\xde\x18\x0d\x21\xfa\x23\x8c\x76\xf5\x4f\x57\x48\xaf\xf0\xa4\x20\xe8\xcf\x76\xf0\x67\xfe\x91\x55\x16\x03\xe9\x21\xe3\x5e\x31\xdf\xac\xaa\xbf\x8a\xb3\xc9\xd2\x07\xcf\x4f\x73\xc8\x3d\x1d\x76\x62\x4e\x57\x16\x68\x60\xc7\xb2\xf9\x06\xd6\xf8\x1d\x86\xd9\xbd\xf3\x9d\x38\xe4\x6e\x58\x1f\xd5\x13\xf6\xe1\x6b\xfc\x35\x1e\xaa\x79\x3a\xd2\x80\x57\x36\x5e\x44\xb9\xbb\x47\x3d\x47\x8f\x1b\xce\x4e\x9c\x31\x34\xcc\xf8\xd0\x5c\x27\x2e\x2c\xcb\xee\xd5\xbe\xaf\x4d\x6f\xe8\xd5\x47\xab\xd2\xeb\x8c\xe2\xa1\xb2\x9b\xac\x4b\x47\x04\x20\x0d\x01\xce\xa9\xe7\x6d\x75\x34\x9c\xca\x1c\x46\x4f\x5b\x19\x55\x29\x8a\x39\x64\x33\xdd\x7e\x7d\x87\x52\x05\x72\x8b\xd8\xb5\xf9\x93\xec\x55\xcc\x77\x20\x99\x63\xcd\xbb\x3c\xa0\xde\xd6\xb8\xa8\x73\xd0\xc1\x1b\xa2\x89\xd1\xd5\x71\xb4\x51\xb3\x5f\xc1\xe4\x4a\x56\x34\xa4\x61\x3a\x95\xaf\x3c\xad\x30\xb9\xae\xd6\xee\xac\xc8\x70\x8a\x9c\x04\xd6\xa5\xd9\xed\xb6\xe7\x4f\x22\x38\x95\x4f\xbb\x2e\x93\x55\x10\x3d\xf4\x6e\x1b\x5e\xf9\xda\x35\xea\xf5\x9d\x82\x58\xcb\xa8\x67\xeb\xd3\x43\xee\x82\x12\x33\xf2\xaf\x7c\x2b\xaf\xb7\x6e\xae\xd9\x68\xf8\xb6\x66\xab\xcd\xfa\xb0\xa6\x03\x17\xba\x35\xdc\x4c\xd4\xe9\x74\x72\xf5\x84\x86\x3e\x5c\xd8\x4b\x37\xb0\xbe\x4e\x15\xfb\xfd\x70\xf8\x06\x54\xb1\xb1\xd9\xa1\xe5\x78\x5b\x54\x22\x0f\xc2\x3f\x4a\x78\x3f\xe3\x73\xf9\x66\x45\xa4\xb5\xdd\x46\x25\xf7\x3a\xd7\xd3\xd5\x1f\x56\x54\xfa\x64\xdb\xcb\x6b\x66\x84\xa5\xf5\x1a\x9f\x4a\x0c\xe9\x66\x2b\xc3\x55\xe9\x4f\x17\xef\x4f\xbd\xe8\x8a\xa9\x5e\x9c\x1e\x2a\xff\xf3\x40\x46\x9f\x5c\xde\xc8\x27\xd0\x5c\xe4\x93\x3b\xf5\x2b\x33\x96\x29\x10\x5d\x83\xa6\x9b\x4d\x5a\xae\xa4\x75\xbc\xe3\xd3\x0e\xf4\x9e\x75\xfc\x6a\x20\x5e\x61\xbb\x52\x35\x23\xf0\x92\x9b\x90\x4e\xa2\xe9\xa7\xd0\x72\x6c\xce\xa0\x10\xbb\x33\x2f\xe8\xb8\x96\xb6\x96\xd1\xeb\xc2\xd7\xb0\xae\xbc\x8e\x72\xb7\xa4\x1a\x64\x5c\x7e\x40\xab\xfa\x4c\x9f\xe6\xaa\x0a\xcd\x70\x79\xe6\x42\x54\x38\x5f\xf2\xca\xdf\x25\x3e\x16\xe1\x08\xb1\x68\x3d\x8f\x1b\x14\xc5\x1a\xb1\xf3\xa7\x4b\xfb\x0e\xf4\x50\x8d\xd6\x71\x2e\x5d\x08\x4d\x9b\xa7\xd2\x4e\x13\x66\x6e\x88\x59\xe6\x3b\xb4\x2e\x32\xe2\x04\x12\x73\xce\x0e\x08\xfa\x73\x22\xa1\x1f\xf1\xee\x74\x97\xbe\xb3\xac\x18\xde\x1a\x91\x48\x6b\x69\xb5\x51\xe2\xca\x9f\x50\xc6\x3b\xac\x5f\x9d\xca\x54\x3b\xc6\x5e\x08\xd3\x2b\xb6\x6f\xad\x98\xfc\x19\x42\x76\x70\x30\xc1\x50\x83\x0a\x6c\xb5\xf7\xa7\x8e\x22\x9d\x08\xa9\x39\xdd\x0b\x4e\xfc\x6b\x24\x60\x2e\x78\x51\xea\x3e\xde\xb1\x34\x11\x1f\x18\x6d\xb6\xc6\x7f\xcd\x60\xcd\x74\xad\xf3\xe9\x6a\xd7\xee\x7b\x9d\xd4\xff\x70\x6b\x43\xf1\xa1\x3e\xe6\x62\x26\x30\x3d\x19\x7b\x77\xdb\xe2\xfb\x6d\xbd\x51\x21\x38\xed\xdf\xe6\x4f\xa8\xda\x50\xee\x15\xdf\xf9\x89\x77\x14\x44\x70\xc1\xe7\xa5\x81\xf9\x9a\x35\xd3\x22\xd6\x70\xa1\x2c\x6f\xe5\x8c\xad\xba\xf0\x91\x17\xf1\x6d\x36\x30\x04\x7f\x21\xd4\xbf\xd6\xb7\xe1\xc4\x3d\x74\xaf\xe7\x45\x15\xe4\xe5\xd3\xfb\x90\xf5\x50\xb8\xc1\xac\x9f\xa7\x92\xe6\xe4\xba\xd3\xd5\x70\xcc\x15\x5f\xc4\xdf\xa1\xcd\xc9\x27\xa2\x7c\x75\x97\x52\x4c\x36\xa8\xf0\xf8\xc5\x0f\xd0\x69\xd7\x04\x27\x88\x07\x5b\x02\xe6\xd9\xa7\x3b\xeb\xc0\xfd\xfa\x88\xf8\x12\x07\xd7\xa0\x0a\x55\x6d\x05\xd3\x1c\x93\xdf\x38\x48\x0a\xef\xde\x3c\xba\xbb\x20\xcb\xc3\x48\x23\x57\xe2\x34\x65\x00\xe1\x09\x47\xa7\xa7\xd0\x2f\x08\x70\x3b\x8d\x2a\x3f\xd4\xfd\x61\x93\x91\xde\x14\xbf\x2e\xff\xa2\x2e\x5a\xd1\xd8\x53\x46\x95\x2e\x67\xa3\x22\x9c\xeb\xde\xeb\x74\xe2\x59\x41\xb1\x71\x16\xb9\xcc\xd4\x74\x43\x08\x3a\x42\x80\xfe\x78\xd8\xeb\x99\x3f\x9e\xa2\xb1\xbe\xb3\x1f\x73\x54\x31\xdd\x1d\xad\x4c\xe8\xf8\xd5\xec\x49\x41\x42\x66\xe2\x11\x3a\xec\x9d\x66\xbc\x11\x5b\x14\x78\xd6\xfd\xe6\xbc\x95\xfe\x9e\xfe\xfa\xd2\x55\x15\x23\xaf\xd2\x1b\x76\x4e\x29\x27\x97\xb4\xb3\x74\xb8\x77\xf7\x22\xbf\x91\xa6\x18\x01\x7f\x8c\xd0\xe1\xa1\xae\xe1\x73\xec\x9f\x79\xd5\xa7\xea\xe8\x26\x82\xda\x47\xca\x82\x96\x6e\x37\x6f\x8f\x69\xe5\x42\xeb\xff\x08\x66\xa8\x35\xbb\x97\xf1\xd0\x51\x7e\x37\x93\x1a\xa3\x2c\xcb\x6f\xb4\x5f\x3c\xa9\x80\xb3\x95\x70\xe9\x40\x36\xe1\xb6\x4c\x30\x32\x7d\xf8\x7a\xff\x23\x27\x42\xd6\x66\xa5\x20\x43\x22\x07\xf2\x34\xb1\xc3\x5b\x94\xc8\xc7\x99\xde\x9f\x71\x5a\x69\x9c\xfc\xdb\x9e\x6b\x49\xe8\x70\xd6\x2a\x81\xdb\x91\xa4\x29\x56\x7f\x40\x68\xfe\x45\xdb\x50\x22\x63\xb4\x87\x78\x1d\x84\xec\x6c\x12\xd0\x75\xb1\x7f\x37\x9d\x3a\x92\xba\xd2\xfd\x8e\xc9\x04\x2c\x90\x14\x91\x8c\x58\xff\xc1\x29\x4a\xb5\x8f\x52\x51\x8d\x07\x5f\xc3\x8a\xa3\xa8\xbc\x4a\x0f\x26\xeb\x49\x53\x69\xb1\x3d\x21\x44\xd5\xbb\xec\x8f\xd5\x69\xda\x8d\x7a\xd6\x0b\xd0\xd0\x7d\x76\xf0\xed\x26\x72\xeb\xb6\x7e\x8b\x28\x4c\x7d\x2f\xfe\xcb\x58\x4a\x11\xa0\xf7\x1b\xba\x35\xef\x6d\x80\x48\x29\x95\x82\x5f\x76\xa8\xe5\x72\x3e\xc2\x66\x8e\x9e\xe6\x86\x15\x0f\xaa\x03\xcb\xe5\x7e\xb7\xfd\x41\xd4\x39\xfa\xb7\x35\x8f\x95\xd8\x42\xf7\x83\xfd\xbc\xf1\x66\x1b\x86\xbd\x75\x67\x85\x52\x9d\x46\x16\x8a\x5b\x60\x94\x39\xc2\x2a\xe9\x81\xee\x5c\xf6\x4e\x67\x62\x65\x77\xfe\x03\x1f\x77\x7b\x06\x2f\xce\xc9\x70\xee\x33\xaf\x46\xd7\xe0\x50\x6b\xa7\xef\xd4\x4d\xc2\xc7\xd3\x24\x2c\x12\x65\xf9\x5b\x5b\xb4\x3a\xe8\x61\xe4\x5f\x5c\x1a\x5d\x7d\x7e\x5e\xe1\xe2\xce\x06\xc7\x4b\x8b\x21\x70\xc1\x8d\xa0\x69\x49\xed\xeb\x04\xea\xf6\x73\x15\x6a\xef\x89\x8b\x1d\xe6\x29\x11\x42\x06\xc9\x6d\xa7\xc1\x46\xf0\x8a\x3c\xdf\xe6\x66\x61\x81\x33\xb5\x9c\x85\x24\x8c\xf3\x9a\xf7\x05\x7f\x62\x5f\xb4\x7b\xf3\x99\xbe\xfd\x72\x51\x76\xf2\xe9\xc7\x66\x42\x8a\x2a\x63\xfe\x6b\x24\x99\xf9\x70\x34\xbc\x39\x0d\x6d\x33\x6c\xd3\xa8\x76\xd4\xb1\xa3\x7f\xc3\x23\x41\xa0\x52\xf3\x05\xe9\xb4\x1d\x50\x45\x70\x24\xea\x5e\x48\x86\x8a\xae\xe3\xa0\x14\xf7\x8b\xcc\xe0\xa0\x29\xdd\xb1\x21\x58\x9a\x2f\xf4\xd7\x4a\x5f\x2a\xc0\xc5\x0d\xdf\xfb\x9c\xb0\xbf\x4e\xeb\xdc\xde\x17\x17\xd1\xf8\x86\xb2\x59\xab\xc2\x7c\x0d\xdf\x39\xe4\x47\x6f\xa6\xb8\x90\x53\x4b\xa2\x69\x9f\x3a\x5d\x8c\xbe\x51\x0a\xa6\xb6\x0e\x76\xb2\x5d\x0d\x5e\x10\xf8\x8d\x77\x86\xff\x58\x02\x7d\xa2\x38\xff\x24\x89\xd1\x19\x8b\x5d\x5e\x8d\x71\xcb\x47\x97\x06\x90\x31\xd9\x14\x0a\x16\x2c\x14\xfb\xe0\xc9\x3a\xaa\x7c\xc4\xfc\x6d\x93\xa7\x39\x5c\x27\x1d\x79\x15\xc0\xd3\x73\x49\x7d\xb7\xe0\xd6\x0f\xb3\x71\x21\x44\x18\xff\x3d\xce\xa3\xa5\x66\x95\x49\x56\xf2\xc6\x1e\x6b\x32\xcf\xf1\x03\x72\x8b\xda\xbb\x10\xb1\xc2\x92\x16\xf2\x64\xdd\x3f\x6e\xeb\x72\xdd\x56\x00\x0b\x13\x2b\xe5\x56\xe1\x37\x85\x3b\xc4\x79\x22\xfd\x95\x4b\xb7\xf8\xce\x94\xac\x4b\xca\x6a\x7c\x1c\x11\xae\xc5\x2f\x89\xc9\xa6\xc8\xb2\x4b\xec\x64\xe6\xc7\x0a\xdb\xf0\x9c\x2b\x4c\xcc\x24\x35\x73\x01\x7b\xa2\x7f\xcb\x74\xcb\xe8\x85\x68\x96\xc5\x85\x23\x2e\x7a\x22\x44\x04\x5c\xce\x6f\xba\x89\xb1\xa3\x19\x5d\xb2\xd0\x25\x80\xc8\x2e\x0b\x97\xac\x07\x7e\xc5\xb9\x52\xfd\xc3\xf0\x08\xf8\x6b\x85\x41\x4b\xf4\xdf\x47\x14\xd6\x94\x71\x7c\x2c\x87\xdc\xe1\x7d\x1c\x26\x3a\x2d\xcd\x05\x90\x48\x2a\x36\xb9\x9c\xed\x44\x02\x5a\xbf\x5b\x3b\x1a\x0d\xa6\x4f\x01\x5b\x7b\x70\x1e\x11\x0e\xe5\x55\xc2\xeb\x02\x64\x1f\x1d\xc5\xd8\x4c\x0f\xf9\xbe\xd3\x40\xc1\x17\x11\x66\xcb\x57\x87\xbe\x33\x95\xaf\xf4\xa7\xff\xe8\x28\xcb\x1c\xb8\x8e\x4a\x28\x35\xa9\xff\x64\xee\x3a\xf9\xfa\xc8\x2c\x80\x76\xf9\xf4\xae\xf0\x50\x0e\x7f\x94\xca\x99\xf7\xe1\xc9\xb2\xd3\xf8\x86\xa7\xe1\x59\x9e\x99\x84\xd8\x0d\xa5\x52\x82\xc2\x76\xe1\x00\x62\xb9\x6f\x82\xd2\x9a\x8f\xa7\xc1\x78\xab\x58\xb0\x43\x74\x23\x71\x02\x5b\xaf\xf5\xb2\x84\xac\xb6\x27\x19\xdf\xca\x7d\x61\xea\x3d\xa6\x5a\x8b\xee\xa7\x75\x32\x64\x93\x61\x3e\x91\x84\xc2\xac\xc1\xff\x9c\x71\xb7\xa1\x4f\x1b\x8c\x68\x89\x9c\xfd\x08\x7a\x8b\x6e\xf2\xcd\xe4\x66\xed\x7c\x32\x3d\x4d\x9e\x0b\xc6\x9f\xfc\x6a\x96\x03\xf1\xd2\xa9\x7c\x46\xa3\xb3\x43\xc6\x1a\xa1\xce\x36\xac\x11\xc3\x58\x87\xcf\x64\xad\x16\xcf\xab\x13\x4f\xd1\x5b\x71\x22\xef\xbd\xa2\x49\x92\x85\xc2\x31\x4d\x09\x48\x1f\xd7\x40\xfa\x57\xea\x9b\x0e\xee\xe9\x41\xfc\xbc\x0f\x35\x88\xcb\xda\xda\x08\x19\xc9\x89\xc3\xc6\xaf\x64\x34\xdf\xe4\x43\x1a\x3f\x0b\x94\x98\x22\xa4\x04\x32\xcb\xdc\x7c\x18\xc5\x88\x37\xee\x50\x99\xb0\x52\xf6\x61\x4b\x9a\xaf\x56\xf7\x52\x36\xf5\x2b\xe2\x4a\xc3\xc7\x82\xc2\xf4\x8a\xda\x4d\x7e\x45\x0e\x4f\x19\xe3\x9d\xc9\x69\x33\xbd\xc2\x8b\x29\x8a\x61\x3f\xea\xa9\x25\x62\xe7\xb8\xfc\xe0\xa2\x0f\x58\x1e\x2a\xe4\x94\x70\x96\x95\x73\xd8\x8d\x30\x33\x5b\x07\xfd\x29\xed\xcb\x7d\xc6\x26\x97\x14\x30\xde\x47\x49\xad\x55\xf8\xc5\xa0\xef\xf7\xb7\xcc\xba\x82\x56\xe8\xe6\x5f\x69\xad\xcb\x2a\xca\xfb\x7e\x52\xec\x8a\xb7\x37\x3d\x73\x4e\x15\x9a\x2e\xef\xd5\x8b\xf4\xf2\x37\xcb\x79\x96\x7d\xb8\x09\x3b\x3d\xe8\xcb\x5e\x0c\x21\x95\x76\xcd\x7b\x86\x57\x07\x78\x3f\x5d\xe9\x54\x02\x96\x3f\xb3\xe3\x38\x9d\xad\x4b\xd8\xfa\x40\x04\x1c\xc1\x9f\x25\xa7\x6b\xde\x16\xa1\x5a\xa0\xdc\x58\xd3\x1c\x4e\x6d\xbd\x7b\x19\x86\x70\x9b\x51\x42\x48\xd3\xb8\xfe\x43\x7b\xbe\x55\xfd\x11\x6f\x62\x56\x79\xee\x0a\x5c\xba\xb8\xcf\x36\xee\x9d\xa4\x40\x05\x1f\x1b\x01\x28\x56\x63\xd4\x87\x51\xfe\x1e\xb2\xe9\x90\x51\x67\x3a\xc6\xb2\xb3\x81\x07\x6f\x32\x79\xbb\x40\x0a\x4a\xd7\xd5\x86\x28\xa0\x8c\x86\x6a\xbe\x1d\x5b\x54\x29\x37\x23\xbe\x3f\x13\xee\x1c\xf0\x38\xd8\x42\xcc\x0b\xa7\x91\xf2\xbb\xe7\xda\xb6\xd9\x2c\xf9\xd0\xea\xce\x8c\xf4\x7b\xfa\x1d\xe8\x03\x91\xac\xc9\x95\xae\x5f\x8c\xa7\x52\x23\x0d\x91\x6b\xdd\xee\x55\x42\x8c\x33\xb5\x46\xda\xcb\x47\x45\x8c\xb7\xd3\xdc\xda\xd9\x4d\x4b\x8a\xd3\xa9\x63\xf4\xf1\xac\xe7\xa5\xb0\x9d\x8d\x84\x54\xa9\xb9\xe0\xe7\x15\xbf\x29\xa4\x61\xcf\x53\x96\x49\x7a\x3a\x8b\x6d\x22\x2c\x4d\x32\x67\x0c\xad\x0e\x5d\xcd\x74\xbc\x17\xa5\xe9\xd4\x5e\xd6\x59\xfc\x61\x3d\xf9\xad\xc5\xa3\x46\xf0\xe6\xe4\x5c\x18\x4b\x51\xdc\x59\x55\x93\x96\xd4\xbb\xb2\x7f\xe7\xf3\xdc\x8d\x64\xa4\xdc\x02\x21\xbc\x29\x6e\xdf\xdc\x94\x75\xaf\xb3\xc6\x33\x55\xa5\xb6\xa5\x23\x60\x3b\xc1\x4e\xf5\xcf\x4f\x26\xf1\x7d\x32\x30\x7f\xf9\xd1\x22\x75\xa6\x34\xe4\x8c\x37\xba\x5f\x6c\x7a\xf2\xe9\x49\x8c\x61\xcb\x42\x36\x55\x66\x22\xcc\xd5\x8d\x1d\x28\xc7\x95\x39\x70\x6b\xb0\xc4\x30\xe4\x94\xaa\xe0\xdd\xc7\xe5\xc7\xf6\x17\x66\xa0\x37\xf8\x7c\xc0\xc9\x9d\x54\x82\xd3\x6d\xb9\xfa\x4d\x54\x0e\x52\x56\x33\x59\xd2\xcf\x50\x98\x0c\xf1\xbe\xbe\x52\xf6\x3c\xd7\x7a\x04\x72\x37\x68\x3e\x32\xa6\x7c\x7e\x99\x67\xef\x1e\x9d\xf6\x66\xa7\x7f\x0b\x97\x10\xa1\xaf\xdc\x5d\x3e\xef\x7b\x62\xfe\x28\xae\x31\x54\x64\xa5\x10\xb7\x0f\xb4\xb4\x10\x6d\xdf\xef\x91\xa0\x98\x58\x7c\xe3\x71\x4f\x23\x35\xc3\xbb\xc8\x7a\x07\xe2\xaf\xe0\xd6\x4e\x57\x3a\xa7\xe3\xdc\xd1\x2a\x30\xfb\x07\x0b\x72\xe6\x7d\x68\x7e\xf3\x32\x51\x9f\x74\x6c\x5d\x31\x4d\xe4\xc0\x77\xfb\x32\x86\xd1\x01\xeb\x9a\x21\xe5\x0f\xa3\x1e\xd8\x03\xf6\x11\x63\x33\x67\x8b\xb4\x52\x4c\xb5\x9f\x76\xed\x41\xd6\x30\xb3\x75\xd7\x95\xee\x86\xa4\x58\xa1\xc0\xef\x8c\x29\x41\x1a\xe7\x87\x8d\xcd\x82\x9f\xbf\x46\x4f\x12\x35\x02\x47\x36\x4f\x68\xc4\xac\xbf\x37\x1f\x6d\x83\x5d\x3c\x25\x07\x3e\x55\x61\xea\x89\x38\x9a\xfc\x6e\x1b\xf2\x8e\x3f\xea\x66\xc7\x90\xd3\xcf\x55\xe6\xcc\x0a\x84\x22\x06\x3d\xde\xb0\xaa\x66\x29\x1c\x94\xae\xcb\x33\xd0\x0d\x1f\xb1\x2d\x98\xb7\xb0\xb1\xc0\x43\x38\xdf\x29\xe8\xdc\x45\xca\x1d\xe3\xac\xc7\x0f\x20\x52\x7b\x2c\xdd\xea\xd3\xc7\x88\xdf\x15\xe1\xeb\x0c\x9b\x2b\x9b\x22\x0e\x49\xc3\x71\x4f\xa9\x43\xbc\xf3\x5a\xfc\x5a\xc1\xef\x1a\xc2\x13\x0b\xe4\x6d\x3a\x2f\x36\x2f\xde\x85\xa5\x42\x45\x89\xc5\x02\x77\x42\xb2\x69\x4e\x1f\xf9\x50\xa4\x19\xf0\xc5\x7f\x53\x68\x71\x74\xa0\x08\x74\x99\x4c\xfd\xd2\xf0\xbb\xd9\x9e\x0a\x0a\x33\x19\x5a\xc7\x25\xb3\xb4\x93\x55\x50\xb7\x9a\x8b\xa9\x26\x2d\xb7\x5a\xa8\xbd\xec\xde\x94\x89\x05\xe6\xce\x5b\x6e\x63\x62\xb1\x8a\xc5\x6b\x99\x4c\xa1\x29\x38\xaf\xbd\x29\x51\x3e\x5c\x8a\x01\xe8\x04\xcf\x13\x6a\xf0\xac\xf1\x13\x65\x2d\xf5\xda\x83\x7c\xea\xa1\xae\xd0\x78\xb8\x7c\x7c\x97\x4b\x21\x91\x9c\x9f\x9e\x00\xec\xe0\x9a\x63\xd2\x82\xcf\xd3\xe5\x2c\x60\xe0\xe0\x52\xf6\xee\x48\x73\x32\x60\x41\xea\x70\xc3\xcb\xbb\x90\x2d\x33\x32\xf6\x4f\x48\xbd\xc2\xbe\xe5\x5a\x6f\x92\x3f\xcd\x95\x49\xd0\xa7\x93\x80\x1f\x85\xb8\xf5\x9b\xc5\xb8\x87\x37\x03\xd5\x15\x92\xae\x03\x83\xfb\x7c\x0c\xdc\xab\xa1\x56\x06\xb7\xab\xc4\x76\xbf\x8a\x75\xca\x05\xb5\x23\xab\x72\x6b\x2b\xd4\x91\x1b\x47\x11\x04\x9c\x83\x0e\x8a\x4a\x4a\x77\x1d\x5f\x8f\xe8\xce\xd5\x1f\x8c\x26\x05\x0e\x3e\x5e\x30\x4c\xd5\x4b\x0d\x34\xa0\x37\xd9\x80\x45\xbd\xec\xdd\xfc\x32\x6c\x1a\xff\x65\x38\xc7\x0b\x39\x41\x1e\xe6\x7f\xc3\x4c\x40\x67\x61\xb5\xb2\x45\xd2\x4b\x29\x9e\xc1\x5b\x2f\x6a\xab\x3a\x63\x2d\x3a\xa7\xc2\x94\xa1\xd3\xe4\x1b\xc7\x76\x63\x3d\x90\xd0\x08\xb9\x53\xbe\xfd\xef\xd3\x59\x71\xa4\x0c\x3a\xd2\x53\xd1\xce\xdc\xc8\x05\x00\x00\x8f\x30\x6a\x2f\x30\xf6\x70\x0c\x02\x6c\xe7\x81\x80\x63\x10\x00\x49\x09\xa0\xac\xa8\x84\x94\x28\x10\x64\x08\x94\x06\x4b\x4a\x82\x25\x65\x84\x25\x24\xc0\x12\x12\xab\xc0\xb8\x8e\xff\x15\x70\x41\xdb\xa3\x90\xbe\xff\x7f\x20\xc9\x59\x1a\x0f\x00\x00\xa8\xff\x13\xf0\x44\x23\x31\xde\x70\x0f\x04\x40\xcb\x05\xee\x80\xd0\x86\x3b\xa0\xec\x5e\x72\xc9\x8a\xc9\x89\xc9\x8b\x82\xb8\x24\x25\x80\xd2\xa2\x12\x32\xa2\x40\x49\x2e\x3d\xa0\x2c\x97\x23\x06\xe3\x06\x16\x17\xf7\xf6\xf6\x16\x43\xfd\xa3\x5d\xfe\xa5\xc5\xd0\x1e\x0e\x2b\x91\xfb\x00\x00\x00\xc0\xfc\x4f\xa3\xa1\xe3\x2b\x17\x5b\x30\xf8\x09\xda\xee\x95\x0b\xc2\x15\x03\x06\xeb\xc2\x1d\x10\x9e\x00\x60\xe9\x5d\x9b\xf8\x7f\x98\x7f\xbd\x09\x06\x3b\x22\x50\x0e\x8e\x18\x00\x10\x24\x49\x03\xf0\x88\x00\x00\x00\xf7\xff\xaf\x31\x41\xd9\x63\x1c\xff\x21\x33\x95\x0f\x49\x01\x00\xc0\x83\x7f\x23\xda\x28\x17\x04\xc6\xd7\x0d\x01\xf8\xd7\xaf\xc4\xdd\x5c\x1d\x94\xeb\x8d\x75\xfe\xa3\x47\xdb\x10\xe5\x82\x00\x00\xa5\x65\xe4\xa5\x40\x72\x52\xd2\x32\x26\x5b\xb5\xfa\x00\x00\x80\xe6\xdf\x88\x01\xca\x0f\x01\x90\x80\x42\x53\x0b\x94\xf6\x00\x00\x80\xf1\xbf\x5d\x19\xe9\x6b\x01\x90\x28\x67\x04\x58\x5c\x5c\xdc\xc5\x15\xe3\x8c\x76\x10\x47\xc2\xbd\x50\x76\x68\x57\x4f\xf1\xff\xd9\x59\x1c\x89\x00\x21\x40\xd2\x72\x70\xa0\xa4\xa4\x94\x94\xbd\x3d\x12\x81\x94\x82\xdb\xda\xcb\x01\xe1\x32\x40\x20\x42\xca\x5e\x46\x0c\x65\x87\x16\x73\x73\x75\x68\xb7\x8f\x1e\xfe\x67\x30\x2d\x35\x9d\x27\xd5\x50\x9b\xd0\xff\x0a\x00\x00\xff\xff\x9a\x7a\x42\x7d\xb2\x56\x00\x00") + +func staticImgCowyoMsIcon310x310PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoMsIcon310x310Png, + "static/img/cowyo/ms-icon-310x310.png", + ) +} + +func staticImgCowyoMsIcon310x310Png() (*asset, error) { + bytes, err := staticImgCowyoMsIcon310x310PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/ms-icon-310x310.png", size: 22194, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgCowyoMsIcon70x70Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x97\x79\x38\x14\xdc\xdf\xc6\x0f\x13\x59\xc3\x24\x4b\x59\xf3\x50\xd6\x59\x6c\x19\x64\x5f\xb3\x65\xcd\x6e\xcc\x0c\xe6\xc9\x98\x31\x86\x41\xca\xbe\x6f\xa1\x10\x51\xf6\x44\x64\x49\x0a\x85\x64\x2f\x6b\x94\x35\x21\xbb\x10\xd9\xa2\xf7\xf2\xfc\xf3\x3e\xef\xef\xbd\x7e\x7f\xdc\xe7\x9f\xf3\xb9\xef\x73\xae\xfb\xba\xce\x75\x9d\x6f\xac\x99\x89\x1e\x2b\xd3\x79\x26\x00\x00\xab\x81\xbe\xb6\x39\x00\x40\xf7\x44\x0c\x90\x93\x75\x03\x5a\x07\x00\x38\xe5\xae\x61\xac\x01\x40\x55\x32\xf3\x6f\x34\x1d\x00\x80\xc6\xc7\x5c\x4f\x13\x54\x7c\xe4\x5b\x02\x00\x08\x61\xf4\xcd\x8d\x01\x08\x14\x03\x20\x24\x02\x80\x03\x00\x40\xc8\x22\x00\xbe\x70\x00\x96\x5d\x00\x40\x65\x02\xc0\x4d\x7a\xf8\xfa\xba\x0a\x00\xb4\x9b\x66\x46\x96\x3a\x7f\xfe\xfc\x99\x99\x99\xa9\xab\xab\xdb\xd8\xd8\x38\x3e\x3e\xfe\xf0\xe1\x43\x4b\x4b\xcb\xe1\xe1\xe1\xfe\xfe\x3e\x0e\x87\x63\x66\x66\xce\xcf\xcf\x5f\x5a\x5a\x52\x56\x56\xe6\xe7\xe7\xef\xee\xee\x1e\x1a\x1a\x02\x00\xf8\xf8\xf8\xf4\xf7\xf7\xf3\xf0\xf0\x04\x05\x05\xa5\xa5\xa5\xd1\xd0\xd0\x98\x9a\x9a\xfe\xfa\xf5\xab\xb2\xb2\xf2\xf4\xe9\xd3\x8a\x8a\x8a\x2b\x2b\x2b\x7b\x7b\x7b\x16\x16\x16\x92\x92\x92\xf3\xf3\xf3\x91\x91\x91\x6c\x6c\x6c\xcd\xcd\xcd\x53\x53\x53\xa2\xa2\xa2\xb4\xb4\xb4\xa7\x4e\x9d\xe2\xe0\xe0\x68\x6b\x6b\xb3\xb1\xb1\x61\x62\x62\x8a\x8d\x8d\x7d\xfd\xfa\xb5\xb4\xb4\xb4\x9a\x9a\xda\xbd\x7b\xf7\xe6\xe6\xe6\xd8\xd9\xd9\xcd\xcc\xcc\x6c\x6d\x6d\x0f\x0e\x0e\xd2\xd3\xd3\x6f\xdc\xb8\x11\x1e\x1e\x7e\x74\x74\xb4\xb3\xb3\xb3\xbd\xbd\xfd\xfb\xf7\xef\x57\xaf\x5e\xc1\x60\xb0\xec\xec\x6c\x46\x46\xc6\x1f\x3f\x7e\xf8\xfb\xfb\xb7\xb6\xb6\x0a\x09\x09\x7d\xfe\xfc\x39\x26\x26\xc6\xd3\xd3\xd3\xd9\xd9\xd9\xd2\xd2\x52\x5f\x5f\x5f\x5d\x5d\x5d\x5b\x5b\xdb\xc4\xc4\xc4\xde\xde\x1e\x8b\xc5\x06\x06\x06\x66\x66\x66\x56\x55\x55\x0d\x0e\x0e\xba\xb9\xb9\xf5\xf4\xf4\x9c\x3d\x7b\x76\x7a\x7a\x3a\x20\x20\xe0\xf6\xed\xdb\x68\x34\x7a\x6b\x6b\x2b\x38\x38\x58\x4f\x4f\x4f\x58\x58\x98\x85\x85\x85\x8e\x8e\x8e\x9e\x9e\x9e\x8b\x8b\x4b\x4e\x4e\x0e\x83\xc1\x2c\x2c\x2c\x3c\x7e\xfc\x98\x8f\x8f\x6f\x7c\x7c\x9c\x97\x97\x77\x74\x74\xd4\xdb\xdb\xbb\xac\xac\x8c\x93\x93\xf3\xfc\xf9\xf3\xc6\xc6\xc6\x8b\x8b\x8b\x2f\x5e\xbc\x30\x32\x32\x82\x42\xa1\x61\x61\x61\xf7\xef\xdf\x7f\xf4\xe8\x51\x69\x69\xe9\xf3\xe7\xcf\x9f\x3d\x7b\x56\x58\x58\xf8\xe0\xc1\x83\xc4\xc4\x44\x32\x99\x2c\x20\x20\x20\x2e\x2e\xbe\xb9\xb9\x39\x39\x39\x99\x95\x95\xc5\xc0\xc0\xf0\xf3\xe7\x4f\x15\x15\x95\xd5\xd5\xd5\xda\xda\x5a\x19\x19\x99\x8c\x8c\x0c\x2a\x95\xea\xe8\xe8\xf8\xf0\xe1\xc3\xef\xdf\xbf\x7f\xf9\xf2\xa5\xa6\xa6\xe6\xd6\xad\x5b\x57\xae\x5c\x29\x29\x29\xf1\xf5\xf5\x55\x55\x55\xbd\x78\xf1\x22\x2b\x2b\x6b\x48\x48\x88\xa6\xa6\xe6\xa5\x4b\x97\x7a\x7b\x7b\x5d\x5d\x5d\xcf\x9c\x39\x93\x97\x97\x27\x21\x21\xf1\xee\xdd\x3b\x29\x29\xa9\xf7\xef\xdf\xaf\xaf\xaf\x8f\x8d\x8d\xbd\x79\xf3\x26\x2a\x2a\xca\xc3\xc3\xe3\xdc\xb9\x73\xf5\xf5\xf5\x1d\x1d\x1d\x0d\x0d\x0d\x9f\x3e\x7d\xd2\xd5\xd5\xfd\xf8\xf1\x63\x7c\x7c\xbc\xa0\xa0\xa0\x8e\x8e\xce\xec\xec\x2c\x37\x37\xb7\x8b\x8b\x0b\x0a\x85\x92\x97\x97\xf7\xf3\xf3\x4b\x4d\x4d\x55\x50\x50\x28\x2a\x2a\xf2\xf2\xf2\xb2\xb2\xb2\xaa\xae\xae\x76\x70\x70\x58\x5e\x5e\x86\x40\x20\x24\x12\xa9\xbd\xbd\xfd\xf2\xe5\xcb\x48\x24\x92\x48\x24\xee\xee\xee\x2a\x29\x29\xe5\xe6\xe6\xfe\xf5\xd7\x5f\x9d\x9d\x9d\x1a\x1a\x1a\x08\x04\xe2\xfa\xf5\xeb\x4d\x4d\x4d\xe5\xe5\xe5\x4e\x4e\x4e\x70\x38\xdc\xc0\xc0\xc0\xdc\xdc\xbc\xa2\xa2\xe2\xeb\xd7\xaf\x13\x13\x13\x03\x03\x03\x71\x71\x71\xdf\xbe\x7d\x33\x34\x34\xec\xea\xea\xba\x7b\xf7\xee\xc8\xc8\xc8\xda\xda\x9a\xac\xac\x6c\x63\x63\x23\x1e\x8f\x4f\x48\x48\x18\x1e\x1e\x4e\x4a\x4a\x12\x11\x11\xb9\x73\xe7\x8e\x98\x98\x58\x44\x44\x84\x9d\x9d\x5d\x5f\x5f\xdf\xdb\xb7\x6f\x5f\xbe\x7c\x79\xe1\xc2\x05\x2d\x2d\xad\x94\x94\x14\x6b\x6b\xeb\xd0\xd0\x50\x02\x81\x90\x93\x93\xe3\xee\xee\x4e\xa1\x50\xae\x5d\xbb\x96\x9c\x9c\x7c\xf5\xea\xd5\xe2\xe2\xe2\x82\x82\x82\x3f\x7f\xf4\xe0\x27\xaf\xc6\xf5\x9a\x9e\x36\x88\xa1\xe3\xd7\x07\x00\x30\x92\xf4\x6d\x7d\x00\x00\xfa\xff\x48\xb7\xeb\xe6\x55\x00\x4e\x5f\x36\xd0\xd6\xb0\xbc\xf1\xee\x43\xc6\x2d\x07\x0b\x1c\x4f\x87\x33\xae\xbe\x0b\xb7\x8a\xee\xf6\x66\x11\x43\x6e\xf2\x61\x99\x0c\xce\xf0\xd8\x5f\xd1\x16\x3d\x25\xa2\x2e\xc7\x39\x16\x25\x9e\x9f\xa4\xdf\x18\x1a\x03\xe1\x8a\x8b\xc1\x0a\x4f\x6d\xd0\x42\xd9\xa1\x98\xbf\x9d\x52\xc4\xe9\x6d\x9f\x88\xc6\xe1\x62\x8b\x1f\xe0\xac\xfd\xf2\xc6\x9d\x73\x1c\xeb\x19\xc7\x17\x12\x8e\x97\xf6\x17\x54\x16\x8e\x54\x17\x0e\x73\x77\x03\xa6\x77\x95\x7e\x68\x2c\x06\xbb\x8b\xe8\x8e\xb1\xec\x5e\xcf\x5a\xbb\xfc\xba\x0b\x97\x50\x57\x23\x28\xd3\xde\x92\xb2\x84\x25\xdb\x1a\x91\x04\x64\xa2\x54\xe9\xdb\xb3\x1c\xb8\x59\xda\xbd\xa3\x62\xbd\xe7\xc3\xb2\x1b\x5a\x66\x13\x4f\x6f\x64\xc2\x8d\x12\x2e\x81\xe0\xfc\x96\x9f\x59\x11\x67\xa7\xd2\xa2\xf5\xd0\x7b\x21\xa0\x98\x67\xa2\x94\xd6\x59\xcd\xdf\xcb\x3f\x13\x2f\x70\xdc\xf7\x8e\x92\x37\xc5\x1a\xd2\x2c\x94\xf9\x91\x07\x69\xa4\xcd\xbd\x15\xf6\x9e\x8f\xde\x51\xf3\x82\x79\xb0\x06\x3b\x52\x6b\x99\xeb\x29\xb5\xa3\xb5\x17\x7e\x5c\xfe\xa5\x4f\x37\xa6\x49\x6c\xac\x8f\x31\x18\xe1\xea\x55\xe8\x3c\xdc\x98\x91\xef\x9c\x14\x9b\xe8\x93\xa1\x72\x56\xcb\x27\x6a\x7f\x93\x59\x4c\x7a\xf8\xb0\x52\x3d\xcc\x98\x53\xca\xf5\xf4\xee\x10\xb7\xa9\x91\x51\xa0\x55\x14\x0d\xbe\xde\xc1\x84\x87\x4f\x67\x2b\x75\x74\x95\x3b\xee\x20\xec\xaf\x6b\x19\x45\xfa\x98\x8c\x12\xa4\xcd\xe2\x0f\xa8\x8b\xa8\x5d\x51\x44\xed\x68\xb8\xeb\xec\xa0\xd2\xc1\x19\x5e\x62\xf9\x77\x48\xee\x4c\x43\xe0\x76\xd6\x8b\x95\x91\x06\xaf\xce\xde\xb1\xcc\x26\xf1\x7e\x44\x34\x73\xdb\xf7\xc7\xf8\x83\x97\x2e\x4f\xc8\xef\xb6\xbe\x47\xcf\x61\x42\x97\xf7\x58\x66\xc7\x3f\xcf\x12\xb9\xf4\xeb\x7a\x2d\x5c\x85\x04\x6b\x7c\x77\x82\xfa\x34\x47\x09\x53\xcd\x52\x63\x02\xce\xbd\x2b\xa3\xf2\xc6\xd0\xd7\x05\x73\xcf\x72\x1c\x54\xb6\x08\x87\xab\xd4\x20\x43\xea\x7d\x1a\xd2\x6d\xaa\xa9\xfa\x85\x2a\xd5\xbf\x6f\x37\x6f\x35\xb5\xdd\x38\x07\xfd\x61\xdf\x30\x9d\x82\x2f\x11\xa4\xe3\x86\xb1\x25\x9f\x3d\x73\xff\x7a\xd6\x61\x28\xbb\x59\x67\x97\x90\x66\x00\xc9\x41\xb3\x4b\x8e\x63\xad\x1f\x9d\x89\xe1\x64\xc6\xc5\xc5\x30\x6d\x21\x02\xe7\x53\x9e\x96\x53\xcb\x7c\x1e\x8b\x25\x8f\xee\x5e\x2e\xf9\xa5\x3a\x2b\x35\xb0\xa2\x70\xf7\x83\xde\x4a\xe8\x0d\xd5\x1a\xf8\xaf\x23\x46\xbe\xea\x57\xf5\x1a\x90\x44\x3b\x8c\x10\xb1\x80\x3e\xc9\xca\x54\xa1\xe8\xb3\xb8\xe8\x74\x11\x51\xd7\xff\x5c\x07\xee\x12\x4b\x99\xea\xa4\x45\xe9\x80\xe9\xc2\x2a\xdb\xd7\x42\xef\xe7\xd0\x4a\x8b\x12\xc6\x8a\xbe\x94\xa9\x4f\x33\x96\x6d\xd1\x09\x9b\xee\xb5\x85\x52\x28\xe6\x85\xe1\x26\x8c\x07\xca\x19\xc2\xae\x33\xa5\x08\xf3\x19\x36\x80\x49\xbd\xc9\xec\xd2\x78\xe0\x97\x55\x50\xe8\x21\x3b\xf0\x8a\x6e\xd4\x31\x6b\xe0\x6d\x3b\x69\xf9\xe3\xa5\xf0\xd6\xd9\x77\x8a\x83\x2f\xa2\x8b\x8c\xdb\xdf\x0c\x96\x41\xfd\x98\x1e\xeb\x32\x8e\xdb\xd9\x7e\x21\x30\x79\xae\xe8\x3d\x7c\xde\x23\xbf\xa9\xff\x89\x21\x72\x39\x79\x21\xa8\x35\x3a\x48\x8f\x7b\x4d\xb6\xa7\xfa\x13\xde\xf3\xd6\x55\x06\x19\x47\x0e\xcf\x11\xc3\x1b\x36\x95\xf2\x41\x07\xb6\xbc\x9d\x8a\xca\xa3\x75\x2d\x3b\x49\x9c\x0e\x54\x78\x27\x73\xe2\x56\x64\x12\x6d\x04\x74\xa6\x46\x95\x19\xee\x68\x32\xc0\xba\x9b\x57\x8c\x2e\xbd\xb9\xa3\x21\x13\xf2\x08\x65\x24\xd2\x4c\x53\x28\x0d\x73\x9b\xd4\xd6\x73\xa3\x71\x61\x5e\x86\x70\x0d\x9a\x91\xa0\xda\xbe\xa9\xa1\x37\xbd\xfb\x8b\x1c\xc4\x1d\x10\xdb\xc7\x03\x6c\xda\xe3\x96\x11\x39\x66\x93\x71\x9e\x95\x6a\xc7\x01\x6b\xdc\x07\x06\x95\xbf\x37\x7e\x1d\x5b\x38\xcb\x28\x3c\x89\xe4\x26\xef\x8c\x56\x0a\xcd\x15\x28\x3f\xeb\xcc\x77\x94\xda\x25\xe8\xe6\x39\xb6\x34\xad\xe8\x76\x2e\x89\xd7\xcd\xe9\xca\x3b\x8c\x34\xdb\xfe\xec\xbb\x36\xa1\xcc\xdc\x19\xf4\xbe\xe8\xfb\x9c\xdd\x7a\xcc\x44\x04\x31\x65\x66\x75\xcd\xb6\x6e\xd9\x5d\xd4\x8a\xb0\xe7\x58\x6c\x9f\xc7\x34\xd9\xf8\xb0\xb7\xce\x28\xcf\x2a\x2d\xf2\x69\x8f\x2c\xdd\x46\xd6\x4a\x00\xc4\xcd\x30\x68\xb6\x8e\x65\x2b\x6d\x7e\x42\x7d\x7c\x82\xeb\x4f\x7c\x3a\xe2\x19\x3f\x3b\x85\x98\xeb\x60\xf6\xe8\x5e\x14\x47\x06\x93\xe4\xad\xc8\x02\x1d\x64\x7f\xd0\x64\xdb\x9b\xbe\x88\x7b\x0a\x0d\xbf\xa1\x3d\x3c\x9f\x04\xbe\xf6\xb8\xd8\xe4\x1a\xf2\x8d\x3e\x8f\x30\x4b\x88\x97\x7d\x61\x43\x88\x1c\x4e\x63\xeb\xdc\x8e\x95\x40\x35\x32\xf2\x7b\xbe\x4c\x10\xaf\x8f\x4f\xfc\xa2\x32\x36\x02\xcf\xfa\x46\x14\x68\x75\xc4\x40\xfd\x22\xd4\xb1\x99\x78\xee\xd2\x69\x7b\x5f\xfe\x75\xfb\x76\xca\x77\xbe\x32\xe9\xf5\x07\xfa\x59\x16\xe2\xa7\xce\xbf\x31\xd9\xcd\xa3\xa0\xdf\x3e\x21\x76\x49\xe8\x72\xd5\x55\x08\xc7\x55\x3e\x19\x8a\x95\x6a\x38\xbc\x97\x5c\x7b\x74\xfe\xda\xa9\xf6\xea\x1d\xfe\xe1\x92\xdd\x9b\x49\xa1\x4b\x17\x67\x6c\x84\xef\xec\xd2\x63\x0c\x05\x36\xdf\x52\xf5\x7c\xc3\xd8\x0e\x06\xe3\x6a\x43\xe1\x36\x45\x54\x01\xd3\xd6\xf6\xaa\xc3\x03\xa7\x28\x79\xf2\xe7\x52\xe0\xf3\x3e\xbc\x78\x31\x80\x1c\xed\xa9\x71\xba\xf9\x43\x5e\x49\xac\x77\x1f\x9b\x9c\x4d\xe2\x9d\x55\xad\xfa\x09\xd2\x90\x25\x5c\xf9\x02\xba\x4c\xab\x11\x2a\x44\xee\x1f\x83\xae\x9f\xde\x38\x0e\x35\x0a\x53\x09\x2a\xcd\xd3\x50\x79\x65\xc7\x28\x6c\x1a\xe8\x34\x33\x3b\xce\x94\xd3\xa1\x2c\xa2\x9c\xcd\x4c\xee\x7b\xd8\xac\x9e\xd6\x93\xbd\x8f\xe9\x39\x68\x09\x77\xf5\xad\x55\xac\xcd\xaf\xc1\x32\xfa\xf6\x4e\x91\x7d\xef\x2f\xec\xb0\x6c\x24\x3b\x0d\x94\x50\xe7\x5f\xcc\x87\x5b\xd6\xb4\xad\x59\xc9\xdc\x31\xeb\x52\x8b\xb0\x13\xf4\x37\xa0\xc7\xdc\xad\x0f\x49\x5a\xe4\xf8\xbc\xe7\xc7\x37\x6b\xc8\xd8\x3c\xf4\x71\x94\x75\x22\xff\xcc\x68\xfe\x78\x1a\x9d\xf9\x7c\xaa\xf6\x88\xc0\xc5\xa1\xc1\xa0\xe8\xf4\x6e\x8c\x5e\xfd\x5e\x63\xc0\x41\x89\x0e\xcd\x4b\xff\x70\x6c\x2c\xa4\x6c\x59\xa0\xe1\x81\x58\x00\xe3\x9d\xba\x88\x81\xab\xdd\xfe\x46\x23\xd4\x6c\xda\xaa\x4e\x73\x9e\x7d\x84\x5f\xb1\xed\x5d\x41\x49\xc1\x40\x61\x26\x2e\xb0\x10\xc1\x35\x07\xad\x10\x29\x4a\xfb\xd6\x19\xf4\xd2\x90\x99\xcc\xa2\xcd\x50\xea\x22\x20\x49\xf5\xb5\xbb\x6b\xda\xaa\x20\xc1\x69\x19\x54\xdf\xab\xf9\x9e\x23\x37\x1c\x18\xf2\xf8\xaa\xe6\xe2\x9c\xd6\x50\xd2\xb7\x35\x19\xc3\x9f\x0a\x77\x36\x5e\xc9\x0e\x48\xd0\x61\xf5\x11\x8c\xeb\xbd\xb4\xf9\x74\x3b\x15\x22\x6f\x54\x3e\x81\x18\x2e\xe7\x81\xf0\xb3\xfc\x9d\x69\xdf\x41\xf6\xcb\x1c\xf2\x90\x14\x37\xe1\x0c\x08\xf4\xc8\x30\x91\x2f\xa1\x9b\x8e\x82\x70\x22\x1a\x4b\x48\xdd\x0f\x15\x5c\x2b\x83\xe9\x74\x58\x0e\xe8\x74\xb3\xc7\xfd\xa2\xbb\xed\x6b\x2d\x11\x8a\x0c\x35\x4a\x49\x55\xdf\x60\xf3\x1a\x76\x12\x37\x3d\x22\x7f\x6f\x88\x99\x15\x09\x65\x9b\xe7\x54\x45\xc4\xf9\x3f\x13\x9b\xe5\x8d\x47\xcf\x33\xf6\xc8\x13\x5c\x1e\xbd\x6d\x35\xd8\x1a\xb4\xa3\xa2\xbd\x0a\xba\x52\xb9\x08\xa3\x8f\xca\xa6\x4d\x4d\x5e\x69\xf1\x86\x57\x6f\xe8\x9f\x23\x3b\x2f\xb1\x66\x4e\xb8\x9c\x0a\x85\x54\xd5\xa4\x47\x8d\xa0\x13\xff\x5e\xe6\xb1\xb6\x43\x66\x73\x54\x40\x8e\xd7\x59\x2b\x02\x7b\x1a\x7f\xd9\x5f\x08\x29\x4e\xe2\x9a\x3c\xbc\xa6\xff\xbe\xcd\x00\x2e\x62\xad\xab\xfe\xb6\x35\x8d\xc1\x7c\x6f\xce\x3a\x86\x52\x78\x8e\x67\x6b\xfa\x87\xe1\x29\xce\x17\x5a\x03\xe6\x16\x5a\x6b\x32\x93\x62\xce\x4b\x3f\x70\x6f\xac\x8f\x8c\xad\xb1\xf7\x0e\x33\x92\x25\xf6\x39\xb8\x78\x2d\xd0\x0d\xdc\x1f\x95\x3c\x69\x79\x83\xa4\xab\xe9\x0b\xe2\x68\xaf\x38\x24\x38\xdc\xec\x0e\x86\x4f\x50\xb5\x06\xe5\x6a\x9d\x68\xc2\xc4\x6e\x5e\x66\x38\x4a\x08\x67\x83\x38\x5a\xa4\x5b\xf1\x7a\xd9\x68\x62\x2f\xbd\x7e\x17\x91\xf3\x61\x04\x9d\x6e\x7a\xb1\x2f\x36\xa1\x84\x34\x41\x5a\x54\x3f\x54\x69\xa6\x2b\xbd\x20\x3c\x80\x62\x62\x3a\xd6\x72\x66\x97\x70\xdb\xde\xf6\xca\xce\x89\x5f\xec\x98\x31\x95\x44\xa4\x1e\x85\xdb\xe8\xcf\x3b\xef\x4d\x5b\xbb\xf6\xab\x6d\xd9\x5a\x9c\x16\x90\x08\x2b\xb9\x2c\xb0\xfe\x9c\xcb\x82\x97\x06\x3f\xc0\x18\xab\x5a\x27\xe6\xb1\x7b\x4e\xd9\x4b\xe1\x83\x1d\xcb\x16\x0a\x16\x1e\x9a\xbe\x2c\x5e\x97\xa5\x79\x1c\xaf\xb6\x5f\x34\xfe\xaa\xa1\x61\x7c\x3f\xac\x45\xe1\xb6\x80\xa9\x20\x7d\xd1\xa8\x87\xd8\x21\x8c\x25\xee\x17\xac\x6a\x51\xac\xa9\x0f\x72\x06\x0a\x00\x10\xa5\xe8\xdc\xa0\x60\xd1\x14\x1c\x0a\x43\xc6\xa1\x29\x38\x80\x84\x23\x14\xa4\xe1\xb2\xd2\x08\x25\x4b\x84\x1c\x0a\x89\x44\x21\xe5\x25\xe1\x70\x14\x1c\xfe\x15\x91\xd0\xf4\x7f\x0c\x04\x22\x16\xef\x16\xf0\xdf\x0d\x29\x9e\x72\x34\x27\x9f\xe0\x13\x83\x0f\xd1\x8d\x42\x45\x93\x71\xc0\x80\x80\x76\xc7\x19\xa3\xdd\xf1\x98\x9b\x42\x0a\x32\x8a\x32\x57\xa4\x95\x84\x90\x70\x84\x9c\x34\x5c\x5e\x1a\x81\x14\xba\x8e\x50\x10\xf2\xa0\x50\x48\x28\x18\x8c\x4a\xa5\xca\xe0\x4f\x68\xc2\x3f\xb4\x0c\x91\xec\x3e\x11\xb5\x06\x00\x00\x3c\x27\x89\x96\x1e\xbe\x04\x57\x14\x4a\x9b\x88\xf1\x25\xe0\xbc\x28\x28\x94\x19\xda\x1d\xe7\x03\x10\x25\x7f\x1a\x60\xff\xc1\xfc\x73\x26\x0a\xe5\x81\xc3\xbb\x7b\x50\x00\x42\x09\xc9\x06\xc8\x91\x00\x00\xee\xff\xcf\xd8\xe0\xb1\x14\x8f\x13\x64\xa8\x5c\x98\x01\x00\xc0\xfb\x2f\xc4\x18\x4f\xc0\x51\x02\x48\x38\xf0\xcf\xad\x60\x24\x2f\x77\xb5\x6a\x6b\x93\xff\xc8\x31\xb6\xc4\x13\x70\x00\x21\x27\x7f\x45\x56\x49\x51\x56\x4e\xde\x66\xfe\xf9\xc9\x4c\xc0\xf6\x2f\xc4\x02\x1f\x88\x03\x70\x4d\xcd\x7b\xf9\x57\x57\x01\x00\xd6\xff\xda\xb2\x32\x37\x00\x6e\x78\x4f\x1c\x0a\x06\x83\x11\xbc\x28\x9e\x44\x77\x98\x1b\xda\x0f\x8f\x21\x7a\xf9\xc0\xfe\xb7\x67\x98\x1b\x4e\x09\xa7\x24\xa7\x88\x46\x20\x91\xb2\xb2\x58\xac\x1b\xce\x4d\x16\xed\x8a\x55\x44\xa0\xe5\x11\x08\x9c\x2c\x56\x5e\x06\x8f\x21\xca\x90\xbc\xdc\x1b\xb1\xb1\x5d\x27\x85\x19\xe8\x98\x68\x57\x68\xba\x84\xfd\x4f\x00\x00\x00\xff\xff\x9a\x37\x46\x0b\xad\x0c\x00\x00") + +func staticImgCowyoMsIcon70x70PngBytes() ([]byte, error) { + return bindataRead( + _staticImgCowyoMsIcon70x70Png, + "static/img/cowyo/ms-icon-70x70.png", + ) +} + +func staticImgCowyoMsIcon70x70Png() (*asset, error) { + bytes, err := staticImgCowyoMsIcon70x70PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/cowyo/ms-icon-70x70.png", size: 3245, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImgLogoPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xaa\x07\x55\xf8\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x01\x04\x00\x00\x00\x50\x08\x03\x00\x00\x00\xc8\xbe\xfb\x6d\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\x79\x71\xc9\x65\x3c\x00\x00\x00\x33\x50\x4c\x54\x45\x23\x1f\x20\xcc\xcc\xcc\x4d\x4a\x4b\x78\x76\x76\xa2\xa1\xa1\xc1\xc1\xc1\x2e\x2a\x2b\x62\x60\x61\x38\x35\x36\xb7\xb6\xb7\xac\xac\xac\x43\x3f\x40\x8d\x8b\x8c\x82\x80\x81\x58\x55\x56\x97\x96\x96\x6d\x6b\x6b\xab\xfc\x4f\xe4\x00\x00\x07\x0d\x49\x44\x41\x54\x78\xda\xec\x5b\x89\x92\xe3\x2a\x0c\x34\xf7\x7d\xfc\xff\xd7\x3e\x10\xbe\x0f\x70\x26\xb3\x6b\xf2\x36\xaa\xda\xad\x72\xe2\x78\x4c\x23\x75\x4b\x02\x86\xe1\x6b\x5f\xfb\xda\xd7\x7e\xd7\xa8\x92\x6f\xfd\x9e\x20\xff\xf1\x18\x78\x84\xc8\x5b\x0f\x50\x48\x7d\x3c\x08\x01\x21\xfb\xd6\x03\x10\x42\xe6\xc3\x31\xe0\x69\x0c\xfa\x9d\x07\xe0\xf4\x00\xf7\xf9\xd1\x80\xd0\x3b\x0f\x88\xe9\xf7\x9f\x1e\x0f\x2e\x83\x80\xdf\x0b\x27\x84\xea\xd4\x2a\x85\xa3\x14\x81\x51\x4a\x84\xec\x0e\x04\x8a\xd4\x7b\xcc\xc8\xf2\x03\x44\xc5\xd5\xac\x42\x3b\x53\xb6\x33\x3d\x49\x01\xad\xdf\x21\x05\x93\x10\xb8\x46\x91\x13\x40\x20\x4d\x3f\x86\xf9\x37\x38\x39\x05\xe0\x40\x64\x57\x20\x44\x77\xee\xce\x12\x47\x12\xe8\x64\x2e\x8d\xe3\x22\x9c\xa4\x46\xe1\x02\x02\x86\x10\x3b\x4e\xbb\xb7\xe9\x73\x64\xbb\x81\x21\x4d\x24\x4e\xff\x02\xdf\x01\x10\x03\x43\x47\xd3\x6e\x3f\x20\xcc\x10\x4d\x21\x45\x4f\x03\x21\x79\x81\x12\xfc\xf4\xef\x8a\xec\x0f\x8e\x77\xa3\x90\x62\xc8\x2f\x14\xe2\x22\xf6\xd2\xce\xa3\x06\x1f\xb0\xe9\xff\x09\x13\xb5\x78\x3e\xf7\x2e\x3b\xbb\x3f\x07\x81\xdb\x0c\x41\x45\x5a\xd3\x5f\x65\xbe\x97\x70\xb0\x03\x1f\xa9\x5b\x87\xe4\xf3\x26\xe5\xc1\x28\x7b\x71\xc4\xdb\x89\x32\x9e\xc0\x7d\xda\x70\x8c\x89\x9b\x60\x21\x19\xc8\x23\x27\xa4\x18\x69\xcd\x74\xf6\x14\xdb\x85\x33\x04\xc4\x92\x0b\xe0\x1d\x85\xdb\x0b\xd1\xe4\x62\x7b\x9f\x8e\x29\xb0\x2d\x3a\x56\x0f\x86\x21\xd6\x14\x5e\x9e\x08\x45\xf7\x80\x02\x9e\x9c\x52\x0a\x42\xc7\x11\x56\x5f\xdf\x8d\xe3\xa7\x96\x80\xab\xf0\x70\x92\x72\x26\x0c\xf4\x1d\xde\xf3\x0c\xe6\xe0\x71\xcb\xce\x4f\xe7\x51\xcb\x74\xc9\x36\xaf\x2f\x98\x1a\x27\x4b\x94\xc1\x26\x45\x54\x78\x2b\x00\xfb\x71\x48\x76\x77\x86\x8d\xee\x03\x05\x9f\x83\x9b\x8a\x39\x79\xda\x94\x43\xc0\xe2\xf0\x81\xcc\x44\x06\x9f\xd9\x39\x39\x92\x0e\x7e\xbb\x1f\x2f\xd7\xf7\xbd\x9c\x77\x82\x02\x07\x31\x60\xce\x14\xc9\x5c\x48\x4e\x96\x54\x27\x0f\xdd\xe4\x7b\x98\xe7\xb9\xf9\xc0\x19\xa8\x01\x17\x25\xed\x39\x32\xbc\xdd\x39\x53\x0b\x05\xd5\x05\x3b\x96\x19\xcd\x34\x47\xe6\xc4\xc9\x44\x0d\x08\xe4\x24\xa2\x0c\x37\x31\x79\x80\x3a\x23\x27\x48\x22\x14\x66\x10\xa7\x34\xf3\x8a\xf4\x71\xf5\x5e\x19\xfb\x8b\xde\x20\xf4\x44\xf8\x03\x8f\xc4\x4d\xa2\x29\x0c\xe0\x90\x13\x09\x0c\xc5\x92\x9e\x2a\x4f\x90\x51\x73\xde\x65\x79\xad\xb4\x4e\x2c\x4a\x86\x4e\x4c\xba\x92\xe7\x43\x71\x0c\x8e\x9e\x03\x04\x97\xe1\x3a\x59\xa6\x18\x62\x1d\x17\x04\xfc\x15\xd3\xb2\x17\xdd\x5b\xbc\x57\xc7\xfe\x76\x12\x1d\x73\xb8\xa7\x89\x66\xd4\x8d\x15\xaf\x4c\x49\x23\x19\x5f\x91\x87\x92\xdb\x24\x10\x2a\x75\xa0\x42\xf1\xf5\x64\x45\x0f\x1d\x99\xbd\xf3\x3a\xb8\x36\x73\x62\xd4\x90\x97\x82\x91\xbd\x0e\xdc\x9f\xcd\x1a\x6e\xb9\x6f\xf6\x08\x73\xda\x1f\x09\x3f\x09\xf0\xd7\x43\xe8\x4f\xc4\x81\x1b\xf3\xf8\x5b\x20\xc0\x4d\xa5\xe0\xd0\xfb\x2a\x91\xb7\xda\x4c\x57\x31\x24\x9e\x4e\x9d\x47\x2d\x48\xf9\xf3\x38\xc9\x6d\x10\xc4\x54\x56\x32\xc2\xb7\x5e\xf2\xa3\xf0\x8e\x0f\xf7\x29\x65\x99\x52\x28\x11\x35\xbd\x43\xd4\x63\xa5\x1d\x24\x38\x10\x52\x66\xf3\xdd\x46\x1f\x17\xaf\x90\xbe\xc1\x0a\x4f\x0a\x84\x9f\xbb\x3c\xb1\x4c\x6e\xfb\x65\x00\x35\x56\xa8\x0c\xca\xca\x95\x2b\xeb\x4d\xa2\x24\x96\x46\x03\x9e\xba\x4f\xa9\x22\xa7\xc7\x2a\xd5\xbe\xb9\xfa\xf1\x6e\x15\x99\xa6\x74\xca\x14\x74\xbd\x69\x3a\x83\xa0\x49\xe4\xeb\x0a\xcc\xac\xfa\x13\x6b\x4a\x20\x7a\xf5\x87\x16\xd0\x4e\x96\x2a\xfc\x93\xf1\xb0\x1f\xf5\x9d\xd6\xf3\xee\x1e\xb1\x5a\xc3\xe2\x5b\x62\x25\x68\x05\x82\x29\x12\x9c\x24\x25\x57\x22\xf1\xf0\xd0\xc7\x7a\x8e\x72\x3f\x27\x2c\x5f\xa7\xc4\xf9\xf4\x8d\x4c\xa0\xfe\x08\x42\x4a\x7b\xc3\x32\x54\xb5\xe5\x3b\xb3\x7c\x23\x32\x28\xe3\xd8\x31\xdb\xd7\x58\xf4\x41\x7d\xd8\x77\x35\x72\xbf\x30\x95\x34\xe7\xba\xad\x80\x32\xcc\xb6\x40\x4a\x18\x2c\xd7\x78\xdb\x6e\xc4\xcb\xc8\x70\x6e\xc4\x31\xb7\x5c\xba\xbd\xe4\x3c\x57\x40\x90\x99\xe2\x26\x62\xa3\xa5\x36\xc0\xe7\xfc\x91\x5e\x15\xaf\xbd\x87\x67\x4a\xb0\xc3\x05\x08\x7c\xf9\x0a\x27\x77\xf1\x2b\x97\xd7\x74\x9f\x81\xd1\xe7\x48\x21\xb7\xcb\xa8\x5f\xab\x5f\x9e\xea\x73\x91\x60\xa0\x04\x71\xe9\x96\xcb\xdc\x58\x5a\x4f\x21\xde\xa5\x09\x81\x2d\x78\xd0\x35\x45\x0c\x5a\xed\x11\x7e\x10\x84\xa2\x91\xca\xf9\xc4\x57\x85\xba\x01\x8a\x53\xc1\xf2\x2a\xfb\xf3\xd8\x8d\x26\xc4\x41\xf9\xad\xf0\x96\x63\x76\xf3\x3b\xc5\x83\x49\x35\x45\x5c\x3c\x41\xc2\x98\xf5\xd2\x95\xc2\x3f\xa8\x39\x7e\xb3\x97\x40\x56\x0b\x2d\x0c\x7c\x40\xf2\x6a\xcd\xa7\xf4\xb2\xae\x28\xf6\x24\xbf\xbd\xd6\x63\xdb\x88\x6b\x70\x31\xb2\x84\x9d\x03\x5d\x09\x17\xba\xf2\x00\x0c\x51\x4f\x39\xb0\x6f\xb7\x85\x32\x77\x0a\x58\xa1\xa2\xce\x1c\xb9\x73\x1b\x47\xa6\xac\x6e\x61\x05\x2e\xa6\x46\x16\x4e\x85\x47\x56\x07\xb5\xda\x16\x20\x9f\x06\x01\xdc\xd1\x13\x6c\x6e\x25\x0a\xac\xd6\x39\x0a\xfb\x04\x40\xa4\x50\x4b\x29\xb9\x12\x2e\xc9\x25\x86\x52\x83\xe7\xc2\x43\x0c\x5b\x10\x70\x4f\xbb\x1c\x58\xb3\x39\x56\x85\x89\x1c\x16\x67\x4d\x6e\x53\x93\x3c\x4a\x0c\x6b\x97\x68\x21\x12\xb2\xd2\x99\x67\x89\xf1\xc4\xd9\x5b\x89\x76\x25\x60\xcc\x09\xbf\xf1\x12\x21\x10\x28\x5c\x58\x4a\xa7\x75\x5d\x6e\xdd\x2a\xaf\x0a\x3d\xf5\x96\x1a\x6e\xe9\xeb\x35\x96\xba\x84\xa8\x5e\x9a\xb9\x7e\xba\xad\x37\xda\x2a\x8d\x1b\xdc\xd5\x8c\xe2\x3a\x08\xba\xa7\xed\x90\xbe\x55\x4c\x37\x5c\xc5\x5c\x55\x42\x75\x10\xe4\x9d\x6e\xce\xdf\xeb\xb4\xb5\x8a\xe9\x16\x69\xd0\x8b\xce\x40\x1d\x84\xd8\x57\xc3\xb9\xa5\x91\xad\xef\xf1\x85\x2b\x90\x6a\xad\xac\xbb\xea\x37\x43\x09\x55\xf7\x5b\xd1\xd2\x97\x70\x0e\x42\x1d\x39\xde\x13\x08\xa1\x1e\xf3\x4d\xce\xd8\x97\xda\x0b\x36\x3f\x88\xa1\x4e\xe5\xe1\x46\x53\xde\x9d\xae\x4a\x6b\xfa\x7a\x08\xf5\x2a\x0f\xa1\x9d\xde\x72\x35\xd3\x86\x5d\x22\xbd\x92\x89\x72\xd5\xdb\xf6\x68\x89\xaa\x1c\xa5\x6e\x64\x76\x6c\x8e\x07\x37\x13\x88\xaf\x50\x89\xeb\x61\x01\x6a\x3f\x84\x4a\x7c\xf2\x1b\x9d\x58\xb1\x38\x8b\x64\xd3\xd8\xed\x35\xf3\x09\xd4\xdf\xb9\x11\x5a\x93\x6c\x7c\x63\x61\x82\xae\x70\x12\xe3\x36\x3d\x7c\x8d\xac\xe9\xf1\xac\x00\xa9\xc9\x15\x69\x6b\xd9\x96\xe5\xb0\x42\xcc\x45\x77\xbd\x83\x67\xdd\xac\xfe\x10\x66\xa4\xed\xcc\x6e\x27\x77\xa5\x71\x75\xb9\x79\x55\xb0\x3e\xf6\x32\xbe\x12\xf6\xac\x29\xe8\x27\x72\xe7\x49\x94\xd7\x9e\x45\x3b\xc4\x60\xc9\x19\x4d\x24\x8b\xf9\x7b\x95\x45\xfe\xf5\xfd\xbc\xc7\x68\xd4\x59\x96\xb4\x52\xac\x9c\x0f\x4d\x3b\x9e\xe7\x16\x6c\x84\x3a\xa7\x95\xd5\x88\xfb\xfb\xf7\xf2\xb6\x5e\x26\xfa\xc4\x60\x80\x66\xab\x3c\xee\xf5\xb7\x70\x50\xa6\x31\xb0\xdb\x5b\xd1\x60\xdf\x60\x90\x9d\x62\x90\x49\xc1\xc1\xfa\xfb\x8a\xb1\x60\xdb\x1e\xe1\x4d\xef\xdd\x27\x94\x52\x58\x85\x14\x39\x6c\xfc\x85\xad\x91\x14\x0f\xfd\x5a\x9a\x6f\x18\xf4\x6a\xab\xa9\x80\x88\x68\xa6\x35\x1b\x65\x31\x31\xcc\x9b\xe2\x59\x20\xbe\x1c\x01\xc2\x98\x94\x3d\xf5\xa1\x67\x08\x20\xf2\x35\x62\x64\xe5\x0a\x02\xc1\xb5\x6a\x54\x4f\x72\xee\x55\x63\x32\x9e\x9d\xa1\xc4\x4b\x71\x3c\x47\x43\xa3\x1c\xfa\x36\x09\x13\x95\x57\xe3\xf4\x3c\xb8\xa4\x0a\xe5\xd3\xba\x32\x24\xd8\x38\x2e\xa7\x43\x10\x9b\x77\x40\x66\xaf\x70\xb4\xac\xf0\xa8\xe9\x90\x40\xef\x96\x5f\x37\xc2\x9a\x24\x9e\xd4\x5c\x94\x23\x90\xd5\x68\x48\xf7\x8f\x0b\x94\xc9\xfd\xe3\xa7\x1f\x1e\x16\xb0\x05\x27\xaf\x1f\x9a\x29\x3e\x2c\xfc\xcf\x5a\xbf\x2a\xe7\x1e\x85\x1c\x3e\xdf\x92\xd0\xa1\xb2\x7d\x77\xbc\xd6\x39\x3f\x68\x54\x3a\x62\x3c\x30\xf7\x7f\x00\x60\xd4\x07\x9a\x17\x88\xe6\xc6\x42\x59\x2b\xaa\x96\xd1\x3e\x71\xe0\x47\xc4\xfa\x0b\x49\xe3\x49\x9b\xc3\x54\xdb\x2d\x66\xf8\xbf\x99\x38\xcb\x8a\x68\x6f\x9d\xc0\xbf\xa0\x0f\x54\xe0\xb5\xe5\x63\x21\xe1\x9f\xc2\x00\xf6\xa4\x1d\x8f\x09\xf3\x7f\x0b\x84\xf1\x78\xd8\xa6\x8c\x24\xff\x1a\x06\xe0\x0d\x9b\x70\x30\xc3\xd7\xbe\xf6\xb5\xaf\x7d\xed\x33\xec\x3f\x01\x06\x00\xcc\xbb\x2b\xce\x5a\x53\xd7\x1e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xf1\x88\x8e\x99\xaa\x07\x00\x00") + +func staticImgLogoPngBytes() ([]byte, error) { + return bindataRead( + _staticImgLogoPng, + "static/img/logo.png", + ) +} + +func staticImgLogoPng() (*asset, error) { + bytes, err := staticImgLogoPngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/img/logo.png", size: 1962, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticJsHighlightMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\x5d\x7b\xdb\x38\x96\x30\x78\xbd\xef\xaf\x40\x58\x69\x87\xb4\x68\xc9\xa9\xea\xee\x99\x96\x43\x2b\x1f\xe5\xea\xce\xdb\x89\x53\x93\x8f\xa9\x9e\x11\x15\x36\x44\x42\x12\xca\x24\xc0\x00\xa0\x65\x95\xa9\xd9\xfd\x59\x7b\xb7\x17\xef\xdd\xfe\xaa\x7d\xce\x01\x40\x52\xb6\x93\xee\x79\x76\xf7\xb1\x45\x1c\x82\x20\x88\xcf\xf3\x85\x83\x83\xc9\xf1\x23\xb2\xe1\xeb\x4d\xc9\xd7\x1b\x33\xfe\x55\x93\xeb\x3f\x8d\x9f\x9e\x8e\x4f\x49\x4b\x5e\x7e\xf8\xf1\x07\xf2\x86\xe7\x4c\x68\x46\x5a\xb2\xe6\x66\xcc\xe5\x64\x53\xfe\xaa\x4b\x17\x79\x3c\xf9\x1f\x8f\x56\x8d\xc8\x0d\x97\x22\x64\xd1\xed\x35\x55\xc4\x24\x81\x5c\xfe\xca\x72\x13\x24\x89\xd9\xd5\x4c\xae\xc8\x96\x8b\x42\x6e\x8f\x8e\x6c\xd8\xb6\xf7\x12\x68\x56\xae\x8e\x8e\xe0\x7a\x16\x34\xa2\x60\x2b\x2e\x58\x11\x3c\xf2\x8f\xd9\x4d\x2d\x95\xd1\x33\x16\x3a\x28\x9a\x9a\xa3\xa3\xd0\x8c\xa1\x2c\x09\x0b\x6f\xf7\x51\x1c\xf8\x72\xf4\xb9\xda\x7c\x8e\x8e\x6c\x38\xa6\x55\xe1\xe1\x70\xbe\x88\xbb\x72\x47\xb7\x8a\x99\x46\x09\x62\xf3\xdb\x47\xd1\x3e\x1c\x56\xca\xc3\xc4\xc0\x9d\x4b\xcb\xc6\x8a\xd5\x25\xcd\x59\x38\x99\x1f\x3d\x3b\x5f\x4c\xd6\x55\x3c\x7c\xc9\x25\x7b\x3f\x67\x8b\x7d\xb4\xef\xb2\x50\x07\x59\x08\x59\xb0\x4b\x5a\xb1\xb1\x91\x6f\xe4\x96\xa9\x57\x54\xb3\x70\x90\x9a\x86\x2c\x36\xb6\x55\x55\xc2\x8e\x8e\xd8\x98\xdd\xb0\x3c\x34\xd1\x99\xcb\x42\x1d\x1d\x9d\x26\x49\xa2\xc6\x5c\x14\xec\xa6\x7f\x71\x58\x84\x8b\xb1\x61\x1a\x8a\xde\x3f\xe6\x5d\x5f\xc5\x2a\xa6\x31\x8f\x75\xc2\xc6\x79\x49\xb5\x86\xd2\x8c\x02\x12\x9c\xf1\x55\xa8\x47\x09\x1b\xd7\x54\x31\x61\x2e\x65\xc1\x66\xc3\x9b\x3e\xf5\x34\x08\x62\x95\xbc\xb5\x25\xd3\x51\xe4\xbe\xba\x0d\xd5\xfc\xe9\x22\x9a\xc1\x75\x1a\x08\x79\xd2\x8d\xb1\xe0\x6c\x25\x55\xa8\x13\x3d\xd6\x75\xc9\x4d\x38\x49\xf5\x68\x12\xc5\x26\x39\x8d\x69\xa2\xc7\x25\x13\x6b\xb3\x39\xa3\xe7\xe6\xcc\x8c\x46\x11\x5f\x85\x3c\xd1\x73\xb3\x88\x45\xc8\xa3\xb6\xdd\x86\xbc\xfb\x06\xef\x6b\xa4\x07\x35\x4a\x6e\xf7\x31\x4d\x5e\x28\x45\x77\xe3\x5a\x49\x23\x61\x38\x8c\x71\xcc\x8e\x73\x5a\x96\x21\x55\xeb\xa6\x62\xc2\xe8\xf8\x69\x84\x85\x31\x84\x0b\xc2\x22\x35\x37\x8b\x84\xcd\xcd\xc2\x37\x2f\x1d\xaf\xa4\xba\xa0\xf9\xe6\x70\x3c\x3c\xf0\xc6\x3e\x8a\x55\x5f\x9a\xbc\x9f\x0b\xf3\x2e\xb3\x83\x5e\x15\x36\x1b\x48\xc3\x13\x36\x5e\x71\xa5\xcd\xab\x0d\x2f\x8b\x33\x7e\xc6\x13\x3e\x16\xec\xc6\x7c\xe0\xcb\x92\x8b\x75\xf4\x43\x92\x40\x8c\x2c\xd8\xc7\x5d\xcd\x66\x62\xe4\xee\xfe\x9d\x96\x0d\x73\xed\x35\x7d\x7a\x90\x08\x27\x47\xdd\xe8\x4d\x78\xcb\xae\x99\x30\xd3\x40\x1b\xaa\x4c\x10\xcb\xd5\x4a\x33\x33\x15\x31\xa4\x9c\xf2\x7d\x14\x8b\x84\x86\x3c\x16\x51\xac\x42\x1e\x8d\x2b\x6a\xf2\x4d\x38\x59\xaa\x76\xa3\x5a\x5e\xad\x5b\x2e\xea\xc6\x4c\xa2\xb6\xbd\x97\x9f\xac\x1f\xc8\xae\x1b\x99\x62\x1f\xb2\xf8\x34\x8a\x4d\xdf\x2a\x32\x64\x31\xc5\x9a\xf7\xe3\x70\x30\x19\x6c\x45\x8e\x8e\xa8\x83\x66\x6c\x7e\xba\x18\xdb\x2f\x3c\x4a\x12\xda\xdf\x0d\x9f\x3c\x3b\x88\x9f\x52\x5f\xd3\xc4\xbd\x81\xc5\xc5\x07\xac\xcb\x77\x4a\xef\x0c\x9c\x61\xd7\xf8\x12\x05\x24\x18\xf5\x33\x74\xf4\x24\x09\x9e\x8c\x4c\xc8\xc6\xd7\xd0\xea\xd1\xe8\x49\xf0\x64\xdf\x8c\x92\xe0\x59\x30\x82\x39\x3d\xba\x1c\x57\xb4\xb6\xc3\x8b\x8d\xa9\x31\x8a\x2f\x1b\xc3\x74\x4c\xa3\xf1\xaf\x92\x8b\x30\x08\xa2\x51\x70\x1e\xdc\x19\x23\x98\xc3\xc4\x65\x71\xf0\x58\xc2\xe3\xb0\xaf\x0c\x73\x35\xd1\xd3\x3c\x0a\x6d\xb9\xa2\xbd\x1f\x42\x65\x72\x1a\x37\x49\x10\xc4\x05\x8c\x37\x5f\xd1\xb6\xf5\x4d\x79\x66\x47\xe3\x32\xe1\x61\x04\x33\xbb\x19\x25\x26\x14\x63\xdd\x2c\xb5\x51\x5c\xac\xc3\x32\x5e\xf6\xcd\x18\x45\x71\x99\x0c\xee\xe3\x25\x7c\x3f\xba\x2d\xc6\x8a\x5d\x33\x05\x28\xaa\x9b\x17\x79\x74\x56\x48\x22\xc3\x25\x4e\xe6\x9c\x85\xa7\xf1\xd3\x68\x7e\xba\x88\x62\xfb\xb1\xed\x86\x97\x2c\xc4\x0c\x8e\x8e\x96\x5d\x1f\x0f\x72\x4f\x92\xa4\x8c\xce\x1e\xca\x5b\x47\x7b\x56\x6a\xd6\xb7\xc1\xb2\xef\xd0\xc2\x8e\x46\x8c\xc1\xb6\x98\x16\xe3\x5a\xd6\x61\x14\x3f\x50\x96\xbd\x1b\x63\xcd\xa8\xaf\x75\x58\x46\x03\x84\x58\x1e\xa0\xe5\xeb\xa3\xa3\x47\x80\x2a\xf2\x0d\x2b\xb2\x6b\xaa\x38\x15\x46\x1f\x1d\x85\xf7\xe2\x12\x36\xbe\x86\x7e\xef\xd1\x83\xe9\xb2\xd1\x21\x8b\x6f\xaf\xa7\xa2\x29\xcb\x7d\x6c\xa2\x7d\x14\xc5\xf7\xde\x6f\x5b\x36\x66\xbf\x1c\x1d\xcd\x61\x14\x2e\xda\x16\x88\x45\x57\xa6\xe6\xeb\xb4\x07\x28\x81\x96\x8d\xca\x59\xdb\xb2\x21\x71\x51\x31\xed\x52\x09\xb6\x25\xef\xd9\xfa\xe2\xa6\x0e\x4d\xa8\xa2\x38\xa8\x82\x11\x54\xe1\xf5\x2c\xe0\xc1\x14\xc6\x63\x48\x67\xc1\x1a\xc1\x03\x9a\x23\x62\x1e\xdd\xf2\x55\xf8\x48\x8c\x73\x59\xd5\xbc\x64\x05\xde\xf7\xb7\xc9\xa3\xd3\x58\x8c\xaf\x12\x31\xbe\x6a\x5b\x31\x5e\xfe\x15\xee\xec\x18\xd3\x80\x7d\xf3\xa4\x6f\x90\x58\x45\xb7\xf0\xd5\xa3\xa3\x50\x25\xea\x90\xd2\x45\xb1\x72\x44\x20\x20\x41\xf4\x20\xb2\x75\xb4\xcf\x27\x6b\x83\xe8\x4c\xcf\xd5\xfc\x74\xb1\x48\xe6\x26\x06\xea\x32\xbb\x6c\xaa\x25\x53\x96\xde\x4c\x9f\x02\xb9\x3d\x0b\xec\xb8\xee\x59\x01\x31\xbe\x9a\xe5\x61\x70\xc5\x76\x5b\xa9\x8a\x00\xcb\x3b\xbd\x0a\x21\x78\xf0\xb3\x39\xe0\xe8\xf1\xd5\x9c\x2d\x22\xc0\x91\xe3\xab\x44\xef\xc5\xb8\x7c\x9f\xa8\x50\x8c\xcb\xb6\x9d\xa4\xdb\xd1\x24\x7e\x74\x1a\xc5\xfc\xe8\x28\x84\x26\xb0\x41\x12\xa4\xe9\x32\x0c\x46\x10\x33\xac\x9a\xc5\x01\x2d\x20\x81\x28\x4d\x97\x01\xe4\xb9\x6c\x5b\x7c\x65\x92\xbe\x6c\xd3\xe5\x04\xa3\xec\x07\x96\x00\x33\x68\x5a\xf6\x0b\x26\x62\xc3\x44\x0c\x3f\xc5\x6c\x52\x16\x41\x94\xb9\xc0\x09\xcd\xa2\xb6\x0d\xa0\x72\x30\xa8\xf8\xd8\x5c\x60\x4a\x73\x31\x4a\xe0\xe1\x2c\x68\x6d\xbf\xc3\x13\x7c\xcd\x96\x9d\xdb\x9c\x38\x44\x35\x65\x99\x24\x62\xac\xf0\x81\x4a\x9e\x42\xaa\x1c\x8b\x90\x27\xf3\x05\xde\xdd\xa3\xac\xb9\x14\x39\x35\x63\x5a\xd7\xe5\x0e\x18\x2b\x31\xce\x0f\x27\x45\x3f\x72\xcb\x30\x00\x26\x0f\x11\xda\x4c\x4c\x19\x4e\x0b\x48\xff\x50\x1f\x58\x3a\x89\xcd\x8f\x28\x40\x1f\x1d\xd1\xd0\xc3\x31\x8f\xce\x60\x6c\xc8\xe4\x1b\x9f\x63\xe3\xe5\x5f\x67\x41\x9a\x8e\x67\x21\x20\xf3\x25\x36\xfe\x78\x16\x4c\xd9\x78\xb9\x8f\x5c\xc1\xc3\x39\x34\x11\xb4\xc6\x22\xc2\x8c\x4c\x34\x5e\xf1\xd2\x30\x15\xbe\x94\xb2\x64\x54\x44\x67\x62\x6c\x12\xe9\xe9\x87\x0a\x65\xdf\x9f\x30\x06\xa6\xb7\xc0\xfc\x4c\xef\x33\x94\x38\xf9\xf7\xfb\x3d\x3d\xe0\xbe\x8a\x90\xc5\x2a\xc6\x59\x36\x24\x43\x1d\xa7\x17\x0b\x64\x4a\x54\x72\x1a\x8b\xc4\x8c\x73\x8f\xc4\xc5\xb9\x3a\x53\x96\x25\xa2\xa1\x19\xe7\x73\xb5\x18\x2f\xdf\xc7\xac\xe3\x87\x6c\xdc\x01\x89\x81\x4c\x31\x3d\x1b\xb3\xf7\xb1\x89\x2c\xdb\x71\xc6\xc6\x4c\x14\xfa\x67\x64\xe7\x00\x99\x58\xc6\xee\x2c\x62\x1d\xc7\xe7\xe9\x38\xdb\x77\x6d\xc9\x7e\x99\xe5\xa1\x7f\x1e\x9b\x68\x7a\x2d\x79\x41\x4e\x0f\x09\x7c\x87\x00\x1f\x09\xe8\x2e\x33\xe6\x50\xc2\x03\x4c\xdb\xb3\xb4\xd7\x80\x8d\x0c\xe0\xf0\x03\xb4\x30\x85\xa8\xae\x00\xe3\xab\xf1\x86\xea\x77\x5b\xf1\xb3\x92\x35\x53\x66\x17\xaa\x08\xca\x7c\x75\x50\xd7\x1a\xf2\x8d\x11\xff\x41\xde\x22\xa1\xb3\x20\x98\xbe\xb1\x7c\xea\xcf\x8a\xad\xf8\x4d\xcc\x93\x27\xcf\x74\x4d\x05\xc1\x48\x20\xe8\x22\xd6\x89\x82\x84\x1f\xfc\xe7\xf8\x28\x61\xa3\x27\xc1\xf9\x93\x98\x8f\xcc\x48\xf7\x1f\xa8\x42\x9b\x33\x43\x96\x59\x00\x19\x7d\x74\x39\xbe\xea\xda\x3e\xbc\xb0\xbc\xa4\x48\x90\x21\x3e\x8d\x2f\xc7\xe5\xfb\x71\x49\xb5\x79\x0d\xbc\x39\x72\xb7\x18\x85\x8c\xf2\x45\x74\x46\xcf\x22\x01\x74\xf8\x62\x40\x87\x55\x4c\x2d\x2b\x0f\xd4\x22\x29\xc3\xcb\x98\x46\x31\x9b\x85\x6f\x47\x09\x9b\x3f\x5d\xc4\x62\x94\xd4\x21\x70\x3f\xb1\x09\x81\xbd\x89\xa2\x68\x8a\x99\xe0\x4d\xac\x92\xc3\x8f\xde\xfd\xa4\x1f\x96\xa3\xfe\xab\xa1\x1a\x22\xff\x95\xaf\x64\x72\x0f\x83\x5e\x8e\xf5\x1b\xa8\x34\x3b\x3a\x7a\x74\x33\x87\xbb\xc5\x41\xdd\x1d\xa2\x9e\x15\x21\x3c\x8b\x2f\xe2\x47\xa7\xf1\x95\x4b\x37\x5d\x86\x17\x31\x80\x7e\x0a\x01\xec\x86\x4f\x57\xaa\xcb\xb1\x3a\x3f\x3d\x3a\x82\xba\xaa\xb1\x8a\x62\x40\x73\x2e\x03\xa4\x1b\x75\x14\xd7\xa1\x1a\x97\x54\xac\x1b\xba\x66\xb1\xb2\xac\x58\xfc\xe8\x29\xcc\xc1\xbe\x0e\xeb\x30\xba\x7d\x35\x4a\x60\xee\x3d\x4a\xe0\xf5\xd9\x2a\x8c\xa6\x55\x18\xc5\x17\x49\x30\xe0\xb0\x32\x40\x14\xaf\x40\xc6\xc9\x2f\x67\x35\x50\xc6\xcb\x38\x08\x70\x3e\x07\x41\x7c\x99\xbc\x43\x19\x75\x9c\x2b\x46\x0d\x03\x62\x6e\x07\xfe\xf4\x16\x3f\x3b\xbd\xdc\x0f\xe5\xba\x4d\x37\xd5\x2e\x46\x09\x73\x78\xd4\xf8\x06\x5a\x87\x51\x7c\xea\x5a\x48\x87\x26\xbe\x44\x2e\x4c\xf9\xc7\x6a\xac\xaf\x78\x3d\xbb\x18\x25\x66\x1a\xaa\x31\x7b\x79\x74\x04\xd9\x98\x28\x86\x17\xd5\x58\xbd\x6c\x5b\x88\x6e\xdb\xf0\x22\x01\xf6\x2c\x0b\x55\x6c\xec\x93\xd9\xe9\xd4\x78\x04\x01\x1f\xa0\x49\x1e\x5e\xc6\x06\x3f\xd0\xcd\x85\xcb\x33\x31\xfc\x84\x18\xab\x0b\x24\x2e\x17\x90\x63\xf7\x21\x88\x80\x2f\xc3\x27\x80\xab\xbb\x1c\xe7\x97\x47\x47\xe1\xab\x51\xf2\x21\x82\xde\xbb\xe2\x75\xdb\x42\xf7\x5c\x42\xf7\x5c\x26\x97\x1e\x55\x58\x26\xef\x12\x98\x74\x17\x15\xf5\x12\x94\x47\xdd\x59\xe8\xe1\x38\x40\xf2\xa7\x2e\x06\x65\xdf\xf3\x55\x28\xb1\x65\x22\xb3\x51\x72\x8b\xdc\xcb\x85\x52\x52\x85\x4f\x5e\x97\x25\x5b\xd3\x92\x94\xec\x86\x55\x8c\x00\x1f\x3e\x7a\x12\x90\x95\x54\xa4\x92\x05\x46\x84\x50\xd6\xb6\x0d\x9e\x35\x42\xd0\x8a\x15\xe7\x01\x72\xe8\x5d\x31\xa0\x92\xb1\xe9\xf8\xe2\xa7\x7b\x68\x97\xeb\x64\x1b\x32\x6c\xa8\x47\xd7\xf7\xbf\xfa\x49\x5c\x09\xb9\x15\xc4\x8f\xb7\x29\x7c\x87\xd9\x5c\x9b\xf0\xda\x0e\xf8\x5d\x7c\x99\xf0\xb6\xbd\x8e\xaf\x80\xed\x79\x95\x04\x56\xb8\xdd\x25\x97\x67\xbb\x47\x49\x72\x7d\xb6\x4b\x76\xbe\x49\x76\xae\x39\x93\x3a\xdc\xf5\x63\x6d\xf4\xca\xe6\x04\x63\x33\x7e\x9b\x9c\x9e\x19\xb5\xeb\x44\xc3\x97\xf1\xfb\xf8\x45\x72\x7a\x76\x86\x23\xeb\x72\x6c\x06\xf8\xe4\x45\xfc\x32\x81\x18\x9c\xdb\x2a\x8a\x1f\xbd\x8c\x96\x8a\xd1\xab\xb3\xf7\xc9\x26\x54\x03\x9c\xf2\x22\x7e\xe9\x70\x4a\xfc\x12\xb1\xc4\x8b\xc4\x45\x8c\xde\xa3\x04\xd1\x27\x0f\x5f\x44\x51\x8c\x85\xf7\x5d\xfb\x40\xf9\x61\x38\xb8\x76\xbd\x55\xd3\xb7\xb1\x9d\x0e\xaf\xe2\xae\xa1\x58\x6c\x64\x0d\xf3\x23\x47\x61\xf2\x31\x16\xfe\xf1\xb8\x62\x5a\xd3\x35\x3b\x3a\x3a\x79\xfa\x28\x49\xba\x7b\x5b\x94\x77\xab\x30\x70\xfd\x1c\x78\x7a\x76\xab\xa6\xa7\x2e\x77\x60\x60\xf7\x67\xb6\x8f\x1e\xef\xfb\x69\xb7\x04\x52\x1a\xdd\xaa\x44\xb5\xed\x9b\x0e\x35\xe8\xb6\xbd\x0a\x6f\x22\x37\x1f\x0e\xb2\x61\xd1\x1e\x24\xde\x4e\x7f\xe2\x29\xfd\xf6\x01\x36\xb0\x23\x53\x45\x68\x62\xc0\x33\xd1\x59\x8f\x7e\x12\x03\xd3\xef\xdc\xb1\x4a\x89\xc2\xd9\x78\x4e\xdd\x2d\x8d\x69\xa2\x2c\xeb\xe2\x5f\x38\x3a\x82\x09\xc0\x72\x29\x8a\x6c\xc9\xb4\x49\x44\x14\xd3\x03\xfa\xd5\xb1\x0d\x6f\xc6\x86\x2e\xdf\x5b\xf5\x12\xd4\xab\xd1\xec\xe5\xfb\x59\xaf\x71\x7a\x39\xd0\x34\xf5\x04\x97\xb8\x84\x47\x47\x41\x2a\x2c\x87\x15\x3c\x5b\xaa\x73\xa0\x82\x7d\x7e\x33\xd3\x2b\xae\x52\x33\x59\xc7\xc3\x87\x80\xf9\xf6\xd1\x94\x0d\xa9\x1e\x92\x55\xdb\x12\x34\x31\xb3\x57\x73\xb3\x98\xaa\x58\x24\x73\x36\x36\x8a\x57\x61\x34\xa0\xd4\x4e\x7b\x90\x2e\x37\xe5\xaf\x1a\xb8\x55\xc0\x32\x28\xa8\x05\x10\x13\x44\xf1\xc9\x53\x94\x65\x7d\x9f\xd3\xe8\xe8\xc8\xa5\xa0\xd0\x58\x96\xad\x02\x86\xd9\xe6\x3d\xa4\x4c\x07\x2a\x2b\x1d\x97\x71\x93\x70\x98\xbf\x22\x6c\xa2\xb6\x0d\x7d\x33\x85\x26\x29\x64\x8e\xfa\x1d\x87\xbb\x2f\x4a\x06\x77\x97\x1f\xc2\x60\x63\x4c\x3d\x9d\x4c\xb6\xdb\xed\x78\xfb\xc3\x58\xaa\xf5\xe4\xe9\x9f\xfe\xf4\xa7\xc9\xcd\xc6\x54\x65\x10\x07\x05\xbf\x0e\xa2\xd8\x8c\xb9\x10\x4c\xfd\xe5\xe3\xdb\x37\x58\x54\x07\x0f\xda\x4d\x4c\xd6\x80\xc4\xfa\x98\x67\x4b\x35\x27\xe9\x64\x71\x7c\x0e\x4f\x52\x11\x44\xd1\xd4\x24\x2c\x2e\x13\x33\x36\xec\xc6\xbc\x92\xc2\x00\xd3\x44\x93\x66\x56\x84\x4d\x5c\x22\x99\x59\x86\x25\xd0\xec\x3c\x44\x5c\xee\x65\xe3\x50\xff\xbf\xad\x80\x1e\x54\x80\x3a\x2a\xe9\xc2\x44\x86\x2a\xce\x43\x1d\xc5\x65\x14\x75\x91\x75\xe8\x20\x90\x51\xef\xbf\x3b\xd0\xf6\x25\x55\x38\xb8\x8b\x9b\x98\x76\x03\x1c\xde\x55\x4c\x37\xa5\x49\x6e\x3b\x5c\x40\x07\xf4\x1a\xee\xd4\x3e\x3e\x98\x05\x28\x55\x0f\x67\xc5\xf0\xd5\x41\xfc\x9d\x6c\x86\x4f\xd4\x3e\x3a\xa0\xfe\x2c\xba\x7d\x93\xe8\xf0\xcd\x01\xdb\x99\x85\x56\xa4\xcd\x50\x45\x03\x02\xad\x87\x92\x47\x96\x32\xb3\xbe\xd5\xbf\x34\x4c\xed\x3e\xb0\x92\xe5\x46\xaa\x17\x65\x19\x06\xb5\x62\x24\x97\x05\x0b\xa2\xb3\x4b\x8f\x28\x9c\xb2\x27\x5e\x45\xfb\x21\x1f\x10\xdd\xd2\xa2\xb8\xb8\x66\xc2\xbc\xe1\xda\x30\xc1\x54\x18\xfc\xf8\xee\xad\x1b\x01\x6f\x24\x2d\x58\x11\xc4\x19\xa0\x93\xf8\x7e\xca\x52\x52\xff\xb4\xcf\xf4\x3a\x1c\x4c\xc1\x9b\xb9\x59\x24\x0a\x06\x3e\x1d\xd3\x92\x53\xcd\x40\x2e\xf2\xe0\x83\x82\xd4\xab\x39\x5b\x24\x66\xc8\xae\xec\x7a\x19\x05\x30\x65\xff\x60\x3b\x94\x9e\x92\x90\x81\x3c\x19\x1d\x72\xe7\xf1\xcd\x9c\x2d\xda\xf6\x66\x0e\xd9\x2e\x90\x92\x5e\x26\xf3\x45\x7c\xe5\x39\xa6\x2b\xb6\xd3\xf1\x8d\x25\x88\xb7\xfb\xf8\x22\x99\x7c\x0e\x85\x3c\x99\x75\x1a\xe0\xb6\x2e\x29\x17\x2d\x4c\x8c\xe8\xf1\x84\xc7\x6f\x93\x49\xba\x84\x0e\x0e\x67\x53\x1c\x49\xb3\x93\x70\x9e\x6e\x4f\x16\xa3\x28\x5d\x4e\x78\xfc\x32\x99\x84\xe1\xe7\xf0\xd9\xfc\xf3\xf9\x62\x74\xde\xa6\xa6\x8d\x46\x6d\x38\x9b\xa6\x22\x8a\xa2\xc9\xba\x8a\x3f\x24\xc1\xb3\x09\x70\xf6\xe7\x41\xfc\x26\xb9\x1d\xf0\xfc\x53\x44\x3c\x27\x41\xdc\x23\x39\x54\xc9\xc4\x88\x2c\xa6\x8f\x9e\x76\x64\x4b\x7b\x71\x26\x7e\x9f\xdc\x06\x47\xc1\x34\x38\xa2\x55\x7d\x16\xc4\xc1\x33\x80\x4b\x03\xe0\x39\x80\x6b\x73\x16\xec\x7b\xa4\xd7\x55\x2b\x29\xe2\xc1\xdd\x8b\xc6\xc8\x64\x19\xb3\xf1\x8a\xdf\xbc\xa5\xea\xaa\xa9\x93\x7a\xf8\xfc\x65\x29\xf3\xab\x64\x15\xa3\xfc\xbc\xe2\xeb\x46\xb1\x64\x8d\xd3\x8f\x9b\xbf\xf8\x44\x5c\xac\x93\xec\x81\xc8\x77\x02\x06\x52\xb2\xc1\x29\xb7\x86\xd1\xa3\xde\x78\xc2\x74\x1d\xb3\x71\xc9\xb5\xf1\x11\x3a\xd9\xc5\x6c\xbc\x66\x5d\x44\xb2\xc5\x1c\x37\x4c\x71\x93\xe8\x98\x8d\x5f\xbf\x4f\x82\x39\x3d\xf9\xed\xc5\xc9\x7f\x2e\xd2\x74\x7b\x1c\xc4\x6c\xfc\x69\x10\x99\x75\xb1\x97\xef\x51\xc1\x91\xa6\xc5\x28\x4c\xd3\x31\x84\xd1\x0c\x1e\xbc\x82\x27\xe1\xc9\x2c\x0a\xd3\x74\x79\x3a\xbf\xf9\xdb\x62\x4e\x4f\x56\x2f\x4e\x7e\x3a\x3d\xf9\xd3\x62\xd4\x86\x87\x2f\x1d\x47\xb3\xd6\xbf\x1e\xce\xd9\xc5\x62\x7e\x32\x5a\xcc\x6c\x6e\x11\x64\xf7\xd2\x7d\x28\x3c\x5d\xce\x4f\x9f\x2e\x46\x18\xf9\xfe\xc3\xfb\x24\x78\xd4\x3e\x4a\xda\x47\x49\xd2\xfe\xae\xfd\x5d\xd2\x1e\xb5\x47\x47\xed\x51\xd2\xa6\xe9\x31\xfc\x00\x18\xc1\x2f\x69\xe3\xf6\xa4\x3d\x49\xda\x49\xd2\x4e\xda\x69\x7b\xd6\x3e\x7b\xd6\x3e\x7b\x96\xb4\xf0\xdf\x26\x49\xd2\xc2\x7f\x7b\x7e\x7e\x0e\x97\xa4\xc5\xe0\xbc\x85\xff\x36\x4d\xa1\x70\xf3\x36\x4d\x6f\xdb\x34\x0d\xdb\x34\xfd\x0c\x3f\xc8\xbb\x85\x1f\x02\x00\xff\x17\x96\xf4\x22\xb9\x5d\x4e\x83\x34\x4d\xd3\x79\x9a\xea\x34\xfd\xb0\x08\x62\x35\x3d\xdd\xc7\x6c\xfc\xe2\xc3\xdb\xe4\x36\xbf\x9c\x7a\x59\x2a\x5e\x4e\x83\x27\x41\xcc\xf0\xca\xe1\x25\x11\xc4\xf9\x74\x0e\xb9\x2c\xe0\x85\x7f\xbb\xff\xc2\x93\xe0\x49\xcc\xf0\xfa\xd0\x0b\x3f\xff\xf2\x16\x3e\x3f\x49\x97\x21\x6d\xa9\x68\xcd\x86\xb5\x54\xb1\xf6\xf5\x93\xaa\xe5\x5a\x3c\x31\x6d\x21\xed\x95\xe1\xdd\x16\xef\x96\x8d\x69\x7f\x6d\xb4\x69\xf5\x46\x36\x65\xd1\xd6\x8a\x19\xb3\x6b\x35\xaf\xea\x72\xd7\x32\x21\x9b\xf5\xa6\x5d\x4b\x21\x68\xbb\x96\x5c\xac\xdb\xad\x59\xb5\x5a\xb6\xba\xc9\x37\xed\x96\x97\x65\xbb\x93\x0d\xfc\x54\x5b\xf2\x2b\x06\x93\x14\x0a\xf3\xea\x40\xeb\xd7\x4b\xe2\xdd\x60\x0b\xb1\x6e\xb9\xac\x00\xcb\x42\xe5\x4c\xcc\xa6\x0a\x2a\xb4\xd8\xc7\xb4\x6d\x6f\xf7\xbd\x88\x3a\xce\x2d\x5b\x80\x75\xb4\x3a\x22\xbb\xfe\x00\x59\x14\x32\x37\xd4\xb6\x67\x38\x9b\x7e\x7c\xf7\xe3\xbb\xf6\xa7\xd7\x7f\x7b\x7b\xd1\x5e\xbe\xfb\x78\xd1\xbe\xfc\xf4\xe7\xf6\x6f\x7f\xfb\x5b\x34\xb5\x1d\x11\xc5\x02\x4b\xf7\xe6\xd5\xdb\x84\x8d\x5f\x85\xc1\x64\x12\xc4\xc1\xe3\x00\xe8\xd5\xab\x97\x5d\x64\x9a\x1e\x07\x71\x90\xa6\xc7\x13\x7c\xf2\x17\xff\xe0\xbb\x2e\xf1\xa5\xeb\x1c\x81\xfa\x46\xf8\x3a\x4c\x08\xdf\xd9\xaf\x1e\x7a\xfc\xaa\x7f\xfe\xf2\xa1\xe7\x2f\x07\xef\x7f\xf8\xf0\xf0\x07\x46\x41\xf8\xbb\x96\x55\x2d\xbb\x69\xf3\x4d\xab\x58\xd5\x5e\x6f\xdb\xeb\x4d\x7b\x5d\x71\xd1\x5e\x57\xf4\xa6\xcd\xab\xb6\xaa\x5a\x2e\xda\xda\xb4\x75\xde\xd6\x37\x6d\xc1\xd6\xed\x5a\xd1\xa2\x85\x1f\x34\x68\xab\xdb\x4a\xb7\x7f\xf9\xad\xbd\xfa\xcb\x6f\x6d\x51\xf3\xb6\xa8\xf3\xaa\x2d\xea\xfa\x06\xe6\xaf\x2b\xc2\x7b\xf7\x7d\xc5\xd6\xec\xa6\x86\xef\x4f\xd2\xc9\x24\x66\x10\xcc\xd7\xbc\x6a\x76\x8b\xe3\x49\xcc\xa7\xc0\x00\xf9\x61\x18\xe3\xf0\x9b\xdb\x54\x8b\x09\x64\xd5\x8f\x50\x1c\xa3\x1f\x5d\xae\x86\x9b\x92\xd9\x4a\xbd\xee\x6a\xfd\xe9\x81\xa7\x9f\xfa\xc7\x6f\x2f\x3e\xfe\xe5\xdd\x8f\xd9\x9f\x3f\xbd\x78\xff\xa3\x9b\x67\xe3\x34\xd5\xc7\xc1\xe8\x20\xd9\x5d\x1c\x18\x06\xb4\xa6\xf9\x86\x05\xf1\xfd\xc5\xe9\x3b\x2d\x1c\xcc\xd3\xf4\xf1\xef\x16\x80\x7b\x3a\xa4\x7e\xeb\x88\xe9\x74\xee\xf2\x01\x0c\x1d\x2c\xe2\xfc\xf5\xf4\x91\xab\xdd\x5f\x5e\xbd\x8d\xed\x4c\x65\x76\xd1\x19\xb2\x7a\x36\x99\xe1\xec\x3e\x0f\xf6\xf6\x61\xb7\x0e\x64\xdb\x72\x3b\xb2\xed\x73\x35\xbd\x15\xb2\x42\x9a\x30\x0d\xa4\x2a\x98\x22\x05\x13\x3b\x42\xcb\x52\x6e\x89\x66\x86\x89\x6b\xa2\xd8\x56\x71\xc3\x54\x53\x32\x0f\x33\xb1\xe6\xa2\xbb\x03\x0e\x88\x78\x9e\x45\x49\x69\xe0\xcd\x0d\x15\x45\xc9\x14\x61\x20\xc4\xfa\x87\x04\xb8\x8a\x4a\x16\x90\x95\xac\xa1\xb8\x9a\x6c\x18\x85\xef\x96\xc8\x79\x10\xcd\xd4\x35\xbc\x82\x99\x00\x08\x52\x74\xb0\x8f\xad\xc0\x3e\xbd\x65\xd3\xc9\xe3\xae\xec\x25\x14\x8b\x96\xd3\x40\x0a\x22\x57\x2b\x28\x76\xb0\x87\x66\xc1\x3a\x57\xcc\x50\x6c\x0d\xc4\x86\x73\x6c\x90\x34\x5d\x3c\xf6\x6d\x82\x6b\x1f\x4b\xdb\xd7\x5d\xe3\xdf\xba\x64\x7b\x44\x6f\x56\x47\x1c\x9b\xc5\x3e\x36\x16\x2b\x2e\xf6\xfb\x05\x0e\xbc\x0f\x93\xfd\x3e\x7a\xb0\xc7\x97\x54\x6f\xbe\xda\xdf\xfd\x47\xaf\xa7\x73\x1c\xb1\x8f\xe7\xe9\x36\x2d\xbe\x7b\xbe\xc0\x30\x5b\x1c\x4f\xf6\x76\x28\x3f\x4e\x6f\xc3\xf1\xf1\x2c\xda\x4f\x60\xf8\xaa\xbb\xf8\x78\x12\xe0\x50\x0f\xfa\x09\x60\xee\xd7\x0b\x72\x09\xed\x94\x88\x26\x07\xd3\x81\xde\xcb\xef\x09\xa6\x7b\x32\x79\x60\xf0\x41\x85\x82\xdf\xf4\x26\x58\xc4\xe5\x74\x72\x32\x03\x72\x9c\x8e\xb3\xc5\x68\x02\xdd\xe0\xd6\x32\xa6\x01\x5f\x11\xb3\x61\x82\xb0\x52\x33\xc2\x4a\xbe\x22\x2b\x8e\xda\x11\xd4\xcb\x10\x2e\x48\x21\x49\x21\x05\x23\x39\x85\x14\x9a\xe6\xdd\x62\x74\x10\x77\xbd\x69\x54\xc3\xc8\x8a\x96\x1a\xaa\xd0\xf0\xd2\x64\x5c\x4c\x03\xd4\x29\x90\xbc\x20\xb9\x14\x86\x8b\x86\x11\x76\x4d\x4b\xc2\x6e\x58\x4e\xd8\x0d\x37\xce\x36\x83\xac\x99\x91\xb5\xd1\x64\x43\xf5\x86\xd4\xdb\x82\x28\x46\x0b\x29\xca\x1d\xf1\xeb\x61\x1b\xbe\x32\xc4\x30\x6d\x88\xe1\x15\xd3\xc4\x28\x5a\x93\xa6\xa2\xfa\x8a\x34\x42\x33\x43\xb0\xe2\x64\xc9\x45\x41\xf0\xfb\x5c\x10\x64\xd1\x15\x01\x92\x41\x61\xb4\xb3\xbc\xa4\x8a\x11\x96\x6f\x24\x61\x02\x9a\x9b\x6c\x58\x59\x93\x92\xc1\x20\xcf\x69\x49\x4a\xb9\x96\x8d\x21\x15\xad\x57\x50\xf9\x5a\x71\x61\x56\x58\x18\xbc\x50\xa5\xe8\x8e\xd8\xb5\x33\x62\x76\xb5\xbd\xc0\xd7\x9b\x92\x57\xdc\x90\x46\xd8\x62\x40\x94\xde\xc8\xda\x10\xda\x18\x09\x13\x88\x2c\xd7\x58\xb8\x2b\xb6\x23\xcb\x1d\x34\x66\x4d\xf2\x4d\xc1\x15\xc9\x4b\x6c\x5c\x59\xd5\x9d\x65\x01\xde\x41\xe9\x2d\x60\x6c\x58\x30\x9d\x2b\xbe\xb4\x69\xa1\x7c\x36\xdd\x5a\xc9\xa6\xb6\xe0\x97\x46\x1a\xfb\xd8\xd0\xb5\x8d\x32\x6a\x87\x21\xca\x62\x9a\x14\x5c\xc1\x45\x63\xe5\x0b\xae\xe5\x56\x60\x7b\x98\xdc\x06\x9c\xb0\xaa\x29\xa9\x61\x64\x95\x93\xd5\x9a\xac\x4a\x49\x4d\xd7\xdf\x1a\x3a\x0a\x4a\xbe\x66\xa6\x14\x64\xc3\xb5\x91\x6a\x47\xb8\x30\x6c\xcd\x14\xf9\x55\x2e\x35\xb9\xe2\x65\x49\x6c\x6b\x94\x72\x4d\x84\x5c\x97\x72\x49\x6a\x59\x17\xb6\x39\x09\x10\xe2\x02\xaf\xa5\x20\x8a\x61\x97\xeb\x7c\xc3\x0a\x68\x35\xc8\x5c\xe3\x60\x20\xda\x50\x43\x74\xa3\x6b\x26\x0a\x62\xcc\x0e\x9a\xa1\x11\xfd\x02\xa7\xc0\x37\x1b\xe1\x5b\xde\xbd\x76\x4d\x15\x2b\xc8\x96\x72\x43\xb6\x1b\x26\x72\x06\x81\x82\x2b\xcf\x37\xe4\x37\xb7\x08\x49\x7e\x5b\x49\x55\x51\x43\x7e\x5b\x99\x9a\xfc\x06\x11\x95\x2c\xb0\xa3\x7e\xab\xa9\xd2\x0c\x87\xe3\x6f\xb5\x92\x2b\xf2\x5b\x6d\x76\xe4\x37\x4b\xd6\xe0\x11\xf9\x4d\xcb\xfc\x8a\x19\xf2\x9b\x36\x3b\x78\xd3\xe4\x75\x10\x67\xd3\xe0\x44\x30\x72\xc2\xbe\x90\x93\xd2\x90\x93\xb5\x21\x27\x2b\x72\x52\x90\x13\x46\x4e\x34\x39\x29\xc9\x09\x7d\x00\xd1\x4d\x3e\x7f\xf7\x68\xfe\x39\x15\x8b\x91\xde\xa4\xfa\x18\xf1\xe4\xd3\x53\x87\xed\xfa\x79\x86\x04\xc0\x23\x9b\x54\x1f\xa7\x21\x5c\x22\xb8\xdc\x4e\x62\xf5\xb2\x23\x2d\x9e\x59\x02\xca\x69\x51\xd2\xb6\xc7\x51\xd1\xc2\xd3\x3c\xa0\x40\x2a\xa6\x80\x25\xbf\x82\x11\x73\xb9\x5a\x31\x1c\x71\xb5\x79\x10\x33\xf6\x18\x44\x10\xc0\x1a\x1d\xca\x58\x71\x41\xcb\x72\x87\xea\xd0\x42\xfa\x19\x8c\xf8\xc5\xe1\x03\x6a\xf2\x0d\xe1\x42\x1b\x2a\x72\x26\x01\x01\x29\xb9\x25\x30\x54\xcd\x86\x6b\xa2\xb7\x1c\x12\x74\x38\xa3\x33\xc8\x2a\x99\x61\xa4\x60\xcb\x66\x0d\xc3\x4d\x37\x35\x53\x64\xc7\x59\x59\x10\x5e\x21\x1e\x71\xe8\x64\xa5\x64\x45\xa8\x26\x05\x5b\xd1\xa6\x34\x84\xe2\x70\x40\x34\xd7\x88\x92\x69\x4d\x1a\x61\x38\x4c\x77\x59\x13\xb9\x22\xcb\x1d\x8e\x15\x02\x58\x42\x2a\xc2\x35\xe1\x5a\x18\x22\xa4\x79\x10\xc3\xe1\xca\x1c\xe9\x2c\xcd\xc8\x8e\x69\x22\x24\xb1\x04\x6d\x88\xfe\x44\x5d\x11\xc5\xbe\x34\x1c\x15\x00\x42\x4b\x8f\x53\x88\xa3\xa7\x30\x37\x68\xe9\x2c\xdc\x3a\x72\x1c\x00\xe5\x08\xe6\x2f\x4e\xfe\x93\x9e\xfc\xf6\x38\x5b\xcc\x4f\x4f\xfe\xd4\xdd\x1c\x07\x1d\x19\x68\x96\x1a\x19\xe1\xc9\x77\x30\x08\xd8\x74\xb2\x07\xd4\x6e\xf6\x56\xbf\xf6\xf2\xf2\x6d\x3c\x1c\x0f\xaf\x2e\xdf\xc6\xb7\x3d\x49\x0e\x42\x60\x85\x26\x9e\x81\xdb\x47\xf1\x01\x6d\x71\x94\xee\xc9\x13\x47\x61\x20\xec\x65\x87\xdb\x01\xe9\xb9\x13\x1d\x04\x8e\xc6\x05\x03\x2a\x47\xfd\xc3\xbb\xe4\x8f\x22\x5d\x3b\xe0\x1b\xed\x97\x83\x09\x30\xda\xcc\x85\xf9\x74\x4e\xed\xa8\xb5\x19\x05\x13\x64\x29\xa1\x31\x70\x40\xe3\x40\x9f\x84\xb3\x47\x73\x72\xbc\x00\x29\x32\x9d\xb4\xe3\xe8\x78\x96\xba\x64\xe1\x2c\x49\x7f\x69\x1f\x47\x48\x95\xe1\xfd\xe7\xc1\x48\xed\xe3\x5b\xfd\x66\x1a\xfc\x4a\xaf\xa9\x1f\xe6\x0c\x27\x12\xbb\x80\xab\x2b\xc7\xdf\xff\xfe\x77\x2c\x07\x84\xf6\x5d\x77\x1f\xec\x17\xfb\xc5\x19\x1d\xe7\x89\x38\xf3\x96\x58\x77\x67\x9f\xda\x47\xb1\x4e\xa0\xa9\xc3\xf1\x71\x9a\x46\xd1\x0c\x1a\x3d\x4d\x5f\xce\x4f\x92\xc5\x79\x10\xe7\xb6\x27\x6b\xaa\x68\xa5\x1d\xdf\x13\xce\x3f\xa7\x69\x08\x72\xa0\x9f\xd5\x58\xbb\x9e\x23\xb8\x9a\x9a\x9e\xcf\x59\xf8\x75\x68\x11\xed\x17\x0f\x70\x01\x76\x1a\x07\x71\x90\x6b\xc0\x23\x01\xcf\x59\x11\x2c\x30\x0f\xe0\x88\x26\xe9\x31\x74\x86\xe8\x56\xb3\xad\xd4\xf2\x1d\xc8\x2d\x70\x75\xc2\xcc\x7d\x74\x14\x7c\xb6\x9c\xb4\x1a\x01\xab\x76\x9c\xd8\x3b\x0d\x2d\xe3\xea\xd6\x15\x9f\xc7\xb9\xeb\xfe\xf9\x34\x0d\xe3\x64\x01\xe3\xce\xb3\xfa\xf7\x32\x7e\x30\x8b\xbc\x1f\x26\xa8\x9e\x09\xe2\xe5\x5f\x3b\x90\x4d\x83\xc7\x20\x11\x4f\xe6\xd3\x24\x48\xe7\xe9\x62\x31\xb1\xad\xf6\xd7\x69\xc0\x6e\x0c\x13\x05\x24\xfa\x05\xb2\xba\x97\x88\x2f\xf6\x31\xb7\xa5\x53\xa3\x60\x8a\x99\x4d\xfd\x87\x15\x8e\x03\x18\x60\x8b\xe8\xab\x68\xb2\xae\xbf\xca\x37\x76\xf6\x22\xd8\xaf\x4b\x64\xc0\x10\x13\x67\x26\x4d\x97\xc1\x3d\xfe\xd0\x8e\xb8\x27\x61\xf3\xaf\xb3\xf6\x53\x34\x7b\x33\xfb\x86\xf4\x3e\x4c\xf8\xbe\x4b\x77\xf0\x3c\x78\x92\xa6\x69\x3a\x1b\x0f\x74\x06\xe3\x60\xc0\x46\x7a\x31\xc6\x0d\xf4\x4e\x61\xf2\x64\x31\x8a\xdc\x50\x87\xb8\x79\x9a\x16\x4f\x16\xa8\x7c\xb1\xa0\xd3\xbf\xb8\xf8\x28\x6c\xda\x4f\x6d\xd9\xbe\x69\x9b\xb2\xfd\xf4\xa6\x5d\xb5\x3f\xb5\xcb\xf6\xa5\xcf\xe1\x2b\x5a\x9d\x27\x4e\xad\xf3\x0f\x33\xef\xf4\x3b\x3e\x66\x16\x05\x7b\x47\xc6\x44\x72\x48\x4a\xbf\x4b\xf5\x31\x34\xf2\x62\x94\x2e\x71\xb6\x3c\x46\x56\x17\x13\x9c\xf8\xce\x40\x8e\xb7\x67\x76\x99\x28\xb8\xb7\xf5\xb5\x28\x9d\x6c\xa9\x12\x5c\xac\xad\x14\x44\x4a\x78\x50\x2b\xba\xae\x28\xe1\x2b\x78\xce\x57\x98\x8c\x8b\xbc\x6c\x0a\xe6\x68\x3a\x4c\xd1\x14\x24\x5b\x47\x60\x3d\x26\x50\x71\x57\xc6\x13\xd7\xcf\x1e\xd5\x0e\xe3\xa0\xf8\xcf\x80\x0f\x38\x5f\x1c\x9f\xfb\xb2\xbb\x5e\xf7\xfa\x07\xa7\x71\x80\x11\x9b\x80\x14\x6c\x67\x5e\x9a\x86\x41\xac\x0f\xc8\xb1\x71\x6c\x9b\x25\xc7\xb5\xe2\xd7\xc0\xd0\xe5\x1b\xaa\x3c\xe9\xb5\xd4\xd2\x11\x21\x47\x34\xaf\xb9\x32\x0d\x2d\x89\xac\x99\xa2\x46\x2a\xa2\xf9\x6f\x48\x76\x77\x82\x56\x3c\xcf\x72\xaa\x4d\xfb\xf4\x14\xa9\x31\xd4\x1f\x08\x9a\xe9\x62\xf1\x8e\x68\xa3\x9a\xdc\x20\x2f\x00\xec\xdb\xe0\xad\x46\xa0\x65\x31\xad\x98\xae\x69\x0e\x4d\xad\xf9\x1a\x88\x67\x29\xc5\x9a\x5c\xcb\x92\x1a\x28\xac\x7d\x8b\xd4\x4a\x1a\x96\x1b\x56\x90\xa5\x94\x25\x31\xac\xaa\x91\x29\xad\x1a\x83\x9c\x2b\x5f\x91\xba\x59\x96\x3c\x27\x2b\xc5\x19\x4a\xb2\x64\x2d\x8d\x44\x76\x9b\xa0\x2a\x96\x89\xa6\x1a\x32\x1d\x80\x09\x94\x20\x8d\x86\xae\x45\xcc\x41\xa8\xae\xac\x50\x03\x55\xe2\x05\x70\xec\xca\x10\xc5\x80\x9f\x55\xb5\x62\x7d\xed\x3c\x23\x51\xc8\x66\x89\x12\xb5\x45\x03\xd0\x74\x25\xcf\xb9\x21\xae\x32\x90\x11\xd4\xf1\xeb\xbc\x0c\x17\x38\xa0\x1c\x2f\x43\x4b\xbe\x16\xd2\xb5\x25\xbb\xa9\x15\x0a\x29\x28\x59\x08\xc9\x6e\x72\xe6\xf8\x60\x9e\x67\x54\x6b\xa6\x80\x89\x01\x41\x24\xb3\xe2\x8a\x62\x30\x7c\x72\x43\xb2\x97\xd0\x4c\xc0\xdb\x96\xec\x86\x64\xaf\x3c\xf0\xba\xa2\x6b\x2e\xa8\xda\x11\x6a\x24\x74\x22\x36\xa7\x83\x71\x40\x38\x58\x0f\x6f\x9a\x83\x27\xd8\x28\xfe\xc9\xc1\x1d\x8c\x34\xff\x60\x00\x63\x8f\xfa\xf8\xe1\x4d\x79\xf8\x04\xef\x80\x49\xb4\xec\x9f\x33\x9c\x1d\xb0\x4f\xda\x14\xc4\xce\x0f\x92\x83\x38\x07\xa2\x59\xce\x14\x8a\x4c\x6b\xa2\x4d\xc1\x05\x5c\x21\x5a\x9b\x02\x1e\xd8\xd4\xda\x28\x46\x2b\xc2\x0f\xee\xe4\xc1\x1d\x8c\x93\xac\x36\xd0\xde\x5f\x1a\x86\x8a\x0c\xf2\xa5\x61\x0d\x8e\xc0\xfc\x8a\x5c\xe3\xea\x0d\x08\x82\x28\xcb\x2d\xb9\x81\xa0\x6a\x4a\xc3\x3b\x00\x1e\x36\x02\x35\x30\xac\xc8\x50\x0a\xec\xee\x0e\x9f\x75\xef\xdd\x89\x82\x54\x4e\xa6\xdc\x80\xd8\x82\x25\xa2\x4b\x6c\xe2\xa5\x26\x34\x97\x30\x48\xb9\x20\xd4\x50\xf1\x3d\x5e\x51\xa8\x95\x39\xc9\x19\x87\x0e\xd7\x30\xb4\x74\x27\x4b\x93\x15\xbc\xb7\x2a\xa5\x54\x64\x55\xc9\x82\xac\x9c\x08\xbb\xaa\x1b\xa3\xc9\x4a\x31\x06\x17\x48\xa8\x73\x2a\x56\x84\x6b\x5a\xc2\x44\x81\xb0\xde\x50\xc2\x75\x2e\x8c\x2a\x09\xd7\x05\x5f\x73\x43\xb8\x5e\x2b\x5a\x6f\x08\xd7\xa5\xdc\x32\x60\x8d\x2d\xff\xca\x75\x0d\x34\x8f\x70\x6d\xa7\x33\xd7\x4d\x5d\xe3\xf3\x1b\xfb\x22\x48\xbd\xf0\x82\x91\xf6\x41\x09\x05\x2b\x0b\xf8\x74\x29\xd7\x4f\x4f\x51\x38\xac\x6c\x5d\x14\xb3\x61\xc5\xaa\x7c\xa3\x30\xa8\x6a\x0c\xea\x1d\x04\xd8\xe2\xb2\x58\x91\x5a\x6e\xbd\x4c\x5e\x37\x06\x47\x29\xd6\xcb\xd6\x45\x73\xb1\x81\x0b\xd1\xc2\x25\xd2\x3e\xfc\xa2\x0c\xd1\x2e\x95\x51\x39\x45\x4c\x05\xdf\x82\xa0\xaa\x31\xa8\x77\x18\xe8\x1a\x06\x95\x2a\x19\x06\xc2\xa5\x15\x2e\x95\x70\xc9\xea\xa5\xba\x82\xd0\x67\xe2\xde\xd2\x46\x11\x43\xc5\x06\x2e\xe4\xda\x37\xfe\xb5\x0f\x7d\x79\x98\x28\x4a\xc2\x05\x37\x9c\x96\xfc\x37\xa6\x32\x1c\x7f\x8d\xe0\x5f\x1a\x06\x63\xe0\xeb\x52\x07\x0c\x90\xcb\x4f\x6f\xde\x00\xd5\x49\xe6\xe6\x90\x32\xc4\x34\x56\x8b\x07\x58\x40\xe0\xfe\xe0\xb2\x01\x60\x34\x02\xc8\x5e\xeb\x1a\x59\x41\x0d\x94\xe6\x19\xb2\xd9\x79\x6f\xd6\xd8\x31\x00\x38\x45\x5a\x28\x62\x8b\x53\xa4\xc5\x29\xd2\xda\x29\xd2\x56\xb4\x6e\x35\x33\xad\x9d\x22\xad\x1f\xea\xad\x1f\xe0\xed\xc1\xa4\x68\x0f\x26\x4c\x7b\x7f\x8a\xdc\x8d\x82\x77\x70\x8a\x44\x40\xec\x9e\x39\x0d\x29\x16\xfa\x50\xd7\x77\x6b\x55\xc3\xa3\x60\x3a\xc5\xc7\xfb\xf8\xd6\xc9\x30\x09\xd2\xd3\x33\xaf\xa2\xeb\x18\x69\xb8\xff\xeb\x34\xb8\x8b\x81\x90\x68\x04\xee\x95\x85\xfb\x52\xdf\x2e\xf7\x98\xf1\xc3\xc7\x8e\x2b\x8f\x1c\xdb\xe8\xc4\x93\x7b\xdc\x33\x5a\x94\x42\x69\xe7\x69\x7a\x7c\x94\xa6\x7a\x31\x8a\x46\xc1\x88\x3b\xce\x93\x4d\x27\xf3\xdb\xb3\x64\x31\x71\xb2\x88\xed\xa3\xc9\xfc\x73\xba\x4d\x75\x7a\x7c\xe4\x39\xdc\x29\x1f\xca\xfe\x1f\xdf\x2e\x06\xdf\xeb\x85\x8a\xbb\xe5\xed\xb4\xec\xc3\xb1\xe3\xb4\x01\x77\x46\x94\x58\x40\x25\xdc\xbe\xa9\xe9\x6d\xad\x58\xad\x64\xce\xb4\x96\x6a\x2a\x62\x87\x52\xa7\x0a\x1b\xfc\xab\x2c\xb2\xfe\xb6\xfe\x80\x2e\xb5\x51\x34\x37\x20\xb1\x2f\x81\x1c\x23\x91\xb2\x54\x7b\xb9\x33\x4e\xf1\x68\x39\x17\xcb\xc4\x6c\x58\x7e\xc5\x0a\xc7\x73\x74\xa4\xb5\x60\x39\xaf\x68\xd9\x13\x6b\x56\xb2\x35\x70\x0d\xa8\xc0\x44\xc2\x6d\xf9\x3e\xe4\x0c\xae\x99\x30\x3d\xfd\x76\xdc\x81\x57\x5d\xac\xf8\x0d\x2b\xbc\xf2\x0b\x70\xa9\x54\x8c\xe6\x1b\xcb\x63\xf0\x15\x30\x50\xf6\x3d\x2e\x08\xa2\x43\xe0\x18\x56\x88\x08\x01\x12\x14\x30\x28\x29\x65\x7e\x65\xf9\x1b\xbb\x63\xad\x67\xad\x80\x64\xc9\x6b\xa6\x14\x2f\x18\xb1\x1d\xd5\xf1\x69\x3d\xef\xe3\x58\x9c\x81\x2e\x74\x45\x34\xb6\x88\x66\xb4\x64\x9e\x61\x71\x7c\x1a\xce\x4a\x8b\x48\x1d\x17\xe5\x68\xa7\x63\xca\x1c\x27\x82\x5c\x09\xb2\x27\x56\xab\x82\x94\xdb\x92\xe9\x46\xf8\x96\x6d\x84\xa6\x2b\x46\x1c\xb9\xb7\x3c\x93\xe7\x0f\x91\xbb\xea\x18\x36\xcb\x63\x02\xcf\x23\x57\x84\x16\x85\xd3\xc3\x52\x9d\x03\x67\x0d\xe4\x5e\xef\x44\xee\x34\x30\xcb\x1d\x29\x58\xf7\xc4\x31\x96\x84\x7d\x69\x68\xa9\xad\xd2\x66\xcd\x8c\x57\x8a\xa0\x5e\x13\xda\x53\x92\x5f\x25\x17\xa8\xa5\x95\x82\x20\x76\x58\xee\xa0\xd5\x00\x7d\x12\xc5\x2a\x79\x0d\x2d\x52\x42\x0b\x03\xa9\x40\x55\x27\x81\x51\x66\x35\x7f\xa8\x21\x1a\xa0\x54\xd4\xde\x58\x94\x0a\xd8\xf5\xbe\x1c\xb6\x9c\x3e\x79\x3e\x14\xa9\x40\xd6\x0a\x82\x27\x56\x74\x3a\x60\xed\xed\x6a\x16\xee\x83\x3a\x54\xc9\x04\x76\x4d\x62\x1f\x58\x85\xcc\x50\x37\x20\x06\xaf\xe9\x7b\x0a\xfd\xf4\x31\xea\x48\xac\xd0\xe7\x97\xca\x00\x13\xdf\xde\x3a\x89\x6a\xbf\x47\x89\xe0\xe5\x05\x0a\xae\xf9\x03\x39\x3c\xef\xb2\x78\xf0\x5d\x5f\x1d\x98\xdc\xb1\x1c\x94\x2c\xf7\x25\xfb\x07\xef\xf1\xc5\x3e\x3a\x43\x9b\xfe\x3c\xd6\xb1\xb2\x6b\xd5\x76\xa9\xc5\x2e\x65\x7a\x49\x25\xe6\x90\x48\xc6\x3a\xa6\x0f\x26\x1a\x28\xa7\x00\xd9\x74\xed\xb2\x38\xb3\xfb\x92\x00\x83\xdf\xfb\xc4\x62\x1f\x37\x4e\xfe\x09\x9f\x79\x34\x8a\xca\xac\xd8\x2f\xee\x41\x4c\x74\x7c\x1e\xcd\x42\x5c\x57\x5f\x44\xb3\xe0\x01\xb2\x08\x3c\x57\xdd\xeb\x42\xa6\x53\xa7\x96\xc2\x45\x5e\xbb\xca\x1b\xdf\xf6\x4a\x98\xe1\xd2\xf1\x50\x47\xe5\x15\x50\xc1\xb3\x47\x27\x27\xed\xc9\xc9\xb9\x6b\xb3\xc1\x7a\xde\x62\xbf\x40\xdc\x38\xc4\xac\x87\xcb\x5d\xdf\x79\x35\xc6\xff\x37\xf2\x2a\x20\x61\x29\x20\xb1\x83\x9c\x00\x8b\xf3\x5b\x37\x55\xb0\xdf\xc7\xa5\xeb\x86\xdb\x4e\x95\xd2\xa3\xb1\x60\x40\x81\x2c\xdd\xd1\xd3\xc5\xc4\x53\x99\x7b\xf2\xa8\xa5\xa3\x5e\xb6\xfb\xd6\xcb\x77\x15\x64\x9d\xe5\x48\x98\xa6\xe3\x59\x9a\x6e\xa3\xe3\xe0\x6e\x53\x2d\x06\x84\xda\xdb\x8c\x23\xbd\x46\xa4\x12\x7c\x83\xc4\x36\x28\x22\x23\x65\xbd\x23\x30\x7f\x8d\xcc\x1a\x37\xf4\x1f\x4c\xfe\x4f\x13\xd9\xa1\x1a\x11\xf2\x74\x04\xb7\x3c\x9c\x1d\xf7\xe4\xfa\xaf\xeb\xe2\xf5\x83\x24\xd4\x37\xde\xc9\xc2\x01\xa7\x27\x7f\xca\x4e\x50\x29\x8a\x76\x1d\xf3\x17\x27\xff\x99\x66\xe9\x38\x3d\x59\x8c\x52\x7d\x3c\x9d\x74\xd5\x0e\xce\xbc\x46\xcc\x8f\xec\x3b\x8b\xcd\x1f\x26\x4e\x13\x66\x2b\xd1\xa9\x8d\x7f\xe9\x2b\xe6\xb4\x1e\xd6\xd4\x0a\x2a\x7f\x38\x55\xbc\x18\x87\xf9\xd9\x44\xf7\x38\x30\xdb\xa2\x83\x99\xbd\xe8\x6c\x19\x3a\x4c\x61\x9f\xf6\x53\x66\xb0\xf8\xfe\x9d\x55\x8c\xff\x44\x4f\x56\x8b\x91\x5f\x21\xee\xa6\xd4\x23\xab\xe5\xa0\xc2\xc0\x04\x1c\x28\x47\xed\x42\x3c\x8c\xcc\x24\x9d\xb4\x4f\xd2\xc7\x7e\x70\xf6\x1f\xd1\xce\x7c\xef\x84\x17\x56\xb3\xe4\x94\xf1\xb6\x81\xb1\x22\x07\xc9\xbc\x52\x72\x3a\x49\xc7\xff\x20\x29\x34\xb4\x4d\xd9\x9b\x3d\x70\x98\xfa\x77\x13\xd6\x9a\x35\x85\xc4\xa4\xd3\x70\x1a\xcd\xfa\x3e\x4e\xb3\xf4\x24\x1d\xa5\x61\x1a\x05\x4f\xc6\xbe\x59\x83\xe7\xe1\x4a\x0a\x73\x02\xd3\xb7\xad\xe9\x9a\x45\x41\x5c\xda\xf9\x75\xb2\x18\x01\x62\x09\xba\xe7\x04\x9e\x07\x5e\x13\x8e\x0a\xd7\xdb\xb3\x05\xea\x50\x2d\x12\xbc\xab\xbe\x44\xeb\x03\xd7\x7b\x7a\x12\x0f\x87\x41\xc7\x4c\x1e\xa0\x77\xe8\xc2\x5e\x67\xdb\xd5\xc9\xd9\xdd\x98\x1e\x69\x76\x74\xd2\xae\xcf\x0f\x3a\x42\x7d\x63\x42\x14\x7c\xb5\x0a\x1e\xd8\x31\x3f\x40\xef\x35\xf0\x8b\xc1\xe2\xce\x82\x9b\x9a\x3e\xf5\x9a\xfd\xc9\xe7\xe7\xcf\xc9\x28\x3d\x49\x8b\x51\x9c\x16\x23\x32\x4a\x47\x1d\xf8\xfc\xf9\x63\x57\xdd\xcf\xe9\x31\xfc\x91\xfe\x99\x8d\x48\x8f\xfb\x14\x27\xf0\x37\x4c\x71\x62\xff\x1e\x4f\x7a\xad\xb5\x37\x5b\x72\xdf\x46\x2b\xfc\x29\x71\x9a\x3e\x9b\x51\x72\xfb\x43\xbc\x3f\x88\xf9\x9c\x9e\xdc\xfe\x70\x37\xea\xf8\xf6\x87\x3d\xb9\x13\x37\xba\x9b\x2c\x3d\xbe\xfd\x83\x8d\x41\x68\x50\x12\x5a\x14\x7c\xa8\xc4\x1f\x39\xca\xe3\x1e\xa3\x62\x6a\xf0\xf8\xe4\xf0\xf1\xdd\xb7\x1f\xf9\xc7\x5f\xed\xaa\x8d\x31\x0f\x6a\xc8\x83\xbf\x7c\xfc\xf8\xf3\x04\x66\x70\x9a\x8e\x17\xa3\x07\x08\x34\xbc\xa9\x83\x85\x55\x83\x7e\x08\x3c\x53\xf2\x39\x18\x19\x47\x2c\x7d\xdf\x0e\x70\x82\x35\x15\xbc\xfd\x61\x8f\x1a\x76\xa7\x08\xff\x0c\x73\x72\x31\x22\x68\x9a\x41\x82\x91\x19\xc1\xdb\x1d\x32\x1c\xe4\x34\xb0\xb5\x23\x58\x35\x72\xb0\x28\x84\xd9\x19\xd7\x16\x43\xf5\xbe\xfd\x40\xd0\xb7\xf2\x10\x9d\x42\x43\x6d\xed\xd2\x02\xf1\x18\xd5\xea\x76\xdb\x34\xd5\x6d\x12\x0c\x2c\x65\xb0\x60\xd3\xd3\xbd\xd7\xbf\x0b\xd4\xfb\xfb\xe7\xfa\xcd\x74\xbe\xb0\xd3\x6f\xff\xf5\x26\xe7\x82\x7f\x75\x4d\xc2\x57\xd0\xaf\x14\x78\x56\xe6\xc9\x13\x67\x5b\x08\xa1\x5b\x82\x46\x7e\xcf\x31\xc2\x10\x0e\xa2\x1d\x77\xec\xd6\x19\xdc\x0a\xc3\x83\x0b\x50\x46\x56\x65\x67\xfd\x74\x30\xc9\x43\xa0\x42\xce\x3a\xee\x21\x8b\xa8\xc9\x67\x20\xbf\xf3\x91\x43\x93\x1e\x01\x7d\x9e\x5b\xec\x9a\xce\xd3\x45\x66\x29\x5b\x82\x2b\x4a\xae\xf1\x5e\xde\x25\x6b\x96\x02\x1d\xbe\xe4\xa7\x9c\xc7\x65\xc3\xd5\x28\x27\x28\x58\xbc\xb7\x94\xa2\x95\xab\x55\x0b\x92\x42\x8b\x42\x43\xbb\x63\xba\x15\x12\xcd\x16\xbf\x69\x1e\x14\xfc\x03\xeb\x20\x73\x97\xa0\x4d\xc2\x79\x3a\x02\x62\x1d\xcd\xe6\x69\xb1\x18\x65\x73\x78\x7b\x84\xe6\x91\x16\x9d\x7e\xb5\xcb\x7f\xa5\xd7\xf4\x61\x16\xe1\x7f\xfd\x1f\x27\xff\xf7\xff\xe9\x2c\x71\x1f\x2f\x0e\x6f\x4f\x4f\xfe\x64\xb9\x05\x63\x79\x69\x73\xc8\x48\x1b\xc7\x45\x07\x31\x4d\x02\x2b\x30\x81\x30\xb7\x51\x52\xf0\xdf\x58\x81\x92\x6f\x27\xbc\x5b\x61\xf9\x60\xb1\x61\x69\x37\xc0\x7a\x71\x14\xe5\x2e\xee\x94\xdd\x28\x56\xa3\x72\xcb\x4a\x90\x28\x80\x5a\x6d\xf6\xaa\xee\xe4\xf0\x5e\x16\x76\x4b\x16\x82\x1a\x7e\xed\x4c\x0c\x1e\xd6\xf3\x1b\x45\x85\xe6\x20\xdc\xdf\x33\x33\xb0\xa2\x33\x5a\x0d\x74\xf2\x2b\xea\x16\x9c\x6e\xdd\x4a\xbb\x35\x88\xd1\x6b\x76\x57\xe7\xef\x84\xf1\xaf\x1b\x29\x00\x4b\xaa\xef\x4b\xef\xbe\x45\xdc\x62\x8b\x33\x07\xd0\xde\x2b\x0d\x01\x12\x2f\x9c\xb9\xf2\x7c\xf9\x72\x11\xa2\xc9\xf2\xfc\xf4\x69\x86\xd7\xc5\xa8\xb5\x36\xcc\x2d\xae\xa0\x85\x43\xc3\xe8\x1e\xce\x86\x37\xf0\xca\xe0\x26\x6a\x43\x5c\xc3\x5b\x8c\xe6\xb8\xfa\x38\xb2\x37\xad\x0d\x22\x60\xbc\xbf\xf5\xdc\xae\xc7\x7d\x33\xc5\x3d\x23\xec\x79\xf9\x66\xf5\xd3\x62\x16\xc4\xfc\xae\xc1\xa4\x40\xe4\x76\x1f\x4b\xfc\xaa\xad\x24\x46\x01\x45\x3c\x4b\x27\xed\x77\x03\x61\x2c\x4d\x8f\x07\xf6\xb5\xf1\xad\x9f\xac\x96\x2f\x79\x3e\x19\xf0\xe3\x03\xdb\xde\xe7\x8e\x11\xb3\x68\xf9\xae\xf8\x35\xe4\x57\x1e\x5c\x57\x7e\x58\x18\xf2\x3c\xfd\xfd\x34\xb8\xb4\xfc\x95\xe5\x67\xd4\x17\xe1\x2e\x1c\x1d\x38\xbb\xd5\xc5\xb7\xb5\x8f\x5f\x97\x69\xd4\x50\xa6\xf9\xf4\x4f\x09\x35\xb4\x13\x6a\x1e\x4a\xdf\x31\x70\xae\x54\xdf\xd2\x1d\xd2\xaf\xb0\x7b\xdf\x10\x6a\x62\x7e\x87\x2f\x3f\xec\x97\x6f\xe0\xb3\xaf\xdb\x1e\x7d\xc3\x36\x46\x1d\x1a\x26\xc9\xd5\xc3\xb6\x49\x68\x5b\xce\xb6\xbd\x5b\x9d\xde\x50\xc9\x62\x95\x6f\x58\x2b\x6d\xb9\xd9\xb8\x3e\x43\xec\xe1\x11\xc5\x3f\x69\xbf\x54\x32\xe3\x8c\x96\x2c\x22\x74\xcb\xaf\x16\x2f\x75\xc6\x4d\xa8\x43\xeb\x35\x67\x0e\x85\x3a\x2c\xe8\xec\x9b\xfe\x29\xe3\xa4\x4b\x7a\x49\x5e\x8b\x15\x17\xdc\xec\x86\x8b\x6b\x68\x88\xc9\xf5\x4f\xf0\x80\x11\xae\x21\x1d\x9a\xb7\xfd\x64\x11\x39\x80\xaf\x85\x21\x05\xcb\x65\xc1\x3e\xbd\x7f\xdd\x43\xaf\x64\x55\x4b\x81\xfa\x53\xe1\x1f\x76\xd0\xe0\xa1\xce\x69\xcd\x48\x23\x1c\x60\x37\xf8\x90\x9f\x7c\x93\x3b\xff\x08\x76\xcb\x2c\xb9\xb8\xa6\xa5\x85\x5e\x3b\x15\xaa\xbd\x7b\x4f\xc5\x9a\x39\x90\xad\x98\x62\x22\x77\xb7\x1f\x8c\xac\x5f\x43\xfd\x31\xb7\x0f\x3b\x61\xe8\x8d\x7d\xf2\x71\x57\xbb\x34\x9f\xde\xbf\xb6\x80\x75\xf3\x41\xde\x52\xb3\x21\x3f\x02\x3e\xfe\x60\x95\xa3\xd6\xc7\x09\x41\xaf\x14\x04\xab\xfe\xc3\xf7\x83\x9b\x3f\xfe\xde\xde\xbc\x16\xe6\xe9\x1f\x3b\xd0\x27\x79\x2d\xcc\xbf\x5a\xe8\x13\xef\x13\x00\xec\x53\x00\x3c\x48\xf2\xaf\xaf\x4a\x5a\xd5\xac\xb0\x31\x78\x7d\xd9\xac\x56\x4c\x41\x99\xe8\xbf\x73\xb6\x25\xff\xf3\xc3\x3b\xe8\x30\x53\x92\xde\x1c\xd4\xdb\x90\x39\x1a\xe2\x4d\xc9\xee\x98\x8d\x91\x0f\xbb\x6a\x29\x4b\xf2\x81\x19\xf2\x96\xd6\xe4\x17\x46\xaf\x00\x86\x10\xee\x7f\x56\xf2\x66\x07\x8d\x88\x9a\xd2\x9f\x95\xac\xb8\x06\x29\xf0\x1b\xe6\x20\x40\x90\xdc\x16\x9a\xde\x20\xe4\x74\x2e\xdf\xc1\xbc\xfb\x97\x2e\x1a\xb7\x2a\xdc\xb1\xca\xe8\x55\xa1\x69\xfa\xf8\xc0\x46\xfb\xaa\xdb\xb5\xc1\xef\x6d\x70\xf1\xb6\x55\x9d\x81\x98\x58\xec\xad\xaa\x71\x88\x71\x38\xea\x13\xdf\xbf\xb5\x7a\x42\x8d\x4e\x3c\x06\x06\x4c\x16\xbf\x03\x16\x5a\x44\x0f\x91\x9a\x20\x0e\x7e\xd5\x37\x48\x6f\xd4\x43\xf2\xa1\x63\x3d\xe7\x4f\x82\x45\xa3\x19\x09\x2d\x5b\xd2\x52\x5d\x45\x10\x37\xb9\xa3\x69\x98\x7c\xfe\xee\x51\x27\x7c\x1d\x16\xf3\xee\xf2\x1c\x2a\x4c\x6e\xe3\x43\x0b\xa8\xe5\xd4\x58\xa4\x3c\xbd\x83\x92\x0f\x38\x58\x2b\x33\x2f\xbc\x48\x83\x0b\x48\xef\x3f\xbc\x1f\x05\x2d\xf4\x09\x20\xa2\xd6\x56\xb5\x45\xd4\x14\xa5\xe9\x12\x97\xcc\x50\xf2\x3f\x50\x9b\x41\xda\xe0\xfe\x02\x10\x34\xe8\x43\x24\x07\x6d\xd7\x66\x69\x1a\xb5\x96\x23\x44\x73\xaf\xf3\x81\xf8\xe4\x23\x7c\x89\x3d\xf1\xb0\x03\xc9\x78\xa5\x0f\x1a\xac\xde\x57\x01\x1d\xea\xca\xa0\x3f\x74\x57\xcb\xc9\x33\x4c\x16\xa6\x40\xe7\xdb\x74\x3b\x4a\x27\xd1\xf9\x24\xd6\x6f\xa6\xc1\x4d\x55\x7a\x89\x70\xf2\x0c\x9e\xe8\xe3\x74\x02\xcf\xae\x78\xed\x05\x35\x7c\xf0\x70\x0e\x36\xd5\x37\x33\x70\x2b\x79\x50\x98\x87\xc9\xf1\x5f\x87\x77\x50\x9b\xdb\x49\xaf\x1a\xbb\xaf\xea\x34\xde\xee\xe7\x1f\xeb\x0c\xb1\x0d\x50\x58\x9a\xb7\xbf\xeb\x84\x87\x79\x38\x5e\x4c\xee\xee\x6b\xf9\xba\x51\xdc\x21\x17\xf0\x2d\xf6\xe4\x2e\x4f\x82\x74\x49\x35\xb9\x91\xea\xb0\x62\xb6\x50\xdf\x85\xb3\x47\x8f\xa2\xaf\x6e\xa5\xf8\x15\x0d\x0d\x1f\x10\x3f\xbf\x46\xac\x70\x01\x66\x3e\xe0\x25\x16\x80\x92\xd8\x34\x88\x83\xf8\x50\xe1\xa8\xbc\x79\xeb\x81\xe6\xe8\x9e\xac\x77\xd7\xca\x74\x31\xb4\xa4\xf2\xdd\x62\x27\xe3\x14\x8d\xa2\x9d\x86\x01\x11\x12\x22\xac\x6e\xe3\x49\x70\xd8\x97\x74\x90\xb8\xf7\x02\xe0\x1c\x86\xf9\x4d\xd8\xf1\x29\xba\xe7\x89\x6f\x5d\x81\xbb\x37\xbe\xd2\x60\x15\xbd\x62\x2b\x5e\x7e\x7d\xbf\xd1\x3f\xb1\x39\xe4\x3e\x9a\xab\xae\x82\x18\xb2\xb6\x2a\x30\x27\x61\x23\x66\xb3\x63\xfd\x97\xe3\x64\x32\x40\x37\x83\xbd\x3a\xdd\xd3\x3b\xba\xdf\x6e\x17\x4f\x3e\x9d\x9b\xc5\x7e\xbf\x7f\x40\x62\x9f\xa7\xdb\xc5\x68\x8a\x86\xec\xf7\xb0\x64\x3a\xfe\xf9\x2f\xef\x2e\xff\x63\xfa\x0d\xd3\x3c\x9b\x22\xd8\xc7\xe5\x74\x32\x4f\xc7\x90\x59\xa7\xe3\x32\x23\xff\x62\xc7\x83\xc2\x88\x31\xdf\x90\x8a\x11\x49\x7c\x9d\x7d\xb4\xba\xa7\x6c\x8a\xfa\x51\x95\xdc\x76\x36\xa2\xcf\x26\xdf\x40\xc1\x56\x71\x70\xcf\x86\xd5\x13\xb1\xde\x35\x52\x6f\x44\xdc\x8d\xc8\x43\xcb\x69\x67\x14\xfb\x39\xd5\xc1\x93\xe4\xd9\xf9\xdf\xa1\xb2\x56\xca\x7f\x48\x19\x86\x5b\xf4\xfd\x56\x7d\x05\x73\x3c\xa0\x46\x56\x10\xf9\xeb\x12\xae\xba\xc0\x2b\x3c\xae\x4b\xae\xcd\x70\xcf\xd9\x21\x0b\xfe\xec\xd1\x8f\xef\x5e\x7d\xfc\x8f\x9f\x2f\xbc\x39\x05\x92\xbd\xdc\x13\xfe\x7e\xf4\x3b\x85\x7c\x88\x6b\x5b\x41\x1c\x9c\x9c\x9c\xa3\xfc\xf5\xf4\x14\x90\x19\xe4\x94\xa6\x8f\xd2\x74\xfe\xea\xc7\x17\x1f\x5f\x0c\x5e\x4c\xd3\xc5\xf9\x40\x8d\x34\x79\x96\xce\xc2\x7a\x53\x47\x33\x3b\x72\x67\x0e\x89\xd7\x9b\xba\x53\xeb\xd9\x2d\x94\xf8\x3a\x08\x79\x1e\x0d\x7b\x89\xc4\x4b\x75\xcf\x70\xcf\x45\x38\x4b\xd2\x54\xb7\xe7\xed\xe3\xa8\xb7\x08\xb9\x15\xe8\x50\x14\x13\x58\xab\x4c\xb5\x18\x6a\xd6\x9e\x4d\xf0\x11\x14\xcc\x0e\xec\x37\xb8\x0a\x08\x0d\x09\x03\x65\xb1\xbf\xf7\x29\x14\x40\xbe\xf9\x2d\x2b\xa2\x3c\xfc\x31\x7c\x76\xf8\x35\x6a\xb7\xd1\x38\xc1\xe6\x40\xca\x09\xec\xe6\xbb\x25\x55\xf7\x0a\x64\xfb\xed\xda\xd3\xaa\xd9\x4d\x55\xf6\xed\x78\xd0\xc8\x9e\xde\xc1\x93\xfb\x4d\xe7\x16\x24\x27\xb3\x01\xb1\xc6\xad\x7a\xb1\x1d\x86\x93\xf3\x67\xa9\x5e\x8c\x9c\x3c\xfd\x2d\xfd\x7b\x45\xd5\x55\x21\xb7\xe2\x1f\xe8\xe0\x2b\x18\x91\x95\x4b\x09\xc0\x40\x1f\xdf\xa1\x0d\xc7\x6f\x7e\xfe\xee\xf6\x69\xfc\xc7\x7d\xaf\x6e\x86\xb8\xf1\x68\x96\xa6\x62\x9e\x9c\x2c\x6e\xbf\x8f\xf7\x8f\x3b\x85\x6e\x67\x07\xd4\xb1\x02\x3d\x85\x5e\x36\x65\xc9\x2c\xe7\xf9\x39\x9c\x1f\x8f\x4e\x16\x6d\x98\xa6\xc5\x28\x4d\xc7\x11\x30\x2f\xdd\x4a\x91\x36\x4a\x3a\xb6\x73\x7e\x9c\x2d\x6e\xbf\xdf\x8f\x47\x33\x07\xf9\x34\xac\xaa\x37\x54\x73\x3d\x60\x8b\x8f\xb1\x50\xc7\xae\x88\xd9\x78\x34\xcb\x02\xc7\x9b\xd9\x77\x70\x17\x96\xfd\xfe\x39\x7e\xef\x40\x83\x8e\x8e\x20\xba\x4a\xff\xfd\xef\x7f\xdf\x1e\xeb\xe3\xc7\x98\x06\xee\x00\x76\xdb\x0c\xc6\xa3\x99\xdf\x72\xf0\x39\x24\xb7\xbf\xdf\xb7\xff\x5b\xe4\x97\x89\xfd\xf7\x50\xb9\x7d\x92\xa6\xc7\x8b\xdb\x1f\xe2\xc3\xc6\x4b\xd3\x39\x96\x74\x31\x4f\xd3\x30\x4d\xe7\x8b\xf1\xf1\x6c\x9e\xa6\x51\x9a\x2e\x16\x77\xd5\xa4\x03\x0e\xfc\x80\xf8\xb1\x3b\x76\xf0\xb1\x53\x90\x8a\x2b\x97\x76\x81\x8a\x04\x4c\x1e\xdd\xd5\x94\x63\xc6\x28\x92\xf4\x89\xef\xe5\xed\xf9\x8a\x7e\x18\x7f\x4e\xe7\x76\x43\x54\xba\x98\xde\x5d\x54\xec\xb3\x1b\x2e\x9f\xdd\xff\xac\x2f\xe1\x64\xea\x34\xc3\x40\x36\x30\xd9\xb7\x94\xa8\x62\xcd\xc5\xcd\x7f\x67\x17\x68\x5a\x8c\x06\xaa\x5d\xb7\x05\xc7\xb6\xfe\x1c\xa5\x9e\xe7\x0b\xa7\xa5\x71\xbb\x41\x2d\x85\x71\xcb\x72\x93\xcc\xae\xcb\xdd\xdb\x12\xeb\xf6\x13\x0d\xd9\x24\x29\x18\x59\x96\x12\x8d\x73\x50\x47\x40\xb8\x58\x49\x22\xa4\xe1\x39\x43\x0b\x00\xb7\xfc\x9f\x2b\x6e\xbc\x31\x8c\xd5\x5f\x94\x54\x1b\x52\x33\x55\x51\x94\xca\x15\x2b\xb8\x82\xa7\x57\xd6\xde\x55\x19\xcd\xd7\x84\xd5\xb2\x2c\x09\x5e\x26\x05\xbb\x9e\x00\x04\x7c\xd9\x14\x57\x2a\x1c\x77\x3f\x54\xd3\x1f\x2e\x23\xc4\x66\xf1\x0f\x48\x9d\x17\x5b\xac\x7d\x7e\x34\x9d\xb8\x81\xa0\xef\xf2\x78\x73\x73\x77\x43\xd0\xbd\x6f\xd8\xcd\xc1\x9f\x7d\x0e\xed\x6d\x7b\xe6\xb0\xac\xfd\xc8\x7f\xa5\x29\x08\x2c\x6e\xe6\x3d\x94\x22\x4d\x8f\x71\xcb\x01\xee\xc8\x38\x41\xdb\xbb\x41\xf9\x30\x0a\xd0\xc5\x08\xe7\xb9\x2f\xcf\xfd\x55\xa6\xa7\xf1\x0f\x7b\xeb\x89\xe2\x1b\x60\x38\xb5\xd0\x1f\xf6\xd1\xcc\x6e\xfb\x78\x38\xb7\xd1\xfc\xea\xaf\xd5\xdb\xf5\x9f\x0b\xbd\x29\xb6\xbb\xc5\x31\xa4\xb5\x93\xce\x3c\xc4\x10\xe0\x60\xf5\x5b\xcb\x07\x0c\x5e\xaf\xe4\x1b\xdd\x0e\x84\xb4\xdb\xe0\x3e\xe6\x75\x89\x3b\xf9\x66\xf8\x32\x36\xdd\x59\x7b\xfb\xd0\x82\x4a\xb7\xb0\x65\xb7\xd1\x3b\xaa\xa7\x5c\x3e\xc8\x21\xcf\x3f\x63\x1f\xed\x17\x5f\xe5\x7a\xad\x49\x1c\xbf\x66\xf9\x57\x67\xdc\xd0\x84\x00\x35\x0f\x2f\xfe\xbd\x7d\xf5\xa2\x7d\xf5\x53\xfb\xea\xcf\xed\xab\xd7\xed\xab\x37\xed\xab\xb7\xed\xab\xcb\xf6\xd5\xc7\xf6\xed\x5f\xdb\xb7\x3f\xb7\x6f\x3f\xfe\xb5\x7d\xfb\xf1\x4d\x7b\xf9\xa1\xfd\xf0\xea\xb2\xfd\xf0\xd7\xf6\xd3\xeb\xf6\x97\xbf\xb6\x7f\x7b\x15\xa5\xe9\x76\x64\x4d\xbd\xbe\xba\x53\x02\x17\x2d\xbc\x3a\xce\x1a\xd5\x1d\x6c\x76\x18\x6e\x6f\xb0\xfb\x19\xbe\xbd\x8b\x01\xed\x18\x07\x5b\x16\x7a\x1d\x23\xda\x11\x7e\x6b\x9b\x42\xb7\x35\xc1\xae\x49\xfc\xf7\xf7\x1f\x3c\xa4\x87\xdc\x42\x05\x33\xe3\xf7\x20\x74\x76\x85\x54\xc3\xeb\x78\x8f\xbe\x01\xd0\xa1\x3e\x79\x7e\xb8\xd6\x53\x78\x35\xa6\x90\xc2\x9a\xf0\x3b\x95\x65\x23\x38\x36\xdc\xeb\x97\xef\x1a\x53\x32\x43\x5e\xbf\x7c\xe1\xdc\x92\x22\x81\x25\x5b\xd4\xa2\xca\x7a\x47\xb8\x40\xcb\x47\x2e\xe0\xba\xdc\x61\xdc\x72\xa7\xd8\x8a\x48\xc1\xb6\x74\x47\xb2\xcc\xbd\x93\x65\xf8\x56\x96\x21\xd2\x23\x59\x46\x1b\x23\x15\x2b\x19\x45\x5b\xc4\xe7\x7e\x55\xe5\x79\xbf\xde\xf2\xdc\x2d\xb8\x3c\x37\x6a\x87\xf1\xe8\xee\x93\x3c\x67\xa2\x20\xcf\xad\xe6\xe3\xb9\xd5\xe5\x3e\xf7\x5a\xe0\xe7\x7d\xae\xac\x86\xce\x82\x3a\x9b\x0d\x83\xce\x27\xcf\xbd\x7d\xe2\x73\x6f\xbe\x40\x9e\x5b\xff\x07\xb4\x24\xcf\x9d\x4a\xae\x80\xfc\x81\xa4\x93\xe7\x7e\xdd\xe8\xb9\x53\xd2\x3e\x2f\xd8\x4a\x93\xe7\xb8\xb1\xdb\xf0\x25\x2f\xb9\xd9\x65\xd6\x3a\x32\xcb\x96\x8a\x17\x6b\xd6\x01\x19\xae\x5a\xad\x98\xea\x63\x14\x33\x14\x15\xb8\x77\x62\x48\x96\xe5\xd2\xb9\x80\x46\x58\x18\x45\xfb\xfb\x2b\x2e\x0a\xb9\x22\xd9\xa5\x14\xa8\x08\xce\x2e\x9b\xb2\xc4\x01\x88\x50\xd6\x08\x5d\xb3\x9c\xaf\x38\xe6\xfc\xd3\xa7\xcb\x57\x1f\x5f\xbf\xbb\xcc\x32\x92\x65\x3f\xbf\xbf\xf8\xf8\xf1\x3f\x0e\xe3\xba\xe9\x9e\x65\x64\xcd\x0c\x8c\x39\x6d\x03\x57\x1a\x6b\x29\x9a\x35\xa2\x2b\xaf\x70\x5f\x16\xfe\xc3\xe2\xee\x77\x31\x42\x31\xc8\x08\x13\xf8\xb5\x14\xab\x61\xc7\xdd\x2f\x97\x1f\xb2\x1f\x2f\x3e\xbc\xfe\xf3\xe5\x8b\x8f\x17\x3f\x66\xaf\x2f\x5f\x7f\x7c\xfd\xe2\xcd\xeb\xff\xbc\x78\x0f\x4f\x3e\x5d\xbe\xf8\xf7\x17\xaf\xdf\xbc\x78\xf9\xe6\x02\x6e\xdf\x5f\xfc\xdb\xa7\xd7\xef\x2f\x3e\x64\x1f\x3e\xfd\x6c\x13\xbc\xbf\xf8\xf8\xe9\xfd\xe5\x87\xec\xf5\xe5\xe5\xc5\xfb\xec\xe7\x77\xaf\x2f\x3f\xda\x07\xaf\x2f\xdf\xbc\xbe\xc4\x97\x0e\x72\xf8\xf1\xe2\xe7\xf7\x17\xaf\xe0\x53\x70\x77\x71\xf9\xe9\x2d\x84\xef\x7e\x86\x66\xf8\x00\xe0\x87\x5f\x5e\xff\xf4\xf1\xee\x77\x5f\x7c\xf8\xf0\xe9\xed\x45\x76\xf9\xee\xf2\xf2\xd3\x9b\x37\xd9\xcb\x8b\x3f\xbf\xbe\x7c\x20\xfe\xe2\xf2\x47\x5b\xa6\x9f\x5e\x5f\x5e\xfc\x98\xfd\xf4\xee\xbd\xcd\xae\xcf\xf7\xf2\xc5\xdb\x8b\xc1\xdd\xbb\x8f\x7f\x79\xff\xee\x17\x2c\xd7\xa7\xf7\xaf\x2f\xff\x0c\xd0\x5f\x5e\x5c\xfe\xf8\xc6\xd6\xe1\xe2\xf2\xc7\xc1\xdd\xbf\xbf\x78\xf3\xe9\xc2\xd6\x17\x6f\xdf\xbd\xfe\xd1\xde\x0d\x16\x07\x7a\x5b\x57\xf2\xd3\x8b\x37\x1f\x2e\xc8\xc7\xf7\x9f\x2e\x88\xe0\x25\xf9\x8f\x8b\x0f\xe4\xf2\x9d\xdd\x51\x30\x58\x1b\x78\xf9\xee\xdd\x1b\x52\x70\x8d\x36\x34\x99\x14\x39\xcb\x4c\x7f\x8f\x7c\xc3\x30\x02\xd7\x29\xba\x3b\x7a\x78\x0b\x6f\xa3\x92\x79\xe2\x0c\x98\x9e\x0f\xad\xd5\x16\xc7\x93\x58\x24\xc1\xf3\xde\x80\xfa\xb9\x1d\x0d\x38\xb1\x65\x0e\x73\xb2\x5b\x3c\x43\x45\xff\x03\x86\x22\x15\x08\xc1\x72\xf9\x6b\x6e\x83\x93\xdc\xa9\x76\x4b\x5c\x4e\x74\x3b\x1b\xee\x6d\x96\xf0\xcb\x56\xdd\x0a\xe0\x9d\x6d\x98\xcf\xbf\xbd\xfb\xd2\x59\x3d\x00\xa1\x4b\xd3\x85\xdd\x5e\xe9\x6e\xe6\x9f\x9f\x2c\x7a\xb6\xe1\xbe\x8d\xe7\x50\x1e\x3f\xb9\xf3\xd5\x43\xcb\x8a\x67\x43\x0b\xd2\x43\x55\x1f\xaa\x80\xc5\xb7\xbc\x84\xc3\xab\xe1\xad\x15\x5b\x9d\x7a\x55\x60\x9b\x0c\x57\xfb\xac\x57\x9c\xa1\x47\x9c\xaf\xb2\xc7\x35\x53\x0f\xab\x53\xd6\xcc\xd4\x5b\xe0\x2d\xd7\xcc\xa0\x03\x18\x61\x08\x0a\x41\x50\x41\x52\xe9\xb5\xca\xaf\x89\xce\x69\x49\x95\x75\x0f\x51\x2c\xab\xbc\x94\xda\x1b\xb0\x96\x39\xa9\x28\xd1\x3b\x6d\xa9\x8f\x01\x1c\x23\x0a\xe7\xdd\x43\xef\xb4\xac\x99\x20\x7a\x53\xd9\xc7\xd7\x2c\x27\x5f\x6e\x48\x63\x78\xc5\x9c\xdb\x0e\x89\x96\xdf\x55\x6e\x4a\x1b\x81\x8f\x80\x9c\xd5\xbc\x66\x03\xb2\xeb\x7c\x3e\xa0\x3f\x0f\xbf\x17\xa7\x58\x56\x98\x7f\x2d\xd1\xad\x45\xbd\x56\x35\xb0\xd5\x08\x6f\x05\xad\x88\x62\x5b\x2e\x8a\x82\x2b\xf2\xe5\xcb\x8a\x97\x4c\x48\xf2\x65\x4b\x98\x28\x70\x84\x42\x5d\xed\x0a\x1d\x33\x1b\xa9\x0d\xdc\x2f\xd1\xc5\x80\x6e\x4f\x09\xe4\x8c\x3e\x3e\x3a\xf7\x27\x34\xdf\x10\x5d\x32\x56\x43\x0e\x6b\x05\xc9\xf5\xa6\x31\x20\x22\x93\xa2\xa9\x6a\x92\x6f\x24\x5c\xa5\x10\xc0\xa4\x43\x8b\xca\xfc\x0a\x69\x7a\xc1\x19\xb1\x9e\x27\x6a\x6a\xfd\x86\x68\x06\xfc\x4b\x0e\x5c\x03\xd7\x06\x50\x68\xc1\x6e\xa0\xa5\xe0\xb5\x66\x89\x8c\x0a\x14\x74\xeb\x18\x7f\x49\x4a\xf4\xaa\x51\xe9\x35\xb4\x95\x76\xd5\xa5\x4b\xb7\x83\xcc\xc9\x0d\x76\x8b\x17\x90\xe5\xb5\xad\xd4\x72\x47\x8b\x02\x28\xbd\x75\xc3\xb2\xca\x05\xbc\xbd\xd3\xe8\xa2\x04\x79\x99\x35\x33\x82\xf9\x74\x68\xae\xbf\xae\xb0\x17\xf4\xae\x02\x61\x0c\xba\x67\xcd\x0c\xb1\xaa\x52\x72\xd3\x9e\x62\x03\x33\xeb\x2b\x88\x28\x96\x5f\xe3\x8e\x30\x6d\xeb\x2b\x6b\x83\xfb\xda\x50\x76\x71\x67\x3b\xf4\x85\xc1\x57\xd6\xcc\xac\xe1\x65\xa2\x4d\x53\xec\xb0\x6b\x91\xab\x61\xa2\xf0\xfd\x60\x3d\xc5\xe4\x1b\x59\x13\xab\x99\xf5\x59\xb8\xb1\x2a\x18\x42\x40\xb8\xb1\x34\xbe\x3f\xdd\x30\x76\x1f\x52\x54\x14\xa4\xba\x82\x6e\xac\x25\x64\x57\xc9\x82\xec\xda\x53\x62\xbd\xde\xc2\x07\x7d\x46\x76\x44\x09\x76\x83\x5b\x3d\x04\xb4\xb3\x16\xd6\x75\x0c\xbc\xde\xe0\x88\xc7\xe6\x58\xf7\xf5\xc4\x2f\x73\xa9\xb8\xd9\x11\x65\x7b\x70\x4b\x85\xb1\xfb\x02\x37\xd0\x9f\x3b\x6d\x58\xd5\x97\xca\x7a\xba\x10\x85\x9f\x6a\xd0\x59\xf9\x46\xa1\x4f\x0b\x46\x54\x85\x25\xf5\xfe\xf5\x89\x61\xe8\x8f\x05\x1d\x35\xad\xa4\xba\x82\xe1\x81\x13\xa0\xc9\xf1\xdc\x18\x1c\x05\xbe\xe6\xcc\xda\xf8\x68\xcd\xd8\x15\xf1\x05\x5d\xab\x35\x6e\x8e\xc5\xf9\x05\x63\xbd\xe6\x05\x69\x84\x6f\x36\xec\x77\xd7\x8b\x9a\x19\xe7\xd5\x66\xad\x58\x8d\xbd\x6d\x7a\x0f\x18\xd6\x1d\x4f\xe9\xbe\x6b\x5d\x70\xa0\xe8\x6a\xd9\x6f\xe7\xa2\xc6\xbb\xfa\x29\x4b\xcc\x07\xa6\x61\xc3\x0b\x52\xed\xba\x3e\x5a\xee\xac\xf0\xd4\xed\xa2\x15\x05\xd1\xb8\x51\x25\x27\x7e\xd9\x5b\x63\xb7\xd1\x1c\xb7\xd0\x7a\xd6\x0c\xaa\xe5\x33\x75\x19\x41\xb9\x35\xab\x64\x4d\x64\x03\x4c\x8d\x8b\x60\x57\xc0\xb0\x7f\x69\x4f\xa1\x65\xd1\xb1\xd5\x4e\x5b\xb4\xe1\x71\x9d\x90\x24\x57\x3b\xdb\x7f\x39\x0c\xb2\xad\xb0\xfb\x0c\x3d\x0b\xed\x87\x97\x1e\xf4\xaf\xdf\x47\x04\x1d\xa5\x39\x0e\x10\x98\x15\xb8\xcd\x14\x26\xe6\x9a\x99\x52\xae\x79\xe7\xa6\x84\x95\x9a\xaf\x80\x72\x8b\x1c\xb8\x5d\xf4\x9b\x74\xc5\x76\x1a\xf7\xc8\x40\x2e\x85\x45\x03\x05\x57\x5c\xe2\x94\xb6\x9e\x69\xa0\xa8\xd8\x7d\xb8\xca\x7f\x23\x95\x8f\x61\x64\xc9\x05\xfa\xbd\xd6\x3d\xae\x06\xae\x5e\xaa\xc2\x3a\x4f\x02\x2c\x5d\x11\x44\x9c\x76\xd7\x29\x8e\x00\xb7\x59\x0a\xa7\x14\xfa\xee\x81\xf7\x6d\xf4\xda\x90\xd2\x10\xa9\x88\x60\xa4\x6a\x4f\x9d\x1c\xb3\xe6\xd7\x80\xb4\xe9\x0e\x2b\x86\x4e\x78\x44\xd0\x6d\xb4\xe9\xd6\x86\xe7\x8f\x9f\x2f\xee\x2c\x0e\x1b\x5c\x91\x5e\x4e\x83\x93\x73\xbf\xc4\x83\x4b\x3e\x03\xad\x8b\xd7\x9c\xa7\x8f\x7f\xf7\x7c\x11\xa6\x9f\xd3\x6d\xba\x6c\xbf\x4b\xb7\xa3\x70\x3a\x4d\xb7\xa3\xe8\xb8\xbd\x4d\xb7\xa3\x7d\xeb\x63\x8e\xa3\xe3\xe8\xe0\x9d\xf9\xe7\x54\xa7\xdb\x5b\xeb\x71\x6e\x8f\x2b\xd1\x56\xc7\xa0\x62\xb1\x88\x75\x32\x17\xce\x26\x11\x95\xdf\x9f\xd3\x34\x41\x0b\xce\x20\x4d\x93\xbc\x31\x41\x6c\x15\x39\xfb\x28\xa6\x77\xd5\x21\xdc\xeb\x28\xbe\xcc\xbf\x6c\x6f\xd4\x62\xd6\x59\xdb\x78\x25\x99\x9a\xfe\xc1\xd2\xdd\xc3\x14\x03\xcd\xd8\x57\x52\x0c\x5a\xe9\x2b\x29\x5a\x97\xa2\xfd\x6a\x8a\x67\x2e\xc5\xf9\x30\xc5\x36\x4d\xf5\xe8\x0b\x3e\xf9\x32\x88\xef\x9c\x4d\x1e\x7a\x9d\x38\xe4\x50\xee\x2e\xd8\x3b\x9e\xe2\x16\xc4\x6d\xbb\x36\xd7\x6b\x17\x82\x93\x19\x44\xdb\x92\x24\x58\x88\xee\xf9\x03\x4a\x16\xeb\x36\xe2\xf4\xe4\x5f\x32\x34\x62\x83\xbb\x9b\xf9\xe9\xc9\x9f\xac\x6d\x5b\x17\x39\x7f\x7a\xf2\x27\x34\x03\xca\x16\x56\xa9\x63\xed\xe1\xa2\x59\xd4\xce\x4f\xb3\x45\xaf\x46\xb9\xb5\x79\x4e\xd2\x74\xd2\x1e\xae\x9e\x23\x9e\xf2\xcb\xe7\x88\xc5\x5b\x47\x74\x5a\xc0\x63\x87\x6b\xe9\x1e\xa9\x21\x47\xe1\x49\xa5\xa3\x50\x8a\xd5\x41\xbf\x3c\xd5\x69\xcb\x7a\x97\x88\x41\xa8\x5b\xa3\xda\x5d\x34\x09\x81\x55\x1c\xb7\xf3\xcf\x93\x45\x74\x7c\xe7\x0e\x95\x64\xc7\xc1\xd0\x15\xd4\x30\x8b\xaa\xfd\xa2\xa2\x99\x73\x8f\xe3\xd3\x76\x6b\x9d\xc3\xd6\x3c\x5c\xad\xd6\x8d\x63\x0a\xdd\x98\xb4\xcb\xfa\xd1\x6c\x7e\x76\xbb\x08\x3a\x73\xfe\x3f\x74\xfb\x5c\x5c\xa7\xa5\xe9\xf6\xb0\x11\x3f\x67\xd9\x8f\x2f\x3e\xbe\xc8\x32\xa7\xb6\xce\x40\x26\xc1\x3b\xfd\x66\x1a\x54\xf2\x57\x59\xf2\x9c\xcb\x46\xf7\x36\xdb\xcf\x9f\x8f\x8f\x3b\xf6\x77\x60\x0f\x8f\x3e\x74\xba\x85\xd4\x3c\xd1\x31\xc5\xeb\xd0\x90\x1f\x17\xb4\x2a\xeb\xc6\x6e\x9e\x6e\xd3\xb1\x75\x61\x67\x70\x99\xfc\x6b\xbc\xea\xe6\x61\xb7\x2c\xd6\x1c\x65\xe4\x5d\xd3\xfe\xef\x27\xff\xeb\xff\x1a\x8a\x23\x78\x7f\xdc\xef\x08\xec\x16\x2f\xbb\x05\xac\x16\x97\x56\xee\x7a\xe2\xf3\x2a\x4a\xe5\x55\x94\x4f\x96\x87\xd3\x64\xd9\xd9\x48\x1f\x6c\x7b\x7b\xf1\x01\x77\xbd\xe1\x49\x2f\xd1\xc1\x93\x7f\x1b\x3e\x59\x78\x04\xe8\xbd\x3a\xbd\xba\x7c\xfb\x90\x4e\xb0\xde\xd4\x3f\x40\x63\x6d\xea\xdf\xdb\xe0\x0f\x36\xf8\x63\xb7\x14\x78\x35\x0d\x80\x2e\x3a\xdf\x25\x28\x9c\x59\xe7\x07\x9d\x1d\xaf\xdb\x7d\xe9\x15\x2c\xe8\x2c\xaf\x97\xce\xa8\xf6\xca\x2d\x60\x40\xac\x7e\xc9\x72\x2a\xde\xba\x97\x89\xc2\x92\x73\xa9\x06\x96\xbe\x4c\x14\x9e\xf6\xa1\x72\xc9\xee\xce\x44\x07\x83\x1a\x98\x86\xce\x58\xd6\x6b\x73\x90\x1f\xed\xc8\x25\x6a\x6f\x80\x39\xe1\x9d\xdf\x15\x92\x65\x3f\xbd\x7e\x73\x91\x65\x84\x55\x35\xb0\x4e\x96\xcb\xb0\x55\x2a\xa4\x23\x7a\x76\x92\xe2\x72\xac\x73\xb4\x07\x4c\x58\x96\xbd\x7a\xf3\xe2\xc3\x07\xd4\x70\xbc\x79\x7d\x89\x99\xf4\x2a\x38\x3b\xa7\x91\x72\x0a\xb6\x75\xf6\x7f\x59\xe6\xac\x2e\x32\xe7\x07\x11\x9d\x73\xa0\xe5\xa0\xd7\xcd\xf1\xce\xba\xf7\x50\xb3\xc2\x44\xe1\x5d\x0f\x5a\xbb\x65\xa3\x76\xf7\x74\x73\xb6\x81\xba\xed\x7d\x36\xb9\xf5\x6c\x38\x58\x07\x30\x0a\x44\x0d\xbb\x0b\xb9\x37\x48\x04\x90\x51\x54\xfb\x64\x3f\xbe\x7e\x8f\xd5\xba\x7c\xf1\xf6\xe2\xc3\xcf\x2f\x5e\x41\xdd\xac\xb5\xa1\x53\x7a\x0d\x34\xf9\x43\x7f\xb6\xf1\x2d\x2e\x61\x5a\x3b\xd9\x43\x87\xb6\xf8\xe8\x9f\xb0\xae\x0d\x83\x2c\xdb\xd0\xd2\x64\xce\xc7\x9e\x1a\x8f\x66\x67\x41\xfc\xe8\xa9\x23\x97\x30\xf8\xee\xa4\x08\xe2\xd2\xe9\xa0\xef\xb8\x1f\x83\x29\xf7\xec\xd9\xfc\x49\xb0\x98\xa5\xdb\x11\x86\x8f\x71\x29\xe1\x73\xba\x1d\x9d\x01\xdc\x79\x90\x1d\x30\x14\x3d\x8b\xd0\x6f\x57\xba\x4d\xed\x8b\xe9\xde\x2e\xae\xc7\xea\xde\xee\x8d\x49\xfa\xd8\x6c\xb8\x46\x8b\x7e\x83\x6f\x85\xd3\x69\x7b\x72\x1e\x75\x78\x22\xbd\xf9\x97\xd5\x49\x7a\xb3\x5a\x0d\x91\x45\x1f\x79\x3c\xf9\xc7\xd6\x41\x80\x64\x27\xc3\xcd\x1f\x8f\xd1\x4f\xf4\xef\x82\x4e\x1c\xbf\x6b\x1d\x14\x1c\xb0\x0d\x03\x6f\x07\xbd\x3d\x99\xf8\xba\x5f\xac\x43\xfb\x65\xb4\x96\xe9\x0d\x81\xd2\x30\x7d\x1c\xfc\xf7\xec\x94\x87\xbb\x3b\x83\x33\x6b\xef\x9c\x8e\x9f\xf8\xbd\x73\x83\xa4\x8d\xee\x12\xdd\xd1\x34\x24\xe7\xc1\xde\x96\xfa\x6b\x68\x7b\x67\x36\x5f\xb1\x1e\xea\xdd\x05\x88\xc2\x6e\x85\xe5\xda\x23\x2b\xaa\x89\x73\x42\xa8\x64\x45\x14\xe5\x20\x18\xc3\x6c\xb2\x1e\x74\xfa\xdd\x04\xb8\x57\xdf\xaa\x67\x6b\x68\x23\x6f\x73\x8d\xfe\x48\x7b\x0c\x00\xf2\x3f\x5a\xf9\x7a\x3f\x41\xb8\x3d\xc0\x4e\x23\x98\xbc\x6e\xb9\xa0\x77\x3c\x50\x02\xb6\x43\x55\x06\xad\x96\x05\x3d\x30\xdd\x15\x52\xa0\x52\xa2\x7d\x7a\x4a\x2e\x01\x03\x7d\x44\x45\xdc\x5d\x57\xa9\x17\x65\xc9\x6b\xcd\x35\xb9\x94\xe6\xb5\xef\x06\x56\x3c\x40\x8b\x3e\x87\xe7\xe7\xe7\x6d\x3a\x86\xbf\x88\x0c\x88\x51\xe7\x0f\xd0\xad\x45\xa6\xd6\x1f\x20\xda\x6c\x4d\x7a\xc3\xcc\x87\x77\x00\x4d\xc2\xa6\x5d\x46\x33\x35\xbb\xeb\xf2\x4f\x0d\x17\x67\x7d\xa2\xbb\x5e\xfe\x0e\x13\xad\x54\xab\x56\xed\x2a\xba\x97\x55\xe7\x08\xb0\x4b\x72\x2f\xa3\x3e\x49\xd3\xaa\xb6\x51\x51\xe7\x67\xf0\xa0\x14\xf8\xa8\x33\xf4\x1a\x3c\x5a\xb6\xcb\xfe\x9d\x61\xdc\xe1\xc2\x64\x5f\xc6\x81\x1b\xc3\xfb\xa5\x1b\x58\x92\xd1\xc5\xfe\xce\x36\xf4\x3b\xbb\x1b\xf0\xa4\x18\x67\x68\xff\xf2\xf2\xfd\x28\x98\x97\x6f\x7e\xfd\x9f\x8b\xd9\xd0\x74\x56\x3a\xbb\xd9\x83\x47\x68\x3e\x3b\x48\xbe\xd8\x7b\xc7\x00\x0f\x9b\x0a\xf6\xa8\x40\xc5\x1c\x2d\x64\xbb\xf3\x92\x72\x10\x5d\x38\xf0\x21\x43\xb6\x60\x17\xc4\xc1\x7a\x37\xd8\xeb\x1e\x3e\x4b\x27\xed\xc9\x79\x9b\xce\xa2\x36\x39\x77\x0d\xcf\x63\x2f\xf5\xa0\xac\x75\x1f\x9f\x15\x6c\x15\x7c\xcd\x0b\xdf\x7e\x01\xa5\x9b\xda\x1d\xdf\x8f\x6f\x93\xb3\x54\xc4\x03\xdc\x10\x6b\x6c\xd8\x93\x73\xbf\xe1\xea\x6a\x1a\xc0\x64\xb8\xaf\x26\x9d\x7c\x9e\xa7\x86\x2c\x8e\x9f\x1f\xee\x67\x5c\x86\x96\x2f\x87\xa9\x1a\xa5\xe1\xe4\xeb\x6a\x4a\xd5\x2c\x77\xdf\xda\x2d\x6d\xcf\x23\x98\x3f\x9a\x25\x8b\x59\x3b\x3f\x19\xfd\xd7\x22\x4d\x9f\xb7\xcf\x9e\xb5\xe7\xe7\x6d\xf2\x5f\x6d\x92\x24\xb3\xf6\x59\x72\xde\xce\x9f\x9d\x2f\x92\x59\x6b\x37\x9f\xb4\xf3\x93\xc9\xe8\x77\x9f\x8f\x8e\xff\xeb\xef\xed\xa2\xb5\x5e\x05\x92\xd9\xe1\x76\x03\x40\x4c\xe8\x63\xd4\xeb\x20\x9c\xb9\x36\x17\x1e\xcf\xa0\x0a\x8e\xaf\x88\x5d\x2a\x50\x0c\x70\x09\x13\x85\xf5\x97\x06\x6c\x11\x7a\x21\x45\xfd\x91\xd5\x8e\x14\x92\x2c\xd9\x40\x1f\x70\x71\xf9\x23\x51\x4c\xe7\x0d\x1b\xa2\x2b\xab\x45\x05\xa4\x65\x57\xe4\x2c\xd6\x42\x36\xc5\x33\x24\x16\x77\xd9\xd5\x27\x8b\xbd\x98\xd0\x8d\x62\x4e\xc3\x20\x55\xc7\x56\x51\x63\x54\xa6\xac\x7f\x6f\x84\xad\x23\x71\x0b\xd3\xdc\xfa\x7e\xf9\xca\xce\x03\x5e\xf6\xe6\xe4\x5f\xe1\x15\x9c\xf1\xe6\x77\x9d\x66\xdb\x8a\xde\x9d\xab\x7c\x64\x36\x68\xc7\x51\x80\xe8\x8d\x2d\x10\xc4\x08\x33\x51\xf8\x24\xb1\x33\x43\xb3\xe9\x9c\x0c\x82\x3c\x8b\x78\x1c\x44\x8b\xce\xb7\x46\xa7\x6b\xf8\xce\x8b\xd0\xd6\x06\xfd\x9e\xef\x0c\xcf\x51\xe8\x0e\x25\x1e\xa2\x91\x43\x04\xf2\x77\xbc\xfb\xbb\x33\xf7\xf8\xdd\xfc\xcb\xbf\x6d\x7f\xb9\x01\x31\xbb\xa7\xd9\xf7\x1e\x0d\x0c\xeb\x0e\x1f\xdd\x06\xf1\xff\x70\x9a\x8e\x83\xf8\xbe\x95\x0e\xa2\x9d\xe8\x77\x37\xfa\x77\x18\xfd\xbb\xbb\xd1\x76\x0b\xef\xc9\xfd\xe2\xf4\xea\x02\x37\xc9\x5e\xa6\x33\x10\x44\xad\xdd\x42\x9b\xa6\x37\x73\xbb\xbb\xfe\xf4\xe4\x4f\x8b\xdb\xa7\xf1\xf7\x10\xd7\x0c\xe3\x7e\x0f\x31\xb3\xf4\x83\x3d\xc4\x01\x8d\xd0\x9e\x85\x27\xb3\x28\xdd\x8e\x3c\xbb\xa6\x8f\xf1\x66\x8f\xbe\x46\xbe\xc9\xe1\x1c\x5a\x4e\x62\x0f\x95\xc9\x3c\x8f\xc5\x57\x18\x1c\x3b\xbd\xac\x54\xd9\x5a\x8e\x24\xf9\xaa\x9b\x09\x3b\x02\xed\xdc\x0f\xa7\xd3\x14\xd5\x44\xa1\x3d\xad\xe3\x51\x34\x0b\x7a\x7b\x46\x7d\xdc\x89\xad\x9d\x97\xa6\xe9\x34\x9a\x59\x18\x78\x48\xbf\xd7\x80\x47\x0f\xb2\x7d\x80\x26\xbb\x42\x7d\xd5\x14\x5c\x1e\x66\x33\xf0\x5e\x75\xcf\x74\xca\x59\x65\x84\x69\xfa\x08\x9a\x3b\x9a\x4d\x87\xf6\x6e\x03\x13\xab\x69\x38\x7b\x94\xa6\xda\x72\x8b\xb9\xfd\xd2\xd0\x78\xfd\xff\x7f\xe5\xca\xe3\x34\xfd\x25\x6a\xc3\xd0\xb2\xb7\xcf\xd3\xf4\x39\xba\xff\xdc\x8e\xa2\x28\x78\x60\x6f\x59\x6b\x69\x5a\x3b\xb1\xdd\x7d\x67\x63\x83\x45\x7a\x51\xd7\x25\xe2\x61\xbb\x20\xbd\xf0\xae\x72\xbc\x5b\x96\x03\xcd\x88\x1b\xf6\xca\xcd\xfd\x3b\xb1\x83\x11\x78\xe7\x89\xdd\xda\xfe\xe8\x5e\xfa\x6e\x12\xfb\x27\x07\x23\xc2\xaa\x5f\xfa\xfb\x33\x3d\xce\x93\x32\x96\x70\xc5\xdd\x2a\x4d\x12\xcc\xcf\x67\x8b\xf3\x20\x2e\x92\x60\x9e\xa6\xdb\xef\x16\x23\x34\xd0\xdb\x8e\xd2\x34\x9a\xa6\x69\x31\xc2\xcb\x79\x10\x2f\xd1\x73\xf0\x76\x74\x12\xcd\x9c\x01\x63\x1f\x84\xb5\xdd\x6b\x69\x4f\x35\x0a\xe2\x3a\xb1\x3e\x0d\x70\x2f\xc6\xe4\xce\x86\xf2\x7c\x5a\xee\xef\xae\x46\x7e\xb6\xfe\x51\xda\x60\x54\xe0\x75\x39\x0a\xa2\xbb\x1b\xd1\xf1\xbd\x07\x3c\xca\xa9\x25\x30\x14\xac\xd2\x35\xcb\x83\x38\xa8\x65\xe1\x20\xb3\x01\xda\x10\x70\xb5\x74\x4b\xb0\x03\x1f\xc3\xdc\x37\x4a\xdd\x9d\x9d\x5b\x7e\xd5\xad\xae\xfe\xf2\xe0\x52\x23\xe2\x7a\xb4\x44\x7e\x1c\x44\xf7\xfd\x79\x3c\x3b\xbf\xdd\x1f\x7f\x37\x90\x6b\x2c\xf1\x04\x12\x8b\x15\xc3\xa3\x00\xb8\x21\x4a\x96\xe5\x92\xe6\x57\x44\xd3\x6b\x56\x4b\x8e\x87\x5c\xe4\x57\x84\x96\x40\xe9\xec\xb1\x69\xa4\x50\xb2\xf6\x0b\x02\xb8\xd0\xe5\xfd\x8f\x4b\xe2\xcf\xc9\xe0\x02\x05\x03\x74\x1b\xef\x4e\x73\xf3\x6b\x68\x9d\xce\xbe\xa9\x0b\x6a\xd7\x03\x88\xde\xa0\xff\x42\xf4\xc4\xb3\x56\x54\x18\x52\x31\x85\x3b\x8d\x9d\x63\xff\x06\x15\x0b\x78\xbe\x95\x3d\x99\xc0\x2b\x02\x6a\xc5\x6a\x3c\xba\xe0\x86\xe5\x0d\xfa\x40\x47\x47\x5f\x90\xb1\x33\x5f\x01\x0e\x01\xaa\x50\x37\x90\xa3\x5f\x89\xa1\x62\xcd\x88\x36\xb2\x26\x54\xd0\x72\xf7\x1b\xd4\x24\xdf\x30\xb2\x2a\x1b\xbd\xc1\xd3\x3c\x2a\xfe\x1b\x24\xc7\x15\x45\x5c\x9b\x45\xbd\x02\xee\x20\xf4\x90\x77\x1a\x84\xee\x46\xa5\x62\x36\x82\x40\x03\x36\xd0\x42\xd7\xf2\x0a\x0f\x1d\xb0\x0e\x2e\xd0\x6f\x5e\xec\x0d\x1d\x87\x0a\xbb\xa1\xc7\xb7\xce\xc5\xe5\x52\xcb\x12\x6a\x44\xf3\x1c\x57\x6b\xec\x92\x8d\x5f\xb8\xb1\xfc\x86\x0b\x58\xe1\x00\xbe\x2c\x31\x9d\x6c\x84\x71\x4e\x32\xdd\xe9\xe3\xb9\xb1\x5a\x2b\x74\x44\x56\x14\xb8\x5a\x41\x8b\x8a\x0b\x7b\xb5\x46\x53\xb4\xb8\xa6\x22\x87\xdc\x8a\x6b\x90\x14\x29\xd3\x59\xc1\xec\x62\x0e\xc0\x4c\x38\x78\x85\xa9\xd7\x0c\xbe\xb2\x5e\x2b\xeb\x4c\x8e\x96\x1c\xf9\x28\xef\xe8\xcc\xf7\x83\x3d\x7e\xc5\x8e\x20\x5a\x6e\xe9\x4e\x77\x6d\x4e\x45\xce\xcb\x12\xbd\xb0\x8a\x82\x50\x01\xe1\xae\xa0\x86\xfa\x10\xcf\xaf\x10\x3b\x9d\x6f\x58\x85\x91\xb8\x72\x87\x47\x62\x13\xaa\xf2\x0d\xbf\x66\x3e\x2c\x3c\x50\xca\x35\x81\x21\x61\x9d\xad\xc1\x8f\x73\xe7\x2c\x54\x6b\x56\x2d\xad\x5d\x17\x53\xb6\x61\xb4\x96\x39\xc7\x62\x7a\xab\x2e\xd9\x68\x42\x8d\xf5\x29\x4a\x0d\x7a\x17\x35\x96\xcb\xe3\xf6\xba\x74\x41\xe3\x43\xd3\x01\xac\x87\x34\xa1\x4d\xc1\xf1\x9c\x8b\x0d\x13\x86\x43\x5b\x14\xc3\x3b\xfc\x7c\x63\x36\xdc\xc6\x4a\xa5\xad\x93\x5e\xb8\xf4\x8d\xd7\x18\x59\x2c\x71\xc5\x0a\x40\xab\x8e\x40\xb0\x42\x65\x23\xbd\xa6\xbc\xa4\xd6\x86\x8a\xd0\xeb\xb5\x1f\x7c\x4b\x5a\xe0\x41\x1d\x4b\xaa\x79\x6e\x21\xb6\x82\x21\x6a\x27\x3e\x5e\xd1\x37\xd6\x92\x89\x7c\x53\x51\x75\x45\x96\xcc\x6c\x19\x13\x64\x69\x93\xc3\x35\xb3\x5e\x07\xf9\x1a\x7e\x36\x1a\x5e\x46\xc7\xb9\x99\x33\xb9\x73\x77\xd6\x5c\x70\xc9\x05\x34\xff\x92\x9b\x0c\x7a\x14\x42\x3b\x18\x01\x72\x4b\xcd\x00\x4a\x85\xc1\x8d\x0d\x2b\x5a\x93\x65\x29\x97\xee\x73\x38\x5d\xf1\x8a\xe6\x66\x4b\x59\xec\xc8\x52\xc2\x9b\xb2\xc1\x43\x4c\x56\x2b\xa6\x32\x3b\x5f\xdd\x0d\xda\xa8\x2d\x1b\x5e\xc2\xe3\xf2\x8a\x2c\x77\xd6\xa7\x01\x5c\xd0\x2f\x9e\xad\xe1\x0e\xba\xc5\xbe\x08\x57\xf4\x9f\x8b\x13\x99\x96\xa5\xbd\x11\x39\x83\xdb\x9a\xe6\xd0\xa0\x39\xd5\x39\x2d\x98\x0f\x0b\xef\x70\x51\xa3\x0f\x05\x0a\x55\x85\x5e\x5a\x4b\xb5\x73\x7e\x67\x19\xb7\x19\x6d\x00\x53\x39\x34\x63\x83\x02\xad\x28\x6d\x15\x11\x72\xcd\x01\x30\xcd\x0d\xbb\x1f\xa1\x07\xa0\x45\x5a\x6e\x15\x1c\x20\x1f\xa3\x99\x59\x49\x55\x79\x98\x17\x0e\x09\x75\xb8\xc9\x03\x19\x5d\x43\xb9\xa0\x89\xf2\x8d\x94\x58\x0a\x45\xf2\x4d\x23\xae\xbc\x5c\x54\x32\x2a\x9a\x1a\x43\x90\x95\xb8\xd3\x0d\x2f\xf1\xe2\x4a\x6e\xcf\x64\x41\x0b\x8b\xbc\x6c\x00\x6d\x64\xf0\x4d\x07\xd6\x4a\x2e\xfd\x68\xf4\x71\x58\x52\x0b\x63\xd3\x48\x5a\x32\x9d\x03\x62\x64\x2a\xe7\x3e\x31\x7a\x69\x2e\xd1\x97\xb5\x0d\xf1\xa4\x75\x59\x22\xcd\xc8\x65\xd9\xe0\xa5\xb2\x57\xe1\x82\xcc\x7a\x34\xb4\x37\xda\x87\x99\xa5\x2c\x85\x47\xbd\x9e\xb8\xa1\xc1\x61\xee\x42\xd3\x7f\x19\x35\xae\x85\x73\x12\xed\x8e\x89\x91\x9a\x1b\x96\xd9\x13\x54\xf0\x1e\x46\x1e\x00\x0a\xd0\x2e\x00\x0d\xa6\x44\x37\xb8\x36\xc8\xb6\x1a\xa1\x46\x59\xa5\xba\x14\x2b\x0e\x1d\x23\x85\x70\x56\x2b\x9d\xf1\x8a\x0b\xb3\xe5\x2e\xe3\x3a\xdf\xe5\x56\x67\xd6\x47\x95\x8c\xae\x86\x31\xb8\xd0\xee\xef\x11\x77\xbb\x1b\xdb\x48\x42\xf3\x82\xd9\x45\x05\x6e\x6d\x38\x70\x7d\x81\x7a\x40\x51\x7e\x00\x6a\x32\xd8\xc8\x88\xda\x3a\xca\x85\xcd\xc0\xbf\x6d\xdc\x69\x3b\xc2\x80\xcc\x8d\xb6\x94\x80\xd5\x00\x49\xe1\x8d\x2c\x57\x4e\xd3\x77\x8d\x17\x86\x3c\x04\x86\x99\xf9\x8d\xe4\x52\x29\xbc\x64\x57\x36\xd0\x18\x30\x5d\x4b\xeb\xe2\x12\xee\x9a\xda\x95\x1f\x1e\xa2\xbf\xd2\x46\xb8\x6b\x06\x38\x07\x21\xec\x98\x6b\x0a\x53\xbc\x76\x90\xa6\x55\x4d\xf2\xba\xc9\x6a\x44\x03\x30\x7f\xdd\x8d\x06\x1a\x08\x59\xaa\xfc\x87\xef\x3d\xbb\x82\x81\x8d\xe5\x80\x78\x4b\x92\x2b\x09\x9d\xd8\x2c\x19\xc9\x9b\x8a\x65\x05\x87\xaf\x37\x0a\xf9\x91\xae\xff\x6c\x98\x0d\x23\x5d\xdb\x0f\x6e\xb4\xc1\xc2\xb8\x98\x46\x43\x2b\x36\x4a\x4b\x0c\x5c\x6a\x6d\x64\x55\x50\x03\x83\x17\xbb\x1a\x09\x1c\x5c\x70\x46\x79\x40\x23\x84\xad\xea\x01\x1b\xe5\xd0\x02\x94\x23\x03\xf2\x8d\x80\x45\x62\x08\x3a\xdb\x2d\x84\x75\xb3\x44\xc0\xa7\x2b\xf8\x6a\x85\xc0\x4a\xe1\x31\x4a\x06\xb3\xb4\xac\x1b\x00\x10\x85\x00\x14\xf5\xfb\x61\xa2\x1d\xfc\x32\x23\x33\xed\x4e\x44\xa3\x3b\xf7\xd6\x4e\xae\x2a\x29\xb0\x44\x3b\xb9\xda\x32\x76\x65\xa1\x1d\x60\x8d\x02\xc8\x7b\xb1\xcc\x94\x2c\x59\xe6\xf0\x5f\xb1\x84\xdc\x7f\x03\xc4\x51\x14\xe5\x90\x45\xf3\x5c\x9c\x75\xa0\x80\x01\x4c\x3d\x84\x14\xea\x79\x89\xe7\x3f\x0a\x56\x34\x75\xc9\xdd\x6b\xe8\xe8\x91\xda\x15\x26\xb7\xce\x34\xf0\x6e\x8b\x21\x1e\x72\xc3\x94\xc2\x7d\x21\x2b\x6e\x75\x4f\xde\x3f\x64\xc1\xd6\x8a\x41\xfb\xb2\x92\xee\x30\x85\xf7\x88\xeb\x8f\xd2\x81\x20\x73\xcc\x2d\x60\x01\x4c\xe4\x4e\xcb\x12\x9a\x65\x8a\x8a\x2b\x52\xb0\x1a\xda\x81\xd9\x0d\x23\xc5\x80\x5d\x2a\x06\xec\x12\xc0\x57\x6c\x97\xd9\xbe\x65\x3a\xb7\x7c\xad\xe3\x6e\x3d\x93\xdb\x33\xbb\x85\x3b\x5c\x08\x35\xe7\x86\x29\xcb\x9f\xf1\x9c\x14\x9c\xae\x85\x04\x50\x13\xe8\x59\xeb\xf3\x81\x14\xbc\x62\x02\xc7\xbd\xdd\xc0\x92\x21\xdb\x6d\x61\xa0\x4c\x83\x53\xad\x20\xb4\xb5\xe2\xda\xf2\x65\x00\x74\x3c\x50\xc1\x75\x4e\x95\xe5\x1c\x00\x76\xe8\xaa\xe0\xfa\xca\x3a\x9d\x85\x99\xc2\x85\x8d\x42\x40\xd9\x2c\x3c\xf7\xd3\x83\x50\x80\x6b\xeb\x60\xd8\x39\x61\x28\x64\x45\xf1\xd0\x34\x23\x58\x67\xb0\x5f\xc8\xad\x58\x2b\xa0\xb1\x28\x55\x14\x8d\x3d\xc0\x8b\x0c\x3a\xbb\x71\x7e\x2c\x70\xc1\x93\x59\x2f\x6b\x3e\xc4\x7a\x39\x58\x13\x66\xd7\x06\x08\xf3\x2b\x06\xce\x3b\xa8\x46\x47\xa1\xc6\xad\x87\xba\x03\xce\x6c\x80\x8d\xc1\x84\xb5\x15\x72\xbe\x3a\x6c\x80\x8e\x43\x5d\x0f\x02\xcf\xc5\x44\x71\x62\x97\x43\x44\xc1\x29\xc8\x4e\x2b\xa9\x72\x7c\x69\x6d\xcd\xeb\x20\xd0\x84\x09\x3b\x1a\x98\x3d\x2b\x81\xa3\x5f\x65\xc3\xcd\x0e\x9d\x7d\x60\xae\xd2\xce\x1f\xbb\x2f\x09\xaf\xda\xf9\x04\x29\x70\x75\x15\x27\x1a\x00\x0d\x2e\x34\x5b\x53\x24\xb8\x22\xe6\x40\x48\xfb\x25\x9c\x7e\xb9\xb5\x83\xf0\x99\x9d\x7a\xec\xc6\xea\x2e\x6d\x88\x1f\x07\x41\xc9\x89\x4b\x9d\xd4\xc4\x6e\xa0\x69\xbc\xb1\x64\xe7\x33\x9f\xdd\xd4\x5c\xf5\x82\x97\xdb\x00\x62\x03\x24\xeb\x96\x1d\xc5\x45\x69\x63\x0d\xa1\x9c\x8f\x67\x0f\x64\x4f\x7b\xf0\xfb\x0e\x2c\x77\x00\x5a\xe7\x58\x14\x69\xaf\x0d\x32\x34\xf1\xca\xa8\x31\x50\x1c\x8d\xb1\xf2\x9a\x29\x04\x1a\xc5\xc8\x8a\x02\xac\x0d\x59\x31\x6a\x1a\xc5\xb0\x10\x1e\xb6\xbc\xc0\x8a\x99\x7c\x43\x56\x6e\x61\x97\x95\x85\x26\x2b\xeb\xdf\xa6\x64\x19\x34\x6c\xe6\xc9\x15\x62\x58\xb4\x20\xcc\x4a\x7e\xc5\xe0\xe3\x6b\x68\x21\xbb\x14\xbd\x82\x49\x07\x19\x29\xf8\x1c\x5c\xfd\x07\x9c\x07\x6c\xaa\x37\x99\x97\x19\xa9\xde\xa0\xd4\xec\xce\x17\x40\x19\x72\x25\x61\x7e\x61\x86\x08\x69\xef\x2f\x1b\x46\x1c\x0e\x1d\x34\xcd\xb4\xa6\xb7\xde\x00\x77\x85\x7c\x06\x5e\x33\xf4\x9a\xb5\x52\x8c\xa1\x19\x82\x07\x6c\x14\xf0\xbb\x08\xc1\x87\x94\xac\xf0\x82\x1c\xda\x1f\x7f\x6f\x61\x44\xc4\x2b\x53\x93\x15\x3a\x75\xee\xce\xf1\x66\x82\x29\x5a\xba\x10\xa6\x29\x3a\x96\x66\xc6\x93\x11\x00\x91\x01\x5f\x33\x83\xa4\x6f\xcd\x4c\x63\x72\x0b\x3a\xff\xd3\x18\x64\xd6\xd8\x14\xe1\x72\x47\xd6\xee\x9c\x11\x2b\xbe\xe3\x55\x93\x35\x52\x60\x6d\x9c\xcb\x6a\xbc\x66\x8e\x69\xb2\x37\xbc\xb0\x00\xb4\x93\x07\xba\x48\x4d\xd6\x86\x17\x40\xd4\x9c\x05\x46\x43\x21\x5f\xc6\x10\x2a\x3a\x6d\x03\x9e\x77\x07\x17\xb4\x00\xdc\xd0\x6b\xc8\x6d\xc3\x28\x9e\xc6\x89\x17\x6e\xaf\xc2\x05\xf8\xb4\xb6\x9a\x84\x0d\xbb\x21\x1b\xce\x14\x48\x8f\x3b\xb2\xe1\xeb\x0d\x5e\xb2\xce\x34\x71\x23\xa1\xd5\x37\xb2\x51\x64\x63\x4c\x4d\x78\x41\x78\x01\xd4\xde\x73\x0a\xf6\x8e\x8b\x5c\x39\x50\x33\xe6\xd2\xd8\x6d\x1d\x16\x34\x3b\xc2\x8b\x92\x59\x1e\x82\xe3\x69\x39\x68\x19\xb2\x16\x20\x97\x71\x88\x81\x71\x48\x78\x59\x11\x5e\x55\xac\x40\x94\xec\x16\x65\xd1\x9d\xba\x9d\xcb\x36\x84\x4a\xc0\x27\x2d\xc6\xb3\x72\x01\x5e\x99\xb3\x76\xb6\x09\x0a\x76\x83\x22\x33\x17\x05\xa0\x53\x5c\xce\x28\x78\x8e\x89\x98\xf9\x63\x46\x8d\x14\x0e\x14\x46\x52\x04\xfb\x48\x1f\xb7\xb2\x07\x5e\xe2\xb1\x0c\x83\xe3\x19\x0a\x0f\x97\x3b\x84\x14\x15\x90\x6f\xc5\x2a\x7b\xf8\xa1\x40\x4d\x90\x90\xc5\x92\x70\x51\xe3\xfe\x26\x54\x0b\x79\xfd\x89\xb7\xd4\x70\x80\xe1\x76\x3f\x18\xb0\xa6\x77\x1d\xc7\x97\x8c\x5e\x5b\xc7\x7a\x20\x0c\xe5\xc6\xba\x3f\xe7\xe2\x9a\x96\x1c\xc7\x26\x17\xd7\xdc\xea\x3f\xf0\x90\xba\x0c\x66\x89\x1d\xc8\x5c\x67\xbc\xbe\xfe\xbd\x0f\x33\xcb\xfe\xc3\xad\x90\x3e\xc8\x6c\x57\x68\xe0\xe0\x0a\xff\x9a\xcd\x57\xbb\x47\xd2\xc9\x24\xb8\xbc\x63\x18\xf9\x95\x5e\x53\x6b\xd0\xfd\xab\x96\xf6\x92\x39\x04\x7a\xc5\x58\x8d\x97\xac\x23\x63\x10\xb9\xb3\x16\xaa\xf6\x1c\x48\xa7\xd0\x23\x25\x55\x78\xd5\x06\x2f\x30\x6f\x2d\x60\xdb\x0a\xe6\x02\xde\x5a\xe4\x53\xd2\x1b\x52\xa2\x10\x5a\xc2\xd0\x2e\xdd\x68\x2e\x19\xbe\x0f\x6d\xa4\x49\xc9\x56\x00\x0b\x34\xed\xde\x18\x6f\xe1\x8d\xcb\x64\x25\xbb\x66\xa5\xbd\x6a\x52\xf2\xa5\xa2\x6a\x47\x70\xd4\xc1\xe5\x7b\xbc\xfe\x1e\xaf\xb9\x3f\xaa\x12\x89\x1a\x2a\x20\x10\x0f\xc1\x05\x24\xc9\x92\x1b\x53\x32\x52\x0a\xab\xe4\x83\x8b\x65\x70\x40\x5e\x2c\xe5\x52\x77\x07\x87\xfa\x6d\x07\x1d\x64\x79\x66\xc7\x02\x62\x20\x95\x3f\x12\x00\xf7\xf1\x82\x5c\xdd\x9d\x85\xf2\x3d\x5c\x5c\xce\x6b\xcb\x15\x7b\x4c\x0d\xe4\xc2\x1d\x4e\x0a\x21\x2e\xce\xe9\x5e\x2a\x28\xe5\x5a\xae\x56\x18\x40\x29\xd7\xda\x6e\x46\xc4\xb3\x0d\x81\xf5\x29\xe5\xb6\x9f\xe5\xf6\x50\x96\xb2\x86\xba\x28\xa3\x78\x45\x4a\xbc\x22\xcf\x52\xd1\x2b\x4b\x6b\x00\xc0\x61\x01\x00\xd6\xaa\xa2\x82\x82\x70\x6f\x43\x9c\x8c\x15\x15\x0d\x2d\xd1\x76\xb9\xa2\x35\xa2\x36\xdc\xb0\x51\x51\xd4\xb2\xd9\x20\xab\xa5\xce\xd0\x0c\xa2\x42\x33\x2a\xbc\x62\x3e\x20\x27\xbb\xe9\x55\xd1\x1b\xf8\x59\xea\xaa\x01\xb4\x6a\x49\x00\xdc\xdc\xc1\x58\xe8\x6d\x08\x7c\x03\x59\xd8\x9f\x42\x6a\xef\x2a\x56\x2d\x99\xc2\x67\xda\xe5\x61\x27\x6c\x55\xfc\x81\x54\x8c\xea\x46\xc1\x9b\x0c\x99\x1b\x08\x9a\x8a\xd8\x77\xf0\xc0\x19\x2f\xfa\xba\xc9\x6d\xf5\xb3\x15\x07\x51\xca\x0a\x08\x15\x87\xdf\xda\x31\x6b\x15\xc7\x5f\x57\x72\x2e\x78\x05\x19\x72\x54\x3a\x55\x5c\x34\x18\x09\xcc\x47\x85\xb3\xb8\x01\x40\xe3\x1e\xc6\x4a\xe2\x0a\x31\x7a\xf5\x62\x25\x5c\xf9\xca\x2b\xcc\xf0\x66\xe7\x17\x90\x2b\x29\xb8\x91\xca\xbe\x04\x2c\x15\x5e\x35\xa9\x50\x92\xc4\xe3\x0f\xe0\x62\x7b\xa5\x3f\xa2\xc8\xb0\x1b\x3c\x98\x81\x78\x7e\x40\x1b\x7b\x00\x17\x11\x54\xa0\x27\x4d\xdc\xca\xe8\x5c\x6a\x0a\x60\x2f\xf0\xf6\x9a\x08\xdc\xd0\x29\x50\x29\x22\x98\x06\xfa\x29\x18\x70\x28\x82\x6d\xe1\x87\x86\xe4\xb8\x4c\x0d\x17\x34\x94\x93\x44\x48\xbb\x54\x0c\xd2\x94\x53\x90\x09\x39\x50\x56\x0a\x69\x35\x85\x42\x7a\xad\x9d\x90\x56\x89\x23\x64\xd7\xee\x00\xd6\x3b\x08\x50\x86\x14\x12\x45\x17\x08\x07\x3c\xbb\x90\x77\x58\x4d\x21\x7b\x9a\x29\x24\xe2\x25\x21\xfd\x7c\x12\xd2\x0f\x4f\x80\x6e\x6c\x27\x08\x89\x7d\x05\x23\x04\xc1\x2e\xb6\x6f\x6a\xdc\x73\x0f\x97\x01\x0f\x2e\xa4\x70\x4a\x5a\x21\xed\xd1\xdb\x42\xd6\xf6\x22\xed\xb5\x72\x41\xed\x43\xa8\xb0\x62\xe5\x0e\x03\x8d\xf6\xfd\x1a\x61\x6b\x32\x2c\x80\x1f\x81\xf6\x53\x72\x5b\xb0\x1a\xf8\x4c\x91\x73\x74\x00\x60\xbf\xe4\x9b\xc8\x19\x0c\x02\x32\x17\xd2\x6c\x6c\x09\x71\xf7\xbf\x90\x38\x85\x85\xec\xa8\x84\x90\x5b\xf8\xa1\xf5\x91\xd9\x38\xa4\x0a\x08\x9e\xaf\x30\xd0\x44\x34\x15\xfc\x96\x78\x61\x44\x5c\x43\x47\x41\x9f\x3b\xe0\xfb\xee\xc8\x92\x9c\xe7\xb2\x2c\x21\xc4\xac\x5d\x88\x48\x01\x60\x2f\xb6\xc8\x9c\x23\xd5\xba\xc6\xed\x58\xbc\x94\x4b\x8f\xf2\x64\xce\xdd\x76\x0d\x99\x73\xdc\xeb\x8b\x81\xd3\x1f\xc0\x8d\xdc\xf2\x02\x00\x77\x5e\x89\xcc\x39\x12\x73\x89\x9f\x37\xac\x53\xa9\xca\x15\xba\x47\x90\xab\x15\x0e\x40\xb9\x5a\xc1\x40\x97\xf0\x32\x2f\x2c\x6f\x20\xcb\x02\x0f\x09\xb1\x3b\x9c\x71\x77\xb3\xac\xe9\x97\x86\xd9\x0d\x39\xf6\x00\x16\x14\x1e\xfa\xb3\x58\x6a\x83\xc7\xc6\x74\xab\x21\x76\x93\x2f\xf1\x7b\x7d\x21\x0b\x45\xa4\xa2\x39\x1a\xb5\x42\x60\xb5\x25\x52\x51\x94\x54\xa4\x2a\xe0\x07\xa3\x5b\x02\x50\xf0\x5c\x56\x08\xc8\xdc\x1e\x57\x02\x57\x5e\x01\x1d\x04\x40\x50\xd4\xc8\x49\x55\x5c\xf3\x82\xc1\x2b\x6b\x2a\xf8\x6f\xae\x1d\x55\x49\x05\x3c\x2c\xaf\x81\x68\xe1\x41\x31\x0d\xe0\x53\xd9\x18\x1c\xce\xb2\x31\xb6\x6e\x8d\xa9\xdd\x29\x32\x78\x59\x01\xae\x77\x67\xca\x40\x2b\xfa\x3d\x2f\x80\xea\x6b\x0a\xec\x38\x2b\x3b\x20\x73\xd2\x21\xae\xc5\x32\x54\xc2\x3a\x23\x59\x7b\xc2\xb1\x3f\x5c\x05\x43\x2c\x57\x07\x41\x4a\x9d\xe3\x33\x8b\xc7\x20\xdc\x42\x1b\x78\x20\x5b\x2b\x9a\x3b\x06\xb0\x8b\x03\x9a\x77\x27\x4a\xb1\x46\xb3\x0c\x90\xff\x9d\xa8\xc3\x64\xd7\x4c\xf1\xd5\x2e\xeb\x78\x7b\xdc\x56\x0a\x57\xbc\xd8\x6e\xaf\x73\x83\x5c\x22\xb0\x0c\x75\x6e\xcc\x06\x44\x06\x18\x0b\x75\x6e\x80\xd7\x81\x10\xe6\x1b\xbe\xcf\x54\x8e\x35\xb5\xa1\x55\x71\xb8\x1b\x90\x9e\x72\xd9\x3f\x84\x7b\xc0\x3c\x70\x8f\x92\x03\xb0\x71\x35\x53\x5c\x16\x2e\x40\x5d\x95\x03\x51\x0d\xd5\x7b\xda\xa8\x37\x3b\x8d\x84\xbb\xe6\x76\x3f\x0d\x5c\x4a\xb4\x0c\xaa\xf9\xb5\x34\xa4\x2e\x9b\xf5\xda\xf6\x43\xd9\xac\xb9\x20\xb5\x2c\x79\xbe\x23\xa8\x96\xc5\xa2\x4a\x6d\xec\xd6\x70\xb7\xc0\x85\x07\xa0\x21\x09\x77\xcb\x88\xb5\x62\x68\x42\x08\x40\xce\x0a\xa6\x1d\x80\x1d\xa3\x58\xce\x6d\x95\x15\x2b\xb8\xcb\xa1\x03\x33\xd4\x46\x0e\xee\x0b\x66\x28\x2f\xf5\x30\x6a\xa8\xe8\x1e\x44\xa3\xc5\xb6\x5b\x92\x04\xbc\x6d\x37\xbf\x31\xdc\x4f\x44\x90\xd7\x20\x1d\xc7\xd1\x1f\x6b\x84\x61\xa6\xd7\x14\x61\x5e\xb2\x35\x16\x57\xe6\xac\x40\xca\xe3\x41\xd6\x43\x99\x5f\x42\x73\xa7\x4e\x21\x6f\x56\x2b\x69\xe9\x7f\xad\xe4\xaf\x76\xbf\x22\xe2\x59\x67\x3c\x8e\xb5\x74\xe6\xe4\x10\x68\xc0\x95\x58\x34\xbb\xd7\xd0\xae\x90\x7e\x69\xa8\x82\x69\xf5\xa5\x61\x6a\x47\xbe\x34\x3c\xbf\x82\x2b\xaa\xec\xbf\x34\xd2\x50\xbb\x83\xd5\xed\x00\x04\x6e\x41\x3b\xc3\x52\xdc\x58\xa6\x50\xef\x80\x43\x47\xd1\x6d\x7f\x42\xbc\xb6\x57\xbb\xa8\x6a\x57\x6a\x14\xcb\x61\x76\xd8\x40\x63\x78\x8d\xfb\xe7\x31\xdc\x01\xd0\x28\x0d\x24\x58\x31\x4b\xf5\xd0\x4c\x4c\xb1\xa2\xc9\x59\x81\xdb\x30\x95\x77\x7c\xda\x43\x45\x0f\xea\x0e\x84\x5e\x57\xcc\xca\xcb\xd6\x4a\x02\x65\xfe\xde\x5f\x84\x62\x6b\x95\xd1\xeb\xf5\x4d\x07\xed\x2c\x64\x95\xd2\x08\x22\x1a\x47\xa5\x0b\xde\xaa\xef\x6d\xa8\x4b\x59\x33\x07\xde\xdc\x78\x00\x5e\xc7\x3e\x50\x0c\x38\x7f\xc5\x4a\xcf\x56\x58\x10\x6b\x55\xd2\x1d\x30\x00\x7e\xa5\xda\x85\x56\xfe\x50\xac\xe4\x4c\x67\x52\x00\xd4\xad\x68\x43\x4e\x15\xfc\x28\xcc\xef\x6e\x5f\x9e\x5b\xa7\x56\xac\x66\xb8\x8d\xd7\xae\xb8\x43\xc8\xdd\x9b\x16\xe2\x98\x9d\x73\xd0\x60\xd7\xc2\x7b\xda\xab\x98\xeb\x1e\x77\x8e\xbf\x62\xba\xb6\x35\xb0\xab\xdb\xfe\x50\x4d\xfb\x6a\x53\x1a\x17\x38\x35\x08\xdc\x54\xd4\x7a\xe1\xd0\x0d\x16\x0a\x98\x3f\xfb\x49\x67\xe5\x07\x81\xed\x0b\x80\xe0\x93\x0d\xd6\xdb\x92\x7c\xb7\x62\xae\x38\x88\x2d\xca\x76\x90\x2c\xed\x45\xf7\xb6\x09\x00\x60\x26\xb2\x2c\x9b\x9a\x28\xd4\x99\xa0\xa3\x68\xb9\xf5\xfd\x75\x87\x67\xb0\x94\x54\xc9\x2d\x90\x77\x54\xac\x58\x1e\x5f\x35\x90\x33\x1e\xe9\xa5\x69\x69\x88\xa6\x55\x5d\x32\xb4\x7e\x18\x98\x40\xe8\xe5\x53\xa2\x97\xdf\x13\xbd\xfc\x3d\x9e\xa8\x48\x1c\xab\x33\xe4\x43\x74\x0e\xd1\x30\x12\x74\x0e\x05\x23\xba\x90\xd9\x9a\x49\x65\x99\x7e\xb8\x33\xb2\xc6\xa8\x0a\xcd\x1b\x35\x03\x86\x82\x68\x96\x03\x5f\x68\xb7\x04\x5b\x4e\xda\xb9\xa1\x81\xb0\x51\xe8\x00\xd1\x82\x80\x34\x50\xb5\xa0\xd9\xba\xb2\x1b\x28\xdd\xd1\x5e\xe5\x8a\x68\xf6\xa5\xc1\x89\x60\x01\x24\x52\xda\x49\x12\xd8\x29\x76\xa2\xbb\xc0\xaa\x1e\xfd\x72\x89\x0b\xed\xf2\x85\xbb\xb1\x72\x94\x8b\xc1\xbd\x9a\x1a\x1d\x5c\x00\xca\x20\x7a\x43\xe1\xf7\x14\x2e\xdf\xdb\x23\x3a\xdd\x41\x9d\xdd\x79\x9d\x52\x96\xfe\x14\xb6\x8d\xdc\x12\xbd\x51\xb8\xd9\xd9\xef\xe8\xd6\x3c\xa3\xd7\x4c\xd1\x35\xcb\x65\x89\x47\xea\x66\x08\xa0\xcc\xb2\x56\xb4\x82\x18\xa7\xd9\x43\xdc\xa6\x79\xe6\xb1\x3f\x2d\xbb\x77\xb4\xe1\x65\x69\x19\x08\xcd\x33\xc3\x6e\x20\x3d\xd1\x7c\x59\xda\x72\xf2\x02\x1d\xc0\xd8\xc3\x2f\x61\x70\xc3\x25\xb3\x4e\x6c\x34\xd1\x57\xbc\x26\xba\xc4\xce\xc6\x9d\xe7\xba\xa2\x65\xe9\xb9\xb8\x7e\x35\x04\xa3\x6d\x3f\x08\x5a\xeb\x8d\x34\x44\x4b\xe8\x2f\x69\x37\xc5\x62\x2d\x61\x14\xb2\x1b\xe2\xe6\x8e\x3d\xfc\x53\x5b\xa6\x41\x5b\x9d\xb6\xdd\x1f\xa7\xbf\x94\xf0\xcb\x96\x7c\x9d\xb9\x69\x84\xb7\x76\x21\x7b\x10\x63\x67\x95\x85\xca\x3c\x1b\x28\x05\x21\x0e\xcb\x34\x4c\xee\x3c\x9d\x64\x9d\x7f\x17\xfd\xa5\x44\x6d\xb6\xfe\x52\x22\x37\xa6\xbf\x94\xae\xdb\xbf\x58\x0d\xb3\xfe\x52\xda\x2d\xa8\xf6\x14\x50\x40\xfc\xe8\xa1\x47\x14\x14\x57\x79\x11\x5c\xee\x9c\x85\x10\x5e\xed\xa9\x79\x54\x99\xc6\xee\xcb\xb5\xa2\x55\x77\xaa\x1e\x35\xdc\xae\x4e\x00\xa8\x41\xd8\x91\x15\xa7\x65\x86\x3a\x40\x1b\x87\x6b\x6f\x86\x2e\xdd\xed\x95\x1e\x3e\xb4\xfb\x6f\x2d\xb8\x1d\x3e\x90\x82\x65\x5b\xba\xcb\x28\xf0\xf2\x2e\xce\x60\x82\xec\xf0\x0e\xb0\x62\x7d\x18\xe5\xaa\xd2\x47\x00\xaa\x64\x85\x8b\xdb\x6a\xd5\x7f\xa8\x81\x92\xc3\x93\xa2\x60\xd7\x2e\xc0\x85\x47\x07\xe2\xca\xa3\x36\xf6\x21\x46\x4b\x45\xad\x21\x91\x72\x57\x3c\x98\x17\x7e\x30\xab\xad\x81\x93\x51\x14\x30\x5a\x86\xca\xa2\xfe\x5c\x55\x9e\x9b\xbb\x07\x11\x9a\x66\xb5\x22\xe8\x8b\x91\xe8\x66\x69\xdf\x6e\x96\x3d\xaf\x39\xbc\xd1\x76\x9b\x3d\x37\xce\x8d\x92\xdb\x74\x6f\x03\xcc\xb4\x59\x5a\xac\xd2\x2c\x31\x22\x73\x4e\x10\x9a\x25\x0a\x11\xba\xb1\x26\x44\xba\xa9\x88\x6e\x74\x8d\xb6\x60\x56\x94\xb2\x81\x93\x22\xdc\x0d\xe2\x8e\x9d\xc8\xc9\xd0\x4c\x46\xef\x84\x14\xbb\x8a\xe8\x1d\xc0\x3a\xbb\xa9\x4a\xba\x5e\x03\x48\x35\xc6\xd2\x06\x77\xe9\xdb\x9a\xd8\x10\xca\xe4\xb3\xde\xe9\x62\x49\x9d\x23\x0b\xe5\xb7\xf3\x3b\x9d\xbc\x45\x3d\x3b\xed\x94\xcf\x58\x15\x5b\x53\xbc\x6a\x17\xe0\x3c\x33\x54\x10\x53\xc8\xfe\x38\x6c\x00\x24\x2a\xb7\xec\xfa\x19\x6a\xba\x0d\x03\xde\x5d\xed\xb2\x2d\x83\xfe\xd0\x04\xfb\xdd\x6c\xe0\xe5\x0d\x13\xee\x04\x69\xdc\x53\xd7\xac\x71\x2b\xba\x82\x8b\xb6\x7b\xbb\xe1\xe2\x95\xe4\x08\xe3\x82\x26\x40\xc8\xdd\x1e\x62\x0c\xac\x64\xe3\x1c\x2d\xa0\xba\xab\x83\x80\x2d\xee\x6e\xba\x57\x21\xb3\x8c\x2e\x97\xaa\xbf\x73\xea\x91\xee\xde\x1d\x58\x67\x24\x31\xd2\xab\xfa\xfd\x18\xc3\x70\xa7\x49\xb7\x5e\x0b\xe0\x9d\xd6\x36\x0a\x9b\x4a\xd1\xfc\x0a\x86\xc7\x90\x7b\x1e\xc0\xb8\x0b\x8f\x0a\x6d\x9b\xd1\x41\x36\x0d\xb0\x16\x46\x71\xf4\xc2\xef\xc2\x4c\x30\x6d\xac\x52\xd1\xc5\x68\x82\x84\xb5\xb3\xf2\x33\x6a\x87\x87\x85\x5b\xc0\x2d\xbd\x00\x6c\x51\x23\x0e\xc5\x66\xf9\x94\x34\xcb\xef\x49\xb3\xfc\x3d\x69\x72\x6b\xb3\xd7\x59\x75\x35\x02\xcd\x7e\x10\xea\xb4\x21\x0d\x32\x3f\x8d\x28\x24\x69\xc4\x86\xdd\xa0\xaf\x2d\x40\x1e\x8d\xe0\xb8\xaa\xd2\x1b\xe9\x79\x7f\x64\x1c\x64\xdd\x46\xf0\x9b\xc1\xba\x7d\x23\xae\x04\x50\xa3\x46\xf8\x35\x5e\x67\x2c\xd8\x08\x2b\x88\x34\xc2\x71\xa3\x38\xf0\xfc\xe1\x9f\xde\xb7\x99\xdd\x8a\xd0\x08\xa3\x1a\x6d\x5f\x6e\xb4\x4b\x88\xb2\x95\xb3\x70\xf4\xe6\x28\x4d\x6d\x57\x3a\x9b\xba\xc6\x3b\xf4\x11\x56\xa3\x46\xbc\x51\x25\x69\x2c\x93\xe2\xb3\xd0\x80\x58\xd0\x31\x86\x66\x99\x45\x2d\x99\x13\x71\x35\xc1\xc9\x01\x97\x0c\x51\x3b\x42\x9e\x6f\xb3\x4f\xb5\x3b\x9c\xb4\x31\xb9\x1d\x22\x00\x0c\x6a\xde\xc0\xa7\x1a\x5e\xb8\x63\xcc\x3b\x0d\x89\x07\xb2\x4e\xcc\xd4\x46\x59\x2d\x83\x7b\x04\xcd\x09\xa0\xee\x0f\x14\x45\xf7\x14\xd7\x54\x91\xce\x3c\xc3\x69\x4b\x72\x00\x38\x5e\xa8\xbd\x2e\x5d\x50\xfa\x90\x75\x80\xb6\x10\x30\x31\xd7\x54\x61\x1e\x20\x42\xd8\x20\xb7\xe1\x8e\x58\xa9\x97\x78\xa1\xd5\x85\x9a\x5c\x73\xb6\xed\x8f\x62\x75\x6b\x01\xe8\x49\x0e\xd5\x3d\x5b\x10\xef\x4d\x77\x24\xa4\x0b\x35\x41\xfb\x05\xb8\x14\x74\x87\xa1\x33\x64\xd8\xb2\xb2\x84\x91\xc4\x0a\xbb\xf7\x04\x2e\xd6\x59\x03\xbb\x76\x81\xbf\x65\xfe\x3c\x55\xbb\x7f\x64\xbb\xe1\xc6\xe1\x25\xdc\x2a\x07\x17\x2e\x30\x00\x94\xb0\x95\xea\x8a\x6c\x15\xc5\x41\x70\x53\x2c\xc9\x4d\x55\x12\x87\x38\x21\xe8\xed\x07\x6f\xaa\x12\x67\x0e\x84\x12\x1e\xa0\xcb\x8a\xaa\xf4\xcb\xdc\x00\xda\x05\x87\x9b\x0a\xca\xca\x6c\x5a\x8b\xe6\x6f\xaa\xb2\xdb\x99\x88\x09\x6a\x0e\x57\x2b\xd5\xdd\x54\x25\x9a\x14\xdd\x54\xa5\x63\x65\x01\xf2\x7a\x67\xb8\xb1\x98\x16\x00\x98\xa0\x37\x52\x11\x6c\x15\xb8\x00\x61\xb3\xda\x56\xb8\xd3\x78\x85\x86\xfb\xfa\xa1\x1b\xc3\xdd\x7c\xb6\x13\x97\x7c\xcd\xd1\x2a\x10\x8f\xe0\x5f\x72\x83\xf6\x7f\xdd\xb9\x48\xee\x30\x63\x67\xfc\x86\x06\x2a\xa4\x60\x79\x77\x90\xb1\x35\x36\x74\xe7\x0b\xff\x2b\xae\x0a\xad\x99\x5b\x33\x42\xa5\xab\x55\xab\x89\xa6\x62\xca\x9e\x13\x5c\x7a\x69\xd3\xd6\xd2\x05\xff\x6a\x59\x3b\xc8\x08\xed\x9c\xbc\xb2\xef\x9a\xaa\x1d\x9e\xec\x2b\x79\x61\x7d\x18\xdf\x75\x06\x7b\xd7\x05\x84\xf5\x0b\xf1\xa4\xdf\xb5\x35\x38\x32\x77\x78\x62\xae\x4f\xeb\x8f\xcd\xfd\x47\xc7\x3c\x58\x37\xd3\xdd\x29\x32\xfe\x20\x6a\x07\xee\xa3\x98\xed\xa3\xb3\xff\x27\x00\x00\xff\xff\xe7\x88\xc0\x32\x6c\xb0\x00\x00") + +func staticJsHighlightMinJsBytes() ([]byte, error) { + return bindataRead( + _staticJsHighlightMinJs, + "static/js/highlight.min.js", + ) +} + +func staticJsHighlightMinJs() (*asset, error) { + bytes, err := staticJsHighlightMinJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/js/highlight.min.js", size: 45164, mode: os.FileMode(436), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticJsHighlightPackJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\xdb\x7a\xdb\xb8\x96\x30\x78\x3d\xf3\x14\x08\x2b\xe5\x90\x16\x2d\x39\xb5\x0f\xdd\x25\x87\x56\x0e\xe5\xda\xdb\xff\x4e\x9c\xea\x1c\xba\x76\xb7\xa8\xa8\x20\x12\x92\x50\x26\x01\x06\x00\x2d\x2b\xa6\x7a\xe6\xb1\xe6\x6e\x2e\xfe\xbb\x79\xaa\xf9\xd6\x02\x40\x52\xb2\x93\xea\xf9\x66\xe6\xb3\x05\x2c\x82\x20\x88\xe3\x3a\x03\x1c\x1d\x3f\x22\x6b\xbe\x5a\x17\x7c\xb5\x36\xc3\xdf\x35\xb9\xf9\x71\xf8\xf4\x74\x78\x4a\x1a\xf2\xf2\xfd\x4f\x7f\x22\xaf\x79\xc6\x84\x66\xa4\x21\x2b\x6e\x86\x5c\x8e\xd6\xc5\xef\xba\x70\x89\xc7\xa3\xff\xf5\xd1\xb2\x16\x99\xe1\x52\x84\x2c\xba\xbb\xa1\x8a\x88\x24\x90\x8b\xdf\x59\x66\x82\x24\x31\xdb\x8a\xc9\x25\xd9\x70\x91\xcb\xcd\xd1\x91\x8d\x9b\xe6\x5e\x06\xcd\x8a\xe5\xd1\x11\x84\x67\x41\x2d\x72\xb6\xe4\x82\xe5\xc1\x23\x7f\x9b\xdd\x56\x52\x19\x3d\x61\xa1\x83\xa2\xb1\x38\x3a\x0a\xc5\x10\xea\x92\xb0\xf0\x6e\x17\xc5\x81\xaf\x47\x57\xaa\x2d\xe7\xe8\xc8\xc6\x43\x5a\xe6\x1e\x0e\xa7\xb3\xb8\xad\x77\x74\xa7\x98\xa9\x95\x20\xb6\xbc\x5d\x14\xed\xc2\x7e\xa3\x3c\x4c\xf0\xca\xe5\x65\x43\xc5\xaa\x82\x66\x2c\x1c\x4d\x8f\x9e\x9d\xcf\x46\xab\x32\xee\x3f\xe4\xb2\xfd\x3e\x65\xb3\x5d\xb4\x6b\x8b\x30\x7b\x45\x08\x99\xb3\x2b\x5a\xb2\xa1\x91\xaf\xe5\x86\xa9\x57\x54\xb3\xb0\x97\x5b\x85\x2c\x16\xb6\x57\x4d\xc2\x8e\x8e\xd8\x90\xdd\xb2\x2c\x14\xd1\x99\x2b\xc2\x1c\x1d\x9d\x26\x49\x62\x86\x5c\xe4\xec\xb6\x7b\x90\xf6\x5e\x73\x3d\x34\x4c\xc3\x7b\xbb\xdb\xbc\x1d\xab\xd8\xc4\x2a\xe6\xb1\x4c\xd8\x30\x2b\xa8\xd6\x50\x9b\x41\x40\x82\x33\xbe\x0c\xe5\x20\x61\xc3\x8a\x2a\x26\xcc\x95\xcc\xd9\xa4\x7f\xd1\xe5\x1e\x07\x41\x6c\x92\x97\xb6\x66\x32\x8a\xdc\x5b\x37\xa1\x99\x3e\x9d\x45\x13\x08\xc7\x81\x90\x27\xed\x1c\x0b\xce\x96\x52\x85\x32\x91\x43\x5d\x15\xdc\x84\xa3\x54\x0f\x46\x51\x2c\x92\xd3\x58\x25\x72\x58\x30\xb1\x32\xeb\x33\x75\x2e\xce\xc4\x60\x10\xf1\x65\xc8\x13\x39\x15\xb3\x98\x86\x3c\x6a\x9a\x4d\xc8\xdb\x77\xf0\xae\x45\xb2\xd7\xa2\xe4\x6e\x17\xab\xe4\x85\x52\x74\x3b\xac\x94\x34\x12\xa6\xc3\x10\xe7\xec\x30\xa3\x45\x11\x52\xb5\xaa\x4b\x26\x8c\x8e\x9f\x46\x58\x19\x41\xb8\x20\x2c\x32\x53\x31\x4b\xd8\x54\xcc\x7c\xf7\xaa\xe1\x52\xaa\x0b\x9a\xad\xf7\xe7\xc3\x03\x4f\xec\xa2\xd8\x74\xb5\xa9\xbb\xb5\x30\x6d\x0b\xdb\x1b\x55\x6a\x8b\x81\x3c\x3c\x61\xc3\x25\x57\xda\xbc\x5a\xf3\x22\x3f\xe3\x67\x3c\xe1\x43\xc1\x6e\xcd\x7b\xbe\x28\xb8\x58\x45\x7f\x4a\x12\x48\x91\x39\xfb\xb0\xad\xd8\x84\x0e\xdc\xd5\xbf\xd3\xa2\x66\xae\xbf\xc6\x4f\xf7\x32\xe1\xe2\xa8\x6a\xbd\x0e\xef\xd8\x0d\x13\x66\x1c\x68\x43\x95\x09\x62\xb9\x5c\x6a\x66\xc6\x34\x86\x9c\x63\xbe\x8b\x62\x9a\xa8\x90\xc7\x34\x8a\x4d\xc8\xa3\x61\x49\x4d\xb6\x0e\x47\x0b\xd5\xac\x55\xc3\xcb\x55\xc3\x45\x55\x9b\x51\xd4\x34\xf7\xca\x93\xd5\x03\xc5\xb5\x33\x93\xee\x42\x16\x9f\x46\xb1\xe8\x7a\x25\x0b\x59\xac\xb0\xe5\xdd\x3c\xec\x2d\x06\xdb\x90\xa3\x23\xe5\xa0\x09\x9b\x9e\xce\x86\xf6\x0d\x8f\x92\x44\x75\x57\xfd\x3b\xcf\xf6\xd2\xc7\xca\xb7\x34\x71\x4f\x60\x75\xf1\x06\x6b\xcb\x1d\xab\x83\x89\xd3\x1f\x1a\x5f\xa3\x80\x04\x83\x6e\x85\x0e\x9e\x24\xc1\x93\x81\x08\xd9\xf0\x06\x7a\x3d\x1a\x3c\x09\x9e\xec\x8a\x41\x12\x3c\x0b\x06\xb0\xb6\x06\x17\xc3\x92\x56\x76\x7a\xb1\x21\x35\x46\xf1\x45\x6d\x98\x8e\x55\x34\xfc\x5d\x72\x11\x06\x41\x34\x08\xce\x83\x83\x39\x82\x25\x8c\x5c\x11\x7b\xb7\x33\xb8\x1d\x76\x8d\x61\xae\x25\x72\x5c\x47\xa1\xad\x57\xb4\xf3\x53\x48\x27\xa7\x71\x91\x04\x41\xbc\x84\xf9\xe6\x1b\xda\x34\xbe\x2b\xcf\xec\x6c\x5c\x25\x3c\x8c\x60\x65\x17\x83\x44\x84\x74\xa8\xeb\x85\x36\x8a\x8b\x55\xa8\xe3\x55\xd7\x8d\x51\x14\xeb\xa4\x77\x1d\xaf\xe0\xfd\xd1\xdd\x72\xa8\xd8\x0d\x53\x80\xa2\xda\x75\x51\x47\x67\xb9\x24\x59\xb8\xc2\xc5\x9c\xb1\xf0\x34\x7e\x1a\x4d\x4f\x67\x51\x6c\x5f\xb6\x59\xf3\x82\x85\x58\xc0\xd1\xd1\xaa\x1d\xe3\x5e\xe9\x49\x92\xe8\xe8\xec\xa1\xb2\x65\xb4\x63\x85\x66\x5d\x1f\xac\xba\x01\x5d\xda\xd9\x88\x29\xd8\x17\xe3\xe5\xb0\x92\x55\x18\xc5\x0f\xd4\x65\xe7\xe6\x58\x31\xe8\x5a\x1d\xea\xa8\x87\x10\xf5\x1e\x5a\xbe\x39\x3a\x7a\x04\xa8\x22\x5b\xb3\x7c\x7e\x43\x15\xa7\xc2\xe8\xa3\xa3\xf0\x5e\x5a\xc2\x86\x37\x30\xee\x1d\x7a\x10\x6d\x31\x32\x64\xf1\xdd\xcd\x58\xd4\x45\xb1\x8b\x45\xb4\x8b\xa2\xf8\xde\xf3\x4d\xc3\x86\xec\xd7\xa3\xa3\x29\xcc\xc2\x59\xd3\x00\xb1\x68\xeb\x54\x7c\x9d\xf6\x00\x25\xd0\xb2\x56\x19\x6b\x1a\xd6\x27\x2e\x26\x56\x1d\x35\x63\x1b\xf2\x8e\xad\x2e\x6e\xab\x50\x84\x26\x8a\x83\x32\x18\x40\x13\x2e\x27\x01\x0f\xc6\x30\x1f\x43\x35\x09\x56\x08\xee\xd1\x1c\x1a\xf3\xe8\x8e\x2f\xc3\x47\x74\x98\xc9\xb2\xe2\x05\xcb\xf1\xba\xbb\x4c\x1e\x9d\xc6\x74\x78\x9d\xd0\xe1\x75\xd3\xd0\xe1\xe2\x1f\x70\x65\xe7\x98\x04\xec\x5b\x27\x5d\x87\xc4\x26\xba\x83\xb7\x1e\x1d\x85\x26\x31\xfb\x94\x2e\x8a\x8d\x23\x02\x01\x09\xa2\x07\x91\xad\xa3\x7d\x3e\x5b\x13\x44\x67\x72\x6a\xa6\xa7\xb3\x59\x32\x15\x31\x50\x97\xc9\x55\x5d\x2e\x98\xb2\xf4\x66\xfc\x14\xc8\xed\x59\x60\xe7\x75\xc7\x0a\xd0\xe1\xf5\xa4\x0e\x83\x6b\xb6\xdd\x48\x95\x07\x58\xdf\xf1\x6d\x08\xd1\x83\xaf\xad\x01\x47\x0f\xaf\xa7\x6c\x16\x01\x8e\x1c\x5e\x27\x72\x47\x87\xc5\xbb\xc4\x84\x74\x58\x34\xcd\x28\xdd\x0c\x46\xf1\xa3\xd3\x28\xe6\x47\x47\x21\x74\x81\x8d\x92\x20\x4d\x17\x61\x30\x80\x94\x7e\xd3\x2c\x0e\x68\x00\x09\x44\x69\xba\x08\xa0\xcc\x45\xd3\xe0\x23\xa3\xf4\x65\x93\x2e\x46\x98\x64\x5f\xb0\x00\x98\x41\xd7\xb2\x5f\x31\x13\xeb\x67\x62\xf8\x2a\x66\xb3\xb2\x08\x92\xcc\x05\x2e\x68\x16\x35\x4d\x00\x8d\x83\x49\xc5\x87\xe6\x02\x73\x9a\x8b\x41\x02\x37\x27\x41\x63\xc7\x1d\xee\xe0\x63\xb6\xee\xdc\x96\xc4\xa3\x28\x86\xd9\x9a\x24\x74\xa8\xf0\x86\x4a\x9e\x42\xae\x0c\xab\x90\x25\xd3\x19\x5e\xdd\xa3\xac\x99\x14\x19\x35\x43\x5a\x55\xc5\x16\x18\x2b\x3a\xcc\xf6\x17\x45\x37\x73\x75\x18\x00\x93\x87\x08\x6d\x42\xc7\x0c\x97\x05\xe4\x7f\x68\x0c\x2c\x9d\xc4\xee\x47\x14\xa0\x8f\x8e\x54\xe8\xe1\x98\x47\x67\x30\x37\xb2\xe4\x1b\xaf\x63\xc3\xc5\x3f\x26\x41\x9a\x0e\x27\x21\x20\xf3\x05\x76\xfe\x70\x12\x8c\xd9\x70\xb1\x8b\x5c\xc5\xc3\x29\x74\x11\xf4\xc6\x2c\xc2\x82\x44\x34\x5c\xf2\xc2\x30\x15\xbe\x94\xb2\x60\x54\x44\x67\x74\x68\x92\xcc\xd3\x0f\x13\x66\xdd\x78\xc2\x1c\x18\xdf\x01\xf3\x33\x7e\x80\xa1\x84\xc5\xbf\xdb\xed\xd4\x1e\xf7\xb5\x0c\x59\x6c\x62\x5c\x65\x7d\x32\xd4\x72\x7a\x31\x45\xa6\xc4\x24\xa7\x31\x4d\xc4\xd0\xbf\xf7\x8c\x9e\x9b\x33\x63\x59\x22\x15\x8a\x61\x36\x35\xb3\xe1\xe2\x5d\xcc\x5a\x7e\xc8\xa6\xed\x91\x18\x28\x14\xf3\xb3\x21\x7b\x17\x8b\xc8\xb2\x1d\x67\x6c\xc8\x44\xae\x7f\x41\x76\x0e\x90\x89\x65\xec\xce\x22\xd6\x72\x7c\x9e\x8e\xb3\x5d\xdb\x97\xec\xd7\x49\x1d\xfa\xfb\xb1\x88\xc6\x37\x92\xe7\xe4\x74\x9f\xc0\xb7\x08\xf0\x11\x85\xe1\x12\x43\x0e\x35\xdc\xc3\xb4\x1d\x4b\x7b\x05\xd8\x48\x00\x0e\xdf\x43\x0b\x63\x48\x6a\x2b\x30\xbc\x1e\xae\xa9\x7e\xbb\x11\xbf\x28\x59\x31\x65\xb6\xa1\x89\xa0\xce\xd7\x7b\x6d\xad\xa0\xdc\x18\xf1\x1f\x94\x4d\x13\x35\x09\x82\xf1\xa5\xe5\x53\x7f\x51\x6c\xc9\x6f\x63\x9e\x3c\x79\xa6\x2b\x2a\x08\x26\x02\x41\xa7\xb1\x4c\x0c\x64\x7c\xe5\x5f\xc7\x07\x09\x1b\x3c\x09\xce\x9f\xc4\x7c\x20\x06\xb2\x7b\xc1\x3a\xb4\x25\x33\x64\x99\x29\x90\xd1\x47\x17\xc3\xeb\xb6\xef\xc3\x6b\xcb\x4b\xd2\x04\x19\xe2\xd3\xf8\x62\x58\xbc\x1b\x16\x54\x9b\x4b\xe0\xcd\x91\xbb\xc5\x24\x64\x94\xaf\xa3\x33\x75\x16\x51\xa0\xc3\xd7\x3d\x3a\x6c\x62\x65\x59\x79\xa0\x16\x89\x0e\x2f\x62\x15\xc5\x6c\x12\xbe\x1c\x24\x6c\xfa\x74\x16\xd3\x41\x52\x85\xc0\xfd\xc4\x22\x04\xf6\x26\x8a\xa2\x31\x16\x82\x17\xb1\x49\xf6\x5f\x7a\xef\x95\x8e\x37\x1b\x74\x6f\x0d\x4d\x1f\xf9\xe7\xbe\x91\xc9\x3d\x0c\x7a\x31\xd4\xaf\xa1\xd1\xec\xe8\xe8\xd1\xeb\x29\x5c\xcd\xf6\xda\xee\x10\xf5\x64\x19\xc2\xbd\xf8\x3a\x7e\x74\x1a\xdf\xba\x7c\xe3\x55\x78\x1d\x03\xe8\x97\x10\xc0\x6e\xfa\xb4\xb5\xba\x18\xaa\xf3\xd3\xa3\x23\x68\xab\x19\x42\xb3\x8f\x8e\x42\x57\x00\xd2\x8d\x2a\x8a\xab\xd0\x0c\x0b\x2a\x56\x35\x5d\xb1\xd8\x58\x56\x2c\x7e\xf4\x14\xd6\x60\xd7\x86\x45\x18\xdd\x6d\x07\x09\xac\xbd\x47\x09\x3c\x3e\xc9\xc3\x68\xbc\x0e\xa3\xf8\x3a\x09\x7a\x1c\xd6\x0d\x20\x8a\x2d\xc8\x38\xd9\xd5\xa4\x02\xca\x78\x15\x07\x01\xae\xe7\x20\x88\x2f\x92\xb7\x28\xa3\x0e\x33\xc5\xa8\x61\x40\xcc\xed\xc4\x1f\xdf\xe1\x6b\xc7\x17\xbb\xbe\x5c\x57\xb6\x4b\xed\x7a\x90\x30\x87\x47\x85\xef\xa0\x45\x18\xc5\xa7\xae\x87\x64\x28\xe2\x0b\xe4\xc2\x8c\xbf\x6d\x86\xfa\x9a\x57\x93\xeb\x41\x22\xc6\xa1\x19\xb2\x97\x47\x47\x50\x8c\x88\x62\x78\xd0\x0c\xd5\xcb\xa6\x81\xe4\xa6\x09\xaf\x13\x11\x45\xf1\x4d\x08\xeb\x0f\xef\x4c\x4e\xc7\xc2\x23\x08\x78\x81\x4a\xea\xf0\x22\x16\xf8\x82\x76\x2d\x5c\x9c\xd1\xfe\x2b\xe8\x50\x5d\x20\x71\xb9\x80\x12\xdb\x17\x41\x02\xbc\x19\x5e\x01\x5c\xdd\xc5\x30\xbb\x3a\x3a\x0a\xb7\x83\xe4\x55\x04\xa3\x77\xcd\xab\xa6\x81\xe1\xb9\x80\xe1\xb9\x48\x2e\x3c\xaa\xb0\x4c\xde\x05\x30\xe9\x2e\x29\xea\x24\x28\x8f\xba\x6f\x42\x0f\xc7\x01\x92\x3f\x75\xd1\xab\xfb\x8e\x2f\xc3\x0c\x7b\x26\x32\x6b\x25\x37\xc8\xbd\x5c\x28\x25\x55\xf8\xe4\xb2\x28\xd8\x8a\x16\xa4\x60\xb7\xac\x64\x04\xf8\xf0\xc1\x93\x80\x2c\xa5\x22\xa5\xcc\x31\x21\x84\xba\x36\x4d\xf0\xac\x16\x82\x96\x2c\x3f\x0f\x90\x43\x6f\xab\x01\x8d\x8c\x45\xcb\x17\x3f\xdd\x41\xbf\x5c\x25\x9b\x90\x61\x47\x3d\xba\xba\xff\xd6\x8f\xe2\x5a\xc8\x8d\x20\x7e\xbe\x8d\xe1\x3d\xcc\x96\x5a\x84\x57\x76\xc2\xbf\x8b\x2f\x12\xde\x34\x57\xf1\x2d\xb0\x3d\xdb\x24\xb0\xc2\xed\xbb\xe4\xe2\xec\xdd\xa3\x24\xb9\x3a\x7b\x97\xbc\xf3\x5d\xf2\xce\x75\x67\x52\x85\xef\xba\xb9\x36\xd8\xda\x92\x60\x6e\xc6\x2f\x93\xd3\x33\xa3\xb6\xad\x68\xf8\x26\xfe\x3d\x7e\x9b\x9c\x9e\x9d\xe1\xcc\xba\x18\x9a\x1e\x3e\x79\x1b\xbf\x49\x20\x05\xd7\xb6\x89\xe2\x47\x6f\xa2\x85\x62\xf4\xfa\xec\xf7\xa4\x0c\x4d\x0f\xa7\xbc\x8d\xdf\x38\x9c\x12\xbf\x41\x2c\xf1\x36\x71\x09\x83\xdf\x51\x82\xe8\xb2\x87\x6f\xa3\x28\xc6\xca\xfb\xa1\x7d\xa0\xfe\x30\x1d\x5c\xbf\xde\xa9\xf1\xcb\xd8\x2e\x87\x6d\xdc\x76\x14\x8b\x8d\xac\x60\x7d\x64\x28\x4c\x7e\xc0\xca\x7f\x18\x96\x4c\x6b\xba\x62\x47\x47\x27\x4f\x1f\x25\x49\x7b\x6d\xab\xf2\x76\x19\x06\x6e\x9c\x03\x4f\xcf\xee\xd4\xf8\xd4\x95\x0e\x0c\xec\xee\xcc\x8e\xd1\x87\x5d\xb7\xec\x56\x40\x4a\xa3\x3b\x93\x98\xa6\xb9\x6c\x51\x83\x6e\x9a\xdb\xf0\x75\xe4\xd6\xc3\x5e\x31\x2c\xda\x81\xc4\xdb\xea\x4f\x3c\xa5\xdf\x3c\xc0\x06\xb6\x64\x6a\x19\x8a\x18\xf0\x4c\x74\xd6\xa1\x9f\x44\xc0\xf2\x3b\x77\xac\x52\x62\x70\x35\x9e\x2b\x77\xa9\x62\x95\x18\xcb\xba\xf8\x07\x8e\x8e\x60\x01\xb0\x4c\x8a\x7c\xbe\x60\xda\x24\x34\x8a\xd5\x1e\xfd\x6a\xd9\x86\xcb\xa1\xa1\x8b\x77\x56\xbd\x04\xed\xaa\x35\x7b\xf9\x6e\xd2\x69\x9c\xde\xf4\x34\x4d\x1d\xc1\x25\x2e\xe3\xd1\x51\x90\x0a\xcb\x61\x05\xcf\x16\xea\x1c\xa8\x60\x57\xde\x44\x74\x8a\xab\xd4\x8c\x56\x71\xff\x26\x60\xbe\x5d\x34\x66\x7d\xaa\x87\x64\xd5\xf6\x84\x4a\xc4\x64\x3b\x15\xb3\xb1\x89\x69\x32\x65\x43\xa3\x78\x19\x46\x3d\x4a\xed\xb4\x07\xe9\x62\x5d\xfc\xae\x81\x5b\x05\x2c\x83\x82\x5a\x00\x29\x41\x14\x9f\x3c\x45\x59\xd6\x8f\xb9\x8a\x8e\x8e\x5c\x0e\x05\x9d\x65\xd9\x2a\x60\x98\x6d\xd9\x7d\xca\xb4\xa7\xb2\x92\xb1\x8e\x8b\x84\xc3\xfa\xa5\x61\x11\x35\x4d\xe8\xbb\x29\x14\x49\x2e\x33\xd4\xef\x38\xdc\x7d\x51\x30\xb8\xba\x7a\x1f\x06\x6b\x63\xaa\xf1\x68\xb4\xd9\x6c\x86\x9b\x3f\x0d\xa5\x5a\x8d\x9e\xfe\xf8\xe3\x8f\xa3\xdb\xb5\x29\x8b\x20\x0e\x72\x7e\x13\x44\xb1\x18\x72\x21\x98\xfa\xfb\x87\x37\xaf\xb1\xaa\x0e\xee\xf5\x9b\x18\xad\x00\x89\x75\x29\xcf\x16\x6a\x4a\xd2\xd1\xec\xf8\x1c\xee\xa4\x22\x88\xa2\xb1\x48\x58\xac\x13\x31\x34\xec\xd6\xbc\x92\xc2\x00\xd3\xa4\x92\x62\xb2\x0c\x8b\x58\x23\x99\x59\x85\x1a\x68\x76\x1d\x22\x2e\xf7\xb2\x71\x28\xff\xdf\x36\x40\xf6\x1a\xa0\x1c\x95\x74\x71\x92\x85\x26\xae\x43\x19\xc5\x3a\x8a\xda\xc4\x2a\x74\x10\xc8\xa8\xf7\x9f\xed\x69\xfb\x92\x75\xd8\xbb\x8a\x8b\x58\xb5\x13\x1c\x9e\x55\x4c\xd7\x85\x49\xee\x5a\x5c\xd0\xdd\x8e\x15\x5c\xa9\x5d\xbc\xb7\x0a\x50\xaa\xee\xaf\x8a\xfe\xa3\xbd\xf4\x83\x62\xfa\x77\xd4\x2e\xda\xa3\xfe\x2c\xba\xbb\x4c\x64\x78\xb9\xc7\x76\xde\x84\x56\xa4\xbd\x41\x15\x0d\x08\xb4\x1e\x4a\x1e\x59\xca\xcc\xba\x5e\xff\x5c\x33\xb5\x7d\xcf\x0a\x96\x19\xa9\x5e\x14\x45\x18\x54\x8a\x91\x4c\xe6\x2c\x88\xce\x2e\x3c\xa2\x70\xca\x9e\x38\x8f\x76\x7d\x3e\x20\xba\xa3\x79\x7e\x71\xc3\x84\x79\xcd\xb5\x61\x82\xa9\x30\xf8\xe9\xed\x1b\x37\x03\x5e\x4b\x9a\xb3\x3c\x88\x6f\x00\x9d\xc4\xf7\x73\x16\x92\xfa\xbb\x5d\xa1\x57\x61\x6f\x09\xbe\x9e\x8a\x59\x62\x60\xe2\xab\x21\x2d\x38\xd5\x0c\xe4\x22\x0f\x3e\x28\x48\x6d\xa7\x6c\x96\x88\x3e\xbb\xf2\xae\x93\x51\x00\x53\x76\x37\x36\x7d\xe9\x29\x09\x19\xc8\x93\xd1\x3e\x77\x1e\xbf\x9e\xb2\x59\xd3\xbc\x9e\x42\xb1\x33\xa4\xa4\x17\xc9\x74\x16\xdf\x7a\x8e\xe9\x9a\x6d\x75\xfc\xda\x12\xc4\xbb\x5d\x7c\x9d\x8c\x3e\x85\x42\x9e\x4c\x5a\x0d\x70\x53\x15\x94\x8b\x06\x16\x46\xf4\x78\xc4\xe3\x97\xc9\x28\x5d\xc0\x00\x87\x93\x31\xce\xa4\xc9\x49\x38\x4d\x37\x27\xb3\x41\x94\x2e\x46\x3c\x7e\x93\x8c\xc2\xf0\x53\xf8\x6c\xfa\xe9\x7c\x36\x38\x6f\x52\xd3\x44\x83\x26\x9c\x8c\x53\x11\x45\xd1\x68\x55\xc6\xaf\x92\xe0\xd9\x08\x38\xfb\xf3\x20\xbe\x4c\xee\x7a\x3c\xff\x18\x11\xcf\x49\x10\x77\x48\x0e\x55\x32\x31\x22\x8b\xf1\xa3\xa7\x2d\xd9\xd2\x5e\x9c\x89\x7f\x4f\xee\x82\xa3\x60\x1c\x1c\xd1\xb2\x3a\x0b\xe2\xe0\x19\xc0\x85\x01\xf0\x1c\xc0\x95\x39\x0b\x76\x1d\xd2\x6b\x9b\x95\x2c\xe3\xde\xd5\x8b\xda\xc8\x64\x15\xb3\xe1\x92\xdf\xbe\xa1\xea\xba\xae\x92\xaa\x7f\xff\x65\x21\xb3\xeb\x24\x8f\x51\x7e\x5e\xf2\x55\xad\x58\xb2\xc0\xe5\xc7\xcd\xdf\x7d\x26\x2e\x56\xc9\xcd\x03\x89\x6f\x05\x4c\xa4\xa4\xc4\x25\xb7\x82\xd9\xa3\x5e\x7b\xc2\x74\x15\xb3\x61\xc1\xb5\xf1\x09\x3a\x79\x17\xb3\xe1\x8a\xb5\x09\xc9\x06\x4b\x5c\x33\xc5\x4d\x22\x63\x36\xbc\x7c\x97\x04\x53\x7a\xf2\xe5\xc5\xc9\x7f\xce\xd2\x74\x73\x1c\xc4\x6c\xf8\xb1\x97\x38\x6f\x53\xaf\xde\xa1\x82\x23\x4d\xf3\x41\x98\xa6\x43\x88\xa3\x09\xdc\x78\x05\x77\xc2\x93\x49\x14\xa6\xe9\xe2\x74\x7a\xfb\xcf\xd9\x94\x9e\x2c\x5f\x9c\xfc\x7c\x7a\xf2\xe3\x6c\xd0\x84\xfb\x0f\x1d\x47\x93\xc6\x3f\x1e\x4e\xd9\xc5\x6c\x7a\x32\x98\x4d\x6c\x69\x11\x14\xf7\xd2\xbd\x28\x3c\x5d\x4c\x4f\x9f\xce\x06\x98\xf8\xee\xfd\xbb\x24\x78\xd4\x3c\x4a\x9a\x47\x49\xd2\x7c\xdf\x7c\x9f\x34\x47\xcd\xd1\x51\x73\x94\x34\x69\x7a\x0c\x3f\x00\x06\xf0\x4b\x9a\xb8\x39\x69\x4e\x92\x66\x94\x34\xa3\x66\xdc\x9c\x35\xcf\x9e\x35\xcf\x9e\x25\x0d\xfc\x37\x49\x92\x34\xf0\xdf\x9c\x9f\x9f\x43\x90\x34\x18\x9d\x37\xf0\xdf\xa4\x29\x54\x6e\xda\xa4\xe9\x5d\x93\xa6\x61\x93\xa6\x9f\xe0\x07\x65\x37\xf0\x43\x00\xe0\xff\xc2\x9a\x5e\x24\x77\x8b\x71\x90\xa6\x69\x3a\x4d\x53\x9d\xa6\xef\x67\x41\xac\xc6\xa7\xbb\x98\x0d\x5f\xbc\x7f\x93\xdc\x65\x57\x63\x2f\x4b\xc5\x8b\x71\xf0\x24\x88\x19\x86\x1c\x1e\x12\x41\x9c\x8d\xa7\x50\xca\x0c\x1e\xf8\xb7\xfb\x0f\x3c\x09\x9e\xc4\x0c\xc3\x87\x1e\xf8\xe5\xd7\x37\xf0\xfa\x51\xba\x08\x69\x43\x45\x63\xd6\xac\xa1\x8a\x35\x97\x4f\xca\x86\x6b\xf1\xc4\x34\xb9\xb4\x21\xc3\xab\x0d\x5e\x2d\x6a\xd3\xfc\x5e\x6b\xd3\xe8\xb5\xac\x8b\xbc\xa9\x14\x33\x66\xdb\x68\x5e\x56\xc5\xb6\x61\x42\xd6\xab\x75\xb3\x92\x42\xd0\x66\x25\xb9\x58\x35\x1b\xb3\x6c\xb4\x6c\x74\x9d\xad\x9b\x0d\x2f\x8a\x66\x2b\x6b\xf8\xa9\xa6\xe0\xd7\x0c\x16\x29\x54\xe6\xd5\x9e\xd6\xaf\x93\xc4\xdb\xc9\x16\x62\xdb\x32\x59\x02\x96\x85\xc6\x89\x98\x8d\x0d\x34\x68\xb6\x8b\x55\xd3\xdc\xed\x3a\x11\x75\x98\x59\xb6\x00\xdb\x68\x75\x44\xd6\xfe\x00\x45\xe4\x32\x33\xd4\xf6\x67\x38\x19\x7f\x78\xfb\xd3\xdb\xe6\xe7\xcb\x7f\xbe\xb9\x68\xae\xde\x7e\xb8\x68\x5e\x7e\xfc\x5b\xf3\xcf\x7f\xfe\x33\x1a\xdb\x81\x88\x62\x8a\xb5\x7b\xfd\xea\x4d\xc2\x86\xaf\xc2\x60\x34\x0a\xe2\xe0\x71\x00\xf4\xea\xd5\xcb\x36\x31\x4d\x8f\x83\x38\x48\xd3\xe3\x11\xde\xf9\xbb\xbf\xf1\x5d\x9b\xf9\xca\x0d\x8e\x40\x7d\x23\xbc\x1d\x16\x84\x1f\xec\x57\x0f\xdd\x7e\xd5\xdd\x7f\xf9\xd0\xfd\x97\xbd\xe7\xdf\xbf\x7f\xf8\x05\x83\x20\xfc\xbe\x61\x65\xc3\x6e\x9b\x6c\xdd\x28\x56\x36\x37\x9b\xe6\x66\xdd\xdc\x94\x5c\x34\x37\x25\xbd\x6d\xb2\xb2\x29\xcb\x86\x8b\xa6\x32\x4d\x95\x35\xd5\x6d\x93\xb3\x55\xb3\x52\x34\x6f\xe0\x07\x1d\xda\xe8\xa6\xd4\xcd\xdf\xbf\x34\xd7\x7f\xff\xd2\xe4\x15\x6f\xf2\x2a\x2b\x9b\xbc\xaa\x6e\x61\xfd\xba\x2a\xbc\x73\xef\x57\x6c\xc5\x6e\x2b\x78\xff\x28\x1d\x8d\x62\x06\xd1\x74\xc5\xcb\x7a\x3b\x3b\x1e\xc5\x7c\x0c\x0c\x90\x9f\x86\x31\x4e\xbf\xa9\xcd\x35\x1b\x41\x51\xdd\x0c\xc5\x39\xfa\xc1\x95\x6a\xb8\x29\x98\x6d\xd4\x65\xdb\xea\x8f\x0f\xdc\xfd\xd8\xdd\x7e\x73\xf1\xe1\xef\x6f\x7f\x9a\xff\xed\xe3\x8b\x77\x3f\xb9\x75\x36\x4c\x53\x7d\x1c\x0c\xfa\xd9\x76\xd1\x19\x60\xf9\x7b\xa8\x30\x0c\x6e\x81\x2b\x6a\x67\xa5\x6e\x95\x1b\xd3\x17\x27\xff\x49\x4f\xbe\x9c\x9e\xfc\x98\xa6\xc3\xf9\xf8\x64\x36\x08\x62\x93\xdc\xb1\x5f\xc7\x8f\x4e\xa1\x81\xcf\xda\x86\x60\xe5\xa8\x31\x76\x38\xec\x0b\xa1\xc9\x49\xaa\x8f\xf7\x33\xf9\x35\xdb\x69\xd6\xa0\xb0\x9b\xf1\x14\xb2\x07\xd8\x41\xc1\xc8\x3e\xfc\x04\xaf\x9e\xb8\xab\xe9\xa7\x54\x07\x4f\x92\x67\xe7\xbf\xcd\x06\xa3\xdd\x0c\xff\xbc\x80\xe5\xc8\xfa\x78\x1a\x38\x0e\xcf\x73\x7a\x4a\xeb\x20\x0e\xa8\x91\x25\x24\xfe\xbe\x80\x50\xe7\x18\xc2\xed\x0a\x28\x40\x30\x8b\xb3\x4b\xa8\x84\xaf\x62\xc9\x0c\xc5\x55\xf3\xec\xd1\x4f\x6f\x5f\x7d\xf8\x8f\x5f\x2e\x10\x1b\x9d\xc3\x0c\x78\x6a\xb3\x61\x1f\x4f\x31\x39\x4d\x67\x01\x0c\xa1\x86\x65\xf0\xec\xd1\xc9\x49\x10\x07\x27\x27\xe7\x41\x7c\x07\xb9\x77\x11\x54\x3e\x78\x96\xa6\x8f\xd2\x74\xfa\xea\xa7\x17\x1f\x5e\xf4\x1e\x4c\xd3\x99\x2b\xd5\xb6\xf1\x59\x3a\x09\xab\x75\x15\x4d\xec\x44\x99\x9c\x8f\x62\xfd\x7a\x1c\x54\xeb\x2a\xf0\xaf\xb5\x2b\x10\x1f\x3f\x1e\x05\xb1\xbe\xe6\xd5\xf8\xd1\x29\x54\xc0\x4e\x10\xb7\xe0\x9f\x69\xb3\x2d\x58\x38\x49\xd2\x54\x37\xe7\xcd\xe3\xc8\x37\xe1\x7a\x7c\x27\xd0\x1e\x8d\x19\x82\x1d\x94\x6b\x66\xb1\xd5\x39\x8c\xef\xd8\x18\x78\x04\xb8\x05\x15\xbb\x80\x6e\xd1\xaf\xc7\xd3\x20\xc3\x8e\x84\x89\x32\xdb\xdd\x7b\x55\xa6\x78\x65\xbe\xf9\x2e\xcc\xf1\x95\x97\xe1\xbd\xfd\xb7\x51\x9c\x89\xee\xa9\x38\xf8\x9d\xde\xd0\xf6\x62\x4d\x45\x5e\xb0\x05\x55\xf7\x2a\x64\xc7\xcd\x4d\xa5\x67\xe9\xe4\xb6\x2c\xba\x7e\xdc\xeb\x64\x34\x4b\xb8\x3b\xf7\xbb\x6e\x34\xc1\x06\x8c\x26\xe7\x41\x3b\x27\xa0\x1d\xb8\xd4\xa7\x9f\xd2\xd1\xf9\xb3\x54\xcf\x06\x23\x3b\xcd\x0d\x4c\xc4\xaf\xaf\x2d\xec\xb8\x43\x53\x4d\xd6\x32\x0d\x27\x33\x07\x9c\x9e\xfc\x38\x3f\x99\x1d\xe3\x02\x83\xd7\xbc\x38\xf9\xcf\x74\x9e\x0e\xd3\x93\xd9\x20\xd5\xc7\xe3\x51\xac\x5e\x42\xf7\xb0\x71\x70\x16\xc4\x76\x05\xf6\xd7\x1d\xda\x51\x2d\x2e\x7a\x0f\x4d\x0b\xc6\x41\xcc\x6c\x87\xfa\xce\xc6\x67\x6c\x9a\x9d\x4b\x23\xcb\x3d\xa6\xa1\x2f\xdc\x17\xb8\xa8\x79\x61\xe6\x5c\xd8\x06\x63\x26\xb7\x08\x21\x2f\xf4\x5b\xe4\x30\xdb\x8b\xf7\x6f\x2c\x41\x76\x58\x0c\xd1\xb3\x4d\x89\xfd\x5d\xa0\x1e\xf1\x01\xc6\x0e\xbe\x9b\x9e\x9e\xfc\xf8\xe2\xe4\x67\x7a\xb2\x9c\x0d\x82\xbd\x01\x5c\x8c\x83\x47\xbc\xac\xa4\x32\x54\x18\x58\x5a\xbd\x85\x6e\x17\x2a\x1f\x8f\xa6\x49\x3a\x6a\x9e\xa4\x8f\x67\xae\x22\xdd\x4b\xb4\x93\x48\x4e\x78\x8e\xf5\xff\xae\xc3\x62\x73\xd7\x90\xbd\x6c\xc8\x06\xdb\x9e\x1b\xfe\x41\x56\x8f\xe0\xfa\x98\x9c\x8f\x83\xc7\xc1\x61\xc6\x4a\xb3\x3a\x97\x98\x75\x1c\x8e\xa3\x49\x37\xc6\xe9\x3c\x3d\x49\x07\x69\x98\x46\xc1\x93\xa1\xef\xd6\xe0\x79\xb8\x94\xc2\x9c\x2c\x69\xc6\x9a\x0a\x58\xfb\x20\x2e\xc6\x38\x45\x10\xe7\x5e\x8f\x83\xf6\x3e\x81\xfb\x81\x7b\x0c\xe7\xe9\xf4\xee\x6c\x06\x8c\xd2\x68\x3c\x6a\x47\xb0\xb5\xe0\x41\x65\x37\xed\xe8\xe9\x51\xdc\x9f\x06\x2d\x15\x6a\x87\xd1\x0f\xe1\xac\x5d\x15\x6d\x9b\xdc\xf2\xc8\x5a\xe4\x1e\xdc\xe1\xeb\x77\xf8\x6e\x98\x75\xdd\x40\xfc\xc1\x9a\x28\xe9\x35\x5b\x72\x20\x64\x87\x0b\x83\x5a\x32\x87\x96\xdf\x45\xe1\x26\xf4\xe3\xc3\x59\x07\x44\xf3\x3e\xea\x2f\xaf\x83\x18\x8a\x06\x7c\x0e\xb9\xfe\x0e\x33\x62\x31\x1e\x7d\x4a\x37\xb0\x84\xd2\x5f\x8f\x13\x3f\xd1\xa1\xe1\x1d\x12\x1a\xb5\x77\x0f\x56\xcc\x78\xf4\xb8\x25\x5e\x74\xb6\xdb\xb5\x5d\x62\x3d\xa8\xa0\x72\x9f\xa6\xe9\x66\x36\x18\xa7\xfa\xf8\xf1\xe8\x60\x16\x8f\x3e\xa5\xc3\x5f\xfe\xfe\xf6\xea\x3f\xc6\x58\xfb\xc7\x23\xc0\x87\x78\xf7\xc4\x0f\xcf\x38\xb0\x39\x82\x5d\x5c\xc0\x4a\x1b\x42\x61\x6e\xb0\x3e\xa5\x66\xe0\x1f\x6c\x07\x0a\x86\x88\x7e\xbb\x73\xc5\x8a\x8b\xdb\xfb\x3d\xab\x0e\x7b\xd6\xe1\xc9\xf4\x71\x9a\xb7\xf3\xe3\x71\x7a\x87\xaf\xdc\xb9\x79\x39\x4d\xd3\xc7\x69\xfa\x7c\xe6\x18\x09\x98\x14\x0b\x4f\xff\xdd\x04\x1d\xcd\xed\x0c\xbd\x2b\xb8\x61\x8a\x16\xe3\x40\x0a\x22\x97\x4b\xb2\x65\x9a\x08\x49\x8c\xaa\x19\x59\xd2\x42\x33\x22\xa4\x60\x64\x01\x02\x1d\xcb\x49\xce\x16\xf5\x8a\x70\xb1\x94\x44\x48\xc3\x33\x46\x36\x14\x04\x45\xa5\xa4\x22\x99\xe2\x86\xd8\x99\x47\x50\x5d\x4b\x0a\xaa\x0d\xa9\x98\x2a\xa9\x60\xc2\x10\xc5\x72\xae\xe0\xee\xf5\xe7\x9a\xd5\x8c\x28\xa3\xf9\x8a\xb0\x4a\x16\x05\xc1\x60\x94\xb3\x9b\x11\x40\xc1\x0e\x7b\x8f\x8f\x83\xe4\x3c\xe8\x4d\x8c\x3e\x2f\xe2\x99\x34\x35\xfb\x03\x46\x64\x66\xbb\x25\x84\x86\xcf\x06\xd1\x78\xe4\x28\xb1\x0e\xe2\x03\xf4\xaa\xfc\xfa\xf1\x5c\xe2\xbd\x77\x04\x28\x07\x7d\xf2\x25\x34\x77\xcd\x99\xa3\x81\xf6\x25\xff\x95\xa6\xc7\x93\x34\xd5\x83\xaf\xe6\x48\xd3\x63\x90\x14\xa1\x32\x29\xd0\x89\x68\x10\xf4\xea\x87\x49\x69\x3a\x8c\x06\xc0\x31\xb4\xeb\xb9\x87\x83\xad\xb4\x79\xf7\x34\xfe\xd3\xce\x8a\x99\xdf\x00\xc3\xb1\x85\xfe\xb2\x8b\x26\x69\xba\x08\xbe\x56\xda\x60\x7a\xfd\x8f\xf2\xcd\xea\x6f\xb9\x5e\xe7\x9b\xed\xec\x18\xf2\x5a\x8c\xa1\x1e\x5a\xb3\x38\x59\x41\xb2\x3f\x58\xb4\x38\xdd\x06\xd0\xea\xc1\x5d\xd0\x91\xbe\xbb\x8e\x20\xf7\x16\xa1\x9b\x9b\x2d\x62\xea\x1e\xc6\xae\x3b\x6b\xda\x22\x1e\xa4\x98\x96\x47\x76\x8b\x7e\xe1\xca\x99\xc1\x8c\x99\x7e\xc2\x31\xda\xcd\x82\x6f\x22\x33\x75\x9d\xcb\x8d\x08\x1e\x70\x6c\xec\x63\x27\xe0\x3a\x4b\x97\x13\x00\xdb\xe2\xfd\xb6\xb8\x99\xf1\xe9\xbb\xbb\xa7\xf1\x5f\x77\x58\xfb\xc7\x6e\x4c\x3f\x0d\x07\x93\x34\x15\xd3\xe4\x64\x76\xf7\x43\xbc\x7b\x1c\xf8\xc9\xf8\xcc\x73\x5b\xc0\x29\x22\x27\x6f\xfb\xc1\x12\xf2\xa2\x60\x28\x43\x06\x9f\xc2\xe9\xf1\xe0\x64\xd6\x84\x30\x48\x30\x2d\x22\x9c\x5b\xbb\x76\x25\x48\x27\x7a\x4f\x8f\xe7\xb3\xbb\x1f\x76\xc3\xc1\xc4\x41\x3e\x0f\x2b\xab\x35\xd5\x5c\x07\xdd\x04\x3e\xc6\x4a\x1d\xbb\x2a\xce\x87\x83\xc9\xdc\xbe\xde\xcf\xb6\xcf\xb5\xb4\x9d\x1c\x7c\x3a\x6f\xe7\x72\x4b\x2f\x51\x57\xd8\x36\xfa\xb7\xdf\x7e\xdb\x1c\xeb\xe3\xc7\x98\x07\xae\x00\xb6\x25\xff\x36\x1c\x4c\x7e\xf3\x1d\x11\x92\xbb\x3f\xef\x9a\xff\x25\x72\x65\xb5\xef\x83\x7b\xd3\x93\x34\x3d\x9e\xdd\xfd\x29\xde\xef\xbc\x34\x9d\x62\x4d\x67\xd3\x34\x0d\xd3\x74\x3a\x1b\x1e\x4f\xa6\x69\x1a\xa5\xe9\x6c\x76\x38\x37\x7a\x5a\x88\x3e\x8b\x1f\x33\x4b\x39\x3c\xe1\x74\x4d\x28\xb8\xb8\x76\x79\x67\x69\x1a\xba\xec\x91\xcf\xce\xdc\x6a\xc5\x82\xb7\xe5\x42\x16\x5d\xe6\x7b\x65\xdb\xcc\xb3\x1e\xab\xfa\x29\x9d\x4e\x3f\xa5\x62\x36\x48\x67\xe3\x43\x26\xad\x2b\xae\xcf\x8e\xdc\x7f\xad\xaf\xe1\x68\x8c\xb2\x98\x25\x28\x98\x6d\xf7\x6d\x42\x92\xf3\xe5\xf2\x0f\x26\x75\x45\x4d\xb6\xee\x4d\x64\x4b\xfa\x50\x4a\x72\x88\xf4\xd3\xf3\xe7\x64\x90\x9e\xa4\xf9\x20\x4e\xf3\x01\x19\xa4\x83\x16\x7c\xfe\xfc\x71\x4b\xea\x8e\xe1\x8f\x74\xf7\x6c\x42\x7a\xdc\xe5\x38\x81\xbf\x7e\x8e\x13\xfb\xf7\xb8\x63\xe0\x5b\x95\x89\x7b\x37\x5a\x00\xc7\xc4\xb5\xd9\x09\xa4\x30\x37\xf6\x52\x3e\xa5\x27\x77\x7f\x3a\x4c\x3a\xbe\xfb\xd3\x8e\x1c\xa4\x0d\x0e\xb3\xa5\xc7\x77\x7f\xb1\x29\x08\xf5\x6a\x42\xf3\x9c\x7b\xec\x14\x7c\x4a\xd3\x83\x79\x9f\xb3\x82\xf5\x6f\x9f\xec\xdf\x3e\x7c\xfa\x91\xbf\xfd\xad\xd1\x42\x19\xf1\xbe\x9c\x61\x67\xff\xe3\x81\xd7\x51\xfe\x6f\x27\xff\xf3\xff\xec\x8b\x1c\x78\x0d\x0b\x98\x27\xfb\xcc\x4b\x2b\x8a\x36\x28\x24\x81\x58\xf2\x10\xc9\xe4\x9e\x9c\x3d\x59\x78\x15\x9c\x5d\x72\x0b\xaf\xc2\xdb\x75\x6a\xd4\xd0\x72\x9a\x77\xdc\xfa\xfb\x45\x7b\x77\xfe\xad\x7f\x67\xb6\x8b\x69\x72\x77\x83\x2f\x41\x81\xe2\x15\xf0\xa4\xf7\xe9\x47\xb5\xae\xfe\x04\x72\xfc\xba\xfa\xb3\x8d\xfe\x62\xa3\xbf\xb6\x42\xfd\xf5\x38\xa0\x22\x27\x5c\x64\x45\x9d\xb3\xb9\x14\x19\x23\x20\xf5\x13\xba\xd0\x46\xd1\xcc\x90\x55\x21\x17\xb4\x20\x95\xe2\x37\xd4\x30\xc2\xb2\xb5\x24\x5c\x18\xa6\x90\xdd\xa6\x9a\x68\x43\x0d\xcf\x08\x13\xb9\xde\x70\x93\xad\x09\x55\x8a\x6e\xd1\x6d\x89\xf0\x25\xa4\xa3\x69\x9f\x00\xe3\x22\x85\x36\x68\x73\x67\x22\x5f\x4a\xc5\x68\xb6\x46\xb7\x7d\x02\xc3\x61\xb3\x71\xad\x99\x21\x55\xbd\x28\x78\x46\x2a\x25\x0d\xcb\x0c\xcb\x09\xbb\xe5\xf8\x24\x3e\x62\x6d\xb8\xac\xd0\x8c\x2f\x7d\xdd\xc9\x7c\xfe\xf3\xe5\xeb\x8b\xf9\x9c\xb0\xb2\x32\x5b\xa2\xd8\xe7\x9a\x2b\xd7\xa4\x5c\x92\x5b\xa9\x88\xd3\x0b\x5a\x5b\x34\xc9\x0a\xe0\xb8\x6a\x0d\x8f\xbe\x7a\xfd\xe2\xfd\xfb\xf9\x9c\xcc\xe7\xaf\x2f\xaf\xb0\x10\x60\xc9\x2c\x73\x55\x29\x2e\x0c\x61\x37\xb4\x40\xd3\x3e\x1a\xa4\xc9\x7c\xee\xd4\x4a\x73\x92\x51\xcd\x08\xbb\xcd\x58\x65\x8d\x8c\x6c\x49\xeb\xc2\x90\x9c\x33\x5f\x09\xa8\xdb\xc7\xab\x57\x1f\x2e\xdf\x5e\x41\xd1\x22\xcf\x59\x56\x50\xc5\xc8\x92\x0b\x5a\x10\xa3\xb6\xc4\xf5\x5d\x26\x85\xe1\xa2\x66\xae\x83\x20\xe2\x4b\xe2\xb3\xd7\x02\xfa\xa6\xc7\x33\x1a\x45\xb9\x21\x2b\x69\x60\x4c\xb4\xa1\x22\x63\x72\x89\x20\xa3\xb9\x5c\x92\xf9\xfc\xa7\xcb\x77\xd8\xac\xab\x17\x6f\x2e\xde\xff\xf2\xe2\x15\xb4\x6d\xcb\x59\x91\xdb\x77\x17\xdb\x1e\xd7\xd7\x57\x6c\xc6\x77\xd9\x78\xca\x67\x38\x0b\x0f\x34\x9b\x78\xeb\x50\x85\xfa\xdc\x09\x87\x20\xae\xb6\x4f\xcd\xe7\x6b\x5a\x98\xb9\xf3\xf8\x54\xc3\xc1\xe4\x2c\x88\x1f\x3d\x8d\x1d\x8f\x7c\x3d\x3e\xcc\x01\x82\x9d\xe5\x57\xa2\xf8\x80\xdc\x8c\x9e\x3d\x7b\x36\x7d\x12\xcc\x26\xe9\x66\x80\xf1\x63\xc4\x2d\x20\xbe\x9c\x01\xdc\xaa\x12\xf1\xb1\x7a\xa1\x4d\x9f\x89\xef\x84\xbc\xbb\xd4\x3e\x98\xee\xac\x9a\x2c\xe6\xf1\x7d\x99\xf0\xb1\x59\x73\x8d\x1a\xe9\x0c\x9f\x0a\xc7\xe3\xe6\xe4\x3c\x6a\xf1\x44\x7a\xfb\x2f\xcb\x93\xf4\x76\xb9\xec\x23\x8b\x2e\xf1\xd8\x0b\x3b\xed\x76\x92\x78\xf1\x8f\xfe\x15\x1b\x8f\xa6\x67\x77\x33\x2f\x52\xa1\x56\xfe\x31\x1a\x0c\xbe\x77\xe3\xf1\xf1\x83\xe3\xc2\x2b\xaa\x68\xa9\x1d\x5d\xec\x51\xd0\x6c\x3c\xb5\x6e\x90\x71\xe6\xb5\x08\xc6\x0a\x3f\x0e\xdd\x3b\xc1\xfd\x1f\x0e\xec\x16\x6d\xe0\x78\x45\xff\xee\xd1\x74\x9c\x86\xe9\xe3\xc0\x2a\x0b\xee\xe0\x09\x76\x6b\x60\x3d\x13\x5e\x56\xd6\x6c\xac\x03\xa7\x68\x45\x56\xe2\x1f\x56\xe3\xa3\x2b\x5f\xda\x19\x4a\xb9\xd3\x74\xf8\xc4\x6b\x1c\x7a\x59\x6b\xdd\x66\xda\xbb\x85\x32\xc7\xce\xd6\xfa\xeb\x98\x7b\x41\xf5\xfa\x3e\xea\x36\x5f\x95\xd7\xa6\xe9\x26\xcd\xbf\x7b\x3e\xc3\x78\x6e\x87\xc2\x09\x6f\xe1\xf0\x78\x12\xe1\xb0\xc7\xfa\xd0\x44\xd2\xca\x34\xed\x44\x32\xf1\x7f\x57\xd8\xb6\xe8\xf8\xa0\xbc\x56\x2a\xba\x8f\x96\xa1\x41\xc1\x17\x0d\xac\x41\x31\x1e\x9d\xa0\xfe\x23\x1d\xce\x67\x03\x94\x81\xdd\x44\x1c\x07\x7c\x49\xcc\x9a\x09\x8b\x8a\x58\xc1\x97\x64\xc9\x11\x79\x3a\x44\x29\x00\xad\xe5\x80\xc3\x2c\x06\xd2\x34\x23\xdd\x14\x6b\x05\xce\x0e\x5d\x04\xb1\x57\x5d\x8d\x03\x8b\xda\xb2\xbc\x87\x71\x00\xc1\xb1\x5b\x96\x59\x5c\x6b\x37\x49\x91\x15\x33\xb2\x32\x9a\xac\xa9\x5e\x93\x6a\x93\x13\x05\x98\x45\x14\x5b\x8f\x4c\xf5\x9a\x2f\x0d\x31\x4c\x1b\x62\x78\xc9\x34\xe0\xa4\x8a\xd4\x25\xd5\xd7\x0e\x5f\x61\xc3\xc9\x82\x8b\x9c\xe0\xfb\xb9\x20\x68\x35\x07\x7a\x50\x96\x40\x7e\x3c\x7e\x43\xe2\xc2\x04\x74\x37\x59\xb3\xa2\x22\x05\x33\xa4\x90\x19\x2d\x48\x21\x57\xb2\x36\xa4\xa4\xd5\x12\x1a\x8f\x38\x79\x89\x95\xc1\xc0\xd2\x1c\xeb\xce\x4e\xcc\xb6\xb2\x01\xbc\xbd\x2e\x78\xc9\x0d\xa9\x85\xad\x06\x24\xe9\xb5\xac\x0c\xa1\xb5\x91\x85\xa4\x39\x59\xac\xb0\x72\xd7\x6c\x4b\x16\x5b\xe8\xcc\x8a\x64\xeb\x9c\x2b\x47\x20\x00\x37\xb5\x9b\x7d\xf0\x0a\x6a\x6f\x01\x63\xe3\x9c\xe9\x4c\xf1\x85\xcd\x0b\xf5\xb3\xf9\x56\x4a\xd6\x95\x05\x91\xd3\x47\xc8\xd0\x95\x4d\x02\xac\x0f\x31\xba\x47\x68\x92\x73\x05\x81\xc6\xc6\xe7\x5c\xcb\x8d\xc0\xfe\x30\x99\x8d\x38\x61\x65\x5d\x00\x09\x5e\x66\x64\xb9\x22\xcb\x42\x52\xd3\x8e\xb7\x86\x81\x82\x9a\xaf\x98\x29\x04\x59\x73\x6d\xa4\xda\xe2\x9a\x5f\x31\x45\x7e\x97\x0b\x4d\xae\x79\x51\x10\xdb\x1b\x85\x5c\x11\x21\x81\xb4\x93\x4a\x56\xb9\x23\x71\x55\xad\xd7\x39\x86\x85\x20\x8a\xe1\x90\xeb\x6c\xcd\x72\xe8\x35\x28\x5c\xe3\x64\x40\x8a\x4f\x74\xad\x2b\x26\x72\x62\xcc\x16\xba\xa1\x16\x9d\xc7\xb0\xc0\x27\x6b\xe1\x7b\xde\x3d\x76\x43\x15\xcb\xc9\x06\x28\xd6\x66\xcd\x80\x2c\x6f\xd6\x4c\x41\xc8\xb3\x35\xf9\xe2\x68\x00\xf9\xb2\x94\xaa\xa4\x86\x7c\x59\x9a\x8a\x7c\x81\x84\x52\xe6\x38\x50\x5f\x2a\xaa\x34\xc3\xe9\xf8\xa5\x52\x72\x49\xbe\x00\xa1\xff\x62\x75\x08\x70\x8b\x7c\xd1\x32\xbb\x66\x86\x7c\x41\x1d\x3d\xf9\x62\xb2\x2a\x88\xe7\xe3\xe0\x44\x30\x72\xc2\x3e\x93\x93\xc2\x90\x93\x95\x21\x27\x4b\x72\x92\x93\x13\x46\x4e\x34\x39\x29\xc8\x09\xb5\xca\xf7\x03\x05\xd5\x77\x8f\xac\x78\xa1\xd7\xa8\xc0\xf2\x92\xc7\x01\x62\x1f\x8f\xd2\x8d\x47\x36\xa9\x3e\x4e\x43\x08\x22\x08\xee\x7a\x42\x49\x9f\x97\xfb\x60\x35\x6f\xdd\x63\xa3\x5d\x34\xf3\xd6\x2a\x20\xc4\x3a\xa6\xb1\xf9\x16\x52\xfc\x5d\x4b\x71\x1f\x29\xf2\xe4\xee\x81\x55\x8f\x9c\x58\xb0\x8b\x45\x32\x6d\x95\x98\x57\x6f\x66\xb1\x4a\xee\xd8\x38\x88\x0f\x75\x33\x22\xbe\x1e\xf3\x9d\xd5\xb3\x77\x3a\xcc\x43\x23\xd6\x3d\x74\x39\xf3\xa6\xe5\x3e\x43\xab\xb0\x9d\x63\x6c\x1e\xde\x7e\x0f\xfd\x9c\x1c\xda\x87\xf6\xfb\x47\xf5\x32\x9f\xb5\x4e\xe9\x6e\x37\x8e\x77\xbf\x8c\x4f\x63\x13\x67\xc0\x24\xd8\x0a\xb7\x4f\x7c\xbd\xcf\x68\x45\xb3\xf5\x03\x4a\x55\x75\x68\x2f\x45\xbd\xde\xf7\xb3\x34\xcd\x07\xc1\x03\xd8\xdb\x96\xe3\xb5\x32\x97\xed\xf8\x76\x7a\xb3\x4e\xf7\xd2\x5a\x4b\xce\x5b\xe9\x65\xdf\x1a\xb1\xb1\x76\x12\xb4\x05\xc9\x12\x3d\x3c\xc6\x81\x54\x39\x53\x24\x67\x62\x4b\x68\x51\xc8\x0d\xac\x3b\x26\x6e\x88\x62\x1b\x05\xe3\x5b\x17\xcc\xc3\x4c\xac\xb8\x68\xaf\x32\x09\xc8\xd4\x79\x20\x29\x29\x0d\x3c\x69\x2d\x42\xca\xea\x0e\xfd\x4d\x02\x0b\xaa\x94\x39\x14\x25\x2b\x8b\x41\xd6\x8c\xc2\x7b\x0b\xf4\x23\x22\x9a\xa9\x1b\x78\x04\x0b\x01\x10\x6d\x3c\xbb\x07\xd4\xbf\x0f\x68\x37\x29\xce\xb8\x7b\x16\x43\xd4\x17\xb5\xe3\xde\x4a\x74\x7d\x12\xdb\x76\xfe\x9d\xcb\xb6\xeb\xb3\x3a\x6a\xb6\x8b\x95\x37\xa9\xa0\x16\x6a\x94\xbe\x1f\x7d\x63\xd0\x55\xbd\xd8\xde\x1f\xf2\xc5\x81\x57\xca\xf4\xd1\x24\x99\x4d\x9a\xe9\xc9\xe0\xbf\x66\x69\xfa\xbc\x79\xf6\xac\x39\x3f\x6f\x92\xff\x6a\x92\x24\x99\x34\xcf\x92\xf3\x66\xfa\xec\x7c\x96\x4c\x9a\x34\x3d\x4e\xd3\xe3\x66\x7a\x32\x1a\x7c\xff\xe9\xe8\xf8\xbf\x7e\x6b\x66\x0d\xfa\x6c\xcc\x92\x49\x00\x2b\xaa\x25\xde\x40\xd6\x90\x7a\xbb\x7d\xc8\xc4\x75\x36\x17\x9e\x70\x2a\x96\x4b\x10\x90\x5e\x5e\xfc\xed\xf2\x0a\x12\xd5\x16\xd8\x7d\xa4\xf0\x28\x13\x01\x92\x24\x82\xdd\x02\x0a\x35\xbc\x00\x6a\xbf\x60\x2b\x0e\x08\xb6\x60\x5a\x93\x8b\xab\x9f\x88\x62\x3a\x03\xda\xdd\x49\x2b\xb8\xf3\x99\x08\x18\xb6\xba\x02\x1a\x8b\xcc\x1f\x72\x08\x5e\x1a\xb1\xfc\xbf\xa5\x87\x96\x97\x60\x42\xd7\x0a\x8b\xe1\x4b\x10\xd4\xbc\x4c\x05\xb3\x75\xae\xec\xbc\x40\xd8\x4e\x40\x0b\xd3\x2c\x63\x5a\x4b\xf5\x20\xaf\x41\x04\x2f\xec\x62\xff\x86\xa0\x00\x6c\xd3\x62\x1c\x7c\xf7\xac\x5d\x23\x1a\x90\x54\xeb\x30\x81\x92\x46\xd6\x8a\x13\x9f\xd2\x34\xc1\x1e\x08\x62\x84\x99\xc8\x7d\x96\xd8\x59\x93\x6d\xbe\xf9\xfc\xe2\xea\xa7\xf9\x1c\x05\x16\xf1\x38\x88\x66\xb1\x48\xfa\x72\x01\xbc\xd3\xcf\xb0\x5d\x10\x5f\x8f\xd5\x57\x25\x78\xd1\x2a\xbd\xf7\xed\xed\xfb\x2a\xf0\xdf\xf0\xea\x37\x67\x17\xf8\x7e\xfa\xf9\xdf\x36\xbf\xde\xce\x26\x7d\x86\xfd\xde\xad\x9e\x7d\x7c\xff\x96\xaf\xd7\x41\x72\xd7\x49\x7b\xc9\x56\xc9\x3e\x3a\x4c\xfe\x1e\x93\xbf\x3f\x4c\xb6\xba\x94\x93\xfb\xb5\x69\x5c\x6d\x9a\xc0\xf1\xcb\x2f\xd3\x49\x98\x7a\xfd\x76\x93\xa6\xb7\x53\x6b\x8f\x3c\x3d\xf9\x71\x76\xf7\x34\xfe\x01\xd2\xea\x7e\xda\x9f\x21\x65\x92\xbe\xb7\x9e\x3c\x68\x4a\x7e\x16\x9e\x4c\xa2\x74\x33\xf0\xa2\x9a\x3e\xc6\x0b\x94\xba\x92\x6f\x4a\x37\xfb\xfe\x0f\x38\x40\x79\x32\x35\x31\xfd\x8a\x70\x63\x57\x97\xd5\x04\x35\x56\x1a\x49\x46\x0f\xd3\x5d\xef\xb7\x61\x97\x7e\x38\x1e\xa7\xe9\x66\x10\x1d\x87\xd6\x65\xeb\x51\x34\x09\x3a\xaf\x04\x7d\xdc\x7a\x16\xe0\xe6\xaf\xcb\x77\x83\x60\x3c\x8e\x26\x16\x06\xf9\xd1\xef\xff\xd2\xd1\x83\x22\x5f\xce\x96\x5d\xa5\x1e\xac\xce\x62\x17\xc5\x7c\xbf\x18\xeb\xdd\x02\x6f\x0a\xee\x29\x47\x9d\xf6\x3e\x4c\xd3\x47\xd0\xdd\xd1\x64\xdc\xd7\x68\xf7\x94\xa8\xe3\x70\xf2\x28\x4d\xb5\x95\x14\x8d\x7d\xd3\xac\x97\xb5\x47\xef\xac\xbb\xdd\xe9\xc9\xbf\xcc\x67\x83\x08\xdd\xec\x4e\x6f\xa7\xa7\x27\x3f\x5a\xe7\xbb\x36\x71\xfa\xf4\xe4\xc7\x19\xa4\xcf\x67\xd6\xb2\x82\xe0\x20\x9a\x44\xcd\xf4\x14\x7a\xd3\xdb\x32\xee\x6c\x99\x8f\xd3\xf4\xd7\xa8\x09\x43\x2b\xda\x3e\x4f\xd3\xe7\xe8\xd9\xb7\x19\x44\x91\x6f\x57\x37\xfc\xa3\xb4\xb1\x82\x55\x33\xb2\xc3\xdd\xf6\xf9\xbb\xf7\xef\x06\x41\x63\x71\x5e\xd4\x0e\x09\x7d\xd8\x7e\x24\x66\xde\xb5\xc8\xe9\xcd\xdd\xf2\x40\x93\x94\xd7\xc4\x7f\xaf\xdc\x12\x3b\x48\xed\xcd\xc0\x83\x3b\x56\xc7\xf8\xe8\x5e\xfe\x76\x0d\xfb\x3b\x7b\x33\xc2\xea\xde\xbb\xeb\x33\x31\xcc\x92\x3c\xe6\x10\xa2\xbb\x70\x91\x04\xd3\xf3\xc9\xec\x3c\x88\x65\x02\x84\x6f\xf3\xdd\x6c\x80\x2a\xf8\xcd\x20\x4d\xa3\x31\x70\x20\x18\x9c\x07\x71\x9d\x04\x98\x7e\x12\x4d\x9c\x89\xa2\x8b\xc2\xca\x7a\x3d\x5a\xd7\xd6\x20\xde\x24\x56\xb9\x9c\xea\xe3\xe4\x7c\xd4\xf7\x27\x79\x0c\x3d\x95\xef\x0e\x1d\x0a\x3e\x85\xc1\xa0\x18\x04\x4d\x30\x90\x18\xd6\x83\x20\x0a\x1e\x7a\x6e\x76\x9f\x1d\x52\x8b\x20\x0e\x56\xac\xd4\x15\xcb\x82\x38\xa8\x64\xee\x20\xb3\x06\xd2\x10\x70\xb5\x08\x66\x30\xa4\x38\x30\xa3\xf4\x18\x96\xa5\xf6\x9d\xb2\x69\x37\x50\xe6\xd1\xb7\xf8\xdd\x9e\x8b\xcb\x7d\xfe\xcd\xaf\xe8\xc7\xf3\x99\xf5\x9b\x70\x17\xd6\x5d\xa4\x93\xa7\x81\x37\x01\x8a\xdb\xc9\xd0\x4e\x07\x86\xea\x47\xc1\x36\xdd\xf1\x0a\xb9\xf4\x64\x1a\x1d\x7a\x7b\xf4\xd5\xaa\xff\x7a\xda\xb6\x0d\x37\x5e\x23\x89\x54\xd6\xeb\xff\x80\x9e\x9b\x35\xd7\xf7\x54\x7b\xed\xc1\x22\x05\x33\x0c\x45\x5c\x4b\x90\xad\x76\xd4\xc9\xdd\x96\x78\xa3\x19\x18\x04\x38\xaa\x09\xd5\x5b\x91\x11\x8a\xf2\x93\xd3\xb9\x5a\x3f\x10\xb2\x54\xb2\x24\x54\x7f\x85\x0e\xd7\x45\x41\xda\xe3\x50\xc8\x15\xbd\x22\x97\x62\xc9\x05\x37\xdb\xbe\x3e\x00\xa5\x7f\xae\x7f\x86\x1b\x8c\x70\x0d\xf9\x50\xa6\xfa\x19\xe5\x4c\x04\x2f\x85\x01\x51\x5d\xe6\xec\xe3\xbb\xcb\x0e\x7a\x25\xcb\x4a\xa2\xdd\x99\x09\x7f\xb3\x85\x7a\x37\x75\x46\x2b\x46\x6a\xe1\x00\xeb\xe8\x4d\x7e\xf6\x5d\xee\xf6\xc9\xda\xad\x53\xe4\xe2\x86\x16\x16\xba\x14\x06\x98\x4f\x77\xf5\x8e\x8a\x15\x73\x20\x5b\x32\x05\x72\xa4\xbd\x7c\x6f\x64\x75\x09\xed\xc7\xd2\xde\x6f\x85\xa1\xb7\xf6\xce\x87\x6d\xe5\xf2\x7c\x7c\x77\x69\x01\xbb\xdd\x9b\xbc\xa1\x66\x4d\x7e\x02\xa1\xfa\x3d\xd2\x7d\xb7\xd7\x9d\xe0\xee\x64\x82\x4d\xff\xd3\x0f\xbd\x8b\xbf\xfe\xd9\x5e\x5c\x0a\xf3\xf4\xaf\x2d\xe8\xb3\x5c\x0a\xf3\xaf\x16\xfa\xc8\xbb\x0c\x00\xfb\x1c\x00\xf7\xb2\xfc\xeb\xab\x82\x96\x15\xcb\x6d\x0a\x86\x2f\xeb\xe5\x92\x29\xa8\x13\xfd\x77\xce\x36\xe4\x7f\xbc\x7f\x0b\x03\x66\x0a\xd2\xe9\x20\x3c\x1f\xe7\x58\x4a\x98\x37\xb2\x60\xee\x80\x9c\x96\xff\x27\xef\x91\x18\x90\xf7\xcc\x90\x37\xb4\x22\xbf\x32\x7a\x0d\x30\xc4\x70\xfd\x8b\x92\xb7\x5b\xe8\x44\xf4\x23\xf8\x45\xc9\x92\x6b\x16\xb4\xaa\x2c\x4f\x1f\x5a\x6b\xe6\x22\x3c\x9d\x2e\x5e\xce\x9c\x2b\xb5\xb7\x1c\x42\xaa\x7c\x0b\xeb\xee\x5f\xda\x64\x74\x59\xf5\xc4\xe6\x1e\xe7\x85\x84\xa1\xc7\xdd\x5f\xb7\xde\xbb\xd9\x3d\x47\xe7\xdf\x30\xdb\x6f\x7d\xfc\xbe\x43\x2c\xba\xe7\x95\x93\xc5\x14\x1d\x4f\x67\x67\xf6\x1c\x0b\x31\xcc\xda\x6d\xd9\x4e\x35\x6a\x5d\x77\x67\xd1\x7d\xfc\xf5\xbb\x0e\xe2\xe0\x77\x7d\x8b\x48\xca\x3c\x64\xab\x73\xa8\x74\xfa\x24\x98\xd5\x9a\x91\x10\xea\x97\x99\x86\xea\x32\x82\xb4\xfb\x8e\x2d\xdf\x3d\x6a\x0d\x61\xfb\xd5\xb4\xb5\xf0\xea\x5a\x6a\x1d\x37\xef\xe2\xd9\x9e\x1b\xe8\x62\xac\xd0\x3a\x7f\x3c\x0e\x7a\xfe\x38\x87\x02\xb8\x72\x86\xdd\xd9\x3d\x4a\x09\x63\x02\x88\xa8\xb1\x4d\x6d\x10\x35\x45\x69\xba\x70\xc4\xf3\x1a\xa8\xa6\xdd\xb8\xd6\x22\x2d\xd7\xc1\xfd\xda\x41\x87\xde\xd7\x75\x00\x11\x0a\x87\xc7\x93\x34\x8d\x9a\x60\xa0\x70\x2f\x3c\x50\x99\x9e\x17\x82\x4f\xf0\x35\xf6\x34\xde\x4e\x24\xe5\x3d\xe5\x50\x4b\x72\xdf\x6f\xae\x67\xa1\x75\xe3\xa1\xdb\x56\x8e\x9e\x61\xb6\x30\x05\xb9\xb9\x01\x22\x39\x8a\x9c\x0f\x28\x5a\xf6\x33\xef\xdb\x68\x3d\x9a\x46\x70\xcf\x39\x80\xc6\xfe\xc6\xc3\x25\xd8\x5c\xdf\x2c\xc0\x4a\xa0\xe8\x58\xdb\xe3\xa2\xbe\xa1\xe0\x47\x67\xa1\x8b\xaf\xaa\x7f\x94\x37\x71\xf4\x79\xa0\x87\xfb\x01\xfb\x00\xc9\xe7\xb4\xf9\xbe\xd5\x67\x4f\xc3\xe1\x6c\x74\xe8\xdf\xfc\x30\x7b\x6c\x0d\x0e\x77\x67\x49\xcf\xe2\x30\x9a\x8e\x83\x74\x9a\xce\xee\x6b\xfd\x0f\x55\xfd\x48\x97\x54\x9d\x19\xa0\xe7\xfd\x86\xd9\x4a\x7d\x17\x4e\x1e\x3d\x8a\xbe\x25\x84\x67\x55\xdf\xf8\x6a\xbc\x03\xf5\xa1\xd9\x05\xb0\x89\x75\xcd\xc9\xe7\xb3\xe3\xb9\xb1\x8e\x34\x6a\x1f\x29\x38\x73\x6a\x58\xff\xeb\xa4\xf9\x18\x4d\x5e\x4f\x1e\xda\xda\x60\xec\xd6\x86\x7e\xc6\x77\x6d\xbe\xbd\xfb\xc1\x93\x34\x4d\xd3\xc9\xb0\xb7\xa1\x62\x18\xf4\x0c\x04\x0f\x61\xc1\xc5\xf4\xf4\xe9\x93\x7d\x1c\x38\x4d\xd3\xfc\xc9\x0c\x77\xa6\x58\xd0\x6d\x4e\x71\xe9\x51\x58\x37\x1f\x9b\xa2\x79\xdd\xd4\x45\xf3\xf1\x75\xb3\x6c\x7e\x6e\x16\xcd\x4b\x5f\xc2\x57\xb6\xbc\x3c\x71\x7b\x5e\xfe\xb0\xf0\x76\xf3\x8b\x4f\x99\x44\x81\x9f\xa5\x87\x86\xeb\xef\x00\x93\xa1\xf8\x9d\x2e\xbe\xe1\x78\xc7\x97\x3d\xb3\x83\x37\x42\x02\x07\xe1\xf4\x0b\x1b\xaa\x04\xd0\x4b\xeb\x90\x56\xc0\x8d\x4a\xd1\x55\x49\x09\x5f\xc2\x7d\xbe\xc4\x6c\x4e\x8f\xe0\x74\x41\x30\x6d\x53\xe0\xcd\xad\x67\x70\x5f\x4d\xe8\xeb\x78\xe2\xc6\xd9\x2f\x8e\x7e\x1a\x1a\x01\xa7\x9f\x52\x71\x3e\x3b\x3e\xf7\x75\x6f\xb5\x8e\xc6\x62\x2f\x83\xd8\x0b\x2d\x32\x66\xe8\xfc\x9c\x8e\x91\xb1\xcf\xf6\x58\x41\xe3\x14\xe8\x96\x0f\xf4\xd6\xed\x6c\x4d\x95\xe7\xf0\x2c\x6f\xe5\x68\xac\xe3\xca\x6e\xb8\x32\x35\x2d\x88\xac\x80\xcf\x90\x8a\x68\xfe\x05\x79\xb9\xad\xa0\x25\xcf\xe6\x19\xd5\xa6\x79\x7a\x8a\x2c\x1e\xb4\x1f\x97\x4e\x9b\x6a\x19\x3c\xbb\x96\xac\x9a\x07\xd9\xb8\xf6\x7e\x2d\xf0\x90\x1e\x6f\x59\x23\xb5\xd0\x7c\x05\x4c\x5b\x21\xc5\x8a\xdc\xc8\x82\x1a\xa8\xac\x63\xfe\x3a\xdb\xf8\x42\xca\x82\x18\x56\x56\x68\x1e\x28\x6b\x83\x36\x04\xbe\xf4\x56\xf4\xa5\xe2\x0c\x15\x83\xd6\x52\x4c\x6b\x23\x1d\x5b\x2b\xea\xb2\xcf\xdb\x02\x02\x50\x82\xd4\x1a\x86\xd6\x0a\xd6\x54\x97\x96\xad\x85\x26\xf1\x9c\xe8\x35\xf4\x83\x62\x68\x4d\xac\x14\xeb\x5a\xd7\xda\xbd\x65\xbd\x40\x05\xa5\x45\x03\xd0\x75\x05\xcf\x80\x69\xb5\x8d\x81\x82\xa0\x8d\x5f\x67\x90\xb9\xc0\x09\xe5\x18\x64\x5a\xf0\x95\x90\xae\x2f\xd9\x6d\xa5\xd0\x5c\x84\x36\x1e\x21\xad\xd9\xdd\x77\x24\xd5\x9a\x29\x03\x74\x8d\xd1\x7c\x6e\x0d\x47\x8a\x59\x7a\x4d\xe6\xc0\x60\xa2\xc5\xa5\x60\xb7\x64\xfe\xca\x03\x97\x25\x5d\x71\x41\xd5\x96\x50\x23\x61\x10\xb1\x3b\x1d\x8c\x13\xc2\xc1\xba\x7f\x51\xef\xdd\xc1\x4e\xf1\x77\xf6\xae\x60\xa6\xf9\x1b\x3d\x18\x47\xd4\xa7\xf7\x2f\x8a\xfd\x3b\x78\x05\x92\x89\xa5\xd5\xee\x54\xb1\x1e\xdf\xae\x4d\x4e\xec\xfa\x20\x19\x17\x24\x93\xb5\x21\x19\x53\x68\xbc\x5a\x11\x6d\x72\x2e\x20\x84\x64\x6d\x72\xb8\x61\x73\x6b\xa3\x18\x2d\x09\xdf\xbb\x92\x7b\x57\x30\x4f\xe6\x95\x81\xfe\xfe\x5c\x3b\xb7\x10\xeb\x4f\xaa\x0d\xcd\xae\xc9\x0d\x7a\x3e\x93\xd2\x1a\x86\xc8\x82\x1b\x88\xca\xba\x30\xbc\x05\xe0\x66\x2d\x50\xa1\xcd\xf2\x39\xda\xe3\xda\xab\xfd\x7b\xed\x73\x07\x49\x90\xcb\x59\xf7\xd6\x14\x52\xa1\x46\x74\x81\x5d\xbc\xd0\x84\x66\x12\x26\x29\x17\x84\x1a\x2a\x7e\xc0\x10\xcd\x8b\x32\x23\x19\xe3\x30\xe0\x1a\xa6\x96\x6e\xad\x9a\x64\x09\xcf\x2d\x0b\x29\x15\x59\x96\x32\x27\x4b\x67\x4c\x5c\x56\xb5\xd1\x64\xa9\x18\x83\x00\x32\xea\x8c\x8a\x25\xe1\x9a\x16\xb0\x50\x20\xae\xd6\x94\x70\x9d\x09\xa3\x40\x5a\xca\xf9\x8a\x1b\xc2\xf5\x4a\xd1\x6a\x4d\xb8\x2e\xe4\x86\x29\xc2\xb5\x35\xa7\x71\x5d\x01\xcd\x23\x5c\xdb\xe5\xcc\x75\x5d\x55\x78\xff\xd6\x3e\x68\xa4\x7d\xc0\x48\x7b\xa3\x80\x8a\x15\x39\xbc\xba\x90\xab\xa7\xa7\x68\xa6\x2b\x6d\x5b\x14\xb3\x71\xc9\xca\x6c\xad\x30\x2a\x2b\x8c\xaa\x2d\x44\xd8\xe3\x32\x5f\x92\x4a\x6e\xbc\x75\xb4\xaa\x0d\xce\x52\x6c\x97\x6d\x8b\xe6\x62\x0d\x01\xd1\xc2\x65\xd2\x3e\xfe\x0c\x52\xa7\xcb\x65\x54\x46\x11\x53\xc1\xbb\x20\x2a\x2b\x8c\xaa\x2d\x46\xba\x82\x49\xa5\x0a\x86\x91\x70\x79\x85\xcb\x25\x5c\xb6\x6a\xa1\xae\x21\xf6\x85\xb8\xa7\xb4\x51\xc4\x50\xb1\x86\x80\xdc\xf8\xce\xbf\xf1\xb1\xaf\x0f\x13\x79\x41\x40\x1a\xe5\xb4\xe0\x5f\x98\x9a\xe3\xfc\xab\x05\xff\x5c\x33\x98\x03\x5f\x97\x76\x61\x82\x5c\x7d\x7c\xfd\xda\xd9\xbc\xf6\x29\x43\xac\x63\xf5\x80\x16\x23\x0b\xe2\x20\x83\x60\x0d\xc0\x60\x00\x90\x0d\xab\x0a\x25\x83\x0c\x28\xcd\xb3\x11\xb0\x17\xa2\x15\x2e\x78\xcb\x00\xe0\x12\x69\xa0\x8a\x0d\x2e\x91\x06\x97\x48\x63\x97\x48\x53\xd2\xaa\xd1\xcc\x34\x76\x89\x34\x7e\xaa\x37\x7e\x82\x37\x7b\x8b\xa2\xd9\x5b\x30\xcd\xfd\x25\x72\x98\x04\xcf\xe0\x12\x41\x66\xfc\x59\xb7\xbf\x28\xeb\x99\x4e\x98\x65\x78\x8c\xd7\x2c\xc2\xed\x5d\x7c\xe7\x94\xdb\x09\xd2\xd3\xb3\x7b\xfc\xb8\xf7\xf6\x38\xc0\x40\x48\x34\x02\xf7\xc8\xcc\xbd\xa9\xeb\x97\x03\x9e\xfe\xf0\xb6\x63\xa5\x9d\x7e\x2c\x7a\x98\x9d\x46\x99\xc6\xd6\x76\x9a\xa6\xc7\x47\x69\xaa\xd1\x87\x7b\x40\x5b\x51\x63\x9f\xa5\xb5\x63\x34\x9a\x7e\x4a\x37\xa9\x4e\x8f\x8f\x3c\x63\x3b\xa6\x9d\x15\xd6\x0c\x3f\xbc\xe9\xb3\xef\x0f\xf3\xde\xd7\x76\x1b\x87\x7d\xa0\x3f\x77\x54\xac\xb1\x1f\xf7\x53\xf9\x0c\x1a\xe1\x0e\x95\x1d\xdf\x55\x8a\x55\x4a\x5a\xd3\xc8\x98\xc7\x0e\xa5\x8e\x15\x76\xf8\x37\xb8\xe4\xb5\x31\x0f\xf8\x28\x9a\x24\xf8\xfb\x87\x0f\xbf\x8c\xa6\x76\x9b\xe1\x6c\x10\x3c\xb4\xab\xcf\x54\x3a\x68\xad\xa6\x5e\x63\xfd\x29\x18\x98\xd8\x2b\xef\xa6\x5f\x71\x6f\xff\xd3\x0e\xd9\xec\xd6\x43\xf8\xc5\xc9\x7f\xce\x06\x04\x3d\x65\x48\x30\x30\x03\x74\x21\xf6\xa2\x5d\xaf\xa4\x9e\x90\x4e\x70\xc2\x91\x43\xa7\xde\xc5\xd8\xec\xee\xb9\x56\x05\xf6\x05\x9d\xc3\xfd\x9e\x3d\x34\xf8\x94\xa6\x1b\x2c\x6d\x4c\x82\xbe\x6f\x94\x68\xd2\x54\x37\xc9\xa1\x4e\x12\x06\xd2\x33\xe1\x02\x99\x7f\x7f\x5f\xbf\x1e\x4f\x67\xd6\xb2\xbd\xfb\xb6\x63\xe8\xd6\xac\x1f\xb2\xa5\x1f\xda\xf2\x90\x11\xe6\xda\xbb\x43\x52\x4d\xb8\x40\x5d\xa2\x92\x25\x51\x94\x6b\x66\xfd\x1a\x2d\x3f\xe2\xf5\x8a\x8e\x10\x58\x56\xb2\x02\x7e\xca\xaf\x1f\xf4\xb3\xe9\x38\x2f\x21\x8d\x55\x24\x7a\xae\x0b\x19\x19\xab\x17\x04\x3e\xc9\xb2\xa9\x2d\x87\x94\xb3\x82\x48\x20\xcc\x4b\x52\xd0\x72\x91\xd3\x3d\xed\xa0\x90\x02\x79\x1f\xe0\xca\xae\xa4\x60\xe4\x03\x20\xc8\x9f\x0f\x5d\x80\x2e\x8a\x82\x57\x9a\x6b\x72\x25\xcd\xa5\x77\xf4\x62\x79\x80\xbb\x58\xf6\x35\x1a\xe1\xf9\xf9\x79\x93\x0e\xe1\x2f\x22\xa3\x4e\x53\xe3\x95\x3a\x23\xb7\x33\x26\xdd\x8d\xbc\xaa\xf7\xbb\xd1\x3d\xaf\xa8\xd6\x55\xc0\x21\x9d\xb0\x6e\x16\xd1\x44\x4d\x9e\x3c\x71\xb6\x35\x88\xb3\xf1\x74\xd1\x77\xf2\xf6\x99\x82\xc0\x99\xdc\x82\xe0\x81\x4c\x4b\xd5\xa8\x65\xb3\x8c\xee\x15\x15\x67\xb3\x83\x2c\xf7\x0a\xea\xb2\xd4\x8d\x6a\x6a\x15\x79\x4b\xdf\x7e\x2d\xf0\x56\xeb\xf6\xd0\xbb\xb5\x68\x16\xdd\x33\xfd\xb4\x7d\x1b\x61\x57\x47\x5f\xbc\x35\x6e\x1e\xd4\xae\xe7\x57\x91\xcd\xf6\x14\x48\xf7\xa5\x52\x3c\x94\x08\xfb\x12\x77\x81\x0f\x82\x69\xf1\xfa\xf7\xff\x31\x9b\xf4\xb5\x73\xd2\xa9\xe6\xf6\x6e\xa1\x86\xae\x97\xfd\x21\x83\xdc\xc1\x6e\x46\x47\x46\x16\xb1\x8e\x69\xeb\x6b\x4c\xb2\x61\x96\x4c\x69\xac\xe3\xc5\x2c\xee\x3b\x1e\x6f\x83\x38\x58\x6d\xab\x4e\xf3\x1f\x3e\x4b\x47\xcd\xc9\x79\x93\x4e\xa2\x26\x39\x77\x1d\xaf\x51\x71\x87\x8e\x13\x37\x0e\xaf\xdc\x37\x9f\x7d\xc5\x9f\x11\x24\x5c\x86\xbb\xfa\x00\xe9\x3f\xbe\x4b\xce\x52\x11\xf7\xbc\x0f\x63\x24\xce\xa3\x93\x73\xbf\xa9\xef\x7a\x1c\xc0\x62\xe8\x50\x4f\x37\xbd\xa7\xa9\x21\xb3\xe3\xe7\xfb\xee\xeb\x8b\x10\x57\x6f\x03\x4b\x35\x4a\xc3\xd1\x37\xd1\x08\x17\xfc\x21\x37\x83\x6f\x4d\xff\xe0\xc9\x13\xe7\x04\x0e\x71\x3b\x9f\x9e\x04\x81\x53\x55\x40\xdc\x4b\xde\xf3\x1f\x6f\xdd\xc7\x1f\x72\xfb\x36\xb2\x2c\x5a\xdf\x94\xbd\xdd\x87\x61\x70\xd6\x9e\x44\xf0\x90\xbf\x8a\xb5\xd1\x4e\xdd\xf6\xdf\x6e\xb3\xdd\xd4\xed\x73\x9f\xa6\xb3\xb9\xdd\x72\x9b\xb8\xed\x12\x1d\x7d\xb8\xe7\x22\x74\xf0\x90\xdf\x62\xe0\xc7\xa3\xaf\xd5\x74\xac\x9c\x9d\x76\x0b\x29\x1a\xb9\x5c\x36\xc0\xd6\x35\xc8\xd6\x35\x5b\xa6\x1b\x21\xad\x61\xf9\x5b\x7e\x9f\xc1\x1f\xb8\x7d\x2e\x0e\x6d\x9f\xa3\x70\x9a\x0e\x70\x77\xd8\x64\x9a\xe6\xb3\xc1\x7c\x0a\x4f\x0f\x50\xaf\x66\xf7\x79\x7e\xd3\x0d\x8b\xde\xd0\x87\x76\x69\x06\xd3\xff\xf9\xbf\x9f\xfc\x5f\xff\x87\x73\x31\x79\x3c\xdb\xbf\x3c\x3d\xf9\xd1\x9a\xa6\xe8\x20\x08\x9f\x05\x03\x8a\xe6\x5c\x7d\x1c\xdb\x43\x09\xe8\x20\x88\x8e\xcf\xf1\x44\x85\x24\xb0\x5c\x2d\xe0\xf6\xb5\x92\x82\x7f\x61\x39\x41\x29\xd2\x7b\xe7\x5b\x25\xc6\x9e\xfa\x62\xe1\xec\x28\x4e\x4d\xe0\xfd\xf0\x3b\xdf\x7b\x64\x97\x2d\x41\x41\xf1\xd2\xca\xc7\xcb\xaa\x47\xb5\xbc\x66\xc1\x51\x2e\x41\x0d\xbf\xf1\xde\xea\x0f\x6a\x0e\x8c\xa2\x42\x73\xf4\xaa\x3f\xb4\x8f\x2d\xb6\x86\x39\x73\x56\xab\xc2\x40\x8d\x82\x23\x72\x56\x5c\xae\x68\x76\x4d\x57\xec\x50\x8b\xe0\x34\x18\x5f\xb7\xa5\x01\x53\xaa\x7b\x35\x6e\x37\x0e\xd8\x1e\x71\xea\x1b\x67\x31\xd1\xfe\x23\x00\x24\x97\x41\xac\x93\xce\xaa\x11\xa2\x59\x63\x7a\xfa\x74\x8e\xe1\x6c\xd0\x58\x3b\x47\x83\x3a\xb9\xb0\x7f\x0e\x4d\x07\xcf\xfb\x17\xf0\x48\xef\x22\x6a\x42\xd4\x0a\xce\x06\x53\xd4\x67\x0e\xec\x45\x63\xa3\x28\x4c\xd3\xe1\xb7\xee\x5b\x0d\xdf\x37\x73\xdc\x3b\xf3\x66\x5a\xbc\x5e\xfe\x3c\x9b\x04\x9e\x3a\x77\xb3\x5c\x23\xa7\xf4\x90\xed\xa3\x87\xa1\x01\x41\x7f\xd7\x21\x8a\x91\xf5\x75\xea\x9c\xfe\x3b\xfb\xc4\x28\xdd\x0c\x9e\x8f\x7a\x6c\xf4\xb7\xf7\x01\xec\x19\x15\x3a\x73\xc8\x7f\xc3\x4b\xfd\x90\xc1\xbf\x9f\xe7\x5b\x7a\xec\x6f\x79\xaf\x3f\x2c\xcf\x7c\x43\x10\xb1\xbb\x2d\x41\xfe\xe8\xf6\x4f\x5a\xbd\xe2\xd7\xa4\x11\xe5\x7a\xeb\xe1\xfc\xed\x9e\x65\x57\xab\x6f\x49\x23\xea\x2b\x5b\xd1\xaf\x7c\xbf\xce\x76\xfb\xfd\x3c\xc3\x7d\x0b\x7b\x26\xfe\xfd\x71\xf9\x86\xae\x5e\x2e\x97\x8c\x7d\xcd\xd6\xbe\xaf\x43\x7d\xd8\x96\x0e\x7d\xdb\x99\xcf\xbf\x65\x39\xb7\x23\xf0\xdf\xb4\x93\xb7\xa6\x70\x8b\x4a\x2c\x6b\xec\xf0\x93\xd3\xce\x3a\x3b\x78\x8b\x43\x2c\x37\x8c\x5e\x78\xce\x65\xce\x3a\xd2\x15\x52\x56\x04\x31\x93\xf5\xb1\x03\xfe\x5e\x2a\xe0\xee\xb9\x16\xc0\x3e\x9b\xff\x96\x29\xdd\x6d\xe1\xb6\x2e\x8f\x7d\xc6\x5a\x54\x65\x6b\xa3\xf5\xc6\x59\x2b\x09\x38\x74\xe4\x84\x88\x03\x83\x2d\xea\x2b\xbe\xe1\xcb\xa0\x0e\x99\xee\xef\xda\xfd\xe8\x56\x98\xe7\x49\xbb\x21\xac\xb3\x36\xc1\x2c\xb9\xeb\x89\x4d\x48\x6a\x46\xfe\xc0\x9e\xc3\x7d\x36\xde\xd7\xed\x80\x8d\x66\xad\xc1\x64\xd4\xe7\x5e\x7b\xc9\x87\x5c\xb5\xdb\xcd\xbd\xef\x2c\xd7\xbf\x71\xb8\x03\xdc\xfb\xeb\x8c\x9c\xc7\xce\x08\x75\x2d\x53\x65\x39\x15\x27\x9f\x8e\xf0\x08\x21\xec\x0c\x7f\x86\x4e\x3a\x0a\x27\x8f\xa6\xe4\x78\x06\x38\x35\x1d\x35\xc3\xe8\x78\x92\xba\x6c\xe1\x24\x49\x7f\x6d\x1e\x47\xed\xd6\xf4\xe7\xc1\x40\xec\x62\x90\x0e\xf7\x5c\x4a\xfa\xc6\x36\x57\x8f\xdf\x7e\x73\xb6\xe7\xdf\xfc\xce\x5a\x6f\x8b\x06\x9e\xe0\x4c\x0d\xb3\x84\x3b\x73\xf3\x7d\xdb\x9e\xd8\x45\xb1\x49\x9c\xad\x34\x4d\xa3\x68\x62\x57\xff\xcb\xe9\x49\x62\xbd\x7d\x1e\x70\x7e\x9b\x7e\x4a\xd3\x70\x6f\xbf\xed\x43\x5a\x14\xaf\x3c\xf1\xca\x14\x1e\x3d\xc8\x02\xda\x65\x1c\xc4\x41\x86\x9e\xe2\x01\xcf\x58\xde\xea\xb1\x5a\x37\x1c\xde\x37\x93\x87\xc1\x77\xdf\x7d\x17\xc4\x18\xee\xf1\x87\x7b\xb8\xf0\x93\x65\x52\x84\x45\x68\x89\xbd\x42\x35\x83\x6b\x5b\x5b\x7d\x1d\x4b\x37\xfc\xd3\x71\x1a\xc6\xc9\xec\xde\x61\x47\xfd\x82\x1f\x2c\x42\x7e\x7d\x3b\x93\xdf\xde\x8c\x04\x20\xf9\x9a\x25\x33\x6e\x0f\x63\xda\xcf\xa4\x41\x96\xb2\xb5\x13\x03\x3c\x0c\x06\x8f\x84\x51\x07\x9b\x98\x67\xdf\xf2\x49\xca\x1e\x38\xb9\x86\xf7\xb5\x06\x9e\x47\xa3\x9a\x2c\x80\xdf\x41\xbb\x82\x45\x85\xc8\x13\x21\x13\x64\x91\xa2\xb5\x3b\xad\x19\x9e\xfd\x60\x39\xb5\x9e\xac\x9f\xf1\x92\x16\x1d\x67\xc4\x0a\xb6\x02\xde\x06\x77\xff\x20\x97\x64\x4d\x75\xc8\x92\xdd\xa0\xab\x8d\x37\xb9\x38\x83\x8e\x47\xcd\x4b\x7e\xcb\x72\xbf\x73\x44\xaa\x76\x3f\xa5\xdd\x40\xb8\x44\x82\x89\xcf\x01\x6e\x17\xa6\xb7\xcf\x93\x3b\x27\x1c\x40\x92\x85\xcc\xae\x2d\xe7\x68\xbf\xc0\xd4\x59\xc3\x64\x6d\x88\xbc\x61\x4a\xf1\x9c\x11\x3b\xbb\x5b\x4e\xec\x1e\x8b\xd6\xdb\x48\xb4\x24\xda\x72\x89\x8c\x16\xcc\xdb\x98\x9c\x69\x0d\x15\xa9\x56\xf7\xed\x38\x5a\x67\xee\x70\x76\x34\x47\x35\x90\x82\x20\x29\xb1\x54\x03\x8d\x2d\xd6\xb2\x52\x0b\xdf\xb3\xb5\xd0\x74\xc9\x88\xb3\xd0\x58\x33\x97\x37\xe9\x21\x5b\xdb\x32\xa8\x96\xa4\x09\x5a\xe2\x77\x1f\x72\xef\x2d\x4d\x75\xc6\x44\x0e\x8f\xf5\xf5\x2d\x8b\x2d\xc9\x59\x7b\xc7\xd9\x02\x09\xfb\x5c\xd3\x42\x5b\xa2\xb4\x62\xed\x46\x5a\xdc\x14\x04\xfd\x29\xc9\xef\x92\x0b\xf4\xff\x02\x12\xa2\x72\xa6\x16\x5b\xe8\x35\xc3\xd1\x6c\x55\xca\x1b\xe6\x4f\xf9\xd0\xcc\x10\xdc\x27\xe4\x36\xca\x32\xef\xc5\xdd\x23\x54\x48\x9d\xfc\xb6\xd0\x9a\xdd\x37\x9d\x2f\xc6\x4f\x9e\xf7\xad\xe0\x56\xd8\x7c\x02\x4b\xcc\x24\x7b\x9b\x36\xac\x0b\x25\x7e\xd7\xe7\xc0\x79\xa7\xe7\x33\xcd\x81\x5c\x75\x8f\xd1\xde\x63\xf7\x1c\x79\x46\xe9\x63\xa4\x01\xd6\x4e\xef\x8f\x7e\xc3\x1d\x26\x77\x0e\xbd\xee\x76\xc8\xa4\x59\x1f\x9f\x07\xf6\xe7\xa5\x8f\x9f\xb7\x45\x3c\xf8\xac\x6f\x4e\x4c\x67\x3b\xfc\x16\x95\xaf\x99\xf6\x35\xfb\x83\xe7\xc4\x6c\x17\x9d\xe1\x37\x2a\x74\x9c\xe1\x36\x83\xaf\x70\x5b\x31\x7a\x20\xc9\x38\x8b\xcd\x83\x99\x7a\xc4\x17\xcf\x5d\xf2\xfd\x32\x73\x4e\x9f\x77\x37\xe3\xfb\xaf\xc0\xc3\x63\xac\xdf\x2f\x08\x85\x0e\xea\xc9\x85\x36\x05\x45\xc3\xd0\xee\x39\x88\x26\x0f\x28\x83\x33\xbd\xa6\xca\xb2\xf5\x1c\x8f\x3d\x1a\xf7\x78\xfa\x76\x73\xef\xbe\xc8\xee\xf9\xf7\x3e\x0d\x6e\x3d\x79\x9f\x3d\x3a\x39\x69\x4e\x4e\xbc\xe3\x79\x6f\x47\xcb\xec\x01\x0e\x7f\x9f\xeb\xfc\xce\xa3\xe9\xff\x6f\x5c\x0c\x00\x09\x4b\x01\x99\x1d\xe4\x7c\x0e\x70\x7d\xeb\xba\x0c\x76\xbb\xb8\x70\xc3\x70\xf7\x07\x32\x85\x35\x15\xe8\xb1\x57\x19\x7d\x78\x73\x8f\x87\xbe\xbf\xd1\xf5\x6b\x0f\xdf\xf7\x31\x77\x27\xa1\x82\x9c\x37\x49\xd3\x4d\x74\x1c\x1c\x76\x55\x5f\x16\xd9\x73\xc8\x42\xa4\xf2\x2d\x61\x64\xd1\x17\x46\xfe\x5b\xb2\x08\x6f\x65\x91\x07\xb2\xbb\xe6\xff\xb1\x5d\x64\xdf\x37\x8b\x7b\x5a\x5e\xfc\x81\x2c\xf2\x2d\x71\x43\x7f\x2e\x1e\xb2\x79\xe0\x6c\xc5\xb3\x02\x1f\x07\xd1\xfd\xd3\xcd\x9e\x9d\xdf\xed\x8e\xbf\xeb\xd1\x7b\xbb\x2f\x86\x89\x9c\x20\xa7\x8b\x1b\x4b\xb9\x21\x4a\x16\xc5\x82\x66\xd7\x44\xd3\x1b\x56\x49\x8e\xfb\x9e\xb2\x6b\x42\x0b\xc3\x14\xb1\xe7\x62\x93\x5c\xc9\x8a\x28\xeb\x92\x80\x3b\x3b\xbd\xc0\x21\x89\xdf\x3a\xc5\x05\x6a\x2a\x70\x13\xa2\x3b\xae\xdb\x63\x66\xa3\x6a\xe0\xa0\x18\xa9\xab\x9c\x22\x09\x43\x8d\xc6\xc6\x4f\xcd\x95\xa2\xc0\xf7\x33\x85\xba\x0d\xb7\x4d\xb4\xc6\x03\x03\xf0\x00\x63\xbb\xcf\xd5\x6f\x80\xad\x14\xab\x70\x23\xec\x2d\xcb\x6a\x14\x7a\x90\xf2\x41\xc1\x8a\x15\x0c\x18\x86\x5a\x60\x13\xaa\x1a\x4a\x54\xb8\xc5\x35\x5b\x53\xb1\x62\x44\x1b\x59\x11\x2a\x68\xb1\xfd\x02\x2d\xc9\xd6\x8c\x2c\x8b\x5a\xaf\x71\x83\x57\xc9\xbf\x40\xf6\x8a\x72\x65\x37\x82\xa2\x1c\x86\xf2\x8c\x87\xfc\x2a\x42\x97\x09\x09\xb2\x0b\x24\x10\xe8\xc0\x1a\x7a\xe8\x46\x5e\xe3\x16\x56\x7b\x8a\x08\xda\xfe\x62\x7f\xd8\xd5\x68\x9a\x6e\xd2\xe1\xe1\x0e\xe6\x9e\x99\x7e\xa1\x65\x01\x2d\xa2\x59\x06\x3f\x04\x58\x65\x43\x43\xec\x56\x22\x17\xb1\xdc\x01\x1c\x78\x1b\x9a\x65\xb2\x16\xc6\x19\xfa\xdd\x97\x09\x33\x63\x99\x0a\xa4\xcc\x79\x6e\x78\x09\x70\xc9\x85\x0d\xad\xe3\x09\xcd\x6f\x40\xd0\x84\x1c\x37\x5c\x33\x42\x99\x9e\xe7\x2c\x53\x5b\x78\x21\xd3\x73\x26\x1c\xbc\xc4\xdc\x2b\xe0\x9c\xe8\x6a\xa5\x2c\x77\x45\x0b\x8e\x44\xdf\x53\x7e\x3f\x0e\x76\x47\x9e\x9d\x41\xb4\xd8\xd0\xad\x6e\xfb\x9c\x8a\x8c\x17\x05\x7a\x92\x88\x9c\x50\x01\xf1\x36\xa7\x86\xfa\x18\x77\x43\x8b\xad\xce\xd6\xac\xc4\x44\xf4\x62\xc1\x6f\x1e\x11\xaa\xb2\x35\xbf\x61\x3e\xce\x3d\x50\xc8\x15\x81\x29\x61\xb9\x0f\xf8\x71\xee\x1c\x1e\xb4\x66\xe5\x02\x1e\x45\x45\x1a\x76\x8c\xd6\x32\xe3\x58\x4d\xaf\x33\x94\xb5\x26\xd4\x58\xbf\x08\x6a\xd0\x43\xc2\xd8\x0d\x5c\xdc\x86\x0b\x17\xd5\x3e\x36\x2d\xc0\x3a\x48\x13\x5a\xe7\x1c\x77\x4d\xaf\x99\x30\x1c\xfa\x22\xef\x5f\xe1\xeb\x6b\xb3\xe6\x36\x55\x2a\x6d\x1d\x8d\x20\xe8\x3a\xaf\x36\x32\x5f\x14\x5c\x5c\x23\x68\xd9\x74\x04\x4b\x64\xed\xe8\x0d\xe5\x05\x5d\xf0\x82\x9b\x2d\xa1\x37\x2b\x3f\xf9\x16\x34\xc7\x6d\xdf\x0b\xaa\x79\x66\x21\x06\xcc\xab\xdb\x10\x87\x21\x12\x8b\x05\x13\xd9\xba\xa4\xea\x9a\x2c\x98\xd9\x30\x26\xc8\xc2\x66\x87\x70\x6e\xd9\x70\xbe\x82\x9f\x4d\x86\x87\xd1\xf9\x67\xee\x58\x69\x77\x65\x79\xe4\x05\x17\xd0\xfd\x0b\x6e\xe6\x30\xa2\x10\xdb\xc9\x08\x90\xdd\x88\x8a\xa0\x54\x18\xdd\xda\xb8\xa4\x15\x59\x14\x72\xe1\x5e\x87\xcb\x15\x43\xe0\x68\xc9\x42\xe6\x5b\xb2\x90\xf0\xa4\xac\x71\x4b\xfc\x72\xc9\xd4\xdc\xae\x57\x77\x51\xa1\xa4\x50\xf3\x02\x6e\x17\x20\x2e\x58\x89\x01\x02\x64\x14\x6d\x0b\xb7\x30\x2c\xf6\x41\x08\xd1\x07\x08\x17\x32\x2d\x0a\x7b\x21\x32\x06\x97\x15\xcd\xa0\x43\x33\xaa\x33\x9a\x33\x1f\xe7\x5e\x02\xd1\xa8\xb5\xa5\xd0\x54\x18\xa5\x95\x54\x5b\xe7\x3b\xc3\xb8\x2d\x68\x0d\x98\xca\xa1\x19\x1b\xe5\x28\xb3\xd8\x26\x22\xe4\xba\x03\x60\x9a\x19\x76\x3f\x41\xf7\x40\x8b\xb4\x14\x7e\xc1\x01\x21\x9f\xa2\x99\x59\x4a\x55\x7a\x98\xe7\x0e\x09\xb5\xb8\xc9\x03\x73\xba\x82\x7a\x41\x17\x65\x6b\x29\xb1\x16\x20\x42\xd5\xe2\xda\x6f\x79\x2c\x18\x15\x75\x85\xb1\x22\x59\xc1\xdd\x99\x2f\x0b\x0c\x5c\xcd\xed\x0e\xff\x02\x9f\x2f\x6a\x40\x1b\x73\x78\xa7\x03\x2b\x25\x17\x7e\x36\xfa\x34\xac\xa9\x85\xb1\x6b\x24\x2d\x80\xf7\x27\x99\x64\x2a\xe3\x3e\x33\x7a\x9a\x15\xe8\x8f\x67\x63\xfc\xb4\x95\x2c\x90\x66\x64\xb2\xa8\x31\x28\x6d\x28\x5c\x34\xb7\x2c\xbe\xbd\xd0\x3e\x9e\x5b\xca\x92\x7b\xd4\xeb\x89\x1b\x9e\x4b\x90\xb9\xd8\x74\x6f\xb6\x5f\xd7\x73\x8e\x6e\xee\xd0\x01\xa9\xb9\x61\x73\xbb\x1f\x1f\xaf\x61\xe6\x01\xa0\x00\xed\x02\x50\x63\x4e\x74\xe5\xb1\xd1\x7c\xa3\x11\xaa\x95\x3d\x2c\x47\x8a\x25\x87\x81\x91\x42\x60\xc0\x32\x17\x19\x1f\xcf\x17\xdb\x39\xd7\xd9\x36\xb3\x96\xea\x2e\xa9\x60\x74\xd9\x4f\xc1\x4d\xc5\xfe\x1a\x71\xb7\xbb\xb0\x9d\x24\x34\xcf\x99\x3d\x2c\x08\xb7\x22\x1b\x2b\x11\x53\x0f\x28\xca\xf7\x40\x4d\x7a\x1e\xca\x28\x37\x53\x2e\x6c\x01\xfe\x69\xe3\xce\x6e\x10\x86\xdd\xda\x04\xc4\x6a\x80\xa4\xf0\x42\x16\x4b\x67\x5f\xbf\xc1\x80\x21\x0f\x81\xf1\xdc\x7c\x21\x99\x54\x0a\x83\xf9\xb5\x8d\x34\x46\x4c\x57\xd2\xca\x7c\x70\x55\x57\xae\xfe\x70\x13\x05\xf8\x5a\xb8\x70\x0e\x38\x07\x21\x1c\x98\x1b\x0a\x4b\xbc\x72\x90\xa6\x65\x45\xb2\xaa\x9e\x57\x88\x06\x60\xfd\xba\x0b\x0d\x34\x10\x8a\x54\xd9\x9f\x7e\xf0\xec\x0a\x46\x36\x95\x03\xe2\x2d\x48\xa6\x24\x0c\x62\xbd\x60\x24\xab\x4b\x36\xcf\x39\xbc\xbd\x56\xc8\x8f\xb4\xe3\x67\xe3\x79\x3f\xd1\xf5\x7d\xef\x42\x1b\xac\x8c\x4b\xa9\x35\xf4\x62\xad\xb4\xc4\xc8\xe5\xd6\x46\x96\x39\x35\x30\x79\x71\xa8\x91\xc0\x41\x80\x2b\xca\x03\x1a\x21\xec\x55\x0f\xd8\x24\x87\x16\xa0\x1e\x73\x20\xdf\x08\x58\x24\x86\xa0\x3b\xfd\x01\x61\x5d\x2f\x10\xf0\xf9\x72\xbe\x5c\x22\x00\x42\x35\x48\xca\x58\xa4\x65\xdd\x00\x80\x24\x04\xa0\xaa\x3f\xf4\x33\x6d\xe1\x37\x37\x72\xae\xdd\x26\x79\xba\x75\x4f\x6d\xe5\xb2\x94\x02\x6b\xb4\x95\xcb\x0d\x63\xd7\x16\xda\x02\xd6\xc8\x81\xbc\xe7\x8b\xb9\x92\x05\x9b\x3b\xfc\x97\x2f\xa0\xf4\x2f\x80\x38\xf2\xbc\xe8\xb3\x68\x9e\x8b\xb3\x3b\xa3\x30\x82\xa5\x87\x90\x42\x43\x04\xf1\xfc\x47\xce\xf2\xba\x2a\xb8\x7b\x0c\x25\x1f\x6a\x35\x3c\x4e\xcf\xd3\x53\xf7\x60\x8c\x5a\x6d\xa6\x14\x9e\x0d\xba\xe4\x56\x54\xf2\x02\x53\xce\x56\x8a\x41\xff\xb2\x82\x6e\x31\x87\x57\x11\x79\xdd\x39\x44\x73\xc7\xdc\x02\x16\xc0\x4c\xee\xec\x15\xa1\xd9\x5c\x51\x71\x4d\x72\x56\x41\x3f\x30\xeb\xe4\x99\xf7\xd8\xa5\xbc\xc7\x2e\x01\x7c\xcd\xb6\x73\x3b\xb6\x4c\x67\x96\xaf\x75\xdc\xad\x67\x72\x3b\x66\x37\x77\xd6\x04\xf4\x57\x31\x4c\x59\xfe\x8c\x67\x24\xe7\x74\x25\x24\x80\x9a\xc0\xc8\xda\xcd\x5c\x24\xe7\x25\x13\x38\xef\xed\x21\xa6\x73\x64\xbb\x2d\x0c\x94\xa9\x77\x46\x0a\xc4\xb6\x55\x5c\x5b\xbe\x0c\x80\x96\x07\xca\xb9\xce\xa8\xb2\x9c\x03\xc0\x0e\x5d\xe5\x5c\x5f\x5b\x2d\x0c\xac\x14\x2e\x6c\x12\x02\xca\x16\xe1\xb9\x9f\x0e\x84\x0a\xdc\x58\x8d\x9b\xdb\x5d\x95\xcb\x92\xe2\x11\x3c\x46\xb0\xd6\x5c\x99\xcb\x8d\x58\x29\xa0\xb1\x28\x55\xe4\xb5\x3d\x0e\x86\xf4\x06\xbb\x76\x1b\xd4\x50\xf1\xc6\xec\x51\x76\x3e\xc6\x76\x39\x58\x13\x66\x8d\x57\x84\x79\x3f\x1d\x27\x2e\x6b\x94\x9c\x8d\x3b\xe7\xcc\x1d\x97\x63\x23\xec\x0c\x26\x90\xa0\xe5\x6e\x13\x9e\x8d\x50\x92\x76\x23\x08\x3c\x17\x13\xf9\x89\x75\x42\x12\x39\xa7\x20\x3b\x2d\xa5\xca\xf0\x21\x3c\x51\xc2\x46\x9a\x30\x61\x67\x03\xb3\xfe\xde\x1c\x15\x8d\x86\x9b\x2d\xee\xe2\xc3\x52\xa5\x5d\x3f\x56\x4e\xc7\x50\xbb\xcd\x7e\x39\x1e\x2a\x84\x0b\x0d\x80\x1a\x0f\x90\xb3\x1a\x4a\x08\x11\x73\x20\xa4\xbd\xe3\x54\x77\x8c\x5a\x0b\xe1\x3d\xbb\xf4\xd8\xad\x3d\x96\xc0\xc6\xf8\x72\x10\x94\x9c\xb8\xd4\x4a\x4d\xec\x16\xba\x86\xb0\x5b\xae\x4d\xcf\xef\x97\xdd\x56\x5c\x75\x82\x97\x33\x1a\xd9\x08\xc9\xba\x65\x47\xf1\xb0\x39\x63\xd5\xa8\x4e\xe9\xe9\x81\xf9\xd3\x0e\xfc\xa1\x05\x8b\x2d\x80\xd6\x1c\x4f\x91\xf6\xda\x68\x5e\xc8\x15\x17\x73\x6a\x0c\x54\x47\x63\xaa\xbc\x61\x0a\x81\x5a\x31\xb2\xa4\x00\x6b\x43\x96\x8c\x9a\x5a\x31\xac\x84\x87\x2d\x2f\xb0\x64\x26\x5b\x93\xa5\x3b\xb0\x8d\x15\xb9\x26\x4b\x6b\x6c\x2b\xd8\x1c\x3a\x76\xee\xc9\x15\x62\xd8\xad\x36\xac\x9c\x17\xfc\x9a\xc1\xcb\x57\xd0\x43\xd6\x68\xbf\x84\x45\x07\x05\x29\x78\x1d\x84\xfe\x05\x4e\x25\x4c\xf5\x7a\xee\x65\x46\xaa\xd7\x28\x35\x3b\x1f\x69\x94\x21\x97\x12\xd6\x17\x16\x88\x90\xf6\x0a\x64\x98\x71\x38\x75\x08\x32\x6e\x88\xbe\x89\x43\xe2\x4b\xe4\x33\x30\x9c\xa3\x9d\x7e\xa9\x18\x43\x3f\x5e\x0f\xd8\x24\xe0\x77\x11\x82\x17\x29\x59\x62\x80\x1c\xda\x5f\xff\x6c\x61\x44\xc4\x4b\x53\x91\x25\x6a\x39\xdb\x4f\xb7\x31\xc1\x14\x2d\x5c\x0c\xcb\x14\x35\xad\xcc\x78\x32\x02\x20\x32\xe0\x2b\x66\x90\xf4\xad\x98\xa9\x4d\x66\x41\xa7\x90\xc5\x08\x3b\xd3\xc1\xc5\x96\xac\xdc\x5e\x09\x2b\xbe\x63\xa8\xc9\x0a\x29\xb0\x36\x4e\x87\x8b\xe1\xdc\x31\x4d\xf6\x82\xe7\x16\x80\x7e\xf2\x40\x9b\xa8\xc9\xca\xf0\x1c\x88\x9a\x3b\x59\xb1\xa6\x50\x2e\x63\x08\xe5\xad\xb6\x01\x4f\x4f\x82\xe0\x9a\x6d\x35\x59\xd3\x1b\x28\x6d\xcd\x28\x1e\xd0\x82\x01\xb7\xa1\x70\x11\xde\xad\xac\x26\x61\xcd\x6e\xc9\x9a\x33\x05\xd2\xe3\x96\xac\xf9\x6a\x8d\xc1\xbc\x52\x5c\x2a\x60\x10\xd7\x12\x7a\x7d\x2d\x6b\x45\xd6\xc6\x54\x84\xe7\x84\xe7\x40\xed\x3d\xa7\x60\xaf\xb8\xc8\x94\x03\x35\x63\x2e\x0f\x5f\xf2\x16\x34\x5b\xc2\xf3\x82\x59\x1e\x82\xe3\x8e\x1f\xf4\x34\x59\x09\x90\xcb\x38\xa4\xc0\x3c\x24\xbc\x28\x09\x2f\x4b\x96\x23\x4a\x76\x06\x5b\xb4\x2f\xd8\xb5\x6c\x63\x68\x04\xbc\xd2\x62\x3c\x2b\x17\x60\xc8\xb4\x8d\x6d\x86\x9c\xdd\xa2\xc8\xcc\x45\x0e\xe8\x14\x4f\x2a\xc9\x79\x86\x99\x98\xf9\xeb\x9c\x1a\x29\x1c\x28\x8c\xa4\x08\x76\x89\x3e\x6d\x69\x8f\x4f\x43\xd7\xf2\x9e\x8b\x79\xee\xe1\x62\x8b\x90\xa2\x02\xca\x2d\x59\x69\x8f\xd2\x12\xa8\x09\x12\x32\x5f\x10\xfc\xa0\xbd\x57\x0b\x79\xfd\x89\xb7\x6c\x3b\xc0\x70\xbb\x0d\x07\x58\xd3\x43\x4b\x4a\xc1\xe8\x8d\x75\xe5\x01\x61\x28\x33\xd6\x1e\xc0\xc5\x0d\x2d\x38\xce\x4d\x2e\x6e\xb8\xd5\x7f\xa0\x55\x7a\x0e\xab\xc4\x4e\x64\xae\xe7\xbc\xba\xf9\xb3\x8f\xe7\x96\xfd\x87\x4b\x21\x7d\x34\xb7\x43\xa1\x81\x83\xcb\xfd\x63\xb6\x5c\xed\x6e\x49\x27\x93\xa0\xf5\xc0\x30\xf2\x3b\xbd\xa1\xd6\x20\xf1\xbb\x96\x36\x98\x3b\x04\x7a\xcd\x58\x85\xc1\xbc\x25\x63\x90\xb8\x25\x38\x3f\xed\xa9\x62\x4e\xa1\x47\x0a\xaa\x30\xd4\x06\x03\x58\xb7\x16\xb0\x7d\x05\x6b\x01\x2f\x2d\xf2\x29\xe8\x2d\x29\x50\x08\x2d\x60\x6a\x17\x6e\x36\x17\x0c\x9f\x87\x3e\xd2\xa4\x60\x4b\x80\x05\xfc\x56\x6b\x04\x81\x7f\x44\x73\x7e\xc1\x6e\x58\x61\x43\x4d\x0a\xbe\x50\x54\x6d\x09\xce\x3a\x08\x7e\xc0\xf0\xcf\x18\x66\xfe\xe0\x33\x24\x6a\xa8\x80\x40\x3c\x04\x01\x48\x92\x05\x37\xa6\x60\xa4\x10\x56\xc9\x07\x81\x65\x70\x40\x5e\x2c\xe4\x42\xb7\xc7\xd0\x65\xb4\xc0\x29\xdf\x42\x96\x67\x76\x2c\x20\x46\x52\x79\x1b\x19\x5a\x9d\x40\xae\x6e\xf7\x73\xfc\x00\x81\x2b\x79\x65\xb9\x62\x8f\xa9\x81\x5c\xb8\xa3\xee\x20\xc6\x73\x77\x74\x27\x15\x14\x72\x25\x97\x4b\x8c\xa0\x96\x2b\x6d\x6d\x70\xe8\xcc\x00\xac\x4f\x21\x37\xdd\x2a\xb7\x1b\x4b\x8a\x0a\xda\xa2\x8c\xe2\x25\x29\x30\x44\x9e\xa5\xa4\xd7\x96\xd6\x00\x80\xd3\x02\x00\x6c\x55\x49\x05\x05\xe1\xde\xc6\xb8\x18\x4b\x2a\x6a\x5a\xe0\x36\x9f\x92\x56\x88\xda\xf0\x70\xbf\x92\xa2\x96\xcd\x46\xf3\x4a\xea\x39\x1a\xc3\xf0\xf3\x8d\x36\xc4\x72\x40\x4e\x76\xcb\xab\xa4\xb7\xf0\xb3\xd4\x55\x03\x68\xd5\x92\x00\xb8\xb5\x83\xa9\x30\xda\x10\xf9\x0e\xb2\xb0\x3f\xd3\xce\x5e\x95\xac\x5c\x30\x85\xf7\xb4\x2b\xc3\x2e\xd8\x32\xff\x0b\x29\x19\xd5\xb5\x82\x27\x19\x32\x37\x10\xd5\x25\xb1\xcf\xe0\xa6\x19\x2f\xfa\xba\xc5\x6d\xf5\xb3\x25\x07\x51\xca\x0a\x08\x25\x87\xdf\xca\x31\x6b\x25\xc7\x5f\x5b\x73\x2e\x78\x09\x05\x72\x54\x3a\x95\x5c\xd4\x98\x08\xcc\x47\x89\xab\xb8\x06\x40\xa3\x81\xb1\x94\xb9\xfd\xc4\x2c\x04\x05\x84\x7c\xe9\x15\x66\x78\xb1\xf5\x6e\x21\xa5\x14\xdc\x48\x65\x1f\x02\x96\x0a\x43\x4d\x4a\x94\x24\xd1\x1e\x08\x81\x1d\x95\x6e\x9b\x95\x61\xb7\x68\xa9\x24\x9e\x1f\xd0\xc6\x6e\x22\x24\x82\x0a\xf4\xdd\x93\xc0\x02\x38\x27\x3e\x01\xec\x05\x5e\xde\x10\x81\x76\x67\x81\x4a\x11\xc1\x34\xd0\x4f\xc1\x80\x43\x11\x0c\x3f\x63\x8b\x46\x17\x3c\x81\x0a\x02\x3c\x00\x57\x12\x21\xed\x29\x50\x20\x4d\x39\x05\x99\x90\x3d\x65\xa5\x90\x56\x53\x28\xa4\xd7\xda\x09\x69\x95\x38\x42\xb6\xfd\x0e\x60\xb5\x85\x08\x65\x48\x21\x51\x74\x81\xb8\xc7\xb3\x0b\x79\xc0\x6a\x0a\xd9\xd1\x4c\x21\x11\x2f\x09\xe9\xd7\x93\x90\x7e\x7a\x02\x74\x6b\x07\x41\x48\x1c\x2b\x98\x21\x08\xb6\xa9\x5d\x57\xe3\x77\x17\x20\xe8\xf1\xe0\x42\x0a\xa7\xa4\x15\xd2\x9e\xc6\x26\x64\x65\x03\x69\xc3\xd2\x45\x95\x8f\xa1\xc1\x8a\x15\x5b\x8c\x34\x33\xb8\x42\x01\xbe\x01\x14\x0f\x50\x89\xfd\xa7\xe4\x26\x67\x15\xf0\x99\x22\xe3\xe8\x41\x64\xdf\xe4\xbb\xc8\xd9\xb3\x01\x99\x0b\x69\xd6\xb6\x86\xf8\x05\x08\x21\x71\x09\x0b\xd9\x52\x09\x21\x37\xf0\x43\x9f\x7f\xb3\x76\x48\x15\x10\x3c\x5f\x62\xa4\x89\xa8\x4b\xf8\x2d\x30\x60\x44\xdc\xc0\x40\xc1\x98\x3b\xe0\x87\xd6\x86\x9f\xf1\x4c\x16\x05\xc4\x58\xb4\x8b\x11\x29\x00\xec\xc5\x16\x99\x71\xa4\x5a\x30\x19\x64\xc6\x0b\xb9\xf0\x28\x4f\x66\xdc\x7a\x1c\x02\xa4\xd8\xd2\x45\x4e\x7f\x00\x17\x72\xc3\x73\x00\x9c\x01\x5f\x66\x1c\x89\xb9\xc4\xd7\x1b\xd6\xaa\x54\xe5\x12\x0f\x91\x93\xcb\x25\x4e\x40\xb9\x5c\xc2\x44\x97\xf0\x30\xcf\x2d\x6f\x20\x8b\x1c\xad\xe6\x76\xa7\x28\xba\x11\xc8\x8a\x7e\xae\x19\x91\x15\x13\xce\x23\x01\x85\x87\xce\x39\xa1\x32\xe8\x47\xd1\x5a\x43\xec\xb9\x77\x2e\x42\xaa\x0f\xb9\x14\xcd\xf0\xb0\x6a\x88\xac\xb6\x44\x2a\x8a\x92\x8a\x54\x39\xfc\x60\x76\x4b\x00\x72\x9e\xc9\x12\x01\x99\x59\xfb\x3d\x84\xbc\x04\x3a\x08\x80\xa0\xa8\x91\x93\x2a\xbf\xe1\x39\x83\x47\x56\x54\xf0\x2f\xae\x1f\x55\x41\x05\xdc\x2c\x6e\x80\x68\xa1\xe7\x44\x0d\xf8\x54\xd6\x06\xa7\xb3\xac\x8d\x6d\x5b\x6d\x2a\xe7\x56\x81\xc1\x12\x70\xbd\x73\xb2\x80\x5e\xf4\x8e\xb3\x80\xea\x2b\x0a\xec\x38\x2b\x5a\x60\xee\xa4\x43\xb4\xe7\x31\x54\xc2\xba\xc3\xaf\xed\x79\x99\xde\xdb\x00\x63\xfb\x09\x61\x0f\x41\x4e\x9d\xe1\x3d\x8b\xc7\x20\xde\x40\x1f\x78\x60\xbe\x52\x34\x73\x0c\x60\x9b\x06\x34\xef\x20\x49\xb1\x5a\xb3\x39\x20\xff\x83\xa4\xfd\x6c\x37\x4c\xf1\xe5\x76\xde\x7d\xcc\x18\x09\x49\x45\x0d\x06\x76\xd8\xab\xcc\x20\x97\x08\x2c\x43\x95\x19\xb3\x06\x91\x01\xe6\x42\x95\x19\xe0\x75\x20\x86\xf5\x86\xcf\x33\x95\x61\x4b\x6d\x6c\x55\x1c\xee\x02\xa4\xa7\x4c\x76\x37\xe1\x1a\x30\x0f\x5c\xa3\xe4\x00\x6c\x5c\xc5\x14\x97\xb9\x8b\x50\x57\xe5\x40\x54\x43\x75\x5f\x5b\xa9\xd6\x5b\x8d\x84\xbb\xe2\xa4\xe2\x15\xc3\xa0\x40\x17\xc1\x8a\xdf\x48\x43\xaa\xa2\x5e\xad\xec\x38\x14\xf5\x8a\x0b\x52\xc9\x82\x67\x5b\x82\x6a\x59\xac\xaa\xd4\x66\x8e\xe4\xcb\x19\xb8\x70\x13\x27\x92\x70\x67\x46\xac\x14\x43\xff\x42\x00\x32\x96\x33\xed\x00\x1c\x18\xc5\x32\x6e\x9b\xac\x58\xce\x5d\x09\x2d\x38\x47\x6d\x64\xef\x3a\x67\x86\xf2\x42\xf7\x93\xfa\x8a\xee\x5e\x32\x9e\xc4\xee\x4c\x92\x80\xb7\xb1\xb5\x10\xab\x1b\xf4\x68\x94\x8a\xb4\x1c\x47\xe7\xe7\x83\xf1\x5c\xaf\x28\xc2\xbc\x60\x2b\xac\xae\xcc\x58\x8e\x94\xc7\x83\xac\x83\xe6\xde\x84\xe6\x76\xce\x21\x6f\x56\x29\x69\xe9\x7f\xa5\x24\xe2\x28\x87\x67\x9d\x27\x11\xb6\xd2\x79\x7b\x43\xa4\x01\x57\x76\x47\x55\x3a\x0b\xe9\xe7\x9a\x2a\x58\x56\xf8\x39\x5e\xf2\xb9\xe6\xd9\x35\x84\xa8\xb2\xff\x5c\x4b\x43\x31\xb4\x2a\x44\x45\x81\x5b\xd0\x6e\x3b\x97\xa2\x22\x87\x60\x85\xe0\x35\x51\x74\xd3\x9d\x37\xac\x6d\x68\x8d\xaa\xd6\x52\xa3\x58\x06\xab\xc3\x46\x1a\x63\x58\xb3\x2e\xde\x02\x50\x2b\x0d\x24\x58\x31\x4b\xf5\xf0\x04\x48\xc5\xf2\x3a\x63\x39\x7a\x41\x29\x7f\xa2\x51\x07\xe5\x1d\xa8\x5b\x10\x46\x5d\x31\x2b\x2f\x5b\xff\x49\x94\xf9\xbb\x3d\xf7\x8a\xad\xd4\x9c\xde\xac\x6e\x5b\x68\x6b\x21\xab\x94\x46\x10\xd1\x38\x2a\x5d\xf0\x52\xfd\x60\x63\x5d\xc8\x8a\x39\xf0\xf6\xd6\x03\xf0\x38\x8e\x81\x62\xc0\xf9\x2b\x56\x78\xb6\xc2\x82\xd8\xaa\x82\x6e\x81\x01\xf0\x96\x6a\x17\x5b\xf9\x43\xb1\x82\x33\x3d\x97\x02\xa0\xd6\xa2\x0d\x25\x95\xf0\xa3\xb0\xbe\x95\x37\xc3\x3b\x3b\xb5\x62\x15\xa3\xa6\xb5\xb8\x43\xcc\xdd\x93\x16\xe2\x58\x1c\x3a\xda\xe6\xce\x16\xde\xd1\x5e\xc5\xdc\xf0\xb8\x53\xa1\x15\xd3\x95\x6d\x81\xb5\x6e\xfb\x83\x01\xec\xa3\x75\x61\x5c\xe4\xd4\x20\x70\x51\x52\x7b\x92\x81\xae\xb1\x52\xc0\xfc\xd9\x57\xba\x03\x3c\x21\xb2\x63\x01\x10\xbc\xb2\xc6\x76\x5b\x92\xef\x2c\xe6\x8a\x83\xd8\xa2\xec\x00\xc9\xc2\x06\xba\xf3\x4d\x00\x00\x0b\x91\x45\x51\x57\x44\xa1\xce\x04\x5d\xd3\xe5\xc6\x8f\xd7\x01\xcf\x60\x29\xa9\x92\x1b\x20\xef\xa8\x58\xb1\x3c\xbe\xaa\xa1\x64\xf4\x71\xd3\xb4\x30\x44\xd3\xb2\x2a\x18\x7a\x3f\xf4\x5c\x20\xf4\xe2\x29\xd1\x8b\x1f\x88\x5e\xfc\x19\x77\x85\x13\xc7\xea\xf4\xf9\x10\x9d\x41\x32\xcc\x04\x9d\x41\xc5\x88\xce\xe5\x7c\xc5\xa4\xb2\x4c\x3f\x5c\x19\x59\x61\x52\x89\x27\x97\x6a\x06\x0c\x05\xd1\x2c\x03\xbe\x10\x31\xbb\xe3\xa4\xdd\xf6\x22\x88\x6b\x85\x1f\x36\xb3\x20\x20\x0d\x54\x2d\x68\xb6\x42\x96\xb6\xf5\x75\x2b\x96\x44\xb3\xcf\x35\x2e\x04\x0b\x20\x91\xd2\x4e\x92\xc0\x41\xb1\x0b\xdd\x45\x56\xf5\xe8\xcd\x25\x2e\xb6\xe6\x0b\x77\x61\xe5\x28\x97\x82\xfe\x74\x78\x14\xb8\x01\x94\x41\xf4\x9a\xc2\xef\x29\x04\x3f\xd8\x63\x06\xdc\x61\x03\xed\x99\x03\x52\x16\xde\x2d\x71\x2d\x37\x44\xaf\x15\x88\x90\x7a\x5d\x9b\x5c\x6e\x04\xd1\x7c\x4e\x6f\x98\xa2\x2b\x96\xc9\x02\x8f\x05\x99\x23\x80\x32\xcb\x4a\xd1\x12\x52\x9c\x66\x0f\x71\x9b\xe6\x73\x8f\xfd\x69\xd1\x3e\xa3\x0d\x2f\x0a\xcb\x40\x68\x3e\x37\xec\x16\xf2\x13\xcd\x17\x85\xad\x27\xcf\xf1\x10\x0d\xbb\x81\x1f\x26\x37\x04\x73\xeb\x2a\xa9\x89\xbe\xe6\x15\xd1\x05\x0e\x76\x01\xbc\xb1\x2e\x69\x51\x78\x2e\xae\xb3\x86\x60\xb2\x1d\x07\x41\x2b\xbd\x96\x86\x68\x09\xe3\x25\x71\xf1\x69\x6c\x25\xcc\x42\x76\xeb\x4f\x54\xb7\x07\x18\x68\xcb\x34\x68\xab\xd3\xd6\x55\xc1\x0d\xd1\x9f\x0b\xf8\xcd\x17\x7c\x35\x77\xcb\x08\x2f\xad\x21\xbb\x97\x62\x57\x95\x85\x8a\x6c\xde\x53\x0a\x42\x1a\xd6\xa9\x9f\x1d\x77\x78\x09\x03\x94\xa9\x62\x0a\xa6\xca\xe7\x02\xb5\xd9\xfa\x73\x81\xdc\x98\xfe\x5c\xb8\x61\xff\x6c\x35\xcc\xfa\x73\xa1\x0d\xba\xe0\xe0\x49\x06\x80\xf8\xf1\xa4\x0a\x91\x53\xb4\xf2\x22\xb8\xd8\x3a\x0f\x21\x0c\xad\x1b\x29\x55\xa6\xae\xd0\xb9\xd4\x8a\x56\xad\x9b\x29\x35\xdc\x5a\x27\x00\xd4\x20\xec\xc8\x92\xd3\x62\x8e\x3a\x40\x9b\x86\xb6\x37\x43\x17\xee\xf2\x5a\xf7\x6f\xa2\xd4\xe7\xc0\x4d\xff\x86\x14\x6c\xbe\xa1\xdb\x39\x05\x5e\xde\xa5\x19\xcc\x30\xdf\xbf\x02\xac\x58\xed\x27\xb9\xa6\x74\x09\x80\x2a\x59\xee\xd2\x36\x5a\x75\x2f\xaa\xa1\xe6\x70\x27\xcf\xd9\x8d\x8b\xd0\xf0\xe8\x40\xb4\x3c\x6a\x63\x6f\x62\xb2\x54\xd4\x3a\x12\x29\x17\xe2\xe1\x22\xf0\x83\x55\x6d\x1d\x9c\x8c\xa2\x80\xd1\xe6\xa8\x2c\xea\xce\x86\xe0\x99\x39\xf4\xcc\x35\xf5\x72\x49\xec\x49\xec\xba\x5e\xd8\xa7\xeb\x45\xc7\x6b\xf6\x2f\x34\x41\x27\x53\x6e\xdc\xe9\x35\x78\xa5\x5c\x84\x85\xd6\x0b\x8b\x55\xea\x05\x26\xcc\x2d\x47\x08\x97\x20\x44\xe8\xda\xba\x10\xe9\xba\x6c\x8f\xa6\x77\xa2\x94\x8d\x9c\x14\xe1\x2e\x10\x77\x6c\x45\x46\xfa\x6e\x32\x7a\x2b\xa4\xd8\x96\x44\x6f\x01\xd6\xf3\xdb\xb2\xa0\xab\x15\x80\x54\x63\x2a\xad\x6f\x21\xb2\x2d\xb1\x31\xd4\xc9\x17\xbd\xd5\xf9\x82\x42\x04\x53\x96\x58\x65\xbc\x8b\x1c\xea\xd9\x6a\xa7\x7c\xc6\xa6\xd8\x96\x62\xa8\x5d\x84\xeb\xcc\x50\x41\x4c\x2e\xbb\x23\x7d\x00\x90\xa8\xdc\xb2\xf6\x33\xd4\x74\x1b\x06\xbc\xbb\xda\xce\x37\x0c\xc6\x43\xbb\x6f\x30\xac\xe1\xe1\x35\x13\xee\x14\x1c\xf4\x29\xac\x57\x6b\x62\x38\x53\x10\x68\x62\xdf\xcd\xcb\xd6\xd6\x8a\x30\x1a\x34\x01\x42\xee\x76\x1f\x63\x60\x23\x6b\xf7\x81\x07\x54\x77\xb5\x10\xb0\xc5\xed\x45\xfb\x28\x14\x36\xa7\x8b\x85\xea\xae\x9c\x7a\xa4\xbd\x76\x1e\x9c\x46\x12\x23\xbd\xaa\xdf\xcf\x31\x8c\xb7\x9a\xb4\xf6\x5a\x00\x0f\x7a\xdb\x28\xec\x2a\x45\xb3\x6b\x98\x1e\x7d\xee\xb9\x07\xe3\xd7\x75\xa8\xd0\xb6\x1b\x1d\x64\xf3\x00\x6b\x61\x14\xc7\x3d\x45\x2e\x9e\x0b\xa6\x8d\x55\x2a\xba\x14\x4d\x90\xb0\xb6\x5e\x7e\x46\x6d\xf1\xc0\x23\x0b\x38\xd3\x0b\xc0\x16\x35\xe2\x54\xac\x17\x4f\x49\xbd\xf8\x81\xd4\x8b\x3f\x93\x3a\xb3\x3e\x7b\xad\x57\x57\x2d\xd0\xed\x07\xa1\x56\x1b\x52\x23\xf3\x53\x8b\x5c\x92\x5a\xac\xd9\x2d\xa9\x05\x47\x64\x57\x0b\x8e\x56\x95\xce\x49\xcf\x9e\x11\x65\x8f\x41\x81\xe8\xb6\x67\xb7\xaf\xc5\xb5\x00\x6a\xe4\xbe\xbc\x80\xef\x40\xe6\xab\x16\x56\x10\xa9\x85\xe3\x46\x71\xe2\x79\x6f\x78\x7f\xca\x94\xdd\x1c\x55\x0b\xa3\x6a\x6d\x1f\xae\xb5\xcb\x88\xb2\x95\xf3\x70\xf4\xee\x28\x75\x65\x2d\x9d\x75\x55\xe1\x15\xcc\xf9\xba\x42\x8d\x78\xad\x0a\x52\x5b\x26\xc5\x17\xa1\x01\xb1\x00\x77\x04\x82\x9f\x45\x2d\x73\x27\xe2\x6a\x82\x8b\x03\x82\x39\xa2\x76\x84\x3c\xdf\x66\xef\x6a\xe7\xad\x5f\x9b\xcc\x4e\x11\x00\x7a\x2d\xaf\xe1\x55\x35\xcf\xdd\x51\x4c\xad\x86\xc4\x03\xf3\x56\xcc\xd4\x46\x59\x2d\x83\xbb\x05\xdd\x09\xa0\xee\x3c\xec\xf1\x7b\x1c\x37\x54\x91\xd6\x3d\xc3\x69\x4b\x32\x00\x38\x06\xd4\x86\x0b\x17\x15\x3e\x66\x2d\xa0\x2d\x04\x4c\xcc\x0d\x55\x58\x06\x88\x10\x36\xca\x6c\xbc\x25\x56\xea\x25\x5e\x68\x75\xb1\x26\x37\x9c\x6d\xba\xbd\x09\xce\x16\x80\x7b\x14\xec\x07\x34\x40\xbc\x37\xad\x8f\xb4\x8b\x35\x41\xff\x05\x08\x72\xba\xc5\xd8\x39\x32\x6c\x58\x51\xc0\x4c\x62\xb9\xdd\xf2\x06\x01\xb3\xe1\x8d\x8b\xfc\x25\x53\xdd\x77\x39\xec\x4e\x08\xe3\xf0\x12\x1e\x50\x01\x01\x17\x18\x01\x4a\xd8\x48\x75\x4d\x36\x8a\xe2\x24\xb8\xcd\x17\xe4\xb6\x2c\x88\x43\x9c\x10\x75\xfe\x83\xb7\x65\x81\x2b\x07\x62\x09\x37\x6e\x28\xe6\xf4\x66\x6e\x00\xad\xc1\xe1\xb6\x84\xba\x32\x9b\xd7\xa2\xf9\xdb\xb2\x68\x1d\xb1\x31\x43\xc5\x21\xb4\x52\xdd\x6d\x59\xa0\x4b\xd1\x6d\x59\x38\x56\x16\x20\xaf\x77\x86\x0b\x8b\x69\x01\x80\x05\x7a\x2b\x15\xc1\x5e\x81\x00\x08\x9b\xd5\xb6\xc2\x95\xc6\x10\x3a\xee\xeb\x5b\x00\xfb\x5b\xfd\xec\x20\x2e\xf8\x8a\xa3\x57\x20\x1e\x23\xb6\xe0\x06\xfd\xff\xda\x9d\xd8\x6e\x77\x8f\x73\x7e\x43\x07\x15\x92\xb3\xac\xdd\xd9\x63\x9d\x0d\xdd\x86\x9b\x7f\x6d\x3f\xda\xd2\xea\xd9\x9c\x5a\x4d\xd4\x25\x53\x76\xe3\x4c\xe1\xa5\x4d\xdb\x4a\x17\xfd\xab\x65\xed\xa0\x20\xf4\x73\xf2\xca\xbe\x1b\xaa\xb6\xb8\xd5\x45\xf2\xbc\xf7\x59\x86\xde\x11\x2e\xfe\x38\x81\xfe\x07\xf9\x83\x27\x4f\xba\xb3\x12\x7a\x7b\x48\xfa\x5b\x48\x7c\x5e\xbf\x8f\xe4\x8f\xce\x6f\xb5\xce\xe1\xad\xaf\x78\x6c\x6c\x82\x03\xbf\x71\x4a\x0b\x53\x0f\xfa\x89\x07\x2b\x66\xaa\x0d\xcc\x9e\x15\x33\x28\x0b\x08\x63\x05\xfa\x92\x19\x4a\x4a\xbd\x52\xd9\x0d\x08\x39\x05\x75\x6e\xcf\xf9\xa2\xb4\xee\x7e\x76\x93\x41\x91\x91\x12\x49\x36\xaa\xb4\x09\x70\x1c\xc0\x39\xd8\xcf\x17\x59\x4a\x2e\x88\x5e\x97\xf6\xf6\x0d\xcb\xc8\xe7\x5b\x52\x77\x06\x20\x54\x5e\x6a\x56\x66\xa6\x6f\x1b\x02\xc2\x8b\x9a\xa0\x6e\x1f\xac\x23\xb5\x48\x92\xfd\x11\x57\xf9\xa2\xc4\xf2\x81\x25\x83\x86\xac\x54\x85\x7a\x5f\x6c\x94\xa0\x20\x18\x6f\xb8\xc8\x73\xae\xc8\xe7\xcf\xc0\x73\x0b\x49\x3e\x6f\x08\x13\x79\xa5\xa4\x91\xd0\x56\x7b\x1a\x34\x33\x6b\x69\x3d\xe5\x16\x68\x17\xd3\xcd\x29\xea\x41\xf1\x23\x46\xed\xf7\x9d\xf0\x63\x7b\x28\x18\x30\x91\xaf\x50\x0b\xd8\x0a\x30\x79\x5d\x56\x24\x5b\x4b\x08\x9d\x9b\x0c\xf4\xa8\xcc\xae\xad\x9b\x14\x07\xb9\x20\xbb\x66\x06\x05\x73\xdb\x83\x4b\xa4\x2d\x6e\xcd\x3a\x6e\x6c\x5d\xc2\x63\xf5\xc2\x7f\xe4\xcf\x0e\x0e\x2a\x3a\x90\x3b\x87\x21\x81\xbe\xd2\xae\xb9\x74\xe1\x1c\x34\x9c\xf0\x67\xb7\xc9\x2a\xb6\x84\xd7\x43\xa3\x16\x5b\x9a\xe7\x40\x1b\xed\x77\xa6\x96\x99\x80\xa7\xb7\x1a\x4d\x62\xd6\x44\xcf\x8c\x60\x3e\x1f\x32\xa5\xab\xd2\x72\x8a\xdb\x12\x0d\x7d\x9a\x41\xa5\x88\xfd\x82\x0c\xb9\x6d\x4e\xb1\x83\x99\x53\x13\x29\x96\xdd\xa0\x89\x4e\xdb\xf6\xca\xca\xa0\x0f\x1f\xda\x30\xbd\x28\xdf\x56\xc6\x7a\x09\x30\xb3\x82\x87\x81\xc3\xcd\xb7\x38\xb4\x85\xf5\x99\xc9\xfd\x38\xd8\x4f\x61\x65\x6b\x59\x79\x83\xe5\xaa\x1b\x24\x5b\x63\xab\x85\xb5\xae\x09\xed\x78\xba\x69\xec\x5e\x84\x2a\xa8\xf2\x1a\x86\xb1\x92\x50\x5c\x29\x73\xb2\x6d\x4e\x3d\x77\xcc\x44\xee\x0b\xb2\x33\x0a\x6d\x35\x38\xa7\x4a\xbd\xd2\xc2\xea\xaa\xe0\xf1\xda\xee\x1c\x80\xee\x58\x75\xed\xc4\x37\x3b\xfd\x9d\x73\xc6\xdd\x50\x61\x2c\x52\x03\x3e\xc4\xf1\xb0\x6d\xad\xac\xc7\x8c\xc8\xfd\x52\x43\x47\xcc\xb5\x42\xd6\x81\x11\x55\x62\x4d\xa1\x2d\xf6\x13\x5c\x0c\x3f\x38\x85\x9f\x93\x59\x02\x9d\xd0\xeb\x12\x17\x40\x9d\x59\x47\x14\xdd\x6b\x39\xb3\x07\x5d\x68\x0d\x14\xcc\x57\x74\xa5\x56\x78\xe6\x24\xae\x2f\x98\xeb\x15\xd0\x79\xe1\xbb\x0d\xc7\xdd\x8d\xa2\xf5\x20\x86\x0a\xac\x14\xc8\x4c\x28\x9d\xb6\xbb\xb0\xed\xf7\xc6\x0a\xf7\x5e\xcb\xe9\xe0\x17\xb5\x2d\x91\x73\x34\xdf\x7f\xcb\xac\x28\xb0\x1c\x58\x86\xc0\x58\x94\xdb\x76\x8c\x16\x5b\x87\x8c\xfd\xe1\x94\x20\x66\xe0\x66\xc2\xac\xfd\xd2\x8b\xc6\x61\x73\x3b\x1b\xbc\x7a\x1e\x9a\xe5\x0b\x75\x05\xa1\xd0\xca\x4a\x59\x11\x59\xb7\xaa\x2f\x6c\x3e\x5f\x92\xcf\xcd\x29\xf4\x2c\x7e\x7e\x67\xab\x2d\xda\xf0\xb8\x4e\x48\x62\x1d\xb9\x56\xcc\x64\x30\xc9\x36\xc2\x0a\xbd\x16\x4b\xe9\x76\x7a\xe9\xde\xf8\xb6\xdf\xce\x84\xa5\xcc\x71\x82\xac\xd0\x04\x6c\xe5\x4b\xfc\x70\x98\xec\x7d\x5d\xc6\xfa\x99\xb5\x8c\x2f\xfa\x8a\xa1\xc1\x1f\xbf\x1a\x66\x38\xcb\x2d\x1a\xc8\xb9\xe2\x12\x97\xb4\xfd\xf4\x16\x54\x15\x87\x0f\x4f\x94\xb7\x5f\xdd\xc4\x14\xf4\xad\xb7\x22\x71\x87\xab\x99\x5c\xa2\x5d\x05\xbf\x0e\x07\x58\xba\xb4\x2a\x74\x7b\x98\x23\xce\x00\xb7\xa1\xd5\x8a\x2d\x55\xad\xd7\xf0\xbc\x4d\x5e\x19\x52\x18\x22\x15\x11\x8c\x94\xcd\xa9\xdb\x5c\xbb\xe2\x37\x80\xb4\xe9\xd6\xca\xf4\xc8\xd6\xdc\xdf\x3d\x1f\x4c\x1f\x3f\x9f\x1d\x1e\x44\x8e\x1b\x0f\x17\xe3\xe0\xe4\xbc\xfb\x08\x8b\x48\xee\x7a\x1f\x83\x77\xe7\xca\x4c\xd3\xc7\xdf\x3f\x9f\x85\xe9\xa7\x74\x93\x2e\x9a\xef\xd2\xcd\x20\x1c\x8f\xf1\x3b\x22\xcd\x5d\xba\x19\xec\x1a\x9f\x72\x1c\x1d\x47\x7b\xcf\x4c\x3f\xa5\x3a\xdd\xdc\xcd\x46\xfe\xcb\xcc\x76\xd7\xfe\x45\xac\x62\x31\x8b\x65\x32\x15\x71\xef\x6b\x9c\x9f\xd2\x34\xc1\x33\xd1\x82\x34\x4d\xb2\xda\x04\xee\xdb\x99\xbb\x28\xd6\x87\x5f\x69\xe7\x7e\xff\xde\xe7\xe9\xe7\xcd\xad\x9a\x4d\xda\x7d\x5e\xfe\xab\x2a\x6a\xfc\x17\xbb\x89\x6f\x3f\x47\xef\x4b\x5c\x5f\xc9\xd1\xeb\xa5\xaf\xe4\xe8\xbe\x1f\xf3\xb5\x1c\xcf\x5c\x8e\xf3\x7e\x8e\x4d\x9a\xea\xc1\x67\xbc\xf3\xb9\x97\x7e\xc8\x8f\xcc\x1e\x3a\x03\xe9\x01\xe6\x02\x77\x77\xa6\x30\x00\x98\xda\x7d\xf4\x3c\x38\x99\xd8\xaf\x6a\x40\x4d\x12\xac\x44\x7b\xff\x81\x6f\xbf\xff\xff\xf4\x45\x94\x51\x9a\x8e\x9a\xfd\x93\xda\x11\x4f\xf9\xa3\xda\xed\x81\x53\x8e\xe8\x34\x80\xc7\xf6\xcf\x6d\xf7\x48\xcd\x7e\xc5\xd6\x91\x4a\x47\xa1\x14\xab\x82\xee\x9c\x90\x76\xf3\xbe\x3f\x5e\x01\x2a\xa0\x1b\xa3\x9a\x6d\x34\x0a\xd3\x34\x4d\x87\xcd\xf4\xd3\x68\x16\x1d\x1f\x5c\xb9\x0f\x99\xf4\xbf\x75\xd7\x2f\xa2\x6c\x3e\xab\x68\xb2\xff\x51\x95\xee\x60\xab\x7e\x6f\xee\x1f\xe4\xa5\xeb\x05\x3e\x13\xba\x39\x69\x8f\x90\x8f\x26\xd3\xb3\xbb\x99\x3f\xe9\x4f\x8d\xff\xd2\xee\x45\x74\x83\x96\xa6\x9b\xfd\x4e\xfc\x34\x9f\xff\xf4\xe2\xc3\x8b\xf9\xdc\x7d\x07\xdd\x7d\xe9\xe9\xb1\xfd\xbe\x7b\x29\x7f\x97\x05\xcf\xb8\xac\x75\x77\x0a\xe2\xf3\xe7\xc3\x63\xbf\x0d\xb5\xff\x1d\x6c\x7b\x8e\x83\x53\xe5\x0f\xb3\x44\xc6\x1a\xc3\xfe\x31\x66\x45\x10\x07\x55\x69\xbf\xd3\xd9\xdb\xe1\x66\xe2\x6c\x2c\xbf\xc1\xae\x5a\x9b\x3a\xbf\x61\xd9\x57\xbf\x5c\xea\x45\x08\x7f\x16\x63\xf8\xe2\xdf\x9b\x57\x2f\x9a\x57\x3f\x37\xaf\xfe\xd6\xbc\xba\x6c\x5e\xbd\x6e\x5e\xbd\x69\x5e\x5d\x35\xaf\x3e\x34\x6f\xfe\xd1\xbc\xf9\xa5\x79\xf3\xe1\x1f\xcd\x9b\x0f\xaf\x9b\xab\xf7\xcd\xfb\x57\x57\xcd\xfb\x7f\x34\x1f\x2f\x9b\x5f\xff\xd1\xfc\xf3\x55\x04\x53\x3b\xd8\xc5\xf3\x6f\x9c\x70\x8d\x82\x80\xff\xb6\x88\xdd\x59\xbf\x77\x48\x75\xff\x58\x6a\xaf\x63\xf8\xd6\xe9\xd3\x78\x98\x41\xef\xa8\xe9\x8e\xd3\x45\xa6\xec\x5b\xc7\x4b\xb7\x47\x4a\x5b\x59\xfd\xff\xf9\xb9\xd1\x0f\x1d\x16\xb3\xc1\x4d\x48\xc6\x9f\x1d\xdd\x1e\x2e\x40\x35\x6a\xcc\xe1\xda\x53\xc7\x62\x49\x9e\xef\x9f\xa8\x95\xfb\x53\x03\x84\x14\xf6\xe8\x65\x77\xca\x4c\x2d\x38\x76\xdc\xe5\xcb\xb7\xb5\x01\x81\xfb\xf2\xe5\x0b\x67\xcd\x30\x0a\xba\x65\x83\x07\xdb\xc8\x6a\x4b\xb8\x40\x23\x3e\x17\x10\x2e\xb6\x98\xb6\xd8\xa2\x1f\x84\x60\x1b\xba\x25\xf3\xb9\x7b\x66\x3e\xc7\xa7\xe6\x73\xbb\x35\x6c\x3e\xa7\xb5\x91\xd6\x58\x06\x52\xda\x73\x6f\x49\x7d\xde\x1d\x99\xf0\xdc\x19\x3a\x9f\x1b\xb5\xc5\x74\xab\x13\x7f\x0e\xb2\xca\x73\xbb\x6b\xf8\xb9\x3d\x49\xe2\xb9\x3f\xeb\xe1\x79\x57\x2a\xfa\xd7\x62\x9b\xcd\xda\x1a\xc5\x9e\xfb\x43\x0a\x9e\x5b\xbe\x5b\x2a\xf2\xdc\xfb\x41\x90\xe7\xad\x49\xed\xb9\xf3\x20\x7f\xee\xb9\x98\xe7\xce\x7f\xf3\x79\xce\x96\x9a\x3c\xdf\xdb\x7a\x34\xb7\x1b\x25\xe7\xf3\x85\xe2\xf9\x8a\xb5\x80\x35\x6c\x2f\x99\xea\x52\x14\xc3\x2d\x3a\xf9\x61\x0a\x99\xcf\x71\x4f\x0c\xa7\xc2\x20\x2c\x8c\xa2\xdd\xf5\x35\x17\xf8\x51\xeb\x2b\x29\xd0\x8b\x71\x7e\x55\x17\x05\x4e\x40\x84\xe6\xb5\xd0\x15\xcb\xac\x93\xea\xde\x17\xb7\xe7\xf3\x5f\xde\x5d\x7c\xf8\xf0\x1f\xfb\x69\xad\x6e\x62\x3e\x07\x4e\xc3\x58\xdb\x90\x35\x9f\x62\x6d\xac\x82\x6c\x5e\x8b\xb6\xbe\xc2\xbd\x59\xf8\x17\x8b\xc3\xf7\x62\x02\x72\xa3\x76\x69\xf8\x1d\xe8\xd6\xbd\x0d\xd9\xe2\xab\xf7\xf3\x9f\x2e\xde\x5f\xfe\xed\xea\xc5\x87\x8b\x9f\xe6\x97\x57\x97\x1f\x2e\x5f\xbc\xbe\xfc\xcf\x8b\x77\x70\xe7\xe3\xd5\x8b\x7f\x7f\x71\xf9\xfa\xc5\xcb\xd7\x17\x70\xf9\xee\xe2\xdf\x3e\x5e\xbe\xbb\x78\x3f\x7f\xff\xf1\x17\x9b\xe1\xdd\xc5\x87\x8f\xef\xae\xde\xcf\x2f\xaf\xae\x2e\xde\xcd\x7f\x79\x7b\x79\xf5\xc1\xde\xb8\xbc\x7a\x7d\x79\x85\x0f\xed\x95\xf0\xd3\xc5\x2f\xef\x2e\x5e\xc1\xab\xe0\xea\xe2\xea\xe3\x1b\x88\xdf\xfe\x02\xdd\xf0\x1e\xc0\xf7\xbf\x5e\xfe\xfc\xe1\xf0\xbd\x2f\xde\xbf\xff\xf8\xe6\x62\x7e\xf5\xf6\xea\xea\xe3\xeb\xd7\x73\xfb\x8d\xc2\xfb\xe9\x17\x57\x3f\xd9\x3a\xfd\x7c\x79\x75\xf1\xd3\xfc\xe7\xb7\xef\x6c\x71\x5d\xb9\x57\x2f\xde\x5c\xf4\xae\xde\x7e\xf8\xfb\xbb\xb7\xbf\x62\xbd\x3e\xbe\xbb\xbc\xfa\x1b\x40\x7f\x7f\x71\xf5\xd3\x6b\xdb\x86\x8b\xab\x9f\x7a\x57\xff\xfe\xe2\xf5\xc7\x0b\xdb\x5e\xbc\x7c\x7b\xf9\x93\xbd\xea\xe9\x66\xba\x03\x2f\xc8\xcf\x2f\x5e\xbf\xbf\x20\x1f\xde\x7d\xbc\x20\x82\x17\xe4\x3f\x2e\xde\x93\xab\xb7\xf6\x24\xe8\x9e\xc6\xe6\xe5\xdb\xb7\xaf\x49\xce\x35\xba\x97\xe0\xd7\xe1\xe7\xa6\xbb\xc6\xcd\x0e\xfd\x04\x34\x12\xb4\x57\x74\xff\x12\x9e\x0e\x80\x83\x1b\xb9\xfd\xfe\xcf\xfb\xdf\x03\x9f\x1d\x8f\x62\x91\x04\xcf\x3b\xdf\xdf\xe7\x76\x36\xe0\xc2\x96\x19\xac\xc9\xf6\x88\x32\x54\x44\x3e\x70\x9c\x43\x59\x06\x31\xd0\x93\xcc\x46\x27\x19\x9e\xec\x30\x8f\x0b\xfb\xcd\x53\x7b\x22\xf5\xd4\xdc\x3b\x67\xcd\x2a\x59\xda\x73\xd6\x0e\x3e\x9f\xf1\xfc\xa1\xaf\x66\xf4\x78\x28\xcb\x7f\x4d\x3f\x01\x6b\x30\xb3\x9f\xc5\x70\x17\xd3\x4f\x4f\x66\xf7\x8f\xd0\xec\x0e\x7a\xe8\x7f\x3f\xe7\xe4\xe0\xad\xfb\xec\xdb\xb3\xfe\x31\x12\xfb\x87\xfc\xe0\x29\x07\xf6\x9b\xaf\x26\x0c\x48\x10\x0d\x41\xae\x0f\x83\x26\x88\xf0\x8b\x33\x8e\x97\xb8\x6b\x1e\x47\x41\x7b\x1e\x81\xc0\x3e\x39\xf8\xc2\x78\x9a\x0e\xdd\x89\x6d\x8e\x39\xd9\x45\x67\xff\x77\x00\x00\x00\xff\xff\xd1\xcd\xd3\x18\xad\xb0\x00\x00") + +func staticJsHighlightPackJsBytes() ([]byte, error) { + return bindataRead( + _staticJsHighlightPackJs, + "static/js/highlight.pack.js", + ) +} + +func staticJsHighlightPackJs() (*asset, error) { + bytes, err := staticJsHighlightPackJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/js/highlight.pack.js", size: 45229, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticJsJquery183Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\xfd\x7b\x7b\xdb\x36\xb6\x28\x0e\xff\x2d\x7d\x0a\x98\xed\x71\xa4\x58\x17\x3b\x6d\x7a\x91\xe3\xf8\x6d\x12\x67\x9a\xd9\x4d\xd2\x5d\x67\xa6\xf3\x1e\xdb\xed\x81\x44\x48\x42\x42\x11\x1c\x02\xb2\xad\xd6\xf9\xee\xbf\x07\x6b\x2d\xdc\x28\xca\xc9\xcc\xde\xfb\x9c\x79\xe6\x69\x2c\x12\xc4\x75\x61\xdd\x2f\xe3\x87\x7b\x5d\xf6\x90\xbd\xff\xcf\xb5\xa8\x37\xec\xaf\xfc\x9a\x9f\xcf\x6a\x59\x19\xf6\x93\x9c\xd6\xbc\xde\xb0\xeb\xa3\xd1\x77\xa3\xaf\x6c\x9b\xa5\x31\xd5\x64\x3c\x7e\xff\x4f\xdb\x74\x34\x53\xab\x71\x97\x3d\xb4\x2f\x5e\x95\xb3\x62\x9d\x0b\xcd\xce\xe5\x1f\x7f\x14\x62\xf4\x5e\x47\xcd\x35\x3c\x7b\xaf\xe3\x0f\x9e\xab\x6a\x53\xcb\xc5\xd2\xb0\x47\x87\x47\x8f\xdc\xe0\x2f\xd5\xba\xcc\xb9\x91\xaa\x64\xbc\xcc\x99\x32\x4b\x51\xb3\x99\x2a\x4d\x2d\xa7\x6b\xa3\x6a\xe8\xf5\x17\x51\x08\xae\x45\xce\xd6\x65\x2e\x6a\x66\x96\x82\xbd\x7e\xf5\x8e\x15\x72\x26\x4a\x2d\xb6\xa7\xa9\xea\xc5\x38\xbc\xb4\xef\x5f\x70\x23\x26\xec\xdd\x5a\xb0\x37\xea\x9a\x1d\x7d\x85\x73\x38\xfc\x6e\xf2\xe8\x70\xf2\xd5\x57\xec\x2f\xaf\xdf\x0d\x0f\x1f\x1f\x1e\xb2\xde\x19\xd7\x46\xd4\x25\x3b\x37\xbc\xcc\x79\x9d\xb3\x77\x72\x25\xfa\x5d\xf6\x70\xdc\xed\xcd\xd7\xe5\xcc\xce\xb4\xc7\x6e\x64\x99\xab\x9b\x01\xcc\x67\x2e\x4b\x91\xb3\x3e\xfb\xb3\x7b\xcd\xeb\x6e\x67\x3c\x66\x3f\xb0\x99\x28\x4d\xcd\x0b\x56\x8b\xb9\xa8\x45\x39\x13\xcc\x28\x98\x76\xad\x94\xa1\xa5\xf7\x72\x35\x5b\xaf\x44\x69\xfa\xdd\x8e\x7d\x8c\x4f\x07\x5d\xe8\xe2\xdd\x52\xb0\xdc\x7e\x5c\xdb\x55\xdb\xa5\xab\x92\xbd\x78\xfb\x9a\xd5\x82\xe7\x9b\x6e\x07\xfe\xf9\x49\x6a\x43\xed\xff\xa6\x05\xf4\x3f\x53\x75\x2d\x66\x86\xb9\xbe\x19\x9f\xcd\x54\x9d\xcb\x72\x51\x6c\xd8\x8d\x34\x4b\x9a\x3a\xe3\xf5\x02\x1b\xf4\x34\x2f\xf3\xa9\xba\xed\x77\x3b\xfe\xa3\x13\x6a\x35\x72\x4f\x06\xdd\x4e\xa1\x66\x78\x4c\xfe\xa5\x7b\x32\xe8\x76\x4a\x7e\x2d\x17\xdc\xa8\x3a\xbc\xf5\x8f\x68\x86\xaf\x79\xc5\xd4\xb5\xa8\xdd\xc1\xcb\x92\xcd\xb8\x16\x4c\xcd\xe1\xf1\x4d\x2d\x8d\xe8\x76\x7e\xa7\xb7\xbe\x9b\x64\x57\x7c\x1f\x76\xa9\x5f\xee\xea\xe2\xcb\xf0\xf5\x97\xf4\xe1\x39\xbf\x16\x8c\xa7\xc7\xa1\xd5\x0a\xf6\x4b\xb0\x95\x30\x4b\x95\xeb\x6e\xc7\xfe\xfa\xbd\x5a\xeb\x25\x3b\x61\x3f\xd4\x35\xdf\x8c\xaa\x5a\x19\x65\x36\x95\x18\xd9\xc7\x03\x6a\xa2\x2d\x70\xb5\xb4\x81\xe7\xae\x91\x2c\x73\x71\xfb\x76\xde\xd2\x8c\xde\xb8\x86\x46\x9d\x9b\x5a\x96\x0b\x76\xc2\xde\x4e\xdf\x8b\x99\x89\x9a\xba\x77\xae\xed\x92\xeb\xb7\x37\x65\x5b\x4b\x7c\xf3\x73\xad\x2a\x51\x9b\x8d\xef\xbb\x96\x2b\x76\xc2\xb0\x93\xb8\xdf\x5a\xae\x68\x6f\x5e\x00\x04\x33\xce\xec\x79\x16\x6c\xa6\xaa\x8d\xdd\x51\xdc\xf8\x6e\xc7\x1f\x48\x80\x7e\x2d\x0a\x31\xb3\x27\x0b\x17\x55\xdc\x1a\x80\xfe\x8e\x83\x5b\xfa\x42\xc1\x0c\x99\xd4\x8c\xcf\xcc\x9a\x17\xc5\x86\xbd\x5f\x6b\x03\x67\x27\x4b\x69\xec\xc7\xda\xd4\x6b\xdb\x13\x7b\x20\xca\x25\x2f\x67\x22\x7f\xd0\xed\x74\x6a\x61\xd6\x75\xc9\x4a\x71\x43\x7d\x8d\xe6\xe5\xc8\x7e\xd2\x32\xf4\x80\x85\xbb\xc3\xfa\xc7\xdd\xce\xc7\x70\x23\x72\x36\x57\x35\x5b\x71\x33\x5b\xda\xed\x2d\xd7\xab\xa9\xa8\xfd\x31\x97\x6b\xbb\x33\xe3\x8b\xcb\xe1\xc1\xd5\x69\xef\x74\x72\x99\x3f\xbc\x1c\xdd\xf5\x2f\xf3\x83\xde\xe9\xe4\x42\x9c\x5d\xe1\x9b\xcb\xfc\xe0\xae\x3f\x1e\x69\xb5\xae\xed\xd9\xa6\x7d\xe7\xc2\x88\x99\xb1\x9d\x5b\xe4\x65\x37\x75\x65\x7f\xdc\x2c\xa5\x11\xba\xe2\x33\x41\x83\xd5\xa5\x32\xf0\xd0\x8e\x78\x79\x3e\x76\xc7\x53\x43\x23\x78\xa8\x0f\xc6\x1e\xca\x3f\x08\xa6\xd7\xb5\x60\x37\x02\xfa\x64\xcf\xde\xbe\x86\x01\xde\x3c\x3b\xff\x99\xf5\x96\xa2\x16\x0f\x34\x2b\x94\xfa\x00\x23\x1b\xb6\x51\xeb\x01\x3b\xe7\x73\x5e\x4b\xf6\x78\x74\x08\x6d\x5f\x9d\x59\xbc\x42\xe7\x3f\xfe\xed\xe2\x52\x5f\xae\x5f\x9e\xbd\x7c\x79\x79\xfb\xc3\xe1\xd5\xc1\x5d\xe3\xf7\x97\xe3\x05\x8d\xfe\x03\xd3\x72\x55\x15\x82\xdd\xf0\x8d\xbd\x26\xb3\xa5\x98\x7d\x80\xc5\xfe\xf8\xee\xf5\x4f\x4c\x03\x24\x69\x68\xfa\x73\x2d\x55\x2d\x8d\xfc\x43\xb0\x2f\x64\x8e\x37\xf3\x89\xe1\x8b\xa7\xf6\x3b\x7e\xad\x64\xce\xfe\x71\x7e\xce\xae\x25\xc2\x96\x05\x1e\x0b\xa6\x4b\xd6\xfb\xe2\xfb\xc7\x8f\x8e\xec\xfc\xfe\xb9\x96\xb3\x0f\x67\xb7\x55\x0d\x93\xb4\x1b\xff\xdb\x17\x4f\xae\x1e\xf6\x9e\x5c\x5c\xde\x5c\xfe\x7a\x75\xf0\xb4\x7f\xf1\xdb\xd3\xab\x87\x5f\xde\x7d\xd1\xb3\x4f\x86\x57\x0f\xfb\x5f\xf6\xc3\x46\x99\xd9\x92\x71\xa6\x01\x57\x17\xaa\x14\xcc\xf0\x45\xb7\x53\x6b\x8b\xef\xc4\x3b\xbe\x80\x5e\x9f\xf4\x2e\x6f\x0e\xfa\x97\xfa\xe1\xe5\xf8\xf4\x69\xef\x74\xf2\xe4\x72\x7c\x79\xf4\xf4\xae\xff\xa5\xeb\xe7\xaf\xe7\x6f\xdf\xb0\x5f\xc4\xe2\xec\xb6\xea\x76\xea\x6b\x5e\xc8\x7c\xb6\xe4\xb5\xa6\x8d\xbb\x1a\x4c\xfe\xfc\x78\xa9\xaf\x1e\xda\x0f\xe8\xfd\xb4\xe6\x33\x01\x0d\x7a\xa7\x93\xdf\xee\x26\x77\x83\xbe\x05\x21\xfd\xf0\xf2\xa2\x7f\x60\xf7\x92\xda\x09\x3d\xe3\x15\x1e\xf0\xa5\x5d\x5d\x76\x79\x79\x39\x9e\xce\xcb\xda\x5c\xdd\xad\x2f\x2e\x73\x3e\x9c\xff\x30\x7c\x79\xf5\xe7\xd7\x1f\xfb\xd1\x57\x46\x7d\x10\x25\xf4\x9e\x5d\xfc\x66\x3f\xa9\x2f\xcb\xab\x87\xd9\x9d\xa9\xd7\xe2\x6e\xce\x0b\x2d\xee\xca\x75\x51\xdc\x0d\x11\x6e\xef\x85\xdc\x45\xbc\x59\x42\xb3\x9c\xeb\xa5\xc8\xe9\x1c\xe1\x5c\x67\x7c\x25\x0a\xf9\x87\x2c\xed\xd6\xad\xf4\xcf\xb5\x98\xcb\x5b\x58\xfb\x70\xa5\x87\xb0\x66\xfb\xd1\x0f\x45\xb5\xe4\xf6\xf1\xb0\x07\x13\xff\xe3\xaa\x3f\x5e\xc8\xf8\x46\x4c\x37\xee\xbe\x42\x97\xcf\x2d\x6e\xe6\x9a\xcd\x78\x51\x4c\xf9\xec\x83\x85\x8a\x5a\x54\x05\x9f\x89\x5e\xbf\xdb\x99\x87\x46\x31\x72\xe1\x45\x31\x60\x85\x30\x46\xd4\x84\x56\x08\x1d\xf4\xdc\xd3\x03\x96\x65\xac\x3f\x32\xea\x6f\x55\x25\x6a\xdb\x41\x2f\xbe\xf8\x16\x05\x01\x79\x64\xe2\xda\x12\xb3\x25\x2f\xf3\x42\xd4\x70\x29\xb4\x28\xe6\x6c\x56\x08\x5e\xae\x2b\x42\xfb\xdd\xce\x8b\xb7\xaf\x9f\x5b\x64\x52\x9a\x9f\x14\xcf\x45\x1e\x4f\x07\x67\x20\xe7\xac\xe7\x49\xea\x88\xe7\xf9\x99\xed\xd9\x92\x5f\x51\xfa\x69\x7a\xf2\x39\xaa\xc5\x4a\x5d\x8b\xa4\x4d\x8f\x65\xcd\x61\xb2\x01\x6b\x3e\x1a\x30\x38\x5c\xc0\x63\x1d\xc2\xbc\x23\x58\x0b\xac\xb0\xf3\x91\x09\xfb\x3a\x9d\x0e\xbc\x3f\x37\xdc\x22\x97\x93\x13\x96\xcd\x94\xbd\xbe\x46\x64\x6e\x5e\xe3\x31\xbb\x11\x0f\x6a\xc1\x2c\xe2\x60\x53\x31\xe3\x6b\x4d\x5b\xd4\xfa\x99\x2c\x99\x2a\xf2\x57\x67\xee\xdb\xa5\x9c\x2d\x2d\x1a\x5f\x28\x95\x33\x51\xaa\xf5\x62\x09\x70\xb3\xd6\x80\x1f\x78\x51\x00\x4e\xcf\xd5\x0a\x3b\xdd\x4b\x36\x23\x17\x86\xcf\x96\xb0\x19\x3d\x96\xa9\x12\x9a\x68\x3b\xee\x6c\xc9\xcb\x85\x68\xd9\x86\xdd\xeb\x0f\xa7\x7c\x71\xf1\xbc\xe0\x5a\x5f\x5d\xb1\xe1\x53\x66\x49\x1a\xab\xb8\x04\xe4\x6e\x1f\x3f\x82\x27\x27\xec\xcf\x8f\xc7\xdd\xae\xa7\x21\xec\xc4\xc1\xa7\x27\x84\xb6\x8d\xc5\xc5\x9e\x12\x4d\x98\xe3\x38\x3a\x96\xe2\x4c\xee\x23\x7b\x29\xed\x81\xcd\xbe\xe6\x44\x70\x06\x4c\x14\x62\x35\x60\xb5\x30\x03\x7b\x56\xc7\x5d\x24\x90\x3f\x02\x34\xb2\x2f\x7b\x59\xd6\x1f\xb0\x2f\x7b\xf6\x1e\xc3\x1f\x9e\x95\x84\x5f\x00\x07\x7d\x07\x7a\x7b\x6e\x68\x77\xa4\x74\x25\xcc\x52\x6a\xdc\x97\x46\xe7\x2f\xde\xbe\x3e\x2b\x04\x31\x97\xd8\x87\xeb\x62\x54\xaa\x5c\xbc\xb3\x4b\xa7\xbe\x6c\x27\x23\x47\xc8\x4f\xa0\xcf\x8b\xc3\x2b\x76\xe2\xbf\x38\xf6\xad\x0a\x51\x2e\x8c\x65\x8e\x8e\x8e\x3f\x3d\x8b\x94\x5c\xe0\x24\xec\x96\xab\xb9\xef\x19\x21\x0f\xdb\x78\x70\x4d\x67\x6b\x11\xf1\x0f\xa6\x77\xd8\xc7\xb6\x4f\x32\xb6\xbf\xbf\xf5\x36\x3c\xa0\x19\x0e\xd9\x11\xa3\x2f\x9e\xa6\x5f\x50\x83\xa7\x27\xec\x2b\x37\x20\x50\x3d\xad\xd7\x2b\xcb\x42\x73\xe3\xe6\xec\x7e\xf0\xda\x00\xee\x10\x65\x8e\x1c\xf4\x93\xa7\x8c\xd7\xb4\x3e\x40\x2a\x1f\x64\x85\xcc\xbd\x58\x88\x5b\x24\x98\xd0\x2f\x00\x02\x3b\x61\x17\xcc\x9e\xf2\x20\x02\x20\xfb\x9b\x5d\x01\x4c\xb8\x4b\xfd\x67\xf2\x49\x20\x8c\x23\x71\x2b\x66\x61\x85\x74\x37\x60\xaf\x03\x0d\x5c\x9a\x55\xc1\x80\xd7\x71\xac\x43\xa9\x3c\x73\x26\x35\xd3\x95\x98\xc9\xb9\x24\xae\xe5\x0b\x99\xfb\x8d\xc6\x01\xf7\xf7\x59\x0f\xfe\xba\x38\xba\x62\x77\x77\x6c\x8f\xbe\xed\xc3\x1e\xb9\x4d\xfa\xf1\x87\x37\x2f\x7e\x3a\x9b\xb0\x2f\x7b\x76\xbc\xbe\xbd\x79\x5f\xf6\xb8\x65\x6e\xfb\xd0\x24\x74\x68\xbb\x71\xbb\xdb\x09\xb0\xe5\x67\x54\x5a\x92\x3d\x13\x9e\xcd\x64\xa7\xee\x9d\x05\xbd\x89\xfb\x71\x8c\x1d\xe4\x6a\xc6\x4e\x58\xcf\x7f\xbe\xbf\xef\xfe\x0c\xc0\xec\x3b\x18\xa9\x9b\x52\xd4\x2f\x9c\x28\x73\x77\xe7\x3f\x9b\x04\xa9\xa8\x8f\x5b\x0f\xab\xd2\x20\xfa\x6a\xbb\x4d\x96\xbe\xc2\x0e\x59\x72\x35\xb4\x18\x91\x1b\x6c\x17\x20\xd6\xa3\x10\x5e\x6b\x61\x61\x20\x2c\x19\x2e\xfa\x00\x7b\xe9\xd3\xdc\x61\x4f\x02\x43\x32\x32\x42\x9b\x64\x93\xf6\xf7\x5d\x8f\x52\xff\x5c\x70\x59\x22\x67\xdf\x8b\x78\x6b\xbf\x93\x78\x0b\xb9\x31\xf5\xc8\xa2\xdd\x56\x94\x94\x8c\xfe\x91\x96\x49\x37\x95\x06\x5a\x89\x7a\x21\x7a\x70\x6f\x07\x09\x60\x6d\x1f\xf4\x17\x32\xc7\xb3\x4d\xa0\xb4\x63\x71\x1b\x3b\x09\x34\x68\x21\x0c\xe1\x9b\x67\x9b\x57\xb9\x5b\xdf\xa3\xab\x64\xa3\x9f\x03\x27\x59\xf1\x5a\x94\xe6\x8d\xca\x05\x52\x0f\x0b\x7e\x37\x4b\x51\xb2\x67\x05\x9f\x7d\x98\x8a\xba\xde\xb0\xaf\x47\xdf\x30\x9c\xb2\xf6\x5f\xdb\x93\xa6\x3b\xc9\x11\xbe\x0b\x55\x2e\x44\x6d\xc9\x15\x92\x1f\x3a\xdb\x2f\xbe\xf9\xfe\x9b\xaf\xa2\xcd\x87\xb9\xee\xef\xc3\xbf\xa3\x68\xf4\xb0\xab\x01\x67\x81\x08\x6d\x39\x92\x1b\xa0\x95\xaf\xce\xe0\x82\xbf\xad\x44\xcd\x69\x42\x4c\x1a\xb1\xd2\xe1\xc3\xe9\x86\x95\x7c\x25\x00\xa4\x05\xcf\xad\xe4\xf4\xea\x05\xbd\xf6\xc3\x8f\x64\xce\xf6\x4e\x4e\xa2\x6d\xf1\x63\xbb\xa3\x09\x94\x64\x34\x97\x65\xbe\x75\xe1\xa3\xc3\xb4\xc3\xbe\x35\x4b\x51\xdf\x48\x2d\x06\x56\x48\x90\x25\x88\x5a\x76\xf6\x02\x8f\x81\xe5\xb2\x16\x33\x53\x58\x39\x9b\x54\x0f\x89\x58\x16\xc3\x53\x03\xab\xd3\x63\xa4\x01\xb6\xbb\x06\x2c\x35\xe8\x85\xdb\xf7\xe3\xe8\x6d\x74\x5b\x12\x22\xb2\x45\x32\x22\x44\x16\x60\x4e\xdc\x56\xb5\xa5\x81\xa3\xd1\xa8\xdf\x8f\x30\x24\x92\x42\x37\x72\xb8\xd8\x23\xd4\xfa\xf8\x4d\xf5\xfc\x62\xd4\x34\x26\xd4\x2d\x1b\xbc\x63\x0e\x0e\x0b\xd2\xeb\x9e\x67\x85\x40\x90\x15\xff\x5c\xcb\x6b\x5e\xd8\xdd\x36\xca\x7e\xe4\x9a\xe3\x00\xb6\x8b\xfe\x16\x82\x8f\x36\x60\x14\xb1\x1d\xd1\x75\x6f\x3f\x7f\x4f\x5c\xfd\x14\x1d\x63\xd2\xc7\x17\xe7\x4b\x55\x9b\xd9\xda\xa0\x5c\xea\x2e\x03\xa9\x8b\x92\x2d\xf4\xe8\xe6\xe5\x16\x6b\x13\x90\xcd\x36\x58\x22\x1f\xd6\x98\x17\x4c\x2b\xa5\xd8\xbe\x81\x85\xf8\x54\x41\x76\x0f\x7c\x8c\xb6\xb9\x8d\x00\x63\x81\xde\x07\xba\x00\x23\x37\xf0\x1a\xff\x20\x40\xd7\x12\x23\x46\xdb\x55\xa2\x18\x38\x07\x8a\x0e\x94\x9c\x97\x4c\xac\x2a\xb3\xf1\xcd\xbb\x1e\xd1\x4f\x58\x96\x45\x02\xc5\x6c\x5d\x5b\xc4\xc1\xae\x45\xad\xa5\x2a\x83\x82\x84\x4d\x85\x95\xa3\xd6\x5a\xe4\xdd\x0e\x02\xe2\x84\x65\xa0\x3e\xcd\x52\x5d\x1e\x5f\x17\x86\xd1\x5d\x53\x73\xc6\xb7\xf5\x24\x87\xdd\x0e\xbe\x9f\xb0\xc3\xe8\x5b\xd4\x5b\xd8\x6f\xe8\x72\x6b\x00\x16\x0e\xdb\x4a\xd8\x0f\x30\x8b\xc8\xfd\xf5\xd7\xc2\x74\x3b\x5a\xfe\x21\x26\x4d\x59\x26\x06\x40\x1c\xcd\xed\x8d\x51\xb0\x79\xbb\xbe\x08\x9a\x2f\x22\x3e\x5b\x3b\xfb\x17\x81\x38\xe8\x8d\x59\xfa\x89\xec\x9e\x1f\x7b\xfb\x4b\xf2\xd5\xcd\x52\x15\xed\x0d\xb9\x66\x1c\xa5\x36\x06\xdc\x46\xb7\xb3\x10\x09\x67\x5e\xae\x57\xa9\xac\x08\xba\x9d\x13\x64\xb3\x4e\xdd\xed\xfe\x05\xdf\x71\xf6\x00\xfa\x7a\xe0\x3a\x23\x70\xa3\xe5\xf7\xfa\x6c\xd2\xf8\xc2\xab\xad\x02\xee\xc4\x31\x9f\xb0\x43\x76\x8a\x1c\x73\xbc\xa1\xec\x00\xde\x5a\x46\x06\xdf\xe1\xaf\x44\x48\xb5\x8c\x9a\x5b\x4f\x72\xb4\x96\xe0\x80\x0a\x52\x1a\xa6\x1c\xee\xd6\x86\x5b\x9e\xd2\xe2\x20\x5c\xa1\x85\x39\xfb\xa2\x14\x37\x6d\x5b\xd6\xef\x76\x6c\x1f\xe7\xf6\xb3\x78\xa3\x6c\x13\x3d\x00\x8a\x15\x53\x7e\xe4\xf1\xc6\x63\xf6\x6c\x2d\x8b\x9c\xf1\x48\xf5\xd6\x0e\x59\x20\xe7\xd4\xc2\x04\x76\x28\xe2\x29\x12\xbc\xd6\x47\x41\x48\x13\x96\xb5\xac\x76\x9e\xe3\x66\x16\xb9\x83\xfd\x74\x9d\xac\x07\x07\xee\x95\xb5\x7d\x3c\xd7\x51\x55\x8b\x6b\x64\x8e\x48\x4c\x39\x26\x14\xd0\x90\x5e\x02\x96\x70\xb8\x09\x28\x34\x48\x03\x16\xb7\x66\x11\x8e\x8b\x51\x51\x8a\x9a\x0e\x58\xaf\xf1\xe4\x94\x65\x2c\x63\x13\xd0\x3e\xb0\x83\x84\xb2\xc5\xe8\x15\x06\xfb\xbc\x11\xb2\x51\x66\x61\xc5\x7e\x70\xc0\xb2\x5e\x16\xf5\x6a\x1f\xf4\xb3\x58\xac\xfa\xc5\x5d\x5c\x38\xf5\x62\x33\x9c\xab\x7a\xb5\x75\x30\x0e\x6f\x0b\x13\x41\xdb\xd9\xad\x98\xad\x8d\xb0\xb7\xc8\xe9\x62\x2c\x95\x10\xd7\xf6\x80\x77\xdc\x54\x2d\xcc\x08\x21\xee\xff\xaf\xd6\x6c\xc6\x4b\xa6\x85\xc0\x93\x73\xb6\x03\xed\xb1\xa8\x07\x63\x5e\x2f\xf4\x80\x4d\xd7\x06\xb1\x83\x44\x45\xa1\x2a\x8b\x0d\x5a\x31\x64\x69\x44\x5d\xf2\xa2\xd8\x8c\xfa\xdd\x8e\xe0\xb3\x65\x0c\x9e\x6e\x76\x03\xe8\x27\xbd\xd2\x04\x67\xf6\x13\xc7\xba\x36\x9b\xbb\x15\x03\xa5\x8a\xfb\x9d\x97\x41\x43\xed\xc0\xcf\x7d\xdc\x4d\x15\x0d\xa3\xaa\x56\x2b\xa9\x45\xaf\x3f\xca\x55\x29\xf0\xdb\xe3\x6e\xb7\xc9\xba\xc0\x40\xe2\x9f\xf1\x28\x92\x06\x91\xec\x84\x1d\xc8\xe3\xf0\x89\x04\xd8\x1b\x1e\xb1\xd3\x40\x01\x2d\x1e\xc5\x4f\x26\x5b\x0f\x07\x4c\xb2\x03\x2b\xc1\xba\x71\xe6\xb2\xd6\xe6\x5e\x4c\x2e\xfe\xd9\x63\x87\xe1\x83\x82\x7f\x46\xfb\x61\x34\x02\x0c\x7d\xef\x17\x1e\x9f\xf4\x62\x4a\xc0\xab\xaa\xd8\xb8\xf3\x08\x70\xd1\x1f\xd8\x45\x65\xd0\x26\x1b\x6c\x91\x0e\xdf\xb0\x3f\x7a\xaf\x64\xd9\xcb\x06\x59\x3f\xcc\x65\xc5\xab\x36\xa0\x60\xf7\xce\xc9\xb3\x00\x55\x0f\x27\x93\x22\xbd\x81\x3f\x1d\x4f\xce\xa8\x5b\x22\x66\xd4\x08\xb1\x15\xf1\x36\x7d\x3f\x25\x51\xe6\xf7\x6f\x4e\x40\x4d\x77\x77\xdb\x48\x10\x94\x3c\xd1\x7d\x7c\xa9\x6a\x7f\x13\xec\xbd\x80\x0b\x82\xb7\xed\x99\x58\xf2\x6b\xa1\x59\x21\x91\x40\x00\x4d\x7a\xa0\x49\x59\x39\x60\xa5\x32\xf4\xce\x23\x68\x78\x33\x42\x8c\x3f\x61\xde\x86\x35\xe8\x76\xb4\xaa\xcd\x84\x5d\x5c\x8d\xec\x1f\xf6\x77\x85\xc7\x6c\x9f\xc0\x9f\xdd\x8f\xc7\xdd\xae\xa5\xc1\xf2\x5a\x04\xc3\x8c\x5b\x68\x2c\x36\x04\x8d\x99\xc5\x1c\x05\x37\x20\x79\x59\x31\xde\x48\xd0\xec\x77\x53\x53\x4d\xa2\x62\xf3\xaf\x82\x36\x4e\xdc\x1a\x51\xe6\xf1\xbb\xf0\x28\xdd\x68\x4b\x6a\x54\x65\x7f\x07\xca\x55\xcf\x06\x60\xa8\xc2\xff\xbe\xd2\xb0\x4b\x03\x36\x2b\x54\x29\x2c\xe8\x19\x5e\x2f\x80\x3a\x79\x48\xb3\xe2\xcc\xdd\x1d\xfb\xf3\xe3\x80\x6e\xe8\x91\xfd\xc3\x8b\x3e\xbe\x1d\x91\x70\xfb\x32\x17\xa2\xb2\xb3\xe1\x85\x16\xc7\x78\x70\x24\x26\x72\x06\xef\xc0\x54\xa6\xa5\x59\xe3\x06\x24\x2a\x2e\x37\x03\x4b\x74\xa6\x4a\x59\x86\xc3\xd1\x1d\xea\x17\x5b\x1c\xb7\xcf\xf6\x88\x66\x7b\x8c\x48\xcb\xab\x98\xa8\x2b\x34\x37\x2d\x05\x75\x42\x4b\x7a\x64\x41\x2c\x99\xa8\x93\x65\x4b\x37\x1f\xa9\xc1\x5e\x02\xba\x7f\x55\x83\x0d\xd4\x80\x71\xac\x57\x29\xad\xe5\xb4\xb0\x20\x10\x56\xd7\x6f\x5d\x94\x65\xec\x33\x24\xdd\xa0\x5c\xdb\xdb\x96\x28\xb0\xa5\x93\x26\xfc\x02\x61\x41\x34\x45\x3a\x6e\x67\x0e\x36\xa0\x9b\x97\x73\x24\x16\xaa\x0c\x64\xc6\x4e\xba\xe2\x1a\x38\x6c\x98\x8d\x3b\xb5\x93\x13\x7f\xab\xfd\x08\x4e\xb2\x1c\x0e\x25\x0d\x65\xe1\xb5\xc7\x8e\x99\x64\x4f\xe8\xcb\x63\x26\x0f\x0e\x02\x45\x78\x6b\x07\xcc\x05\x2f\x90\x9c\x95\xaa\x1c\xda\x0b\x3b\x0e\xb2\xcb\x35\x2f\xd6\xc2\x2b\x31\x7b\x04\x8d\xc9\x81\x31\xc9\xae\xfa\x6c\x8f\x78\xce\xa0\x79\x3f\xc3\x55\xc2\xd9\x81\xad\xda\xb3\x90\x38\x2f\x52\x1e\x38\x08\xf7\x42\xac\xae\x67\x1e\x46\x2e\xb0\xd5\x15\x4a\xcc\x00\x75\x27\xee\x83\xf0\xce\x29\x6f\x7e\xae\xd1\xee\x51\x5a\xf2\x3e\x14\x65\x6e\x8f\xb7\x50\xaa\x0a\x3a\xba\x08\x38\xa1\xb7\x44\x55\x27\xcb\xb5\x88\x65\x73\xe4\x3d\x66\xeb\x1a\x19\x1c\x34\x25\x58\x76\xcf\xf6\x5b\x15\xdc\x4e\x1e\x16\xa5\x2d\x44\x01\x27\xa0\xc3\x50\x00\x4a\xa0\xb0\xab\x36\xa0\x66\x6c\xd7\x76\x01\xb0\x59\x90\xef\x45\x17\x3a\x60\x07\x89\x0f\xb0\x59\x3f\x56\x89\xc1\x20\xf1\x37\x41\xb5\x92\xf6\x44\xd7\x98\x5e\x81\xb1\xf0\xc4\x22\x92\x44\x01\x87\xa3\xe8\x7a\xd6\x67\xa7\xf0\xd2\xe2\x4a\xa7\xc2\x4a\x55\x60\x3b\xfb\x88\x97\x95\xf4\x84\xb7\x39\xd2\xa4\x8c\xc7\xec\x8d\x3d\x24\xb6\x52\xd7\x82\xa9\x5a\x2e\xa4\x25\x08\xb4\x9b\x84\xce\x2c\xe8\xac\x48\xb7\x92\x40\x43\xd8\x1d\xbc\x49\xb8\xd7\x0e\x09\xd2\xc1\x06\xb0\x78\xa1\xca\x07\x86\x4d\xe1\xe6\xcb\x92\xb5\x00\x77\xca\xc6\xc2\xf7\xad\x22\x7c\xcb\x44\x6c\x63\x07\x33\xf4\x9f\x8f\xfe\xa2\x47\x8c\xeb\x4a\xe5\xa8\x86\x76\xd7\xc0\x11\x51\xc2\x85\x1f\x9b\x04\xa2\xf7\x67\xb7\x53\xaa\xe7\xaa\x9c\x17\x72\x96\xc8\x7c\x00\x58\x91\x79\xce\x79\x7c\x00\x54\x27\x36\x99\x4e\x78\xc5\x7e\xff\x32\xd5\x5a\x38\xf0\x4c\xbc\x4d\x76\x77\xe1\x9d\x21\xc8\x4f\xa5\x5d\x11\x11\x51\xfa\x57\x1a\xd6\xed\x3d\x77\x98\x51\x6c\x2a\x80\x17\x3e\x65\xe7\x56\xf2\x55\xa8\xb1\x55\xe5\x4c\x80\xc8\x37\xb3\x37\x6d\xd4\xed\x48\xfd\x0b\xb1\xb1\x16\x70\xbd\x71\x7e\xa6\xd6\x96\x71\xc0\xef\x2c\x57\xb4\x54\x56\x02\x2c\x37\xa8\x98\xb4\xcf\x6f\xb8\x44\x2d\xd0\x54\xcc\x55\x2d\xe0\x43\xd3\x30\x8a\xce\x65\x2d\xf4\x88\x9d\x0b\xc1\xbe\xf8\xe6\xdb\xef\x8e\x88\x69\xfe\x95\x4b\x33\xb1\xa4\x11\x89\x88\x15\xd1\x7a\xca\x4a\x7a\xe0\x7f\xd5\x6f\x76\xd3\xed\x2c\x55\x91\xff\xd2\x64\xb7\xed\xc3\xf8\x68\xa2\xdf\x09\xaf\x6d\x47\x3b\x38\x88\xe4\xa7\xad\x16\xbd\x48\x9d\x1d\x19\xff\x88\xba\x21\x61\xa3\xed\x95\x3a\xf1\x8d\x8a\xe7\x03\x1b\x12\x84\xdc\x1f\xa6\xaa\x36\x16\xc8\x0d\x28\x79\x79\x2d\x58\x45\x68\xd2\xce\x14\xd0\x18\x62\x39\x5e\xe0\x62\x9d\x16\x0d\x01\xcd\xf6\x66\x21\x04\xa6\x76\xca\x86\xc3\xe6\x9a\xd8\x24\x60\x03\xd8\x9c\x94\xf5\x8c\x85\xba\xe0\xeb\x31\x55\x76\x57\x6f\xa5\xb6\x37\x9f\x1b\x66\x77\xdc\x0c\xbc\x8f\xd3\xab\x33\xb6\x10\xc6\x52\xef\x42\x1a\x53\x08\xf0\xb6\xf8\x43\xf0\x42\xad\x35\xeb\x19\x39\xfb\x20\x0c\xfb\xe2\xf1\xd7\x5f\x7f\xd5\x1f\x79\xb3\xa1\xd7\xcf\x43\xe7\x29\xff\xab\x85\x79\x27\x57\x42\xad\x8d\x47\xc9\xb0\x80\x01\x09\x1e\x91\xdc\xb9\x12\xa0\x80\x02\xdd\xfb\xf6\x76\x77\x1a\x6b\xc5\x8d\x71\xd2\xfe\xab\x39\xe3\xac\x54\xf5\x8a\x17\xf0\xdd\x2f\x0d\x20\xcc\x07\x2c\x17\xb3\x1a\x44\xd0\x01\xb0\x35\xb0\xbf\x72\xce\x4a\x2b\x6e\x4e\x45\xb2\xed\x7b\x6e\xdb\xf7\xf7\xdb\xf6\xfd\xa9\x95\x81\x76\x6d\xf5\xab\xf8\xc0\x1d\x70\x68\x36\x55\xeb\x32\x1f\xd8\x7b\x23\x50\x4a\x86\xdb\x4c\xde\x75\xa3\x5a\x68\x55\x5c\x8b\x5f\xa5\x59\x06\x93\xfb\x80\x5d\x38\xf4\x70\x15\xf4\x1a\xef\x6a\xb9\x58\x80\x9f\xc1\x06\x3b\x8d\x6f\x8a\x67\x1e\x02\xbb\x6b\xa8\x7d\x72\x31\x7a\x91\x8d\xca\xb5\xe8\x65\xd0\x51\xd6\x1f\xa9\xf9\xdc\xff\x68\x5c\x09\x7b\x93\x8d\xd0\x66\xbc\x2e\xa5\x19\x5b\x21\x60\xf4\x5e\x3b\x1f\x25\x2e\x0b\xd0\x19\xce\x04\x6a\x8e\x02\xa3\x86\x42\xc7\xb9\xb4\xd8\xc7\xe9\x36\x8f\x46\x5f\x81\x4d\xde\xf9\xc5\xc1\xa9\x84\x0d\x43\xe9\xa3\x10\xb5\x81\x6f\x79\x2d\x2c\x61\xd1\xeb\xaa\x52\xb5\x11\xf9\x88\xbd\x5b\x8a\x8d\xb3\x96\xa0\x3f\x83\x2a\x2d\xfc\xf6\xbe\x78\xf4\xfd\x37\xdf\xf5\x01\xb7\xb9\xf1\xe3\x6b\xaa\xa6\xef\x5b\x45\x7e\xcb\x7c\xf6\xd4\xf4\x3d\x19\x74\xdd\x07\x99\x43\xb3\x44\xb6\x27\xe4\x67\x47\x3f\x2d\x33\xf1\x2f\xf7\x0d\xdc\x4b\xd4\xf1\xaf\x80\xf6\xef\x9d\xa4\x7d\xe0\xd8\xbe\xfd\x7d\xf8\x79\x72\x62\xff\x19\x21\xcd\x08\x9d\xbd\x59\xaf\x44\x2d\x67\xf7\xf6\xb6\x27\xf5\x1b\xfe\xa6\xc7\xc0\xba\xf8\xb2\x50\xdc\xe0\xec\xc0\x4e\x28\xf5\x4b\x2b\x5a\x09\xfa\xce\xeb\x6d\x37\x95\xf8\xe4\x14\x83\x36\xb4\xd3\xe9\xa0\x3b\xa0\x6b\x09\x0a\x88\xe0\x36\x71\xc1\x12\xaf\x44\x94\x8f\x61\x12\x20\x93\x38\xc6\x3f\xac\x2b\x62\x78\xda\xa7\x61\xf1\xdc\x5a\x1b\x4b\xf8\x78\xe9\x3c\x17\x49\xe1\x48\xde\x28\x6a\xce\x5e\x9d\x81\x2d\x8b\x17\x5a\x31\x2b\x03\x07\xe7\x33\x8b\x73\xaa\x5a\x68\xf0\xdc\x54\x73\x72\x74\x0d\xce\x83\x15\x39\x3d\x8e\x9a\x38\x15\x30\x96\x85\x64\x34\x1e\x02\x76\x41\xf7\x57\xc7\xb1\xe6\xc0\x15\x59\xe9\x82\x99\x65\xad\xd6\x8b\xe5\x80\x71\xcd\x6e\x44\x51\x78\x2c\x6a\x17\x72\x77\xb7\x0d\x31\x89\x18\x74\x77\x07\x67\xee\xed\xd1\xe1\x03\x07\x45\x6e\x47\x52\x34\xec\xd9\x52\x40\x53\xa6\xde\x78\xc9\xe1\x8d\x32\x4c\xdd\x94\xad\x2b\x65\x2b\xda\xcf\xb7\x5e\x9c\x80\xb9\xda\x29\xc4\xed\xf7\xf7\x81\x29\xdb\x8b\x7c\x47\xfd\x79\x0e\x58\x16\x35\xcd\xfa\xf7\x36\x8e\x7b\x0d\xa2\xfd\x80\x65\x52\xff\xec\x7e\xbd\x9d\x67\xfd\xa6\x11\x2e\x70\xdd\xc0\x13\x92\xbd\xb7\xc7\x44\x24\x22\xbd\x3a\xfb\x6e\xf0\x3d\xfb\x55\x82\x1f\x51\xad\x6e\x98\xb8\x9d\x09\x12\x87\x54\xc9\x66\xa2\x36\x56\xc8\x58\x2a\x6d\xfc\xb9\x7d\xf1\xfd\x77\xdf\x7f\xbb\x73\x1b\xad\x50\x77\x53\xba\xdd\x92\xf6\xe8\x6b\xc1\x44\x69\x2f\x20\x37\x22\x67\xa0\x50\x2b\x36\x03\xa6\x15\xb8\x02\x57\x96\xd6\xac\xab\x01\x7e\x2b\xe7\xac\xe0\x76\xb0\x52\x58\x3a\xa7\x6e\xca\x81\x85\xb9\x92\xf1\xa2\x68\x76\xaa\x6e\xca\x51\x97\x14\xe2\x1f\x04\x30\x84\x28\xd8\x7d\x10\xe0\xe3\x4c\xb7\x20\x66\x12\xed\x9b\x93\x84\xb1\x06\x5b\x66\x63\xd3\x19\x1c\x91\x6d\xdb\x0f\x57\xed\x6c\x55\x99\xcd\x7d\x57\xcd\x4e\xc3\x72\xe5\x61\x1e\x5e\xc0\xf4\x6d\x5a\xf6\x2c\x68\xb3\x80\x74\x93\xd2\xab\xae\x55\x1d\x0f\xb3\xd2\x0b\x27\x6e\xc3\x39\x95\xe2\x86\x9d\xd9\x46\xf4\x2a\xe2\x7b\x73\x6e\xf8\xc4\x2b\x1a\xe6\xe0\xa0\x02\x2f\x9c\xaa\x9e\x84\x68\x5e\xf4\x27\x96\x32\x7b\x07\x15\xd8\x69\x36\xaf\xf9\x02\x88\xe0\x8d\x85\x8a\xa9\x60\xb3\x5a\xc0\xc1\x49\x54\xb8\x05\x77\x07\x32\xac\x01\xe3\xeb\x48\x67\x37\x76\xeb\x68\x0c\x64\x17\x38\xc0\x6e\x25\x46\x30\xf8\x96\xa8\x63\x70\x7a\x70\x70\xa9\xc1\x05\x74\x3b\xde\xd9\x23\x91\x40\xb8\xe1\x91\xe3\x85\xeb\x26\x1c\x04\x7c\x95\x1f\x07\x76\x8c\x1b\x0e\xfa\x41\xd4\xa6\xc0\xcf\xbd\x16\x0f\x28\x6f\xc4\x2a\x0a\x77\x3c\xb1\x16\xc6\x5b\x3b\x5a\x74\x4b\x1d\x37\x8b\x93\xc4\x87\x26\x18\x48\x0e\x5d\x8f\xdb\x5e\x39\x77\x77\x91\x31\x9f\x8c\xca\xe0\xb7\x82\x5e\xb5\xa4\xfc\xc0\x45\xb1\x93\xd8\xa9\x05\x5d\x94\x60\x3d\xfd\x26\x82\xbb\xf0\x66\x7a\x3c\x43\xf2\x13\x21\x12\x97\xa3\x13\xcc\x95\xbf\xba\xbe\x7b\xc2\x9e\xd3\xb5\x2c\xf2\x97\x04\x0e\x3d\x76\x81\xa3\x5c\xb5\xec\xfb\x29\x12\x38\x2b\xb1\x23\x03\xdb\xea\xf4\x72\x71\x05\xaa\x69\x5a\xc6\x68\xc6\x67\x4b\xc1\xa7\x85\x65\xe4\x9d\xef\x6a\x01\x7a\x7f\x6a\xe0\x21\xb1\xcf\x26\xcd\x67\xfd\xd1\x6c\x29\x8b\xfc\x0d\x10\x17\x0f\xfd\xd0\xe8\xaf\xe7\x6f\xdf\x34\x61\x25\x16\x89\x3e\x09\x0b\xbb\x40\xa1\x49\xe2\x0a\xc1\xad\xe4\x32\x36\x35\x97\x45\xea\x7b\x8e\x3c\xfa\x4a\x5d\x8b\x9c\xf5\x5e\x9d\xb1\x19\xb7\xb4\x0e\xdd\x61\x99\x04\xaf\x06\x18\xd6\xef\xb5\xa9\xe5\xca\x4d\xd5\x5b\xeb\x8c\x11\xab\x0a\xe4\x54\x58\x18\x5b\x6b\x6f\x7b\xe4\x46\x5e\x0b\xf4\x9e\x86\x77\x35\xe2\xd5\x86\x44\x0e\xef\x83\x88\x6d\x7f\xa2\xf3\x54\x03\x50\xb6\xde\x87\xa9\xb4\x2d\x1c\xb5\xd5\x33\x05\x0e\xf7\xd0\xd0\x47\x1a\xc0\x94\xb0\xfd\x4f\x6a\x21\x67\x6c\xaa\xea\x5a\xdd\x58\xbc\x5f\xab\x95\x8f\x15\xd2\xaa\x84\x48\x21\xfb\xc7\xa3\xd1\x7b\xcf\xa2\x47\x1e\xe0\xe4\xae\x65\xbb\x1f\x39\xd7\x65\x16\x7b\x76\x0f\x58\xf6\xff\xcb\x18\xb8\x79\x34\x1b\xa0\x13\xf7\x80\x65\x57\x3b\x1a\xa0\x0f\xf9\x80\x65\x59\x3f\xf8\xd9\x79\xe7\x15\x8b\x5c\x83\x83\x46\x46\xcf\x33\x76\xe0\x60\xa9\xdf\xc3\x43\xfa\x18\x44\x30\x81\xc8\x38\x7b\x55\xc2\x00\x0c\xa1\x30\x7c\x13\x21\xe8\xe7\xb5\xd2\x7a\x38\xad\xd5\x8d\x3d\xb7\xdb\x55\x01\x47\x18\x90\xdd\x3f\xb6\x71\x5d\x84\xd9\x6e\x57\xc5\x80\x99\x55\xf5\xdf\x82\xdb\x3c\xd3\x13\x43\xcd\x8b\xb7\xaf\x7f\x46\x98\xea\xb3\x3f\x19\xba\x6d\x40\x40\x16\x70\x17\x66\x55\xb1\x13\xd8\x22\xdf\xae\x47\x7e\x52\x76\x29\x27\x76\x6e\x08\x44\x2f\x6b\xb5\x72\xec\x2e\x4c\x6a\xc0\x32\x8b\x37\xc6\xb7\xab\x22\x73\xbe\x35\xa4\x7d\x60\xc0\x8c\x44\xbd\xd8\x01\x7e\x98\x59\x28\xff\x87\xf3\xca\xcb\x5e\xcb\x59\xad\xb4\x9a\x9b\xd1\x3f\x5e\xff\xf4\xe2\xed\x6b\xd7\x89\xfd\x64\xc4\xf5\xa6\x9c\x31\x2b\xa4\x58\xda\x9a\x85\x17\x85\xe2\xf9\x3f\x5e\xff\x14\x83\x74\xcc\x11\x45\x0c\x11\x8e\xec\x79\x83\x84\x00\xec\xd9\x97\x77\x77\xf0\xaf\x8f\xcd\x22\x84\x6a\x9f\xdb\xc7\xc1\x15\x4f\x3f\xdb\xbc\xe3\x8b\x37\x7c\x25\x7a\x2c\xc3\x0b\x0a\x00\x92\xb1\xbe\x73\x54\x48\x95\x32\x4d\xf0\x01\x18\x48\xa0\x27\x66\x15\x6e\x57\x85\x83\xa7\x52\xa9\x2a\xb5\x8f\x79\xcb\xf3\x35\x2f\xd6\xdc\x08\x30\x3b\x60\x8c\xa1\x2c\x19\x67\x8b\x42\x4d\x21\xd8\x08\x90\x38\x34\xfd\x55\xd5\x1f\x78\x6d\x05\x67\x0d\xaa\x72\x08\x79\x9b\x4b\x50\xcc\x68\x36\xdd\xb0\xbf\xca\x15\x7b\x51\x4b\x3d\x53\x05\xf2\x12\x74\x91\x6f\xc4\xb4\x50\x0b\x3d\x7a\xcf\xaf\xf9\xa8\x14\x66\x6c\x7f\x8e\x73\x6a\x39\xe6\xf5\x6c\x29\xaf\xc5\xf8\xd1\xe1\xe1\xf7\x63\xfb\xff\xef\xc6\xe2\x9a\x17\x43\xdb\x1c\xa7\x34\xc4\xd9\x0c\xfd\x6c\xf0\xb7\x9d\xfb\x7d\x38\x1c\x7e\x83\x6a\x3b\x8e\xf0\x89\x50\x46\x60\xf6\xed\xf2\x40\xeb\x07\x4a\x06\x0a\xb6\xb4\x52\x31\x18\x01\x85\x61\x67\xb7\x55\xa1\x6a\x51\xa7\x8d\xc1\xd0\xa3\xca\xcd\x4a\xad\x75\xb0\xca\x59\x9e\xd5\x0a\x36\x91\x7f\x2f\x5e\x1a\xfa\xb8\xe6\x10\x44\x69\x96\xbc\x8c\x82\xed\x5e\xca\x5a\xcc\xd5\x2d\x3a\xaf\xd0\x25\x8b\x26\x93\x48\xcb\xd1\x4a\x9d\xea\xf3\x82\x65\x76\xd7\x32\x76\x45\xec\xa9\x0b\x81\x8c\x01\x9a\xf5\x53\x9c\x1d\xb0\x8d\x2a\xaf\x45\x6d\x5c\xf0\x09\x38\x7e\x52\xf0\xc7\x31\x3a\x06\x4c\x37\x28\xd6\x69\x14\xd3\xa0\x97\x95\xca\xd7\x85\x40\x17\x02\x7f\xed\xd8\x5c\xd5\x0b\x05\x04\x69\xb9\x5e\x81\x55\x4c\xd6\xec\x5a\x94\x39\xc8\x47\x10\xbb\xd2\xfb\xe2\xfb\xc7\xdf\x3e\xea\x77\x3b\x7e\x94\xc4\x8f\x1f\xb9\xd2\x44\x44\xc6\x67\x11\x86\x76\x71\x30\x03\x96\xad\xf4\xd0\x5e\x99\xf0\xce\x47\xc3\x0c\x58\x14\xc4\xd2\x0f\xb7\x21\x17\xf6\xd6\x35\x1d\x6f\x06\xb1\x6b\x08\x8d\x0b\xde\xa1\xee\x03\xef\xa5\xea\x1e\x8c\x8c\xfa\x49\xdd\xb8\x18\x17\x60\xf8\xca\xad\xc7\x11\x52\x07\x37\x08\x89\x6a\x9f\xc8\xbe\xcc\x17\x68\x61\xde\x76\xb8\x00\x19\xa3\xd5\xeb\xc2\x09\x12\xc0\x2d\x49\xcb\x38\xc2\x5f\xde\x60\x6a\x65\xc2\x60\x2a\xed\x48\xfd\x76\xfa\x9e\x9d\xc4\xa6\xb9\x44\xbc\x69\xf1\x39\x24\x1d\x86\xbb\x4d\xd1\xd8\xf8\x00\xbb\x74\x50\xb8\x53\x98\x71\x26\x20\x67\xce\x27\x8f\x04\x35\x7d\xef\xec\x13\x7e\x5d\x76\x56\x14\x60\xe3\xad\x38\xd3\x5a\xf0\x0f\xde\x2e\x13\x2c\x18\xb1\xad\xa7\xcd\x82\xf8\x19\xa3\xcb\x83\x83\x7f\x73\x70\xc7\x7b\xa1\x58\xc4\x8b\x01\x9b\x83\x32\x18\x34\xc1\x76\x36\x68\x4b\xd1\x16\x07\xac\x56\xaa\x64\xa4\x42\xb1\xc7\xdb\xd0\xa6\xff\x57\xb6\xd2\xcb\xa1\x61\x27\xd1\xfe\x1e\x3d\xfa\xbf\xb3\xad\xd1\x4c\xa4\x9d\x86\x1c\x44\x5b\xfc\xaf\x6e\x6e\x6a\xb2\x51\xd3\xf7\x69\xd4\xa8\xe3\x6b\x49\xfd\x05\x11\x94\x1e\xf7\x82\x5f\xf8\xb5\xa8\x99\x33\x97\x77\x3b\xb6\x01\xb9\x5d\x40\xdb\xfd\x7d\xb6\xe7\x7f\xe1\xcc\xb3\x10\x6a\x99\xf5\x41\x05\x17\xae\x60\x14\x3f\xeb\x85\x70\x94\xee\x22\x85\x5d\x27\xcb\x50\x4d\xd7\x69\xf4\x4c\x9f\xa3\x0d\x65\xe2\x74\x1f\xce\x39\x1c\xe1\x62\x5d\x83\x1e\xc9\x47\xa7\xba\xb1\x79\x21\xcd\xe6\xbf\x32\x17\xfa\x80\xe2\xf1\x02\x7e\x84\xe0\x62\x78\x08\xf3\xa2\xad\xad\x85\x06\x41\xfd\x3e\xfc\xe4\x3d\x78\x63\x24\xc5\xeb\x7a\xe0\xbf\x0e\xd8\x09\x14\x50\x34\x53\x2b\x8e\x52\x83\xbb\x3b\x67\xb2\x25\xb4\x52\xb7\x58\xe5\xdf\x2d\x85\x27\x60\x2e\xdc\xa7\x97\xa8\xb9\xfb\x91\x22\xf2\x01\x42\xe7\x03\xf7\xf1\x8d\xe0\x1f\x44\xce\x0a\x90\x2d\x74\x21\x17\x4b\x53\x80\x65\x8f\x64\xab\x24\x92\xe1\x5b\x8a\x2c\x65\x52\xeb\xb5\xd0\xec\x8b\x6f\xbe\xff\xea\x10\x5c\xbe\x12\xdf\x18\x50\x2b\xc2\x6c\xc9\x66\xeb\x66\xef\xdd\xf3\x69\x11\xc4\x63\xa7\xa1\x53\xc9\x43\xaf\x20\x4f\x1f\x43\x74\x52\x95\xb5\x6a\x26\x61\x5c\x7f\x77\xbc\x0b\x11\xc1\x18\xc4\xb0\xd1\xd4\x9a\x97\x38\x95\xae\x9b\x2d\x1b\x77\x2d\xf2\x4a\x94\xe5\xd6\x39\x23\x8d\x84\xd3\x96\xd1\x39\x17\xa2\x4c\x8f\x33\x26\x12\x49\xa4\x7d\x43\xf7\x18\xbf\xa3\x95\x40\xe7\xde\x1f\x2c\x8a\xa4\x2a\x44\x09\xee\x1c\x75\xf0\x89\x46\xb2\x27\xd9\x29\x20\xa8\x43\x76\xca\x5e\x73\xb3\x1c\xad\xf8\x6d\x8f\x1d\x0e\xec\xb4\xd8\x01\x3a\xf0\x31\xc9\x26\xec\x10\x8f\xad\x81\xd4\x62\x57\x13\xd4\xa8\x7c\x90\x15\xe3\xb3\x99\xd0\x9a\x2c\xf1\x1a\x85\xe1\xa6\xe3\x84\x04\x46\xb9\xae\x2d\x3e\xe1\x75\x0d\x88\x0f\x0e\x12\x1d\xd4\x1c\x9a\x73\x2e\x86\x5b\xd6\xf7\xb0\xeb\xc3\x23\xef\x59\x67\x4f\x29\x71\x8c\xb4\xf2\xfa\x80\x69\x31\x53\x65\x1e\xef\x39\x38\xdd\xdb\x87\x09\x91\x67\x27\xf8\x45\xfc\xf0\x3d\x2a\x95\x1a\x3a\xaa\x02\x61\x0e\x5d\xd7\xbd\xf0\xe7\x36\xe7\xbd\xdd\x9c\x63\xf6\x3e\xda\x1a\xe8\xd7\x21\x74\x37\xf8\x05\x7b\x4f\x5e\x2f\xb0\x9e\x18\xf0\x6e\x96\xb2\x10\x10\x76\x00\x0d\xdf\x5f\xed\xf0\x55\xd8\xd5\xaf\xfd\x9d\xc2\x68\xbc\x32\x7b\xf0\xb1\xd3\x27\xbc\x73\xbb\xb8\xa8\x45\xd5\xe2\x54\x1d\xd8\x28\x59\x5e\x47\x7b\x59\x0b\xf3\x77\x5e\x44\x98\x8a\x54\x50\x2d\x4c\x15\xf4\x14\x41\xa0\xed\xe8\x84\xed\xed\xc9\xf2\xda\xe9\x63\xfe\xa2\x9c\xa1\x82\x5c\x71\xc1\xf1\x0d\x7c\xa6\x34\xbf\x76\xaa\x19\x17\xa4\x04\x96\x7f\xee\x0d\x1c\x82\x81\x60\x07\x89\x3a\xdc\xfc\xbb\xed\x84\x38\x02\x5b\x5c\x00\x4c\xc4\xad\x91\x16\xed\xa8\x31\x5d\x25\x84\xdb\xf2\x1a\x8e\x82\xbe\x8a\xee\x24\xb8\x6b\xc6\x5f\x7e\x1a\x4b\x20\x4f\xfb\x09\x92\x71\xff\x61\xd8\xef\xc3\x61\x80\xb3\x0b\xa8\xd5\xff\xe5\x03\x19\x10\xfa\xa7\x68\x23\x67\x89\xe0\xb5\x60\x86\xb4\xd3\x5c\x47\xd7\x58\x7a\xd7\x23\x74\x80\xdf\x0e\x7a\xbc\xbb\x73\xfc\x72\x0a\xbb\xfb\xfb\xfe\x1a\x05\x76\xda\xdf\x25\x70\xa2\xf2\x4e\x70\x4f\xd9\xa1\x13\x1b\xf4\x05\x3b\x64\x57\xd1\x2f\x17\x0c\x7b\x04\x3c\x52\x18\xcd\x76\x77\x98\xd0\x01\x8a\x9a\x21\x4f\x7d\xd6\x67\xf7\x83\x9b\xa9\x79\xa9\x0b\x0e\x89\x2f\x2c\xcf\xe9\x8c\x72\xde\x05\x05\x84\xb2\xae\xe7\x3e\x13\xcf\xac\x4f\x40\x5b\x07\x8e\x88\x9d\xb0\x1d\xb0\x46\x27\x4a\x8e\x4d\x30\x00\x7e\xd1\xa0\xf2\x70\xb8\x17\x16\x98\xdc\x9d\xb6\xf7\x1f\x9a\x1e\x6f\xb3\xda\xd1\x3a\xd1\x2b\xfe\x83\xd8\x30\xf2\x80\xc5\x93\x1e\x34\x10\x50\x62\xe5\x71\x1b\xf7\x89\x15\xd8\xd6\x57\x08\x7d\xff\xcd\xab\x08\x2b\x79\x59\x70\x63\x44\x09\x6e\x08\xa5\xd0\x00\x96\x0e\x26\xc3\x05\x1b\xcd\x54\x39\xe3\xc6\xc9\x2b\x17\x57\x10\xa9\x9e\x68\x08\x7f\x70\x4a\x9a\xbf\xfc\xed\xd5\x0b\xef\x77\x64\x97\x4d\xa0\xdf\xed\x2c\xd6\x32\x0f\xee\x42\xcf\x64\x99\x33\x1e\x79\x0f\x2b\xc6\x83\x9a\xde\x99\x61\x8a\x0d\xab\x78\x6d\x24\xfc\x05\xc3\x63\xfa\x94\x8d\xbb\xed\xe4\x87\xdb\xed\x54\xb5\xba\x6d\xb8\xf1\x37\x33\xce\x00\x1f\xb8\xaa\x06\x14\x77\x00\x5f\x6c\xd1\xa2\xc4\x5e\xd2\x50\x47\xa2\x22\x71\x5e\x7a\x2b\x05\x51\x85\x60\x1d\x99\x83\x13\x49\x07\xb2\x07\x90\xc6\xd3\x6d\xf5\x7f\xae\xe5\xec\x83\xb3\x51\x2b\x48\x06\x53\xaf\x64\x09\x0e\x74\xc1\xdf\xd6\x42\x01\x9f\x16\x62\xe0\x2c\x4b\x56\xa8\x73\xb8\x59\xa2\xdd\xf9\x46\x33\xce\xde\x6d\x2a\x01\xe6\x34\x0c\xa0\xb8\x11\x68\xa6\x82\xe8\x23\x3a\x39\x8f\x23\x82\x8f\x4f\x8b\x64\x0d\xe1\x0e\x29\x1b\xdf\xd0\x27\x3a\xeb\xce\x6a\x5d\x00\xe2\x9a\xca\x32\xef\x76\x3a\x20\xaa\x9e\x6c\x47\x7a\xf9\x53\x19\xb0\x47\x88\xb4\x61\xa7\xb7\x13\x65\x78\x7a\x59\x3a\xc8\xf2\xe7\x6f\xfb\x26\xa8\xeb\xdd\x33\x02\xcc\x1c\xe5\x06\x6f\x84\xa2\x00\x31\x0b\x6d\x16\xd3\xac\x4b\xf9\xcf\xb5\xf0\x79\x3d\x5c\xe8\x90\x15\x47\xd5\x3c\xb8\x51\xd2\x7b\xb0\xf1\x4a\x03\x11\x2c\x53\xe1\x0c\x22\x6e\x09\x23\xe8\xd4\x9e\x72\xf3\xaf\x80\x1e\xed\xcf\x83\x83\x98\x1d\x20\x38\xf3\x57\xe5\xf5\xba\x30\x32\x88\x55\xe4\x38\x63\x67\x66\x61\x00\x13\x8f\x18\x72\xb4\xc4\xd8\xbf\x99\x2a\x0a\x41\xf4\x97\xe4\x11\x78\x3d\xd6\x30\xd1\xe8\xb2\x4c\x85\x73\x4c\xca\x2d\x5c\x49\xf3\x40\x47\x97\xac\xdb\x41\x5e\xb2\x85\x04\xda\xdb\x02\x98\x86\x68\xde\x6c\xc9\x65\x89\x80\x08\x41\x8f\x7f\xb1\xbc\x3a\x30\x06\xe1\x2e\xd9\x91\x80\xce\x4d\xd7\xc5\x07\x76\x42\xa6\x6a\x4c\x5f\xf0\x59\x3c\x8b\x3f\x31\x8d\x4e\x89\xa9\xe7\xb4\xed\x2e\x10\x37\x67\x07\xf7\x3e\x14\x09\x81\x00\xfe\x17\xcc\xdf\xa9\xa4\x81\xeb\x4d\x56\x29\x61\xa1\x17\xf2\x6a\xc0\x8e\xe2\xc5\x21\x46\x0d\x4c\x46\xc7\x6f\x01\x06\x3b\x47\x93\x55\x25\x1d\x40\x23\x98\xcb\x21\xe5\x16\xd6\xd2\x0a\xda\xfe\x98\x42\xbc\x89\x3b\x66\x7b\xf2\xf1\xc1\xd9\xbf\x5d\x8e\x01\xfb\x39\xfc\x3e\xc1\x03\x38\x69\x92\xff\x96\x4b\xed\x17\xe3\x39\x2d\x38\xa3\x48\xb4\x78\x66\x7f\xab\x4a\xd4\xdc\xf9\x4e\x14\xe0\x15\x5a\x73\x43\xbe\x92\x38\x9f\x58\x07\x10\x7b\xff\x62\xb8\xba\x9d\x96\x27\x3e\x34\x49\xc2\x81\x84\x05\x9b\x12\x5b\x00\xb2\x48\xfb\xe2\xf4\x9b\xb7\x62\x46\x57\xdc\x39\xb8\xa1\xfc\x92\x9e\x8e\xbb\xed\x0d\xf5\x85\x01\x4f\xb2\x75\xc9\xf8\x82\x5b\xf6\x09\x23\xdc\x4b\x23\x6b\x41\xe1\x6e\x4d\xaf\xec\x79\x19\xc5\xf3\xe8\xe6\x20\x30\x7d\x67\x7a\x8a\x39\x00\x5c\xbb\x0f\x13\x23\x18\xdc\xcd\xa3\x74\xe6\xee\x9e\x01\xd4\xc1\x0e\xc0\x5e\x9d\xe2\x88\xf1\x24\xa0\x85\xb4\x90\xda\xf8\x04\x50\xdd\xc4\x5d\x4f\xbc\x89\x5b\x13\x6b\x80\x6c\xca\x29\x87\x97\xa0\x99\x41\x2e\xc4\x47\xaf\xfe\x45\x80\xdb\x21\xde\x65\x54\xdd\xa4\xdb\xe3\x7c\xbf\xdc\x65\x3e\x8d\xe6\x78\xe8\xe7\x38\xf1\x37\x2a\x28\xb8\x6f\x76\x45\x43\xa1\xdd\xf2\x05\x37\xa2\xd7\x67\xfd\xd1\x02\x9d\x4c\x51\x49\xdd\xfd\xd8\x0f\xee\xdd\x49\xb0\x5d\x02\x54\x5e\x21\x89\xf4\xcd\xfb\x62\x3a\x13\x69\x78\xe0\x95\x27\x2f\x28\x53\x62\xcf\x9b\xad\x9f\x83\x9f\xd1\x8c\x6b\xa1\x29\x97\xc3\x97\x21\xdf\xa2\x4b\x29\xe4\xa8\xb3\x65\x91\xe6\x86\xd2\x0a\x3a\x93\xa8\x4b\x1e\xa5\xbd\x17\x30\xb8\x66\xd7\x48\x7b\x21\xa7\x12\x3a\x6d\x9b\x5a\xa2\x49\xa3\x91\x55\x29\x03\x71\x85\x83\xf9\x30\x83\xdc\x4b\x48\xd7\x81\x16\x61\x30\x24\x6a\x84\xc0\xa1\x12\x18\xcd\x52\x60\xd7\xb9\xd4\x33\x75\x2d\x6a\xb4\x8b\x3c\x5f\xd6\x52\x9f\x43\x0f\x13\x67\xf3\x9a\xae\x17\x7a\x14\x25\xe5\x44\x07\xe0\xf1\xd1\xa3\x47\xdf\x3d\xfa\x62\xa6\x56\x76\x9d\x93\xa3\xc7\x5b\xb9\xab\x3e\x27\x59\xd4\x8f\xce\x43\x80\x81\x39\x73\x59\xab\x52\xad\x35\x6a\xb8\x78\x51\xa8\x1b\xef\x72\x01\x93\x06\xbf\xcf\x75\x29\xcd\x06\x99\xa0\x82\x07\x87\xe9\xce\x27\xbc\x8c\x09\x03\x93\x69\x57\x0f\xd1\xee\x47\x47\xa0\x9d\x53\xe9\x56\x82\xa8\x5d\xa9\xb0\x76\x65\xe6\x8a\x12\x64\x5a\xae\xc0\xf9\x1f\x47\x21\xa0\x9d\x9d\x7d\xfc\xcb\x99\xbb\x68\xc0\x1f\xec\x13\x9f\xf7\x8c\x0c\x6e\xaa\x2c\x14\x07\x1f\x27\x4e\xbe\x4d\xbc\xb8\xe1\x1b\xcd\x6e\x54\x0d\xd3\xa0\x76\x2d\x93\xb0\x1f\x66\x83\xc6\x26\xc6\x83\xa2\x8b\xf3\xab\x33\x5a\xdc\x4a\xe5\xa2\xb0\x10\x8e\xa9\x09\x12\x3c\x39\x1e\xb3\xb3\x12\xbc\x28\xe6\x12\x6c\x61\x18\x29\xc0\xdc\xf4\x56\x7c\x33\x15\x10\xe4\x07\x10\xab\xf9\x9c\xfc\x32\x41\x0a\x9f\xd7\x7c\x85\x24\x23\x6c\x9a\xf9\xb7\x92\x7c\xfd\xb7\x6c\x55\x63\xe8\x96\x7d\x8a\x86\xc2\x1d\xb2\x1c\x59\xa9\x8c\xe5\xa3\xec\x5a\xe8\x1d\x05\x3f\x01\xd7\xe5\x99\x7a\x2d\x04\x85\x0a\x04\xcf\xec\xc8\xf7\x1d\x25\x10\x95\xc4\x09\x46\x1e\x0d\x1d\x7c\x45\x53\x85\xc1\x9c\xb9\xfe\x24\xf8\x0c\x87\x5c\x69\xa9\x49\x9f\xb4\xad\xe8\x21\x20\x9c\x17\x21\xc9\x36\x0a\xe2\x56\x8c\xaa\x46\xb9\x3a\x9f\xd5\x2a\x92\x19\x7d\x6a\x10\xe6\x5e\x41\xea\x9d\x5e\x6a\x5c\xd9\x6b\x89\x51\x20\xe2\x1d\xe6\x9f\x5e\x1e\x53\x5b\x81\x67\xba\x61\x2f\xa4\x58\x28\xf6\xb3\xa8\x65\x29\xa3\x76\xce\xb3\xc6\x5b\xd6\x47\xe5\xcd\x54\xdd\x02\x86\x7a\x75\x96\x1c\xff\xd8\x7d\x16\xaf\xa0\x97\x15\x62\x6e\xb2\x90\xf1\x26\x5a\xbb\x6b\xdf\x12\xbe\x90\xac\x72\xc0\x1e\x1f\xb6\xe7\xcc\x81\x24\x5e\x2e\x12\xbe\xdc\x40\x44\x41\xcc\x0b\xb9\xac\x3e\xdb\x79\xe7\x82\x05\xa9\xdf\x8b\x75\x56\xf6\xff\x5e\xa6\x76\x21\x03\x2e\x80\xdc\x19\x38\x29\xc4\xf6\x67\x55\x81\xb0\x85\x66\xee\x90\xa4\x6e\xc5\xab\x6e\x1c\xdb\x9e\x3d\xa3\x10\xcf\x37\x98\xf6\x83\x72\xc3\x3a\x46\x10\x9d\xdc\x81\xc2\x3a\xc3\x02\xba\xa6\x64\x10\xd2\x6b\x7a\x19\xcb\xfa\x51\xf4\xb3\x44\x9b\x1d\x6c\x60\xec\xe3\x9d\x5d\x50\xee\x85\x38\x03\xc1\x55\x06\xea\x85\x36\x1b\x33\xd0\x6e\x7b\x57\xad\x44\xfa\x9f\x89\x06\x4c\x2f\xd5\xba\xc8\x59\xa5\x64\x69\x98\xbb\xc5\x66\x29\xb4\xe8\x46\x69\x77\x4e\xb6\xd2\x1e\x1f\x77\x01\xf7\xc3\xf2\x8c\xa2\x65\xf8\x40\xc8\xb9\xaa\x57\xdc\xe2\xe8\xd9\x52\x74\xa3\x18\xe0\xe7\xf6\x81\x4b\xed\x17\xb9\x16\x60\x47\x43\xfc\xcc\xf2\xdc\xae\x23\x48\x80\x84\x9d\xc7\x6f\x4b\x72\x08\xd7\xc6\x62\x3e\x08\xb3\xb1\x23\xf9\xab\x83\xde\x8a\xc8\xe1\xeb\x5e\x1a\x9f\x09\xd3\x71\x99\x28\xe2\x79\x5d\xf8\x76\x57\x2e\xda\x35\xc9\x5b\x40\x6f\xe9\xa8\x58\x9c\x03\x36\x3e\x34\xf6\xfb\x80\xcd\x0b\xee\x14\x97\x38\xd4\x05\x3e\xba\xf2\x01\x36\x1d\x7b\x26\x91\x19\x53\xcc\xcc\x71\xf7\x63\xb7\x3b\xc6\x74\xdb\x30\xff\x38\xe5\x43\x61\x79\xa6\xe0\xbe\x37\x57\x96\x96\x43\x10\x27\xb7\x88\xc9\x88\x5a\x4f\x30\x5d\x76\x87\xe6\x39\x61\x91\x2c\x8a\xdf\xab\x39\x83\xf9\x0e\xb5\xb0\x9f\xc5\x1b\x1d\x30\x35\x22\x7d\xb6\x54\x37\xb6\xb3\x4e\x27\xce\xb7\x80\xdd\x4c\x29\xcc\x5d\xd5\x8c\xb3\x95\x02\x1d\x2a\xcf\x25\x8d\x84\x3d\xba\x20\x41\xcc\xe0\xfd\x6c\xe3\x93\xe8\x34\xd7\x84\xd4\x61\x66\x7c\xd0\x7c\x4a\xde\xb1\x91\x3d\x6b\xd4\x01\xd8\xde\x32\x88\x3d\xca\xd8\xca\x4a\xee\x55\x21\x98\x91\x2b\xa1\x47\x34\xd6\xcf\x2e\x16\xda\xed\x83\xdb\x96\x72\x26\x26\x40\x7a\x8a\x82\x89\xd2\xfb\x21\xa6\x23\x81\x00\x5f\xa2\xe8\x0e\xc3\x20\x9f\xd8\xa3\xb0\x7d\xc7\xac\xf6\xa9\xd3\x95\x58\xa9\x7a\xe3\xbb\xfd\x20\x44\x45\xa1\x7d\x6a\xce\xaa\x5a\x5c\x4b\xb5\xd6\x4e\xaa\xc4\x10\x06\xbb\xc5\xdc\xae\xb9\xdc\x84\xb1\x79\x6e\x39\x23\xd8\xef\x4e\x27\xf0\xb3\x30\x25\xcb\xc6\x4e\x85\x28\x69\x3e\x98\x86\x9d\xdf\x70\xca\x09\x0e\xed\xb8\x11\xda\xb0\x0c\xa6\x23\xff\x10\x79\xe6\xfa\xa2\xa1\x77\xcd\x1f\xd5\x31\xcd\x6d\x89\xce\x28\xde\x0f\x98\x24\xed\x47\xa9\x58\xbe\xae\x0a\x39\xb3\x70\x4a\xba\x31\x3b\x5b\xd7\xb1\x36\xaa\x7a\x5b\xbe\xb4\x64\x75\xd2\x01\x66\xba\x5e\x57\x78\xac\x60\xb0\x05\x91\x36\x1a\x87\x32\xc6\x21\x21\xc6\x3e\xc6\x0e\xb5\x3e\xa7\x46\x3a\x15\x35\xa2\x4b\x9d\xf8\x29\x79\x24\x54\xab\xd5\x36\x66\x69\xc3\x27\x14\xb0\x66\x59\x2d\xc8\x14\x26\x88\x85\x70\x88\x05\x4d\x48\xfd\x6e\x27\x04\x8f\x93\x1a\xc4\x3f\x88\xd5\x93\x56\x5c\xeb\xed\x44\x2d\x77\x77\xbb\xd1\x13\xca\x74\x8d\xc8\xe0\x3f\x3f\x0e\x42\x13\xcb\xa3\x58\x0c\x36\x1e\xb3\x9f\xb8\xc6\x30\x3c\x12\x94\x7b\x96\xc1\x2b\x55\x69\x17\xb6\x10\xc6\x80\x6c\x69\xcf\x44\xf7\xbb\x1d\x82\xd4\x81\xd7\x33\x03\xda\xfe\x50\xaa\x1b\x88\x98\x80\x9b\x18\x89\x4b\x00\x6a\x68\x57\x13\xf9\x7d\x1f\x59\x29\x0c\xd3\x6b\x15\x1b\x62\x48\xf1\x33\xcc\x7b\x0e\xdf\xd9\xcd\x4b\x12\x09\xc3\xa4\x7b\x8d\x9c\x32\x96\x35\xe1\x79\x8e\x01\x6b\xb2\x86\xb0\xbd\xbe\xef\x0b\x12\x7f\x51\x87\x67\x65\xee\x8c\x16\x85\x52\x15\xc2\x52\x63\xec\x9f\xbc\xd9\xc7\x32\x8e\x65\x2e\x6e\xed\x27\xcd\xa9\x86\x59\xf5\x7c\x74\xf3\x74\x43\x7a\xc6\x00\x16\x61\x1a\xd0\x13\xf5\xfa\x03\xfa\x2b\x27\xf8\xa3\xdb\xe9\x14\x28\xdd\xa2\x5d\x0a\x05\x24\x44\x07\xb0\x6a\xdb\x1a\x0d\x62\xb5\xa8\x04\x8f\x0e\xa9\xdb\xe9\x60\x06\xa5\x13\xb6\xe7\x48\x0d\xdc\xb5\xfd\xfd\xd0\xd9\x4b\xd7\x07\xdc\x07\x3a\xa0\xe4\x5a\xc4\xee\x7f\x78\xe6\x81\xcc\x8d\xe8\x81\x65\x5b\xb9\xe1\xa8\x1b\x07\xa4\xe2\xc9\x52\xb2\x50\x34\x19\xbb\xdd\xb7\x90\x7b\x18\x35\xc1\x87\x27\xc9\xb3\x9f\x9c\x66\xd1\x2e\x29\x36\xc7\xd3\x7e\xc7\xe3\x90\x29\x09\xf6\x6b\x7f\x9f\xc5\xe3\x3e\x61\x71\x77\xc7\xf1\xbb\x48\x91\x83\xf9\x24\xa4\xb6\xd4\x35\xfa\xf8\xca\xa9\xaf\xed\x1a\xc1\xac\x36\xa0\x3f\x8f\x1a\xfe\x46\xfb\xfb\x81\xa8\x07\x7c\x15\x14\x45\x7e\xff\x50\x3c\xb0\x97\xee\x9d\x02\xb4\x0e\x11\xb0\xeb\x1a\x0b\x5e\xc0\x91\x22\x6d\xe6\x39\xfa\x38\xc7\x0e\x4c\xde\xca\x13\x36\x21\x44\x56\xf9\x35\xa4\xab\x42\x48\x48\x79\x7e\x78\xd6\x70\xfe\xa5\x03\x74\x2f\xf5\x52\xce\x4d\xaf\xcf\x1a\x8c\x6f\x24\x6e\xd3\x92\xfc\xe7\x1e\x5a\x8f\x5b\x14\x72\x5a\x14\xf3\x51\x2e\xb5\x05\xd2\x5e\xbf\x69\xb3\x4a\xaf\x41\x40\xd2\x3e\x4b\x06\x24\x05\x39\xf1\x52\xeb\x0f\xf6\x72\x87\xeb\x02\xdc\x43\x50\xa5\xc3\xf5\xf4\x7d\x90\x5d\x80\xae\x54\x87\xe7\xdb\x29\x7c\xda\xf6\xce\xa3\x1b\x88\x46\xd4\x9c\x12\xe3\xb8\x04\x80\xb8\x77\x5d\x22\x8c\x35\xe5\x07\xde\x06\xd6\x58\x0a\xe3\x79\x9e\xfa\x37\x46\x2e\xd7\xc0\x16\xa2\xf5\x2a\x61\xff\x82\xd9\xda\x0f\xd5\xee\x30\xb4\x08\xc2\x4e\xb0\x7a\x35\x1d\x81\xa2\x9e\x5c\x50\x23\x01\x2d\x19\x53\xee\xee\x20\xc9\xf4\x7c\xb4\xe4\x9a\x7a\x4d\x3e\x82\x43\x26\x03\x7e\x3a\x26\x01\x48\x03\x46\x6c\x1b\x70\x5c\x59\x38\x68\x23\xbd\x7f\x6b\x50\x80\xdb\xf7\x57\xa5\xae\x2c\x53\x5d\x43\xba\x11\x79\x2d\x8a\x8d\x7f\xed\x36\x31\x1a\xda\x8d\xfc\xd1\xc3\x6a\x3f\xb1\x24\x1d\xfb\x03\x7d\xa1\xec\x61\x42\x44\xb9\x51\x40\x22\x62\xb6\xcd\xc1\x8a\x6f\xee\x0e\xdb\x69\x47\xac\x10\x7a\x1a\x5d\x23\x7a\x9e\x5c\xa0\xfb\x30\x17\xfa\x74\x5b\x4e\x8b\x48\x68\x48\xa4\x52\x2a\x3f\x8c\x59\x8a\xd2\xb7\xb6\xb0\x87\x72\x15\x70\x7a\x81\x63\xeb\x6e\xed\x75\xf3\x3e\x36\x70\x2b\x40\xe8\x71\x72\xd3\xdd\x17\xdb\xde\x91\x5b\x09\x5a\x3f\x3a\xb7\x87\x5f\x90\xa0\xc5\x29\xe4\x2c\x73\x14\x5f\x31\xa4\x79\x9f\x77\xcb\x9a\xf0\xef\xec\x8b\xf7\x5c\x02\x7b\x07\xc0\x9d\xcb\x2d\x06\x7c\x80\x7a\xe0\x73\x82\x94\xc6\x69\x34\x4a\xf2\x67\xe0\xf5\x62\x00\xe3\x0e\xa8\x89\x05\xea\xa7\x90\xf8\x2c\x00\x1e\x1c\x16\xa6\xc3\xa2\x9e\x7c\x0a\x04\x77\x18\xa4\x11\xa5\x73\x82\x36\x42\x27\x97\x6e\x0b\x22\xbc\x37\x0c\xd0\xa2\x93\x84\x18\xa5\x37\x2b\x7e\x33\x1c\xb6\xdc\xab\xd6\x9e\x5e\xd1\x7a\xb6\x3a\x82\x17\xad\xfd\xf8\xeb\xd2\x4d\x6e\xcd\x27\xce\xfd\xb9\x2a\x4d\xad\x0a\x0b\x6a\x9c\x2d\xe4\xb5\x08\xa9\xd3\x2c\xe7\x16\xf1\xed\xf6\x83\x25\xd7\xad\x89\xf7\x9a\xd1\x78\xfe\x88\xe6\xe5\xc0\x41\xc6\x53\xf4\x54\x6b\x81\xb9\xa2\x88\xee\xea\x16\xd8\x81\x79\xa2\x05\xea\x1a\x74\x69\xe7\x0a\x7f\x74\x38\x1e\x3e\xc8\x95\xbd\x93\x4b\x72\x4a\x58\x41\x02\x95\x4e\x87\x28\xd8\xee\x51\x1c\xdf\xe5\xe9\x7d\x62\x71\xbf\x67\xf4\x57\x9a\x49\xc3\xa8\xff\xfc\x34\x1a\xac\x8d\x5e\xb9\x34\x01\x76\xd4\xb4\x9f\x9f\x14\x45\xca\x23\x4f\x5d\x32\x69\x3c\x5f\xcd\x40\x15\x6b\x1b\x16\x2a\x49\x08\xea\xba\x75\xb3\x6f\x4c\x1a\x49\x45\x13\xbf\xec\x24\xe9\x9f\x5a\xa4\x1d\x9c\x96\x88\x7f\xde\xb3\x40\x98\x51\x03\x12\x41\xe4\x4d\x60\xc1\x4b\xaf\x04\x98\xe4\xb5\x61\xf9\x7f\x8f\x53\x1c\x87\x6a\xf1\x6f\x92\x57\x30\xf6\x4c\xf0\xab\x23\x17\x08\xf8\x87\x5c\x89\xa3\xc7\x17\x0d\x7f\x06\x2c\x04\x75\x1a\xfd\xe8\xf5\xd9\x04\xbf\xbe\x3a\x6e\xe0\x3e\x70\xdc\xda\x43\x66\xf9\xee\xce\xf3\x67\x29\x87\xb6\x85\x48\x90\x2b\xf3\x94\x37\x90\xb5\x46\x3a\x2a\xc4\xec\x69\x8b\xcf\xba\xdf\x6e\x57\x53\x8a\xd8\xd8\xd9\xad\xdd\x6c\x03\x22\x0b\x17\x6e\xa7\x5b\x72\x42\x7e\xe2\x22\xbc\x0b\x62\x61\x3a\x15\xf0\xc1\x76\x52\x25\x68\x31\x9c\xd1\x8e\xb2\xe4\x80\x3e\xc1\x0b\x22\xf7\x00\x15\x6e\x7e\x50\xe0\x1e\x77\xbb\x41\x9f\x5c\xcc\x41\x57\xdb\x4c\x3f\xd5\xed\x38\x85\x47\x82\xd8\xd6\xe5\x2c\xf6\x41\x5a\x57\x05\x94\x03\xba\xe8\x12\xc9\xe0\xd0\x70\x00\xbc\x46\x41\x56\x9c\x81\xff\x8b\x88\xd2\x1c\x1c\x55\xfc\xe5\xec\x5c\xb0\x8c\x12\xce\x64\x03\x96\xe5\xaa\x14\xc1\x92\xe1\x99\xe3\x5e\x06\x22\x1d\xde\xca\xac\x3f\xf0\xdf\xe4\x19\x43\x47\x46\xec\x07\x94\xc2\x03\x96\xcd\xb9\x2c\x3e\xb3\x1b\xfb\x49\xda\x4d\xa9\x8c\x9c\x6f\x6c\x37\x55\xad\x16\xb5\xd0\xba\xb5\x2b\xd7\x0b\xbb\xb2\x1f\xe2\xe7\x1a\xad\x8c\x2c\xa3\xe4\x4a\x19\x3c\x0d\x16\x5f\x8f\x79\x4c\x1b\x30\x85\xc0\x2c\x6e\x9c\xab\x1b\xce\x0a\xcd\x40\x6d\x9f\xb8\x82\x79\x94\xb9\x35\x02\xbd\x91\xdd\x84\x36\xde\x70\x3b\x1f\x3d\x0e\x62\x79\xb1\xf8\xbc\xc7\x0f\xd9\xbc\x7c\x01\x89\xd5\xe6\xe5\x4b\x2e\x0b\xfb\xef\xcf\xb4\x25\xec\xe1\x38\x5c\x58\x0b\x0e\xf3\x34\x39\x60\x3a\x56\xd3\x66\x1d\xa5\xb1\x16\x37\xf0\x74\x97\x98\x80\x50\x16\xf3\x48\x72\x80\x0f\x9b\xa2\x02\x42\x9f\x15\x95\xed\x5b\x14\x60\x3d\x43\x80\x4e\x1c\x25\x7a\x54\xc6\x6c\x8e\xdb\xbf\x0b\x66\x37\x90\xdd\x31\xbb\x6b\xec\x8e\xb9\xa3\x67\x57\xa0\x75\x98\xab\xfa\x86\x43\x4d\x41\x1a\x07\xf8\x67\x37\x79\xd7\x5f\xe8\x0c\xe7\x70\x74\xc5\xae\x5a\x73\xcf\x03\x8f\x70\x1a\x66\xb7\x75\xac\x6e\x51\xb8\x7f\x82\x9c\xb4\x76\x65\x9e\x0d\x8c\x0f\x45\x73\xbb\xaf\xda\xdd\x6a\xdc\x6b\xef\x8a\xd0\x90\x7b\x3a\xcd\x06\xbd\x7e\xf4\xb2\x43\xa0\xe6\x16\xef\xf2\x45\xb1\xb4\x11\x42\x5f\xd4\x08\x4c\x07\x69\x1b\xb7\xc9\x51\x3b\xbc\x7c\xc9\x92\x1a\x48\xdf\xfe\xcf\x35\xbf\x70\xa7\x7e\xc0\x32\x8b\x81\x33\xbb\xdf\xe0\x61\x68\x85\x41\x5f\x4c\xf2\x34\x80\xd9\x84\x76\xef\x22\x6c\xd2\x55\x3a\x5a\x60\x22\xc9\x53\xa4\x75\xc0\x2b\xf7\x2a\x98\xdd\xfc\x5f\x78\x15\x82\xcf\x4d\xe7\x63\x3f\xec\x64\x72\xe5\x28\x15\x3c\x67\xee\x24\x30\xd0\x4d\x6a\x3f\x77\xd7\xec\xd5\x1c\x6c\x6b\x52\xdb\xa6\xd7\x32\x77\x59\x43\xdc\x87\x1c\xa5\x48\xa9\x49\xdd\x4c\x9a\x80\xa8\xf2\x05\xb5\x6c\xcf\xa1\xd2\x69\xcd\xed\x74\xda\xcc\xb6\x08\xb1\x93\x01\x6a\x26\xee\xef\x58\xc7\x01\x2b\xf3\x5b\x4f\x46\x2b\x58\xc3\x7f\x08\x51\xb1\x4a\x56\x6d\xf5\x66\xa8\xa3\x11\xbc\x3e\x71\xfd\x8e\x2c\x4e\x8a\x93\xa8\x5b\x1a\x32\xa4\xc4\x29\xb3\x50\xc4\xf2\x5f\xc5\x19\x10\xef\x81\x4c\x2c\x61\x8b\x47\x0e\x5b\x00\xf2\xf5\xc5\x29\xe9\xed\x57\x2e\xd9\xe8\x78\xec\xa6\x76\x0f\xc2\x20\x61\x98\x94\x5a\xbe\x7d\xc0\x09\x51\x8b\x50\x87\x03\xe5\x2d\x4f\x18\x9d\xee\xca\x4f\x26\x66\xbe\xed\x97\xbd\x6d\xac\x31\x1e\x33\x47\x81\x2c\x7c\x23\x85\x64\x77\xcc\x51\x39\x07\xb5\xae\x51\xd4\x7d\x70\x45\xbb\xa0\xe6\xbf\xc3\x06\xdd\xb9\x7e\xf0\xe7\x95\x63\x82\x8f\xfd\x82\x7f\x47\xc9\x5f\x51\x01\xa8\x8f\xb4\xd5\x80\x6a\x7f\x63\x47\xec\x0a\x36\xd7\x7d\x17\xde\x3e\x72\x6f\xec\xa7\xcd\x12\x4f\x01\x93\x3a\xec\xe2\x56\xc1\xee\x18\xe1\x08\xbf\x8d\x96\xc3\xe9\xb6\xa0\xdf\xc3\xab\xb4\xcd\xf1\x8e\x46\x01\x79\xc4\xad\xed\x23\x70\x3e\xf3\xae\x26\x90\x88\xc3\xc4\x55\x6a\xfd\xc5\x8d\x21\xd8\xd9\xc2\x7d\xab\xc8\x43\xab\x28\x88\xb9\x04\x66\xca\xca\x97\xa5\x4f\xb2\x18\xf1\x57\x40\x11\xc8\x6d\xcd\x75\x33\x48\x3a\x8c\x22\x66\x8b\x02\x40\x71\x2f\x78\xa4\xb9\x86\x91\xbb\xae\x23\xbd\x6c\x29\x8a\xca\x52\xac\x9b\x06\xb5\xd7\xeb\x29\x14\xcd\xb5\x90\x31\x7e\xc8\x06\x6c\x34\x1a\x0d\xe2\xa7\x6f\x02\xc9\x07\xad\x84\x77\x8b\xa5\x13\xfa\x3b\x9a\xcc\xee\x73\xa5\xa6\x1c\xe9\xde\x8f\x36\xf9\xd2\x87\x9c\x10\x08\x60\xc6\xb3\x75\x69\xd0\xff\xd9\x79\x6d\xe5\xf1\x9c\x34\x8e\xbf\xe2\xb2\xc4\xfb\x1a\xc5\x96\x1c\x41\x6a\xdd\x64\x5d\xed\xe4\x30\x6a\x91\x50\xc4\x53\xd7\x1b\x95\x26\xf1\xb3\x5a\x41\xbd\x64\xbf\xa5\x23\x8b\x9c\xd3\x4d\x98\xa9\x52\x93\xe5\x18\xac\x80\x9c\x61\xe2\x20\xff\xcd\x00\x5d\xdc\xd7\x1a\x13\xb6\x8d\x1a\x38\x33\x5a\x12\xac\xe4\x34\x59\xc6\x64\xdb\x07\xd0\xcf\xef\x6f\x55\x6e\x9b\x78\x3d\x2c\x60\x5a\x65\x96\xfe\x1e\x41\xad\x0d\x87\xab\x82\x27\xec\x1a\xbe\xb3\x9b\x92\x98\x45\xa4\x8f\x3e\x70\x8e\xa5\x7a\x2b\xdd\x59\xd3\x5d\xd7\x61\x23\xf7\x21\x85\xf1\x45\x0c\x27\x99\x57\xdd\x8b\x66\x22\x72\xf6\x14\x96\x7c\xaf\xc3\xfc\x24\x0e\x08\xe9\xc8\x79\xcf\xcd\xce\x6e\x98\x5b\xdf\xdf\xd3\x09\x47\xdc\x32\xa2\x10\x14\xda\xb6\x17\x98\x4a\x9b\xa8\x11\xe8\xb1\xe1\x30\x1c\x4b\xbf\xad\xd3\x24\x71\xe6\xee\x5e\x11\x4d\x3a\x41\x90\x48\x44\x34\xdf\x81\x9f\xff\x73\xdf\x07\x75\xed\x1e\x38\x84\x12\x4b\x5a\xc0\x91\xfa\x6b\x1e\x5f\x92\x63\x0c\xd6\xc2\x42\xe3\x9a\x71\xed\x69\x83\x43\x3d\xd1\xbe\xd3\xba\x1a\x5b\x48\x79\x61\x50\x7f\xe5\x6c\x29\xc7\x71\x43\x37\xb5\x7b\x9a\x36\x16\x71\x4f\xcb\x4f\xc5\x4b\x11\x97\x1b\x5d\x39\x84\xa5\x5d\xfc\x6e\xb3\x61\x1b\xe7\xbb\xbb\x95\x67\x7f\x89\xf3\x0d\x77\x05\x2e\x48\x63\x59\x83\x06\x2e\xe8\x7b\xa6\x97\x78\xe2\x08\x5e\x12\x9e\x38\x62\x87\x1b\x23\x6c\xc3\xc3\x16\x84\xf7\xdb\x0c\x51\x11\xc4\xee\x88\x9c\x4a\x74\xf2\xce\x39\x0c\xea\xd2\x6f\x40\x1f\xe8\x17\x13\x21\x3e\x1f\x86\x13\x5f\x87\x3f\xbb\x3b\x6f\xc2\xa7\xf6\xa7\xe9\xe1\xed\x7b\x89\x79\x66\xf4\xa4\xa6\xc3\x75\x3e\xb2\x27\x2c\x65\x82\xd0\xc6\x4f\x6f\x2d\xa9\xe1\x18\xc3\xc1\x07\x5d\x57\xce\xd0\xfe\xa5\x2a\xf8\x47\x96\xd5\x1a\xfe\x70\xb9\xcd\xec\xdf\x60\xa3\x7c\x43\x49\x40\x24\xfc\x47\x9f\xbb\x3c\xaf\xf6\xe7\xac\x90\xb3\x0f\x2f\x4b\x28\x96\x20\xaf\xe3\x82\x80\x69\xae\xb7\x2c\x97\xd7\x59\xff\xd8\x65\xaa\x35\xeb\xaa\x6b\x3f\x18\x69\x61\x7e\x30\x58\xe9\x5f\xf4\x58\x06\xfe\x69\x76\xbc\x6c\xc0\x32\x83\xe9\x03\x6c\x33\x59\x96\xa2\x86\x72\x9b\x27\x2c\x63\xec\x49\x21\xcb\x0f\xe3\xa7\x4f\xc0\xf0\xfd\xf4\xc9\x98\xfe\xe5\x6c\x59\x8b\xf9\xc9\x83\x31\x7f\xf0\x94\x3f\x19\xf3\xa7\x4f\x60\x51\x60\x75\x3a\x79\x00\xde\x18\x53\x75\xfb\x60\xfc\x34\x73\x13\xa1\x9d\x33\x42\x1b\xcd\x6e\x20\x13\x68\xbd\x2e\x21\x26\x5b\xad\x04\x2b\xe4\x4a\x82\x7f\x13\xba\x44\x78\xc7\xf0\xf2\x5a\xd6\xaa\x24\x6d\x98\xe5\x62\x4e\x98\x9d\x65\x6b\xe2\xa5\xec\x21\x78\x33\xf2\x7b\xdb\xf0\xac\x0f\x22\xfa\xb1\xf3\x79\xe7\x18\xe7\xbf\xc7\xf1\xbf\x45\x91\x9a\x6c\x09\x36\xe2\x62\x0a\xe8\x20\x01\x86\x2a\xf0\x6b\x10\xe0\x0d\x80\xc7\x7c\xcf\xb9\x60\x03\x98\xa2\xaa\x42\xa5\x35\x2b\x5c\x8b\x32\x7f\xbe\x94\x45\xde\xdb\xf9\x31\x9a\x10\xa9\x72\x0b\xee\xf5\x7d\xab\x84\x16\x7e\xa5\xdd\x0e\x1f\x69\xb3\x29\xc4\x68\xa6\xf5\x3b\x0c\xb5\xcb\x8c\xaa\x26\x47\xd5\xed\xf1\xbc\x50\xdc\x4c\x0a\x31\x37\xc7\xaa\xe2\x33\x69\x36\x93\xd1\xe3\xec\xb8\xdb\x09\xc0\xfe\x27\xb9\x65\x9c\x41\xfe\x86\x4a\xbb\x44\x78\x71\xfe\x3b\x70\xea\x88\xa0\x27\x38\x43\x53\xe3\x5f\x7d\xdb\x09\xeb\xc1\xd4\xc1\x4b\x07\xd6\x1d\x52\xb9\x5a\x2a\xfa\x15\x43\xb6\x62\x3b\xbd\xac\xc1\xc4\xdd\xbe\x7c\x17\xa6\x43\xe6\x6b\xa3\x56\xdc\xc8\x19\xb8\xa5\xc8\x52\x0b\x7b\x67\xfc\x9c\x29\xff\xa4\x7d\x0a\xf9\xfd\xd1\x49\x11\x6b\xd1\x01\x38\x5b\x3e\x04\x7a\x9e\xb0\xbd\xdd\x5b\x0a\x2d\xb2\x7e\xcc\x2d\x6e\x4f\xd0\xde\x96\x30\xbf\x85\x30\x4c\x8b\x5a\xf2\x42\xfe\x21\x72\xcb\x57\x50\x9d\xc8\xa9\x9d\x26\xed\x94\xab\xe5\x0f\x8e\xce\xff\x5c\xcb\x1a\xf2\x77\xdd\xd4\x16\x2c\xea\xb8\x60\x14\x64\x4b\x5b\x9a\x55\x71\xee\xba\x9c\xb0\xbd\x7b\x26\x6c\xe7\xb2\x35\x5f\x57\x00\x0e\xc0\x81\xc9\x12\x9d\xaa\x80\x61\xab\xd5\xca\xce\xd8\x23\x09\xfc\xa0\xf7\xea\xcc\x1e\xa4\x66\x1e\x76\xa8\xfa\x66\x1f\x1c\x60\x36\x85\x98\xb0\xb1\x51\xd5\x98\x72\x71\xf1\x51\xdc\x47\x2f\x83\x26\x16\x6e\x77\xec\xd8\xdf\x7e\xf9\xc9\x1f\xe4\x8a\x97\x12\x1d\x77\xf3\x30\x38\xe6\x33\x97\x7f\x08\x30\x6b\x4c\xbd\x67\xa2\x1d\xdf\x22\xa1\x37\xee\x7d\x6e\xe1\xaa\x39\xbc\x6d\x91\x51\xc2\xe9\x31\xcf\x76\x4e\xc3\xed\x33\x5d\x01\x4a\x0e\xdf\xd8\x82\xb9\x2c\x5c\x29\x1e\xda\x00\xf2\xd7\xe6\x54\x8e\xd8\x28\xf0\x98\x67\x98\x5a\x8d\x71\xf6\xab\x98\xfe\x87\x34\x18\x7c\x42\x15\x00\x1e\x1f\x7d\xfd\x18\x68\x01\xde\x35\x36\xfe\xed\x70\xf4\x38\xec\x1e\xde\x53\x37\x0d\x3f\xdd\xbf\x8b\xda\x8a\x9e\x78\x6c\x70\x65\x71\x8a\x02\xb5\xf1\xf1\x2c\xa1\x0d\xa4\xb3\x8e\x0b\xa5\xce\xb4\x86\x67\x76\xd6\xee\x6f\x0b\x3f\x11\x66\x80\x67\x3b\xf6\x47\xce\x59\xa9\x88\xd1\xde\xaa\x71\xcc\x99\xc3\xf8\x51\x1a\x04\x69\x92\x7c\xb1\x99\x2a\x33\x0a\xe6\xe9\xd1\xae\x24\xaf\xb3\x78\x5b\xa1\xbb\xb7\xe5\x04\x4c\xb1\xd5\xda\x8c\x28\xca\x1b\x02\x18\xcb\xdd\xa7\xc8\x09\xa7\x8a\x7c\x38\xdd\x0c\x9d\x0b\x2b\x79\xb8\x42\x78\x11\x9c\x8f\x45\x5d\xae\x61\x33\xa1\x75\xdb\xe4\xd0\xfb\x28\xda\x4c\x4c\x6c\xfb\xea\x8c\x19\xa5\x06\x3e\x52\x54\x96\xe4\xc2\xbb\xa8\xd5\xba\xea\x23\xc1\x3f\xa7\x71\x26\xf6\xc5\xc8\x8d\xea\xe6\xff\x4e\x68\x28\x26\xe7\x21\x16\x92\x30\xfb\x34\x67\x40\xa4\x41\xcc\x93\x06\x66\xae\x07\xde\xb7\x82\x1b\x53\xbf\x94\xb7\x82\x7c\x33\x73\x65\x57\xb5\x10\x66\x9c\x74\xd7\x93\xe2\x9b\xf1\xb7\x76\x2e\x0b\x61\xce\xa3\x37\x13\x40\xc1\x9e\x0b\x40\x57\x11\x93\xc5\x13\x43\xbf\x37\x51\xce\xc0\x97\xc4\x91\x03\xcb\xa4\x81\xc3\x38\xeb\x7d\xf1\xcd\xb7\x5f\x7f\x65\xfb\xa6\x36\x80\x8f\x76\x10\x30\xfb\x45\xd6\x1f\x51\xcb\xf8\xfc\x34\x1e\xe0\xac\x50\x25\x1a\x82\x21\x1d\xf0\xe3\x50\x5d\x57\x09\x0d\x6c\x22\x66\x2f\xaf\x6a\x35\x2d\x7c\xc6\x8d\x5f\x21\xde\x4c\xad\x4d\x44\x76\x9c\x5d\x95\xea\x91\x6a\x63\x09\x00\xec\x1e\x21\xd0\xc7\xcf\x0b\x55\x8a\xc9\x4e\x62\x5b\xf2\xeb\xac\x8f\xb9\x69\xdf\xa8\x5c\xb8\xc2\x18\xa3\x30\x0c\xec\xd6\x93\x49\xc9\xaf\x9f\x3e\x19\xc3\x3f\x7e\xe7\x52\x56\x71\x34\x55\xb7\xaf\x21\x3a\xe8\xc5\xd9\xcf\xbf\x9c\x3d\xff\xe1\xdd\xd9\x0b\x0b\x28\x47\xa3\xef\xac\x68\x6e\x09\xa7\xa0\xc4\xe8\x6e\x83\xff\x73\x2d\xeb\x0f\x9a\xd9\xaf\xba\x9d\x8e\xfb\x7e\x12\xc7\x5e\xa1\xf6\xd2\x3e\xc7\x3b\xf1\xfc\xfc\xfc\xe8\x39\x3c\x8b\xee\xc6\xaf\x94\xce\xd9\x85\xba\x42\x1d\x31\x8b\xb4\xd7\xd3\x95\x34\xcf\xd6\x53\x4b\xfa\x26\x08\xcb\x70\xe7\x78\xb9\x10\x5b\x8f\xe7\x6a\xb6\xd6\xb2\xf4\xcf\xa9\x42\x8a\xe5\xb9\x0b\x61\xc4\xd9\x6d\xc5\xcb\x5c\x85\xf6\xa5\x82\xcd\x85\x18\xa1\xf0\x54\x96\x85\x2c\xc5\xb3\x42\xcd\x3e\xbc\x11\x22\xd7\x3f\xf1\x8d\x5a\x9b\xa8\x37\xbd\xac\x65\xf9\xe1\xd7\x9a\x57\xd0\x28\x1e\xa8\x16\x85\xb4\x64\xfa\x35\xaf\x17\xb2\xfc\x45\x2e\x96\x51\xc7\x53\x75\x7b\x2e\xff\x90\xe5\xe2\x17\x6a\x15\x5e\x55\xf2\x56\x14\x3f\x2b\x0d\x8e\xee\xd4\x5f\x17\xed\x90\x09\xe6\x00\x64\x63\x25\x57\xc3\xcd\x5a\x93\xa6\xbb\x12\x75\xb1\xc1\xf2\x3e\x39\x31\x5c\x23\xd7\xd0\x3b\x45\xba\x33\xa6\x35\x3f\xf7\xef\xa9\xfd\x16\x00\x51\x0f\x5b\x53\xf0\xd5\x3e\x42\x1c\x85\x96\xb9\xf0\x9e\x0a\x84\xad\x22\x42\x59\x7f\xc0\x14\x28\xae\x45\x37\xc6\x5d\xf6\xb5\x46\x5e\x27\x6a\xd2\x77\x3c\xea\xc8\x77\xbb\xb5\x12\x55\x99\x17\xe1\xe5\x9e\x45\x59\xae\x31\x4d\x1a\x30\x56\x88\xd5\x02\xc4\xe7\xcb\x99\x61\x4c\xa2\x30\x18\x18\x80\xa0\x81\x8c\x05\x2f\xdd\x7d\x46\x16\x1a\xaa\x64\xc8\xd6\xa4\x9c\x2e\x20\x8a\x7a\xb2\x68\xca\x12\x47\xcb\x7f\x37\x13\xb8\xba\x69\x27\xb0\x18\xf9\x6b\x5a\x86\x9d\x52\xe6\xca\xeb\xed\x88\xc5\xfd\x7d\xe8\x3d\x8a\x6a\x73\x8f\xe6\xb2\x46\x10\xa6\x81\x1a\xcd\x20\xf8\x0d\x04\xb2\x6c\xc0\x48\x30\x6b\x49\xd0\x30\x1e\xb3\xe7\x0e\xab\x41\x59\x04\x72\x33\xb3\x47\x08\x25\x9f\xd4\x35\xd6\x30\xa1\xc6\x58\xc9\xc4\x05\xc3\x42\x46\x05\x0d\x74\x1d\x50\xa0\x45\x66\x20\xb2\x37\xc0\x0e\xe7\x19\x39\xa9\xa2\x41\x08\xd1\x7b\x13\x02\xfd\xc2\x7a\x7e\x05\xbe\x75\x2e\xee\x5f\x60\x3f\x88\x40\x58\x5e\x1e\xdc\x94\x6a\x9e\x4b\xc5\xac\x40\x6e\xb8\xb4\xa0\x6b\xb4\x8b\xee\x1f\x8f\x29\xd6\x17\xeb\x36\xa3\xa0\x13\x6c\x44\x2f\xde\xbe\x8e\x64\x99\x1d\xb8\x98\x24\x19\x27\xf5\x38\x4e\xc0\xd2\x2a\xff\xac\x21\xda\x5a\x02\x63\xa5\x5a\x98\x19\x4a\xb6\x6e\xcb\xe0\xd1\xdf\xa9\x8b\x2d\xd6\xc2\x80\xb4\xda\xda\x27\xdd\x5c\xdb\xad\xfb\x93\x39\x21\xfb\x8b\xa3\xa3\x47\x47\xdf\xb2\xa1\xe3\xf6\x0a\x65\xd9\x30\x0c\x49\xf0\x65\x93\x30\x05\xa4\x8e\x82\x9f\x1d\x3a\xe1\x81\xe1\x6e\x1d\xba\x4c\x84\x74\x94\xd2\x13\x99\x11\xb7\xd0\x2e\xd3\x27\x50\xdf\xda\xcf\x17\xf4\xd3\x67\x77\x8f\x9b\x37\x44\x50\x79\x3d\x2a\x38\x49\x66\x7e\x91\x8e\x2d\x52\x42\x03\xf8\x42\xb9\xb4\x18\x75\x8a\x48\xbe\x91\xa5\xaf\x2a\xa0\xc3\xe6\x43\xeb\xe7\x54\xc9\xcd\x8f\xdd\x82\x25\xb7\x9e\xf8\xe9\x34\x30\x68\x04\x86\x10\xc6\x5d\x96\xc8\xd3\x39\x76\x14\x65\xbf\x5a\x40\x4d\x0b\xf0\xd1\xc2\xcf\xe1\x63\x3c\x78\xe2\xe6\xe8\x5c\x5a\x40\xd4\x5e\x40\x64\xa1\xdc\x3a\xdc\x6e\x35\xb0\x7d\x98\x99\x5f\x1b\x3a\x69\xee\x3c\xa6\xad\x7d\xf7\xbb\xfd\x4e\xcc\x96\xe8\x2c\x0c\xd8\xf3\xaf\xeb\x5a\x6e\xd8\xff\xe6\x1b\xa3\xc5\x75\x9c\x8e\xb9\x12\xf5\x1c\xfd\xb1\x3f\xc8\xa2\xd0\x10\xfc\x99\x0b\x63\x1f\x95\x8b\x21\x60\x92\x21\x4d\x7b\x78\x23\xcd\x52\xad\x8d\xd3\xad\x0c\x75\x29\xe7\x73\x59\x2e\xc6\x74\xbe\x68\x31\x98\xf1\x5a\x30\x3e\x55\x6b\x43\x9e\x41\x58\xd4\x12\x34\x75\xe5\x50\x53\xf4\x38\x21\x29\xbd\xd1\x98\xfc\x0c\x6b\x13\x81\xc4\x8f\x31\x90\x08\x04\xaf\xce\x46\x58\x2b\x7f\x38\x93\xf5\x6c\x8d\x5a\x3e\xe8\x6c\x29\x8a\x4a\xb3\xb5\x65\xaf\xf1\xeb\x6b\x25\x73\x0c\x27\xa3\x18\x0d\xd6\x93\x65\xc2\x1a\xf7\xd9\xcd\x52\x42\xa2\x81\x92\x58\xc1\xe7\xe7\x3f\x63\xc1\x35\xc5\x16\x8a\x2d\xf9\xe6\x46\xd6\x28\x66\x61\xec\xbe\x9e\x8c\xc7\xb9\xb8\x16\x85\x25\xe7\xa3\x95\xfa\x43\x16\x05\x87\x34\xf4\xa2\x1c\x9f\x8b\xd9\xba\x96\x66\x33\x86\x5e\x30\xb6\xbd\x41\x0c\x10\x8d\x47\x29\x52\xfe\x44\xf4\x6b\xf9\xa7\xc0\x67\x10\xe7\x14\x3d\x20\x9e\x69\xe2\xf2\x8f\x7c\x24\x7a\xe0\x75\x7c\x8c\xe4\x98\x03\xca\x25\x18\xa9\xfa\xd8\x09\xeb\xb1\xd0\x50\x96\x0e\x2e\xbc\x8b\x60\xdc\xd8\x29\x91\xb7\x15\x7c\x41\x9f\xe8\xf2\xd9\x1f\xfb\xec\xe9\xcd\xe1\x5c\x1e\x79\x79\x7d\x11\x0d\x7d\xb5\xe5\xd8\x1e\x92\xbb\x10\x4c\x5d\x40\xf1\xe4\x8c\x98\x43\xb4\x63\x46\x9d\x1f\xa7\xa5\x09\xd7\x25\xa9\xff\x80\xdd\x41\x21\x06\x4b\xb1\x71\x8b\x58\x66\x2e\xd0\x9b\x62\x57\x1b\xd4\xf4\x9a\xd7\xbe\x14\x7f\x3d\xb0\x93\x1d\x30\x93\xeb\x81\xe5\x76\x16\xb2\x7c\x21\xaf\xd1\x01\x40\x5e\xff\x22\x34\xa4\x9a\xcb\x2a\x9e\xe7\xb2\x5c\x4c\x0e\x8f\xb1\xcd\xe4\xf0\x78\xaa\xea\x5c\xd4\x93\xc3\xe3\x5c\xea\xaa\xe0\x9b\xc9\xd4\xb2\x9b\xc7\x96\x10\xcf\x0b\x75\x33\x59\xca\x3c\x17\xe5\x31\xfa\x4f\xc1\xdc\x22\x54\xda\xae\x67\x41\xbd\xd0\xc5\x61\x94\x08\x75\x2f\xae\x01\x17\xaa\x32\x82\x43\x0f\x04\xf4\x0b\x58\x30\xed\x04\xb2\xff\xe8\x79\x07\xfb\xd1\xdd\xae\xa9\xe6\x57\xfe\x69\xc5\x6f\xd4\x78\x5b\xeb\x77\x2d\xb5\x9c\xca\x42\x9a\x8d\x5b\xaa\xdf\x91\x1b\x99\x9b\xe5\xe4\xf0\x78\x29\x80\xc5\x3e\x3c\xae\x1c\xef\x6c\xd1\xbb\x9c\x1d\x1b\x55\xf9\xad\x1c\x92\xfa\x10\xd2\xee\xdb\x39\x8f\x50\xc3\xf6\x0c\x92\x1b\xf4\xe2\x93\x82\xb7\x41\xd7\x17\x59\xa5\x5d\x99\x23\x8c\x77\xb7\x8c\xa5\xe7\x11\x3f\x4f\xc7\x1d\x2f\xb5\x1d\x97\x26\x54\x02\xa3\xb7\x66\xa2\x28\x9c\x54\x08\x9b\xae\xe6\x73\x2d\xcc\xaf\x76\xf9\xe3\x1f\x61\xf1\x9e\x6c\x6f\x00\xad\x61\xfa\x1b\x44\x34\x0e\x6e\x4a\xa8\x9a\x8b\xd5\x66\xa9\xce\x1d\x76\x09\xc6\x2e\x06\xfb\x0c\xd5\x5c\xc2\x90\xb2\x64\x9c\xfa\x81\xa7\xb5\xba\x39\xb6\xd3\xd2\x6a\xd0\x36\x07\x4e\xd6\x11\x27\xff\x00\xf8\xac\xa9\xc6\x30\xe5\x2e\xa1\x2c\x68\xe0\x29\x3f\x8f\x98\xec\x10\x84\x8a\xa7\xcc\x72\x49\xa4\x79\x8d\x75\x27\x28\xf3\x49\x58\x4a\x0f\xd4\x54\xb4\x06\x48\x42\x41\x59\x56\x70\x66\x1a\xa9\x6c\xc5\xc1\xc5\xd9\x6b\x25\x49\x0a\x27\x50\xb2\x90\x0c\xdf\x9a\x0d\x5b\xa8\xc5\xa2\x70\x61\xdf\x42\xb0\xe9\x7a\xc1\xbe\xf8\xfa\xf1\xd1\x23\x58\xc6\x0a\xe3\xc0\xbd\xf6\xb1\xef\xb4\x2f\x40\x83\x5e\x9d\xb1\xef\xc0\xbd\x45\x53\xd6\x36\xa1\xb1\x82\x4a\xd3\x3e\xe1\xcc\x12\xa6\x7e\xfa\xc4\xe4\x4f\x9f\x8c\xed\x7f\x4c\xfe\xd4\xe0\x5f\x63\xfb\x9c\x4c\x16\x00\xa8\x26\xd7\xf7\xaa\xcd\x4d\x8e\x50\x65\x72\xcc\xef\xb8\x7d\x7f\x3e\x07\xa5\xd8\xfd\x84\xe1\xb6\xf0\xac\xeb\x16\xf7\x94\xce\x19\x33\x44\x22\xb4\x36\x06\xa6\x1e\xed\xc0\x99\x9f\xd7\x51\xdb\x6b\x1a\xb3\x01\xf0\x91\x92\xfb\x73\xc0\x3e\x28\x12\x9f\x9c\xd0\x09\xa4\x07\xe0\xd9\x68\x02\xc9\x1f\xe1\xdc\xdf\x12\x84\x24\xb8\x1f\x3d\xb0\x3f\xbd\x62\x3f\xdd\xa9\xba\x1d\x6a\x10\xe5\x01\x66\x70\x7b\x31\x76\x5d\xaa\xba\xed\xf4\x33\x27\xb8\x6c\x9d\x52\xe8\x6b\x82\xa7\x33\x9c\xaa\xdb\xe3\xe1\x4a\xfd\x31\xdc\xf1\xea\x46\x4c\x3f\x48\xb3\xe3\xad\x3b\xf4\xa3\xea\xd6\x9d\xb6\xfd\x33\x25\x21\x88\x3e\xbf\xae\x6e\x13\x0c\xf9\xbf\x02\x16\xe5\x53\xad\x8a\xb5\x11\xc7\xf4\x02\xa6\x1f\xa9\x89\x50\x8f\x01\x80\x62\x17\x15\x1d\x0f\x6c\xd8\xd7\x48\x7f\xbd\xc8\xab\x84\x7e\xa3\xcc\x2b\xac\xab\x85\xba\x91\x57\xe5\x33\x95\x6f\xf0\x38\xa0\x1f\x40\xbd\xd8\xd1\x3b\x55\x91\x77\x8a\xdf\xf7\x37\x6f\xdf\x9d\x4d\xd8\x3b\x05\xa1\xed\xf3\xb5\x59\xd7\xc2\xcb\x71\x16\x71\xdf\x88\x07\xd7\x2e\x75\xb7\xbd\x30\xcf\xd5\xaa\x5a\x1b\x91\x9f\xdb\xed\xc6\x2e\xa6\x54\x52\xf0\xbd\xce\xd5\x8a\xa9\x12\xa4\xdc\xd1\x7b\x4d\xb5\xc4\x6a\xc1\x3f\x30\xe2\x3b\x99\x34\xa3\x46\xb5\xa2\x66\x9f\xbe\xae\x16\xad\x31\xd1\xe0\xc0\x82\x76\x7c\xd8\x43\x76\x80\x92\x79\x42\x31\x77\xd6\x1f\x19\x5a\x72\x76\xf4\xbf\xb0\x3a\xcc\xd6\x66\x3b\xa5\xd1\xbf\xd6\x37\xc3\xa3\x66\xd9\xd7\xd5\x6d\xc6\xec\x48\x37\xfe\x94\xe0\x99\xf7\xad\xf3\x17\xd1\xd2\x23\xf0\xf2\x17\xb7\x55\x21\x67\xd2\x60\x1f\x94\x1c\x87\x80\x7d\x88\x81\x67\xb2\xf4\x82\x14\x75\x03\xc5\x68\x67\x34\xa9\xb4\xb1\x2f\xde\x82\xfd\x51\x06\x4e\xa4\x88\xec\x25\x61\x5a\xea\xc6\xe2\xdb\x80\x8b\xbf\xfa\xea\xab\xaf\xe8\x85\xd7\xc6\x90\x90\x47\x19\x8a\x5e\x8a\x29\x7b\x74\x78\x74\xc4\x4a\xc8\xba\x2e\xd1\x61\x27\xc8\x82\xcf\xd6\x0b\x76\xf4\xd5\x57\x5f\x7f\xc5\x86\x6c\xeb\x28\x5d\x82\x80\x9b\x5a\x95\x0b\x92\xb5\x00\xf3\x47\xb3\xb7\xdd\x79\xee\xed\x73\xa8\x7d\x68\xbd\x75\xe7\xdb\xf0\x80\xe3\x05\x5b\x3f\x5d\x05\x75\x22\x3b\x61\xcd\xb7\x74\xa2\x2c\x3b\x44\xd0\xc9\xb7\xdf\x38\xee\x67\x5b\x20\x0f\x6b\xea\x27\x70\xd7\xa2\xc9\x64\x27\xc0\x91\xef\x45\x35\x48\xef\x03\xc5\xc0\xeb\x36\x81\x3d\x5e\x4e\xf0\x6c\x88\x53\xb3\x86\x25\xfc\xa1\xd4\x0a\x6f\x86\xd7\x95\xc7\x39\xc9\x3c\xd4\x62\x71\x86\x62\xc3\x00\xc3\x0d\x0b\x2b\x4a\x45\xd6\x57\x97\x04\x04\x95\xbb\xc3\xa9\x73\xc5\x1c\x8f\x43\x23\x60\xa4\xb4\x30\x86\x82\x2e\x65\xed\xd8\x0e\xcb\x5f\x3c\xc0\x4f\x1f\xc0\x3d\x58\xc8\x6b\x64\x4d\xc8\xdd\x6d\xc5\x0a\xd0\x12\xd3\x13\x20\x4b\xec\xbb\x86\x2e\xac\x9d\x28\xb4\x52\x05\x2f\x19\x1c\xb0\x0c\x6f\xb0\x45\xe2\x31\x6e\x77\x08\x1d\x67\x75\x6c\xb7\x69\x72\x94\xa2\x8e\x76\x45\xf6\x4e\xa4\xfd\x55\x94\x0e\x2b\x50\x65\xbf\x39\x16\x23\xe0\x22\x19\x2a\xc0\x87\x37\x35\x77\x65\x76\xa0\xde\x5d\x8d\x61\xaa\xb4\xfe\x6f\x5a\x56\xbf\xc5\x0a\xc0\x39\x34\xb7\xc1\x09\x38\x5e\x06\x28\x44\x68\x92\xf2\x54\xb9\xbc\x7e\xfa\x64\x6c\xff\x1b\x5a\x44\xa6\xfa\xc6\x2d\x78\xec\x6e\x81\xdb\xa1\xa6\x26\xbf\x75\x6f\xf6\xe2\xbd\x69\x8a\x2b\x00\x9e\x71\x06\x46\x4b\xab\x2c\xb4\xfb\x8d\x33\x8a\x14\x06\x85\xe0\x1f\xb4\x37\x8e\x03\xb9\x4b\x74\x2e\x41\x6c\x4a\xa5\x05\x04\x07\x76\xc2\x90\x23\x8c\x91\x10\xb9\xcf\x7f\x74\xaa\x98\xcf\x19\xb9\x5d\xe1\xe3\x04\x77\x74\x5b\xe1\xde\xe3\x03\x13\x3c\x38\xc5\x51\xa4\x0b\xf3\xb3\xc2\x39\x84\x78\x29\xdc\xda\xe3\x2e\xa6\xc4\x82\xf8\x0c\x28\x68\xc7\x4e\xd8\xb8\x77\x3a\xb9\xfc\xf3\xe2\x52\x5f\x9e\x5f\x3d\xbc\xfc\x78\x77\x79\xe1\xfe\xbe\xea\x7f\x39\x1e\x74\x3b\x35\xa4\xdd\x79\xc1\xf5\x12\x5a\x5f\xfc\x30\xfc\xdf\x57\xfd\xf1\xa2\xad\xf8\x3f\x24\x4f\x99\x50\x41\x31\xd4\xa9\xe7\xaf\x72\x3d\x81\x7c\x16\xdd\x38\x48\xd4\x8a\xef\xb7\x86\xad\xf8\xfb\x50\xb1\x9e\xf5\x8e\x46\xdf\x8f\x1f\x8d\x0e\xfb\xdd\xce\x1a\x92\x55\x1f\xba\x42\x2f\xa4\xca\x52\x35\x66\x30\x47\xdd\xb7\x4f\xcd\x4e\xa9\xbf\x2b\xbe\x40\x9d\xf1\x1b\x55\x0e\x73\xb9\x90\x26\x94\x54\x34\x96\x46\x9a\xd9\x92\xd5\x78\x01\xf1\xcb\x6e\x47\x38\xf3\x53\x86\x4f\x32\x76\x90\xd4\xfd\xa6\xfc\xf1\x07\x58\x4e\xa2\xb6\x6d\x57\x90\x2c\xd3\x17\x50\x19\x5f\xbe\x18\x2f\xb0\x80\x0a\xcd\xf6\x5d\x92\xaf\x29\x9c\x3c\x94\x61\x5d\x97\x60\x82\x00\xa6\x21\x2a\x9d\x2b\xe7\x6c\xa3\xd6\xa8\xc9\x0a\x45\x1c\x79\x9e\x7b\x2b\x48\x54\xca\x16\x75\x8b\xab\x51\xb7\x53\xaa\x17\x50\xbb\xd5\x62\xde\x4c\xac\xa6\x22\xcf\x82\x1a\x69\x3c\x66\xcf\x38\xd6\xc1\x75\xd9\xbf\x70\x44\xd8\xc8\x97\x85\x3d\xd1\x1e\xaa\xc4\xa8\x16\x0a\x8d\x05\xb8\xc1\x25\xfa\x9d\xb0\x6c\x56\x68\x99\x4f\x5e\x3c\xfa\xf6\xf9\x8b\x67\xdf\x9c\x0d\x7f\x38\xfb\xe6\xc5\xf0\xe8\x68\x36\x1f\x7e\xff\xcd\xb3\xef\x86\x5f\x7f\xfd\xf5\xe3\xc7\x5f\x3d\xfe\xfa\xf0\xf0\xf0\x10\xd4\x1e\x19\xaf\xaa\x42\x98\xcc\xa9\xaf\x00\x1a\x96\x5c\xe3\x54\xd3\x84\xb4\x44\x35\xe0\xcf\x93\x50\x4f\x0b\x5c\x79\x42\x91\x4f\x4c\xa9\x63\xdf\x5e\x78\x98\x83\x99\x5e\xb1\x2b\x36\xc1\x17\x2c\x7d\x83\xc1\x52\x3e\x96\x10\x06\xd8\xdf\x67\x7b\x54\x96\xd7\xce\xc5\x55\x09\xc4\x79\x38\x97\xf3\xbc\x65\x96\xae\x94\x12\x16\x91\xad\xae\x0d\x1b\x3f\x24\xcb\x13\x2f\xc0\x81\xe3\xad\x15\x3b\xbd\x9b\x79\x92\xb2\x8f\xcf\xec\x9e\xdb\x01\xfd\x92\x93\xfc\xdb\x1e\x4b\x41\x6c\xe2\x52\x62\x06\x21\x48\xf1\x8e\x69\x9c\x69\x9c\xff\x10\x21\x2f\x9b\x5b\x25\x34\x58\x08\xf3\x6c\x43\x5a\x41\x22\xd5\x60\x2c\x88\x73\x14\x79\x37\xeb\x5f\x85\xaf\xd7\x4d\x87\x9e\x96\xdc\xfe\xeb\x79\x28\xb7\x2d\xe7\x73\x41\xe9\x73\x1c\x9f\xfe\xea\xec\x9b\xe1\xb7\xd4\x15\x96\x28\xfd\xcb\x73\x97\x5d\xad\x16\xd0\x7c\x26\x22\x03\x28\x9f\xd5\x8a\xaa\x59\xbc\x78\xfb\x7a\xf8\xd7\x73\xb4\x51\xf1\x7a\x83\x6a\xcb\x37\x60\x82\x4e\x0f\xde\xcf\x15\x36\x35\x4c\x0f\x33\x42\x2c\x85\x4b\x75\x4f\xb7\x1f\xa0\xe3\x38\x4c\xdc\xd5\x17\xa5\x4e\x50\x1f\x2b\xf2\xa0\xc1\x48\x22\x8c\x98\x56\x76\x09\x90\xf6\x6a\x36\x5b\xd7\xa9\x33\x18\x50\x17\xca\x61\x47\x93\x4d\xa1\x92\xa0\x2f\x9d\x32\xb0\x44\xe4\x8a\xf0\xea\x05\xdc\xb6\x68\x5b\xc1\xe8\xa9\x29\xd1\x94\x8b\x94\x45\x77\x21\xcc\xd8\xaa\x93\x38\x82\x1c\xce\x4a\x2f\x55\x6d\x66\x6b\xe3\x70\x1d\x24\x50\xaf\xb8\x95\x00\x34\xe3\x7e\x93\x90\x23\x28\x15\xe5\xc7\xb3\x5b\x9c\xc7\x53\xc7\x9b\x12\x43\x54\xb8\x3f\xe9\xd3\xfd\xfd\xf8\x81\x8f\x64\x02\xd2\x85\xae\x22\x56\xe8\x03\x35\x0c\x78\x2c\x41\x01\xc3\x28\x6d\x07\x2a\xc0\xea\x0d\xe5\x0b\x5c\x08\x3a\x17\x70\xd1\xc5\xce\xe8\x00\x40\x85\xb9\xe4\xda\x4e\x1b\x9a\x70\x63\xf7\xc1\xd7\x30\xde\xc3\xfc\xee\x7b\x88\x05\x64\x0e\x19\xb5\x7a\x7b\xf6\x16\x42\xf5\x2e\xf7\x78\x64\x3f\xee\x43\xed\xfd\x70\x23\x28\xf3\x51\x23\x69\x77\xfb\xfd\x23\xed\x78\x92\x33\xbc\x05\x02\x39\x38\x7f\x53\x2a\x16\x3a\x5e\xa0\x4a\x4e\xa9\x85\x6e\x19\xc4\xab\x72\xc3\x1d\x4b\x5b\xe6\x9a\xad\x2b\x97\x84\xc1\x15\xd5\xf4\x07\x85\xd5\x37\xe0\xa0\x9c\x56\xbe\xed\x60\x4e\x98\x8c\x2a\x2e\x07\x22\x3b\xaa\x54\xd5\xeb\xb7\x64\xc2\x6f\x3a\x57\x23\x44\xc4\x67\x1b\xbb\x56\xe3\x26\x10\xc6\x95\x10\x63\x88\xdf\xc5\x8f\x7c\x6c\x9c\x87\x09\x4b\x5a\x2a\x05\x29\x91\xe8\x5a\xae\x84\xe1\xee\xc4\xab\x82\xcb\x32\xbe\x03\xde\xaa\x19\xc2\xfc\xac\x7c\xa9\x63\x6f\x47\x4c\xb0\x04\x15\x86\x11\x89\xc9\xf9\x26\x36\x62\x24\x3b\x15\xcd\x6e\x64\x14\x54\x31\xf6\x7b\x54\x2a\x55\x1d\x37\xfd\xc7\x7f\x70\x19\x0b\x5d\xad\x01\x2a\x28\x6e\x94\xdf\x5a\x40\x23\xc1\x67\x8b\xb3\x0f\x62\x33\x46\x41\xb4\xe2\xb2\x3e\x46\xd5\xd6\x42\x38\x37\x3f\xbd\xc4\x84\xcb\x33\x55\x49\x2b\x53\x5f\x8b\x9a\xa9\x92\xb0\x0d\x5c\x70\xcc\x40\x86\x07\x1e\x4b\x56\x01\x5d\xbb\xec\xfa\xa1\x38\x6f\x78\xb7\x95\x21\x08\xba\xb0\xf7\xa0\x65\x17\x62\x52\x81\x21\x90\xd1\x4b\x57\xdc\x72\x1b\x38\xe2\x7d\x4c\xeb\x4d\xb7\x74\x33\x42\x7a\x18\xf7\xe5\x76\xd8\xd3\x31\xa8\xac\xe2\xbf\x38\x4e\x7c\x9c\xe0\x76\x60\x66\x6f\x48\xec\x99\x63\xb9\x59\x97\xac\xd2\x1d\x10\xf9\xb2\x04\x70\x01\x57\x39\x22\xbe\x74\xc1\x80\x1c\xcd\x96\x58\x24\xb1\xce\xb1\xd2\x04\x32\xda\x1f\xc4\x06\xd2\x4e\x49\x0d\x9c\xd6\x54\x98\x1b\x21\xca\xb4\x07\x20\x7d\x6b\x2d\xea\x21\xa1\x08\x52\x70\x73\xc3\x43\xf1\x8e\x68\xa7\xf1\x81\x5f\xe4\x28\xa9\xc1\xda\x78\x4c\xa9\x45\x5d\x8c\x60\xbc\x33\x69\xcb\x14\x11\xf9\xa2\xcc\x5b\x68\xcb\x7f\x75\x11\x48\x11\x39\xfc\xf5\x5c\xd5\x52\x7b\xfe\x49\x9f\x5e\x7e\xf4\x71\x55\x33\x4c\x9f\x28\xf2\xa1\x51\x43\xe8\x81\xb4\x49\xe5\xd0\xbf\xc2\x59\x38\x0f\x47\xe8\x5c\xfb\xec\xd5\xbc\xf1\xf6\x86\x47\x7e\x9d\x6e\x19\x01\x15\xbb\x94\xc5\xde\x01\xfe\x5d\xbd\xc1\xe4\x80\x65\xce\xb8\x1e\x7a\xbf\x29\xb3\xf1\x68\x13\x4b\x3e\x45\x0b\xc6\x3a\x96\x1e\xf7\x80\x33\x11\xa4\x41\x5c\x17\xc5\x5d\xd8\xa9\xad\x8e\x5c\x74\xb9\xcf\xe4\xec\x13\x28\xdb\x5e\xa2\x89\xa0\xcd\x9a\xb6\x33\x74\xe4\xe2\xc6\xd2\xd9\xec\xde\xfe\x70\x1b\xa2\xdb\xd5\xf8\xbe\x19\x3e\x12\x95\xd2\x42\xb1\xa5\x8d\x61\x76\xac\xe8\xff\x25\x26\x54\x0e\x58\x81\xcc\xcd\x27\x78\xb5\x73\x21\x12\xc4\xd9\x66\xa4\xf9\x7c\x6e\x6a\x07\xe3\xd2\x64\xf1\x43\x40\x21\x3d\x8a\x72\xab\xa3\x59\x4d\x86\x14\x97\x8e\x2b\x62\xa2\x34\xf5\x26\x04\xac\x53\xc5\xa8\xf0\x41\xa9\xb0\x93\x6a\x5d\x57\x4a\x63\xba\x61\xcc\x36\x8e\xea\xa5\x9d\x24\xb2\x8d\x9f\x28\x63\xd0\x8f\xef\xbe\x3d\xc0\xd3\x18\x37\xb2\xc9\x16\x6e\x8d\xea\x87\x84\x4f\x63\xc8\x75\x51\x31\x50\x34\x8a\xa9\x1a\xd3\xfd\xb2\x90\xee\x97\xca\x27\xc3\xc5\x85\x25\xc3\xe1\x7c\x10\x71\xf1\xc2\xbd\x66\x65\x31\x9a\x73\xc8\x31\x6e\x99\xd1\x7a\x43\x7e\xff\xd0\x21\x70\x9d\x16\xb3\x92\xaa\x17\x98\x41\xe7\x7d\x4f\x47\x1d\xef\x80\x2c\x1b\x2b\xa0\xec\x04\x28\xb5\x84\x7b\x9d\xe6\x4d\xa0\x56\x96\xb6\x56\x85\x34\xe1\x72\x82\x5b\x49\xce\xae\x45\x6d\x91\x3a\x9b\x6e\x70\xe1\x9a\xad\xcb\x42\x68\x37\x37\x9f\x16\x87\x5e\x7a\x9f\xfc\x68\xe8\x5d\x57\xd8\xa5\x44\xf8\xe4\x12\x76\xac\x61\x2b\xf9\x03\x35\x83\x74\xdd\x21\xf9\x77\x48\x7d\x1e\x87\x58\xe2\xc2\x9d\xdf\xc8\x09\x54\xb0\x74\xdf\xfa\xa8\x42\x2c\xcb\x98\x14\x3a\x21\x8f\xc7\x06\xbe\xbc\x90\x57\x6e\x5a\x1f\x3d\xe4\xc4\x37\xc4\x31\xde\x85\x98\x1b\xc7\x9e\xce\xf0\xfe\xdf\x08\x76\xc3\x4b\x50\x46\xd0\x1d\x10\xae\x07\x4b\x2c\x0a\x61\x42\x6b\x4f\xaf\x0d\x24\x82\x04\x96\x5f\x68\x53\xab\x0d\x65\x83\x70\xf1\xa8\x08\xfa\x5b\x92\x78\xb8\xcd\xf4\x8a\x1e\xf7\x53\xe8\x6f\xe4\x7d\xd8\x11\x1f\xf8\x99\xf8\x68\x8b\xb2\xd3\x16\xb6\xdf\x44\x48\x4e\x68\x85\x5e\x5a\x17\xa9\x9d\x6a\x4c\x60\x6d\xa7\x47\xf0\x07\xf5\xf5\x12\x06\x23\x61\x74\x97\x3c\x47\xe3\x3a\x16\x12\xb1\x32\x29\xe4\x30\x73\x07\x20\x4d\xcc\xe8\x6e\x29\x2c\x52\xd4\x93\x46\x35\x6f\x31\xba\x2f\xa2\xa9\x26\xbc\x67\xca\x41\xbb\x7b\x50\x08\x5e\x22\x99\x40\x85\x8b\x65\x16\xd1\x89\xce\xe1\x56\x4b\x69\x68\x97\x50\x39\xef\x2d\xb6\x20\x09\x91\x0a\xc9\x22\xa3\xff\x03\xe3\xfd\x1f\x04\x31\xc3\x38\x99\x25\x58\x25\x6a\xe6\xca\xd9\xb2\xde\x17\x47\x87\x87\xdf\x1d\xf6\x1b\x65\x42\x1a\x5e\xf0\xa9\x83\xee\xdd\x1d\x6d\xf7\x1e\x71\x97\x23\xea\x79\xe7\x21\xba\xc9\xff\x0a\x69\xa8\x41\x21\xab\x05\xba\x08\xa0\x25\xa4\x41\xaa\x53\x4e\xda\x65\x44\x89\x8a\xe4\xbf\x4c\x4b\x5c\xe2\x31\x8e\xba\x9d\xdf\x3f\xa5\x3f\x4a\xc3\x02\x23\x10\x6d\x53\x35\xb9\x9d\x8f\xea\xfc\x51\xb9\x32\xc0\xe5\x0d\xef\x8d\xa0\x06\xb0\x32\x0d\xa9\x77\x20\xed\x83\x1d\x97\x4e\x06\x8b\x90\x21\x2f\xb0\x43\x1b\x07\xe5\xe4\x41\xb3\x18\x93\x7b\x27\x4f\x7b\xa9\xea\x05\xe4\xd8\xbd\xaf\x06\xbe\xdf\x76\xd2\x2f\xc1\xc0\x38\x1b\xba\x28\xca\x97\x8f\xf2\x9c\xe3\x31\xe5\xcb\x80\xbc\xfe\x28\x9b\xcd\x54\xe9\xd2\xcd\x47\x4a\x3d\x9a\xe2\xdd\x9d\x9b\xac\xe5\x96\x61\xc7\x5c\x69\xfe\x34\x94\x0b\x62\x55\x64\x4e\xd1\x5c\xf8\xcd\x56\xa9\xa3\x79\x19\xe9\xb3\x9b\x67\xb9\x55\x3c\xcb\xee\x54\xc5\x6b\x08\x6c\xe6\xb5\x19\x80\x2f\xae\x3b\x42\xac\xc2\x46\xaa\x4d\x8b\xc1\x2e\x0e\x9b\xb5\x4b\x49\x40\x70\xea\x7a\x0a\xb0\x03\x3d\x50\x4b\x35\xb6\x56\x25\x86\xe7\x0e\x9a\x99\x82\x53\xf1\x2d\x8f\x58\xbf\xb8\x90\x65\xaa\x72\xc5\xa4\x0d\xfb\xfb\x9e\x27\xf8\x3d\x86\xcc\x0c\x8c\x8c\xb9\xdd\x52\x9d\xc5\x98\xd8\xae\xda\x81\x8a\xf7\x46\x76\x29\x13\x90\x8c\x81\x05\xc3\x98\xfa\x5e\xfa\xe5\x88\xa4\x6d\x78\x21\xaf\x46\xf6\xe7\x71\x37\xa6\xc4\x7b\x40\x03\xa9\x4e\x74\x8f\x65\x76\x7a\xc3\x2c\xcd\x03\x75\x2f\x65\x1f\xe9\xf5\x14\x79\x98\xde\xe3\xbe\xdf\x0a\xda\x2e\xbb\xb2\xed\x6b\x18\xaa\xe7\xb7\x52\xeb\xce\x27\xb7\x2a\xba\xc7\x69\xbd\x30\x17\x37\xde\x10\xd4\xb0\x22\x9f\x2b\x76\x90\xc2\xc1\x27\xca\xf1\x45\x29\xd2\x30\xa7\xd0\x56\xae\x9d\x04\x1e\x30\xa5\x14\x94\x0e\x43\xc2\x11\x2c\xbf\x00\xd6\x58\x55\xd0\x55\xc0\xc8\x46\x59\xa8\x29\x69\x5f\x5f\x1c\x5d\x41\x55\x3c\xfa\xf3\xd4\xb6\x60\x07\xe1\xc1\x84\xcc\xa9\x15\x26\xb7\xf5\xcf\x0f\x58\xb6\x97\xc5\x35\x1a\x1b\xe5\x02\x71\x5a\x6d\xf9\x39\xba\x69\x01\xd6\xd6\x1b\xe1\x20\x1f\x36\xc1\xd4\x72\xb1\x10\x35\x26\x29\xaa\x7b\x2c\x5b\x08\x40\x7d\x6e\x9e\x03\x76\x41\xf3\x82\xa4\x3b\xfd\xe3\x2d\xa9\x50\x98\xd9\x12\xf8\xdb\x28\x75\x3d\xa9\x2b\x90\xb3\xb0\xc2\x6c\xb8\x50\x2d\xea\x46\x42\x47\x11\x9f\xb6\xe3\x6a\xc6\x47\xe1\x5b\x35\x01\x13\x90\x10\x52\x92\x84\xa9\x8b\x80\x69\x7b\xfc\x70\x46\xd8\x37\xec\x0d\x0e\xec\x57\xef\x0a\xcc\x75\x7c\xae\x78\xec\x39\x3a\xea\x90\xba\xe4\x1e\x08\x83\x54\x06\x98\x0a\xdc\x95\x11\x04\x41\xcb\xed\x2d\xa4\x9e\xdc\x3a\x17\xdd\x3c\x17\x04\x40\x5a\x63\x3b\xd4\x36\x4a\x06\xb6\x77\x8c\xde\xd5\xbb\xfb\x26\x98\x47\x36\xc0\x17\xe0\x6c\x4b\xed\xe2\x9a\xf8\x42\x5e\xf7\x09\xeb\xa1\x1a\xe6\x27\xef\xa4\xaf\x61\xe4\xfa\xd9\xba\x98\x1f\xa3\x9a\x7c\xa1\x5e\xd4\x6e\xc0\xb0\xfd\x22\x93\xef\xd2\xe3\xde\x70\x2b\xff\xad\xcb\xb8\x02\xc3\x00\xa5\xba\x08\xc6\xbb\x4e\xeb\x15\x12\xf7\xfe\xf8\xee\xf5\x4f\x8f\xe1\xd9\xf0\x61\x12\x6a\x72\x3f\xb0\x37\x69\x0a\x5d\x5e\x60\x2d\xc8\x81\x9d\x70\xf7\x01\xa0\x18\x6f\x4f\x0d\xe6\xe6\x01\xcb\x86\x5f\x1e\x65\xe0\x88\x95\x94\x37\xea\xfa\xbb\xb1\x4d\xe5\xbd\xf8\xd6\x74\x5e\x71\x33\xdd\x2a\x2a\xec\xcb\x67\x45\xf7\x8d\xc2\x79\xea\xb5\xc8\xd8\x29\x62\xef\x49\xd4\x06\xb4\xb1\x16\x08\xec\x5b\x84\x86\xe6\x6b\x0b\x29\xf6\x2d\x28\x9b\x26\x0e\xa7\x80\x86\x86\xb4\x6b\x58\x72\x19\x0b\x85\xa3\x51\x28\x04\xc7\x60\x49\x9e\x20\x6f\xc3\xf7\x07\xd0\xfb\x01\xcb\x32\x4c\x12\x68\x7f\x9d\x32\x7c\x8a\x23\xa0\x51\x9f\x42\xc1\x09\x12\xbc\x86\x05\x28\xd2\x5f\xcf\xdf\xbe\xf1\xaf\xb6\xae\x7b\x12\x1e\xe7\x53\x9a\x85\x30\xc3\x1b\x70\x65\x0e\x2c\x25\x16\xeb\x95\xd1\x9c\x43\x94\x68\xa7\x1d\xbb\x05\xd4\xd5\xe0\xb8\x69\xf7\x1b\xb5\x8f\x01\x05\x25\x64\xf2\x23\x14\x92\x82\x60\x19\x0d\x09\xce\x23\xc9\x13\x04\x90\x55\x65\x64\x29\xb4\x0e\x17\xa5\x45\x84\xf2\x09\x04\x1d\x40\x1e\x77\x89\x51\x71\xb2\xbe\x6b\xe1\xd3\xcd\x80\xac\xb7\x9e\x16\x72\x16\x4b\x74\x56\xb8\x01\x2f\x59\x97\xd5\x50\x5e\x43\x85\x1c\xe7\x29\x0b\xef\x12\x65\x10\x80\x47\x0e\xe8\x28\xce\xfa\x13\x49\xbc\x30\xbd\x0b\xdb\x38\x92\xef\x9c\xf8\x4d\xfb\x12\x75\x88\x91\xd7\x60\xf4\x68\xf2\x01\x21\xa4\x2f\xd9\x49\x0c\xda\xfc\xb8\xed\xc0\xf1\xcf\xb5\x58\x8b\x6d\xe9\x05\x22\xae\x63\xe9\xc5\xee\x1a\xb4\x0d\xf7\x2c\xa6\x70\x54\xfc\x80\xca\x1b\xdc\xdd\xb1\x6c\x7e\x6b\xa7\x76\xc0\x32\xf8\x0a\x1d\x7e\xe0\xcf\x40\x06\x13\xfe\x09\x3e\x0c\xae\x4f\xe7\x95\x10\x39\x5b\x57\x2c\x17\xf8\xd5\x74\xc3\x16\xe4\x14\xa6\xd6\x86\xfd\x73\x2d\x67\x1f\x8a\x0d\x1e\x93\x84\x18\x5c\x48\x53\xc6\x59\xa1\xd4\x87\x75\xd5\x4d\xa8\x73\x92\x8c\x69\x0f\x3b\xdc\x2e\xb0\x0f\xe6\xc4\x40\xb3\x3f\x35\x5b\x9f\x69\x77\xc5\x3f\x88\xa4\x87\xb6\x04\x47\xd0\x1b\x25\x8a\x4e\x69\xb9\xfb\x0f\x1d\x95\x9f\x1d\x26\xb7\x76\x12\x28\xed\x43\xfb\x51\xd1\xa4\xe9\x14\xe2\x33\x38\xee\xc6\x87\x17\x56\x03\x3f\xd3\x2e\x5c\x5a\xe0\xda\xf8\x4a\x09\x38\xe9\xc2\x57\xda\xc1\xe4\xb4\xf8\x94\x2a\x91\xc0\xe3\xa5\x52\xe0\xb6\xe5\xb6\x0a\x5a\xfc\x68\x1f\xb6\x0c\x51\x52\xe5\xf6\x5d\x7c\xaa\x68\x99\x1b\x62\xab\x54\xd9\xcb\xe6\xb7\xb4\x2a\x48\x42\x0a\x7f\xe6\x03\x57\x87\x92\x2a\xfc\x50\xe2\x51\xcc\x21\xa7\x85\xbd\x51\xc2\x5b\x9a\xed\x6a\xec\x55\x92\xa5\x4f\x9f\xec\xb3\x1a\x6e\x2d\xf4\xb8\xb1\x3d\x98\xc4\x3f\xe8\x7d\x29\x99\x7e\x37\x2e\x85\xb2\x35\xb2\x25\x01\xae\xba\x4c\xb2\x04\xa0\xbe\x10\xf4\x4a\x1d\xa4\x29\x6a\xdc\xf2\xba\x2d\x65\x44\x6e\x43\xa1\x0e\x9c\xf0\xba\xc4\x29\x37\x16\x96\xa6\xad\x9c\x15\x82\xd7\xf6\x82\x61\x75\x31\x6d\x68\x22\xda\xa8\x2a\xaa\x5f\xee\x55\x2b\x70\xc4\x50\x44\x07\xd3\x9e\xc5\xa5\x8a\x07\xe0\xdb\x35\xc0\x36\x4d\x5f\xd2\xbd\x18\xa4\xf6\xf7\x5d\x23\x9c\x31\xf6\x0a\x28\x13\x02\x8d\x7b\xfd\x86\xd6\xa5\x54\x06\xf8\x17\x08\xb1\xb4\xf8\x9a\x10\xf2\x4c\x95\x7a\xbd\xc2\x34\x1d\x43\xb6\x10\x25\xd4\xd1\xb6\xf4\x21\xc0\x9e\x57\xf4\xab\xda\x3b\x17\xc7\xc5\x62\xa0\xa0\x6f\x04\xab\xf7\xde\x2d\x7b\x87\x40\x06\xc3\x87\x0e\xb1\xc1\x87\xd9\xf1\x96\x60\xf3\xfb\x16\x8f\x1f\x21\x9c\xe6\xcb\x01\x05\xfb\x61\xa5\x84\x4f\xa4\x02\x6f\x4f\xa8\xda\xc2\x51\x46\x4b\xf0\x68\x38\x15\x4c\x77\x7e\x04\x73\x8a\x5a\x7e\xec\x37\x58\xd2\x36\xdd\xc9\x16\x7e\x6a\x25\x22\x5a\x18\x03\xde\x94\x8f\xb6\x38\xb6\x9d\x05\x68\x9c\x78\xb7\xa9\x48\x14\x41\x3c\x87\xf8\x0d\xcb\x18\x1b\x51\x37\x2f\xe4\x16\x43\xff\xc4\x0d\x9e\x92\xcc\x14\x23\x3a\xb5\x4d\x84\x78\x92\x8c\x6f\xdb\xfc\xef\xa9\x93\x8e\x90\xbd\xfa\x84\x9c\xd4\x8e\x87\x91\xfb\x8f\x37\x2c\x88\xa5\xbe\x64\x1f\xde\x1c\x6f\xc6\x82\x4f\xe3\x73\x4c\xd0\x6e\xe8\x31\x55\xff\xa4\x88\x63\x7f\x1f\xbb\xb1\xd2\xe0\xde\x0e\x54\xb8\x8d\x99\xd3\xbe\x03\x15\x23\x01\xa9\x8d\x56\x45\x37\xe9\x73\xa5\xa3\x9d\xc3\xf9\x71\xc0\xdf\x11\xa2\x19\xe6\x73\x57\x2f\xae\x2a\xd6\x10\x05\xb4\x61\xcf\x0b\x59\x1a\xf6\xa3\x28\xe6\xa2\xd6\x03\xb4\x0d\x55\xa2\x5e\x49\xad\xa5\x2a\x47\x71\x50\xf4\xb4\x90\x65\xae\xe5\xa2\xe4\x14\x11\x0d\xfa\xa6\x51\xb5\xac\xc6\x8f\x0e\x0f\xbf\x1f\x1f\x7e\x3b\x46\xbf\xd0\x21\x14\xd0\x1e\x83\xaf\x2b\xdf\x24\x0b\x94\x2b\x91\x12\x63\x19\x2b\xa5\xe6\xb7\x81\x2f\x9f\xdf\x8e\xb4\x65\x6f\xf4\x05\x7c\x85\x15\x03\xe1\xaf\x09\xfc\x73\x7c\x0f\x29\x8f\x37\xcf\x6d\x0f\x40\x4d\x9c\xa7\x3e\xc2\xc5\x21\x89\xb4\xc1\x7a\xbc\xe0\x53\x1c\x8a\xf3\x62\x63\x18\x1c\x8f\x32\xe0\xf9\x36\x1a\x0d\x54\xc3\x7f\xec\xba\xf4\xe4\x39\x3a\x1b\x68\xf9\x9f\x9f\x09\x06\xd1\x4a\xdc\x6a\x07\xec\xe2\x8a\x45\x07\x9d\x26\x1f\xf7\x19\xa3\xc1\x20\x01\x9f\x6b\x74\xd9\x99\x89\x1a\x62\xf7\x6d\x5f\x3e\xca\x1c\x44\x04\x91\xb3\xde\xfc\xd6\x32\x0b\x10\x3c\x6a\xc7\x4a\x72\x83\xb5\x64\x1d\xc7\xad\x0d\xb9\xc7\x61\x1f\x57\x15\xc6\x70\x43\xc2\xdf\x13\x76\x14\xb2\x88\xb7\x95\xbc\xf7\x2a\x61\x70\x09\x46\x1d\x95\xd7\x09\x47\x5a\xdc\x38\x3f\x71\xdb\xce\x87\xd4\xae\x38\x70\x9f\xa5\x85\x15\xd2\x44\x96\x6e\xc0\x01\x19\x75\x60\xf0\xab\xf4\xb6\x7e\x3e\xfe\xb5\x1b\xb0\x8d\x7e\x9b\x82\xdb\x4e\x98\xa5\x42\x50\x72\x38\xf4\xe2\xc2\xaa\x6a\x65\xac\xed\x34\x21\x9f\xe9\xa0\x8d\xca\xc6\x31\xed\xb6\x87\xfd\x7d\xfb\x0f\x72\x0f\xc1\x23\xca\xee\x0e\x79\xc1\x75\xfc\x6b\x20\x9a\x3e\x41\x68\x52\x24\xda\x6d\x3a\xb2\x1e\x71\x62\xcf\xad\x5a\xd1\x44\xfd\xd0\x5a\x92\xc3\xac\x06\x6c\xaa\x54\x81\x7f\xcd\xe5\xed\xb9\xb3\x69\x0c\xba\x9d\x1a\xcc\x0f\xec\x84\x8d\x2f\x2e\xcd\x65\x7d\x59\x5e\x8d\x17\xf6\x31\x0d\x71\xc2\xc6\x97\x35\x3e\xa1\x8d\x1b\xff\xd6\x3b\x9d\x4c\xd7\xc6\xa8\xf2\x0e\x1c\xfd\xfb\x5f\x8e\xa5\x7d\x0f\xd9\x01\x28\xea\x6c\xab\xd1\x1d\x72\x39\x77\x18\x29\x70\x67\xc4\xad\xe1\xb5\xe0\xee\x5b\x48\xc5\xe2\xbf\xe5\xbd\xd3\x49\x2d\xf8\x9d\x7b\x3b\xa5\x6a\xd6\xd4\xaf\x65\x3a\x61\xb0\x3b\xfb\x57\x55\xf0\xcd\x1d\xd7\x9b\x72\x76\x47\xa9\x2a\xee\x66\x58\x6e\x4a\xdf\xc1\x06\xdd\xb9\x4c\x3f\x77\x18\xce\x7b\x57\x28\x55\xdd\x39\x3d\xf6\x9d\xaa\x44\x79\x57\x0b\x9e\xab\xb2\xd8\xdc\x51\xaa\xc2\xfc\x4e\xcf\x54\x65\xff\xa1\xc4\x66\x34\x95\x46\xb2\xb1\x00\x1e\xce\x20\xd8\x68\xb0\x83\x09\xe1\xc6\xd4\xf1\x0d\x46\xa5\x7e\x6c\xc1\xb9\x4f\x01\xed\x1e\x46\x36\x9d\x7b\xb4\x83\x4d\x85\xe0\x0f\x2d\x63\xff\x5b\x1a\x41\xd4\xf1\xe1\x94\x82\x73\xc2\x47\x3f\x5c\x55\xab\xea\xbf\xbc\x48\xdb\xc9\xbf\xb1\xc8\x9f\x5b\xc6\xa6\x41\x53\x33\x8c\xed\xff\xa5\xbc\xf5\xb6\x94\xbb\x3b\xa7\x76\xf9\xf4\x6e\xa0\xfb\xc9\x18\x94\x53\x64\xd6\xd4\xe0\x01\xa2\x29\xb3\xc8\xab\x33\x36\xe5\xc5\x07\xcd\x7a\x7a\x3d\x5b\x62\x9e\xe8\x95\xba\xc6\xbc\x49\xde\x17\x0c\x82\x1c\xcb\x5c\xdd\xf4\x53\xbd\x1f\xf0\x78\x6e\x5e\x5b\x65\xb5\x22\x9f\x8a\xc4\xc5\xa3\xa9\x2c\x8b\x4f\x84\xe7\xf9\x73\x7b\xdb\x27\x3b\x72\x8c\x43\x2a\x0a\x97\x39\x4f\x93\x97\x55\x70\x7d\xd2\xc2\xc0\xe7\x03\x36\x1b\xb0\x59\x11\x30\x73\x4b\x8a\x68\xd7\xed\x27\xed\x3f\x2c\x54\xcc\x48\xb5\xf2\x23\x37\x5b\xea\x0c\x25\x39\x02\x0e\x4c\x81\x17\xd2\xfc\xf5\xb7\x0d\x45\x91\x39\x86\xca\x46\xaa\x79\x64\x9e\x69\x52\x8f\xb0\x6e\x67\x4f\x68\x2d\xb0\x8e\x4c\xea\x96\x0b\x4c\x44\x22\x5b\x4d\x88\xb1\xb5\x15\x2b\xe6\xdc\x6f\xea\xf4\x54\x13\x09\x2a\x34\x09\x39\x0d\xf7\xf7\xa3\x63\x72\xb7\xa0\xf1\x61\xa7\xf1\x8d\x37\x92\x74\xdb\xdc\x80\xdc\xd1\x42\x72\xe4\x8c\x1d\xb0\xc6\xd7\x07\xf6\xb1\x37\x4a\xe2\xf2\x67\xb8\xfc\x99\x5d\xff\xd6\x74\x8e\xd9\x8c\x3d\xb1\x40\xc2\x66\x89\x25\x95\xca\x70\xd0\x70\x91\xc5\x14\x46\x0d\xdd\x5c\xb0\x19\xbb\xc2\x61\x59\x9f\x3d\x61\x87\x49\x45\x1d\x3f\xdd\x83\x93\xf6\x6f\x9c\x45\xb4\x59\xaf\x70\x7b\x57\x5c\x25\xd4\x5a\xae\xc2\xbc\xda\xaa\x9f\x7d\x6c\xc8\x58\x94\x7d\x3f\x42\x3a\x9f\xbc\x5b\xd8\xcc\xde\x1f\x37\x01\xba\x5d\x78\xa1\xf0\xc2\xfd\x4f\x5f\xab\x68\xae\xff\xce\xcd\x72\xe1\x0f\x9f\xbe\x59\xa0\x4b\xb8\xc7\x1e\x4a\xbb\x01\x0a\x59\x6c\x66\xd9\xb1\x8c\xf5\xff\x67\x2f\xde\xa7\x5c\x0c\x1a\x10\x12\xbc\x0d\x63\xa8\xe9\xed\xbe\x25\x51\x0c\x1e\xf2\x56\x03\x04\xe2\xe3\xe0\xb4\x08\xd5\xc2\xc1\x0f\x1f\x02\x34\xa4\x81\xe4\xcd\xc0\xf0\xc3\xa6\xf0\xc2\xd7\xa5\x6c\xbb\x6c\xb4\x71\x9f\xb8\x69\x21\xaa\x71\x5d\x1a\x48\x78\xe1\xdd\xea\xd0\xf4\x66\x14\xf5\xe4\xaa\x7a\x01\x07\x6c\xc7\x72\x0b\xf2\xd7\x13\x57\x4b\xe3\x46\xd7\xac\xcf\x9e\x9e\xa4\x57\x33\xde\xa4\xd0\x8f\xdf\x91\x5d\x1d\x31\xbf\x49\x6d\x9e\x0c\xed\xa8\x2c\x88\xaa\x78\x79\xe3\x33\x73\x16\xfe\xcf\xb8\xbb\x06\x12\xba\xb4\xdf\xdd\x01\x66\x80\xfb\x3b\x2f\x62\xd1\x2a\x08\x10\x0e\xee\x51\x54\xd2\xcf\x94\x2a\xc2\x1b\xff\x29\x5c\x0a\xe2\x61\xb3\xff\xa6\xeb\x2d\x77\x5d\xef\x68\x39\x2d\xd7\x5b\x36\xaf\x77\x58\x61\x3f\x5e\x6c\x93\x98\x7e\x92\x17\x6a\x68\x6d\x9a\xb5\x99\x21\xc7\x90\x9d\x18\x93\x65\x2e\xaf\x65\x0e\x15\xeb\x01\xd5\x3a\xe7\xfd\x06\xfb\x41\x40\x19\x7c\x92\x7c\x1d\xef\x74\xc1\xee\x5d\x5c\x81\xe9\xef\xbc\x18\x34\xee\xec\xe7\x50\x75\x7f\x01\x7a\xad\x50\x6c\x11\xc8\xc1\x01\xbb\x8a\x64\x5a\x67\xf1\xa3\xf0\x5f\xff\x15\x94\x24\x1a\x6c\x79\x3d\x87\x4b\xed\xa6\x4b\x30\x73\x4a\x99\x06\x27\xa1\x80\x36\x9d\x60\x04\xd4\xc7\x61\x17\x2e\xa8\xfd\x29\xcb\x1c\x97\x94\x59\x98\x8f\x70\x3b\x54\x6e\xdb\xfa\x1a\x15\xeb\xb1\x43\x63\x38\xb3\x28\x67\x02\x85\xf9\xa4\x90\x9b\xda\xa7\x52\x30\x4a\xb6\x04\xbc\x50\xa2\xb1\xe5\x9c\x32\x4d\x6d\x39\x25\x21\x50\x66\xbf\xff\xee\x1b\xff\xfe\x7b\xd6\x04\xd1\x86\x3f\x49\x00\xa5\x9b\xa5\x2a\xa2\x71\x3c\xd3\x9c\xa0\x8a\xc6\x83\x84\x24\xa1\x89\xfc\xd4\x12\x9d\x09\xfb\x8c\x99\xa1\x7a\x9c\x30\x4b\xca\x5a\xbb\x13\x4b\x2a\x40\x81\xec\xa8\xea\x36\xee\xda\x33\x5a\xbe\x11\xe0\xc1\x86\x1f\x5e\x93\xc2\x75\x1b\x95\x5c\x12\x5a\xe7\x8f\x05\x5c\xd4\xb6\xe8\x1a\x21\x71\xd7\x60\x27\xd5\x8a\x88\x56\x3f\xf0\x67\xf1\x49\x27\x38\x3f\x31\xdd\xb6\xa0\x5a\x9f\xb2\x76\x00\xd5\x44\x8a\xfb\xf8\x23\xd0\xea\x61\x84\x31\x0b\x68\xb1\xc5\x5d\x31\xca\x48\xb7\x25\x0d\xc6\xbb\x91\xb8\x37\x35\xcc\x7f\xd7\x1c\x14\x22\x9a\x5c\x45\x01\xde\xaf\x22\xf3\x47\xe3\xfd\xbd\xae\xa4\x34\x1c\x8e\xb0\xbf\x0f\xde\x5c\x99\x25\xe9\xfe\x49\x0f\x83\x6c\x50\x6f\xb9\x10\xc6\x3b\xe4\xc1\x1e\x64\xac\xdf\x6f\x0f\xaa\x6a\x44\xe1\x24\x6e\x55\xce\xd1\x24\x66\xec\xdd\x71\x20\x09\xc2\xc8\xa2\x08\x1f\x9f\xfa\x4b\x4a\x6e\xb8\x2b\xa5\x0d\x9b\xa9\xd5\x4a\x95\x2e\x86\x02\x24\x58\x3f\x76\x80\x0b\xec\x7a\xc0\xb2\xcc\xbb\x68\x84\x7e\x62\xb1\xd7\x67\xd3\x2f\xd7\x45\x31\x86\x25\x41\xfd\x13\x70\x29\xf1\x1d\xfb\x90\x27\xba\x7f\x6e\x81\xb1\x0b\x62\x10\xe6\x3c\x34\x44\x15\xda\xb7\x09\xe7\x96\xf2\x79\x17\xd5\xb4\xd0\x76\xed\xa8\x44\x4a\x57\x20\x09\x49\x23\xc2\x25\x5c\xa7\xbd\x44\xca\x4a\x7c\xdb\xbb\x21\x5a\xd6\x4f\x36\xd8\x54\x0a\x4f\x80\xd0\x22\xe9\xe9\x31\x20\xfc\x6b\x5e\xf4\xfa\x6d\x81\x8f\xd1\x87\xa9\x65\xf4\x1d\x54\xa0\x0a\x3b\x0c\x40\xc3\xb5\xc5\x4e\xde\x93\x07\x77\x1c\x12\x33\x04\x7f\x1d\x27\x17\x27\x21\x67\x61\x28\x87\xdd\x1a\x24\x02\x39\x1d\xe7\x43\x64\xbb\xcd\x92\x0f\x0f\x5a\xbf\x6c\x46\xf0\x5c\x03\x23\x95\x0e\xe8\xdd\x13\x2a\x2b\x53\x04\x13\x01\xdb\xaa\x7f\x46\x07\xeb\xf0\x77\x02\x3d\xf8\xf0\x20\xb0\x7d\xb1\x21\x79\xe7\xcd\x47\x57\xcc\xdd\x37\xdf\x9f\xfd\xee\x9b\x8f\x86\x7e\x2d\x8c\x37\xde\x46\x79\xfa\xe7\xbc\x28\xa0\x2e\x27\x14\xb7\x85\x82\x1e\x2e\x69\x90\x3f\x8a\x3d\x9c\xdd\xdd\x1d\xdb\xeb\x65\x3a\xc6\x1b\x40\x6d\xc8\xd2\x61\x31\x06\x82\x0c\x6c\x92\x47\x1b\x3b\x5c\x4d\x61\xe2\x2e\xa5\xf4\x35\x2f\x1a\x14\x2b\x31\x8f\x06\xb5\xa4\x5b\x38\x26\xee\xc0\x9c\xed\xf8\x77\x67\x21\xcc\x0e\xaf\x7c\x97\xcd\x80\xbc\xab\x47\xfe\xf6\x87\x59\xc9\x92\x3d\x2b\xf8\xec\xc3\x54\xd4\xf5\x86\x7d\x3d\xfa\x96\x4d\x31\xfd\x91\xfd\x14\x8b\xb0\xe0\xd5\xc0\x4a\x22\xdf\x7c\xff\xd5\x23\xcf\x10\x22\x90\x34\x5c\xb8\x47\x51\xad\x3a\xe7\x76\x6f\x1b\x22\x75\x1f\x85\x2a\x1e\xa7\x11\x86\xa4\x28\xbe\x91\x11\xb7\x26\xec\x47\xa8\x64\xf5\x19\x2b\xa5\x09\x59\xc1\x00\x77\x87\xd8\x4c\x97\xde\x9e\x26\x4a\x3f\x1d\x0b\x6b\x69\xa8\x7b\xe5\xf4\xc9\xaf\xec\x43\xf7\x75\xe9\xe3\x17\x23\x0e\x1a\x1a\x0e\x55\x29\x80\x1d\xc3\x4e\x9e\x78\x5e\xd8\x15\xe7\x63\xf6\x63\xe7\xce\x07\xf9\x6c\xe0\xf5\x8a\xdf\xfa\x77\xf8\xe9\x01\x3b\x62\x13\x97\x87\x3f\xb6\xe6\x20\xbf\xe1\xfb\xf7\x55\x94\x6d\x17\xae\x5e\x6f\xdc\xd1\x84\x1d\x06\xab\xef\x4f\x56\x92\x35\xcb\x5a\xad\x17\x4b\x5f\x00\xde\x97\x20\xa1\xd1\xba\x9d\x46\x05\xba\x15\xbf\x6d\x78\xd8\x53\x29\x93\x13\xf7\x49\xac\x24\x83\x9c\x0c\x45\x4e\xe9\xe2\xcb\x07\x86\xaa\xb9\x85\x71\x30\xc7\x35\xd4\xee\xa8\x21\x13\x56\xef\x8b\x47\x8f\x1f\x1f\xf5\x23\x15\x5a\x8f\x7a\xf6\x07\x00\x9b\x0a\x5b\x8d\xcb\xea\xb3\xfd\x7d\x27\xc4\xfa\x78\x2a\x57\xc2\x97\x8e\x17\x6b\xb1\xd4\x51\xfd\x02\x88\xb6\xc1\x2c\xdd\xf4\x80\xaa\xa4\xb8\xae\xb6\x22\x86\xe2\x4a\x04\xa7\x50\x89\xc0\xce\xca\x7f\xef\x8e\xa8\x11\x23\xe2\xde\xbb\x20\x11\xc4\xdb\x61\xc6\x3d\xdf\x13\x86\x7d\xbd\x51\xb9\x08\x9d\x5a\xdc\xe2\xc3\x63\x10\x99\xf9\xfd\x08\xed\x07\x2c\x73\xb3\xc7\xc8\x85\x7e\x12\xea\xe8\x2b\x2c\xb9\x62\xc1\x21\xf7\x5d\xa8\xf0\x40\xcd\x1d\xe6\x71\xa2\x1a\x1d\x6f\x1f\xe9\xdc\x71\xd4\xeb\xaf\xae\x4a\x08\xe6\xb0\x28\x29\x64\xd4\xf6\x6a\x81\x8e\xea\x43\x50\x7b\x38\x49\xfb\x38\x52\x38\xc4\x44\x21\x68\x0f\xc2\x00\xaf\xd7\x85\x91\xc3\x73\xaa\x33\x41\xad\xdd\x38\xf1\x74\x35\xb9\xbd\x25\xae\xdb\x69\xe4\x63\x3c\x16\x86\x91\x50\xbd\x49\xbd\x8d\x33\x06\x0d\xea\xe5\x51\x87\x8e\x69\x9e\x73\xc9\x4b\x18\x18\x2f\xd3\xdb\x7e\xfa\xa3\xb9\x2c\xf3\x50\x28\x6d\x87\xd3\x06\x62\x7c\x0f\xdc\x81\x49\x2a\x69\x80\x98\xbb\xc1\x63\x88\xea\x8f\x5a\x8e\x3e\xd0\xcd\xc0\xd0\xee\x5d\xc7\x95\x64\xc3\xb6\x6f\xa3\x32\x76\xc2\x86\x47\x91\xc6\xa5\x6d\xaf\x52\x9f\xa9\xbf\x95\x6b\x8d\xb4\xe1\x68\xf4\xdd\xc0\xc7\x18\x6a\x85\x15\x80\x20\x27\xfb\x14\xd8\x17\xac\xaa\x97\x4b\x71\xec\xfc\xe5\xe0\xa3\xef\xd1\x8e\xf6\xb2\x74\x99\xbd\x9a\x56\xb5\x38\x60\x86\xb0\x76\x05\xca\xdd\x48\x21\xeb\x7c\x10\x06\xac\x54\xe6\x76\x85\x1c\x61\x89\x92\x53\xaa\x21\x74\x6e\x7d\x08\xae\x54\x90\x28\x22\x7c\x90\x02\x07\xfc\x14\x2c\x3b\x2d\x4a\x03\x91\xa8\xfe\x3d\xc6\x9a\x75\x63\x8d\x3e\x18\x9b\xa2\xea\x70\xc9\xcf\xef\xd2\x9f\x8f\xee\x0b\xe6\x86\x55\xb5\x97\xea\xf4\xd6\xc7\x10\x2d\xd4\xea\x58\xe4\x08\x9d\x6b\x96\xdc\x03\x17\x00\xf4\x92\x9c\xbd\xd0\x3f\x50\x55\xe8\xd7\x10\x6d\x81\x4b\xed\xec\x63\x2f\x1b\xb6\xfb\x2d\xbf\xf8\x2d\xcd\x43\xab\xd3\x93\x1d\xab\xe5\x38\xa3\xc9\xe1\xe1\xb1\x13\xda\x31\x5f\xae\x38\xc4\x90\xff\xe3\xf5\x4f\x2f\xd4\x2c\x09\x35\xa3\x5a\xcf\x8d\xf9\x17\x96\xc7\xb3\xe2\x0c\xc5\xbd\xd5\x7c\xca\x4a\x31\x13\x5a\xf3\x7a\x03\xc0\x62\x79\x5b\x8b\x85\xb0\xaa\x3c\xa5\xe5\x40\xbf\x67\x9c\x06\x2d\x22\x0e\xad\x6e\x84\x0a\x6c\x33\xa5\x76\x16\xc4\x75\x06\x53\x64\x8f\x39\xdb\x37\x39\xcf\x93\x1d\xf3\xd4\xdb\xf3\xd9\xc4\x1b\xf9\x9b\x2e\x8d\xb8\x47\xdb\x52\x65\x77\x3b\x56\x29\x91\x03\x5a\x8c\xbc\x61\xeb\x1d\x62\x74\x60\xd8\xe4\xf8\x83\x08\xac\x9b\x22\x30\x6d\x4e\x53\x18\xd6\x41\x18\xa6\x4b\x8a\xe3\xec\x12\x88\x63\x79\x78\x4b\x5c\x22\xc4\xd4\x0c\xbc\x18\x44\xf2\x41\xba\x82\xa6\x68\xd5\xbe\x96\x2d\x71\x7e\xc7\x5a\x22\xc1\x3e\x5e\x44\xbc\xbd\x8d\xe9\x27\x39\x05\x22\x99\x7e\x67\xf0\x88\x4b\x24\x48\x55\xf2\x12\x0c\x44\x7d\x63\x34\xd0\x8d\x08\x25\x06\x21\xe7\x79\x19\x80\x35\x9a\x45\x38\x7f\x64\xfc\xc2\x86\x4f\xdc\x36\xc5\xce\xae\xed\x3e\x04\xdb\x04\x0f\x22\x50\x6b\x55\xa1\x8e\xd9\xce\x91\x6c\xca\x78\x1c\xa8\xf7\x0c\xda\xae\xe3\x6d\x8b\xed\x3d\xd1\x3a\x1d\xdf\xdf\x67\xdb\x6a\x91\xf1\xf4\xdf\x8d\xda\x8a\x20\x47\x51\x9e\x4e\xdf\x9b\xea\x77\xca\x44\xd3\xe9\x96\xf7\x59\xce\x04\xb1\x7d\xa0\xf5\x4e\x47\xcc\x2e\x08\x41\xdf\x7f\xf3\xfd\xf7\x2e\x72\xbd\xe0\x25\xd6\xb2\x54\x14\x47\xc0\xab\xaa\x56\x7c\xb6\x64\x3d\x97\x82\x16\xa2\xfd\x20\xd6\xa3\x74\x36\xa4\x7e\x37\x30\xb3\x80\x95\x73\x85\x5f\x63\xaa\x1d\x74\xa9\x89\xa0\xa7\xa7\xed\xb8\x47\x87\xdf\x7d\x7b\x18\x73\xce\x7b\x34\xef\xc0\x73\x45\x18\x2b\xc5\xca\xe1\x72\x25\x96\x9b\x00\x33\x04\xce\x4d\x2f\x9a\x53\xdc\x83\x89\x87\x98\xc6\x76\x18\x2c\xc1\xa3\x2b\x55\x42\x79\x56\xef\x3a\xe1\x6b\x18\xb6\x2f\x29\x5a\x05\x2d\x62\x7f\x3f\x8c\x21\xcb\x46\xf8\x23\xe5\x35\xf3\x0d\xae\xe2\xe2\x53\x6d\xc6\xe0\x8e\x67\x3b\x22\xb1\x19\x0b\x06\xfe\xf9\x99\x6c\x21\xb2\xc0\x98\xb2\x10\xd3\x74\x79\xb7\xbf\x78\x95\x53\xe1\x03\x99\x7a\x98\xc7\x4d\x52\xdd\x40\xed\x0b\x07\x62\xd2\xd6\x7e\x00\x57\xf0\xd8\x22\x20\x4b\xc3\xe5\xfb\xfe\x82\x05\xf6\x7f\xcb\x91\x56\xd4\xb5\xaa\xa9\xec\x54\x98\x0c\x4e\x35\xcc\x27\x6b\x04\x92\x24\xa9\x5b\x5a\xca\x53\xed\xef\xc7\xa6\x62\x2a\x65\x15\x87\xef\x93\x7c\x42\xea\x51\x2a\x93\x95\xd8\x17\xce\x43\xda\x65\xdc\x29\x28\xdd\x88\xf5\xba\xd0\xe7\x2c\xaa\x46\x85\x83\x81\x58\xa8\xa3\x07\xb0\x57\xdf\x0c\xbf\xf7\x9d\x62\x0a\x65\x7c\x69\x14\xd6\x7f\x73\x85\x36\x65\x89\xf5\x82\x60\x30\xc8\x06\x67\x68\x04\x2a\x08\x46\x7d\xbc\xa3\x18\x1f\xb8\xb6\x94\x75\x0f\x52\x7e\x7b\xc9\xa8\xa1\xd1\x88\xa5\x96\x16\xd2\xe5\x2a\x7e\xa5\x22\x89\x57\xe0\x35\x7c\x3d\x9a\xea\x1e\x7f\x09\xb7\x45\xa4\x8f\x89\xfa\x83\x92\x67\x84\xcd\xf1\x87\x0d\xd7\xca\x32\x7c\x58\x98\x31\x6d\xeb\xf9\x0e\x68\x85\xfb\xee\xbd\x38\x71\x7f\xc7\xdf\xb2\xde\x17\x47\xdf\x3f\xfe\xba\xdf\x25\x29\x6b\xb7\x92\x65\x90\xa2\x57\xe2\xa7\x68\x88\x16\x00\x71\x0a\x74\x1c\x39\xdb\xce\xc0\xe2\xbf\xde\x26\xcb\x2d\x82\x4a\x19\xa3\x84\xd3\x6e\x73\x5b\x49\x13\xe2\x32\x6e\xe0\xc6\xdd\x73\xc1\xff\x07\x57\xb3\x8b\x61\x8a\x17\x05\x48\x9f\xca\x8b\xba\x64\xcb\x0a\xf5\x17\x49\x19\x55\xc8\x43\xa5\x95\x2b\x69\xbd\x0d\x49\x89\x55\x27\xf8\xf5\xbd\x94\xb7\x84\xed\xf8\x14\xf4\x27\x13\x96\x19\x3e\x05\x51\x30\xc3\xe2\x96\xe8\x50\x09\x46\x49\x9e\xbf\x2d\x8b\x0d\x26\xe1\x9d\xab\x3a\x9b\xb0\x6c\x69\x56\xc5\x4b\x55\xe3\x33\x30\x2e\x61\x46\x5f\x5f\xbc\xbd\x0b\x1a\x28\x24\xd3\x13\x96\xad\xf8\x2d\x06\xe7\xc0\x1b\xa8\xf9\x51\xf1\x99\x2c\x17\xf6\x2b\x51\x14\xe7\xf8\xcb\xbf\x75\xe9\xcf\xf1\xed\xcf\xf8\x0b\x67\xa6\x6e\x74\xc5\x4b\x3b\x31\x75\x73\x5e\xf1\x12\xbf\x51\x05\x3d\x9d\xa9\xc2\x3f\x5d\x6b\xb1\xe2\xd5\x84\x65\x6b\x2d\x5e\xf3\x2a\xa3\xe2\xf6\x2b\x41\xd5\x32\x58\x06\xbf\x9e\xc1\x2f\xea\xa7\xb4\x5c\x99\xc8\xa5\xc1\xaa\x9d\x19\x3d\x39\xa3\x27\xd9\x0e\xef\xc8\x16\xe9\xe6\xbf\x51\x4c\x8d\xb2\x34\xff\x3f\x11\x53\xff\x2d\xf9\xac\x45\xa4\x82\x24\x7d\xb7\x08\xf0\x34\x6f\xcb\x06\xc1\xde\x74\xb7\x72\x6c\xdc\xc7\x8f\x35\xc4\x2f\xdb\x34\x11\xbf\x3e\x4f\x96\xda\xb6\xfc\x6d\x89\x3d\xff\x73\xc2\x0e\xbd\xec\x51\x16\x3a\xef\x29\x1a\x93\x8b\x8f\xcd\x78\xe6\x7f\xd7\x50\xb9\x4b\x9e\xf9\xac\x29\xc6\x13\x6c\xc5\x27\x31\xff\x44\x68\xe4\xf3\x0c\x0f\xa8\x35\xa7\x4f\xbc\x82\xd8\x47\x57\x92\x25\xd0\xd7\x70\xa4\xbd\x01\xbd\x85\x84\xf4\xbe\xc8\xcd\x88\xd2\x57\x30\x29\x36\xde\x5b\x21\x84\xde\xcc\x8b\xb5\xcc\xab\x5a\xbd\x17\x33\x03\x85\xf6\xa6\x85\x5a\x8c\x1f\x1d\x1e\x7e\x37\x3e\x3c\x1a\x1f\x7e\x3f\xa6\xa8\xdf\x21\xf1\xe3\x43\x5e\xe6\x43\xe7\xec\x3b\x74\x48\x72\x88\xda\x30\xa8\x58\x38\x7c\xcf\xaf\xb9\x9e\xd5\xb2\x32\x63\xaf\x20\xf4\xd7\x30\xce\x69\x18\x8b\x82\x50\x3d\x32\x73\xfd\x65\xfd\xd4\xea\x9b\x7e\xbe\xbf\x9f\x3e\x88\xcd\x22\x24\xc1\xf0\x5a\x8b\x57\xa5\xe9\x35\x1a\x12\x68\x1e\x1d\x86\x60\xfc\xe0\xdd\xbf\x83\xa1\xbc\xbb\x63\xc1\x8b\xff\x13\x4c\xe7\xb2\x16\x73\x6f\x67\x38\xf4\x56\x86\xd4\xc3\xd9\x81\x08\xda\xaa\xc6\x63\x16\x78\x8d\x6d\x46\xdf\xab\x43\x4e\x2c\x68\x7c\x8a\xbb\x00\xc5\x8f\x5c\x94\x6d\x52\x10\x04\x60\xb5\x8a\x1b\xd2\xe5\x18\x7d\x19\x5b\xf5\x02\xe6\xac\x2c\x93\x09\x95\xaf\xc1\x0a\xae\xd5\x4a\xb8\x01\xda\x35\x63\xee\xc4\x41\xf9\xde\x25\x89\x12\xf8\xae\x93\x5d\x9a\x2f\x16\x87\x7f\x84\xe6\x2e\xc1\x54\x48\xcf\xeb\xdf\xed\x25\x2e\x3c\x50\xbc\xca\x8d\xb9\x13\xc0\x4a\xf4\xfb\x74\x10\x04\x30\x61\x8f\xf1\xef\x1e\x0b\x92\xe7\x8c\x43\xb9\x0d\xd3\x28\x1c\x68\x7c\x9a\x96\x5b\xfa\x4c\x5e\x29\x56\x1c\x1c\x77\xb7\x34\x55\x94\xe3\xc4\x53\x03\x72\x71\x6c\x3b\x48\xaa\xd0\xe2\x85\xc4\xee\xe7\xe9\xb6\x62\xfc\xe5\xab\xa9\x4a\x8d\x1b\xec\x4b\x9b\x7f\x28\xd5\x0d\x83\xe2\xd6\x52\xb3\x4a\xc9\xd2\xa0\xc8\x80\x01\x5b\x6e\x36\x90\xb7\xd6\x84\xe1\x49\x9a\x6d\x99\x2d\xa5\x63\x86\xfc\xe9\x9e\xba\xb9\xa4\x16\x2f\xde\xbe\x4e\x32\xbe\xfe\x6b\x9a\x07\x54\x11\xef\x92\x7a\x5d\xf6\x0f\x37\xd6\xab\x17\x3f\x79\x13\x0f\x04\x75\x63\x0a\x90\x46\x42\x78\x4a\xf7\x2e\x7c\x59\xc3\x56\xe1\x39\x72\x0a\xea\xde\xa7\x9c\x6b\x01\x21\xef\x6d\x1c\xb1\xe7\x68\xb9\x46\x64\x80\xc2\x45\xae\xe2\x4b\xe5\x52\x2f\x8c\x9d\x52\x04\xae\x60\xf3\x6e\x13\x4b\xe4\x27\xd1\x45\x4e\xa7\xa9\x93\x40\x55\x53\x1c\x2c\x85\xb8\x05\xe0\x3d\x2a\x00\x9f\x47\x95\xe6\x95\xaa\x73\xed\xcb\x4b\x50\x9d\x15\x14\x97\x48\x2a\xe4\xe5\x26\xc2\x18\x4e\x48\xea\x7a\xe1\x71\x2e\x6f\x85\x65\xc9\xc1\x2d\x47\x5c\x8b\x7a\x43\x2b\x95\x5a\xdb\x4e\xbd\x08\xb1\xe5\xcc\x30\x22\x09\x0c\x27\xf9\x49\xf9\x8a\xd8\xca\xe3\x7b\xd4\x8e\x58\xa9\x38\x92\x2d\x22\xa5\x21\xe0\x91\x78\x73\x3c\xe4\x9d\xda\xf7\xa3\xc0\x2f\x39\xdf\x9e\x88\xfa\xf4\x09\xf7\x87\x86\x93\xee\x16\xfe\x27\xc3\xfc\xe7\xc9\x57\x74\xaf\x92\x84\xe6\xaa\x46\xd9\x5b\x50\x66\xfc\x94\xc5\x8d\xf6\xe0\xb3\xd6\x8e\x40\x62\x5b\x47\x7c\xcf\x76\x69\xaf\x16\x9d\x6d\xab\x6c\x8f\xfd\x43\x77\x9e\xd8\x05\x7e\x2e\x6c\xcc\xc9\x96\xe2\xfa\x63\x80\x2c\xbb\xe4\x50\x6e\x0d\xcb\x9b\x02\x49\x5a\x1b\x15\x67\x88\x3f\xb4\xd7\x15\xe3\x0f\x29\xc5\x1c\x94\x38\xfb\xe2\xbb\xa3\xc7\x87\xac\xdf\x6d\x6a\x2e\x48\x7d\xa8\xbb\x5e\x11\xc4\x67\xcb\xde\x05\x15\x97\xca\x06\x2c\xc3\xa1\x32\x76\x15\x07\xf4\xca\xe4\x48\x76\x5a\x35\xb6\x12\xb7\xef\x6a\x39\xf8\x6c\x1d\x5a\x83\x44\x64\xd9\x96\xa1\x72\x1b\xe5\x64\x76\x93\x82\xba\xf2\x3e\x15\x49\x3f\xae\x9a\x84\xca\xc8\x44\xc6\x0b\x5a\x48\xe5\x75\xaf\xba\xf7\xc5\xd1\xe1\xd7\x8f\xbe\xef\x77\x13\x85\x95\x4a\x8e\x01\x4b\xef\x68\x28\x6f\x5a\xd7\x16\x3b\xc0\xdf\xb2\xbc\xe6\x85\xcc\x9d\x6e\xa9\xb9\x3f\xa3\xe6\xf0\xd1\x8d\x8f\x35\x1e\xff\xca\xfd\xd9\xbd\x83\xbe\x2c\x3d\xe6\x95\x0a\xc0\xfa\x59\xea\x08\x04\xd6\x8f\x5d\x40\xd9\xe7\x0d\x6c\x4c\xa1\x96\x8c\x23\xbd\x71\xe5\xb1\x15\x94\x9e\x6a\x55\x23\x5a\xbe\xf1\x8d\xb3\x69\x90\x90\xd4\x80\x51\xdb\xc4\x82\xa8\xae\x67\xf6\x9f\xff\x27\x20\xfb\x29\x0f\xa2\x7b\xcd\x3c\x3e\x93\xe1\x0e\x23\x4d\x24\x24\xc6\x3e\x93\x11\x9c\x7e\xec\xb6\xef\x9e\x0e\xa5\x28\xb7\x60\x0a\xdf\xed\xa4\x1d\x09\xc3\x05\x93\x4a\x9c\xbb\x7c\x41\x75\x35\x4f\x00\xdc\x9b\xab\x22\x33\x94\x37\xaf\x12\x2f\xf5\xea\x8c\xad\xab\x0a\x1f\x69\x36\xd3\x7a\x3b\xad\x7f\x2c\x45\xa6\xd5\xef\x1a\x4c\xc3\xdd\x1d\xfb\x57\x68\x48\xc3\x24\xd7\x6b\x19\x60\x27\x02\xc6\x74\x5f\xe7\x7c\xce\x6b\xc9\x56\x52\x0f\x6b\x61\x37\x19\x55\xcc\x4e\x6f\xec\xdd\x31\x42\xac\x27\x14\x33\x26\x5f\x19\x2b\x86\x40\xcc\xab\x53\x66\xa3\x32\xfe\x81\x66\xa9\x6b\x45\x50\xc7\x02\x77\x20\x4d\xfb\xf9\xaa\xca\x9c\xbb\x01\xe3\x53\xf6\xf2\x75\x8b\x7b\x48\x03\xa2\xb7\x9b\x0e\x3e\x05\x12\x94\x6a\x16\xab\xbc\x35\x4c\x0a\x91\x17\x2d\x35\x71\xd7\x00\x7f\xa6\x2e\x24\xc1\xab\x2c\x64\x76\x03\x8d\x25\xb0\x9f\x5a\x41\x41\x1f\x62\xe2\x9c\xa3\x92\x1e\x40\xe1\xcf\x2f\x1e\x7f\x7b\x78\x14\x68\x01\xf5\xde\x66\xdb\xd8\x7a\xd5\x9c\x43\xa7\x2d\xdb\x55\x9c\x68\xb9\xef\x0e\x1f\x19\x33\xc0\x59\xa2\x9c\x01\xe3\x2f\xca\x99\xb2\x22\x63\xfb\x01\xb9\x56\xcd\xc3\x79\x29\x6f\xfd\xbb\x13\x96\xb9\x4e\x32\x37\xd0\x2f\x3c\x97\x0a\xcb\x60\x41\xb4\xc9\x54\x59\x30\x58\x40\x96\x98\x31\x26\x8b\x69\x1f\x10\x5a\xbf\x2d\x5b\x11\x25\x5a\x5e\x06\x2c\x73\x5d\xa6\xb8\x31\x41\x89\xa9\x43\x2c\x16\xda\xf9\x0c\xdd\xcc\x8f\x21\xd3\x33\x5c\x78\x94\x8b\xb1\x1c\xeb\x07\x69\xec\x8d\x92\x4e\x49\x03\x88\xc4\x73\x2c\x99\x2a\x33\x4c\x1d\xed\xc4\xaf\xf2\x81\x49\x8a\x78\xa4\x48\x21\x75\x96\x43\xdf\xd8\x7e\x8c\x34\xa1\xc3\x49\xd3\xe8\x02\x68\xd3\x63\xcd\x7f\x63\x83\x76\xef\x4f\xfb\xfd\x6a\x36\xc4\xdb\xf5\x69\x0c\xb5\xcb\x99\x3a\x0e\x16\x6b\xa0\x31\xca\x85\xb0\xdb\x13\x0c\x9d\xcb\x62\x4f\x30\x1f\xda\x91\xe8\x5f\xec\xde\xb8\xe2\x8c\x73\x55\xaf\xce\xc0\xd6\x48\xa9\x18\x5c\x1e\x07\x4a\xf2\x80\x77\xc9\xa5\x6d\xb0\x00\x0d\x38\xbc\xa2\x92\x8e\xbf\xf5\x2e\x7e\xbb\x1c\x5d\x3d\xbc\xeb\xf7\x4e\x27\x97\xa3\xde\xe8\xa0\x7f\x47\xc5\x1c\x97\xea\x5a\xd4\x3f\xf2\xd9\x07\x2a\xfd\xf8\xdb\xdd\xa5\xee\xc3\xc3\xde\xe5\xe8\xf2\xfc\xe0\xae\x7f\x39\x85\x86\x1f\xc4\xe6\xec\x1a\xb1\xcd\xf8\xb7\x0f\x62\x83\xa5\x20\xd5\x5a\x8b\xf0\xb8\x77\x3a\x81\x27\x90\x08\x42\xdc\x9a\x95\x28\xd7\xfd\x3b\xd0\x4e\x8d\x7d\xa6\x8a\xd7\xaa\xae\x96\xae\x39\x3c\x91\x25\x66\x95\x80\xff\xaa\xb5\x99\x16\xeb\x1a\xa7\x17\xcf\x2e\x3a\xa8\x6b\x30\x75\xb5\xe5\x32\x80\x57\x23\xe2\x6b\x46\xf0\x39\x3b\x75\x1f\x4c\xe8\x8f\x28\x50\xd4\x0f\x30\x60\x19\x4c\xdd\x32\x78\xf5\x97\x47\x0c\x7e\x14\x82\x5f\x0b\x48\x39\x7a\x8c\xdc\xff\xf8\x61\x97\x3d\x64\x3f\x8a\xa2\x12\xb5\x9f\x90\xa6\x3a\xc4\x25\x5f\x40\x81\x47\x1c\x6c\x38\x04\x11\x19\x52\x1d\xab\x24\x5b\x24\x24\x5c\x9d\xf3\x99\x18\xd9\xce\x7e\xae\x55\x05\x6a\x88\x17\x82\x97\xec\x2c\xbf\xe1\x75\xae\x1f\x30\x9e\xe7\xb8\xaf\x85\x9c\xd6\x9c\xea\x93\xac\xac\x18\x4b\x9d\xc9\x5c\x70\x6d\x7b\x18\x77\xe3\xb5\x03\x8a\x80\x8c\x03\xed\xf9\xca\xf4\x80\x22\x47\x6a\x97\x53\x3e\x89\x96\x22\x45\x90\x6d\xff\x02\xde\x42\xa7\x88\x50\xe8\x07\xba\x57\x9b\x01\x33\xa5\x4f\x4a\xe5\xa1\xcd\x77\xff\x76\xfa\x1e\x73\xff\xb9\x5f\xaf\x4a\x3f\xb2\x25\x1e\x78\x42\xce\x68\x82\x5e\xbf\x64\x54\xa0\x0d\x04\xcf\x7d\xc8\xe3\xae\x6a\xb0\x9c\x8c\x9d\xe1\x04\xb3\xc7\xf7\xd0\x6c\x8f\xb5\xc4\x5c\x21\x31\xb3\x54\xfd\xee\xce\x38\x63\xb0\xa1\x6c\x3f\x06\x5b\xca\x1e\xec\x0e\xfc\x45\xd3\xc4\xd0\x00\xb7\x15\xad\x19\x69\x58\x7f\x57\xdd\x9c\xf1\x98\x3d\xe7\x85\xed\x65\xc6\x4b\x74\x14\x94\xe0\xff\x4a\x69\x42\xd5\x9c\xcd\xd6\xda\xa8\x15\x95\x27\x2c\x59\x21\xc5\xda\x1d\x2e\xcd\xc0\xad\x84\x7e\x8e\xdc\xc4\x68\xc8\x68\x6f\xd9\x89\x6b\x74\x1c\xde\xd4\xfe\x29\xb4\x19\xc5\x2d\xfc\xa9\xa7\x4d\xdc\xe3\x78\x1d\x0d\xae\x20\x9a\x1f\x94\xe9\xe3\xa1\xf6\xdd\x00\xec\x99\xae\x76\xd2\xd8\x39\x8d\x1a\x9f\x04\x96\x02\x2f\x68\x39\x8b\x75\x28\xae\x97\x3c\x3b\xd9\xae\x59\xe7\x26\xf3\xaa\xa4\xba\x2f\xa4\x02\x7b\xa0\x11\x5e\x2c\xe7\xbb\x9e\x41\xc9\x79\xac\xf6\x2f\xcb\x00\xe8\x51\x1a\x50\x48\xab\x48\x19\xba\x09\xd0\x4e\x3c\xb8\xe3\x15\xd2\xc7\xc1\x0c\x17\x63\x9a\x4e\xa3\x99\xfd\xd0\xfd\x81\x25\xbd\x3e\xba\x4e\x89\x02\x47\x3d\xe3\x5c\x1a\x3d\x53\xb3\x66\xf7\x4b\xff\x75\xd2\x57\x74\x9d\x63\x6a\xff\x42\xea\x19\xaf\x73\x8a\x00\x98\xa9\x32\xa7\x1d\x81\x84\x57\x09\x5e\xa4\x5c\xd8\xbd\xbe\xdd\x23\xf7\x3d\xfa\x92\x96\xf4\x91\xd4\xc0\x59\x79\xe7\x7e\x0e\x65\x74\xe1\xa0\xd7\x65\xa1\x78\x9e\x72\x01\xa4\xf5\xc6\x51\xb6\x4a\x80\xef\xef\xb3\xde\x5e\x9c\x4b\x35\x99\x86\xc8\xe1\x03\x01\xc1\x17\x4e\x37\xd5\x49\x5a\xe6\x52\x57\xdc\xcc\x96\x23\x5e\x55\xc5\xa6\x17\x6f\xc8\x08\x71\x9a\x0f\x43\x0c\x26\x93\x86\x39\xe3\xb8\x1b\x72\x6e\xc2\x9d\x05\x98\x8d\x25\x83\x00\xd1\x6c\x5e\xc6\x39\x38\x39\xa5\x55\x84\xe2\xcc\xc8\x00\xbf\x3a\x83\x8a\x68\x58\xc9\x9c\xce\x1f\x0e\xaf\x31\x33\x3a\xfb\x18\x74\xe9\x20\x7d\x22\x7f\x02\x9e\x10\xa6\x3c\xdd\x80\x4c\xce\x67\x22\xae\x8a\xd7\x1b\x8d\x46\xfd\xd1\x14\x9c\xd1\x81\x2a\x01\x51\xc3\xbf\xd6\x26\x1b\xb0\x79\xd9\x77\x39\xe1\x74\x33\xb1\x86\xa7\x6f\x3d\x78\xdd\x0f\x49\x1e\x7c\xd8\x3f\xfa\xe9\x19\xf0\x06\x64\x86\x3d\x41\x32\xe1\x1d\xf5\x0c\x39\xea\x01\xd2\x87\x50\x9b\x94\xbf\x18\x89\x5b\x31\x43\x47\x63\x7d\x61\xae\xd0\x22\x85\xc9\x69\x7d\xca\xaf\x52\x5f\x1c\xe1\x93\x40\x28\x30\x1f\x70\xa9\x2f\x1e\x5d\x35\xf3\x4f\x64\x23\xf8\xa1\x6a\xd3\xeb\xc7\xc1\x5e\x78\x28\xe8\xff\xa4\xa1\x68\x2a\x52\x9f\x35\x39\xc6\x38\x75\x06\xb6\x73\xc4\xc6\x47\x4a\x38\x47\x2e\xcc\xfd\xd6\xe9\xb8\xe6\x27\xad\xcc\xc3\x05\x0b\xf1\x69\x51\x75\x4b\x88\x39\x23\xd4\xe9\xc3\xcd\x5c\xe1\x95\xe6\x14\x78\x25\x5d\x92\x38\x5f\xd7\x04\x42\xd4\xfd\x1c\x7c\x66\x64\xdf\xe9\xa9\xeb\x03\x6a\xdc\x2c\xb8\x41\x3a\x35\xf1\x8f\x2d\x24\xbc\x43\x71\x86\xcc\x4e\x7e\x72\x7f\xa3\xf8\x1c\x9a\xc4\x14\xb3\x1f\x96\xac\x14\x37\xc5\x86\x42\x74\xfe\x4b\xab\xf7\xa4\xc2\xe2\x89\x50\x21\x13\x44\xb1\x64\xd3\x13\xf2\xb4\xc5\x96\x53\xac\x1c\x38\xec\xc1\xfe\xc0\x6f\x55\xcb\xc5\x3b\x7c\x06\x00\x83\x4f\xb1\xe6\x0a\xb0\x2a\xf0\x9b\x46\x98\x78\xec\x0e\x4f\x17\x50\x1f\x3c\x26\x22\x3e\xc4\x14\xb6\x75\xe2\x37\x18\x9f\x97\x42\xe4\xfa\x39\x72\xa9\xe1\x5d\xe4\x20\x24\x6e\xab\x7a\x04\x25\xc2\x47\x71\x5b\x32\xb0\x06\x9e\x89\xba\x73\x60\x3d\x89\x58\xa1\xd1\x7b\x25\xcb\x5e\x36\xca\xfa\xe8\xb8\x14\x13\xda\xc8\xa9\x38\x50\xb4\x78\x07\x5d\xee\xe2\x39\xbb\x11\x0f\x6a\x91\xd0\xad\x8e\x07\x6d\x47\x81\xdc\x71\x45\x2a\x73\xdf\xc6\x87\x61\xef\xfa\x88\x9d\xb8\xfb\xea\xdb\x78\xd8\x7b\x4e\x69\x0c\xa3\xd0\x33\xb0\x5a\xd9\x2b\xe7\x58\xd4\x9f\xc0\x21\x5a\xd4\x63\xe4\xdf\x90\x6d\xa5\x04\xe9\xc9\x7d\xd0\x7e\x71\x2e\x64\xd3\x1b\xe8\x5c\x32\x60\x82\x71\x2d\xcc\xba\xb2\xb0\x97\x3c\x48\x72\x0a\x87\x5a\xa3\x8e\xf1\x4c\x49\xea\x96\xd1\x12\x0b\xa0\xbb\x9a\x8e\x54\x6e\x37\xdd\x73\x57\x9b\x35\xb2\xae\x45\xac\x64\x73\xbd\x4d\x3f\xc0\xe6\x7b\x97\x20\x32\x61\xa1\x7d\xad\x08\xfc\x32\x76\xde\x74\xb1\x96\x7e\x0f\x9b\xfd\x87\x57\x3d\x14\xac\x0f\xb6\x47\x68\xcf\xa0\xe4\xc1\xc2\xed\x27\xcf\x83\xaf\x4b\xf4\x2c\xd9\xe1\x70\x7f\xd3\xd8\x24\xff\x7c\xd4\xc6\xc8\x45\xf7\x7e\xd4\x60\xea\xe2\x9f\xc7\xcd\xe9\x11\x85\x4e\x8f\xe0\x41\x00\x99\x42\x6a\x33\x60\x0e\x2e\x81\x9b\x9e\xd7\xaa\x0c\x95\xd1\x1a\x59\x1f\x22\x60\xb6\x64\xc5\x4a\x7b\xed\xd0\x7d\x70\x30\x60\x87\x8d\xd5\x36\xdd\x69\xfc\x97\x18\xaa\xb6\xd5\xd6\xad\xe0\x3f\x84\xa8\x98\xa9\xad\xc0\xaa\xe6\x0c\x6b\xe9\x7b\xd0\x47\x7e\xa1\x46\xaf\x17\xcb\x28\x0f\xd0\x61\x15\x99\xb5\xca\xc8\x95\xfc\xc3\xbb\xac\x26\x48\x19\x81\x35\xba\xaf\xce\xc0\xeb\x58\x8b\x37\xeb\xa2\x90\xf3\x0d\xf2\x37\x11\x03\x13\xb1\x2f\xe4\x1a\x1a\x8a\xeb\x93\x6e\x0d\x5c\x81\x70\x00\x17\xcf\x05\x55\xe2\x40\x14\xf3\x6c\xa1\x82\xd4\xcc\xa0\x67\xc6\xe5\x40\x46\x72\x5e\x86\xbb\x82\xcc\xfe\xa7\x85\x4e\x8f\x87\xd9\x8a\x57\x95\x00\x52\xa6\x63\xd9\x33\x95\x2c\x1d\x51\x48\xaf\xba\x7d\x0a\x87\x07\xe8\xf7\xbd\x97\x4c\x1d\x7c\xd3\x03\xfc\x30\x15\x48\xb7\xe5\xb9\x25\xd7\x49\x21\xd4\x40\x04\x7e\xdf\xaa\x92\x15\xbc\xf3\x5c\xad\xb1\xbd\xde\x2e\x31\xe2\x1e\xd1\xf0\x6d\x39\x13\xa1\x50\x38\xb8\x8b\x07\x85\x0d\xa5\xa7\xd5\xc7\x78\xde\x2b\xbe\x61\x53\xc1\xd4\x4a\x1a\x74\x5f\xf9\x04\xa3\xc7\xbc\x20\x0b\xe6\xa4\x7e\xa3\xba\xe4\x67\xb2\x7b\xff\x3e\xb7\xe7\x4e\xec\x1e\xc6\x0f\xd9\xbe\xc0\xb6\x94\x53\xa8\xf9\x5b\x78\x3a\xd1\x53\x98\x47\x22\x1c\x3a\x08\x71\x55\xad\xae\x65\x2e\xf2\xbe\xe7\xe9\x22\x54\x4d\x35\x98\x43\x0a\x61\xbf\x56\xf0\x1e\x2f\x53\xb5\x51\xf3\x8a\x21\xf8\x36\xd2\xa2\xe3\x32\x99\x61\x57\xad\x00\xbc\x55\xc5\x2b\x29\xca\x41\x58\xe1\x5f\xe3\xb3\xda\x58\xc2\x7f\x8b\x23\x74\x22\x89\x73\x55\x4d\x29\x7e\x38\x34\x7f\x93\x5c\x23\xfb\x41\x94\xf6\x26\x3d\xb8\xe8\xc7\x29\x18\xf7\x7f\x11\x8b\xb3\xdb\xaa\x97\xf5\x7e\xbb\xbb\xbc\x1c\xf5\x2d\x49\x8a\x18\x20\x82\xbc\x51\xe6\xb8\x79\x62\x89\x2e\x2f\x47\xbd\xd3\xc9\xe8\xe1\xe5\xe5\xe8\xae\x9f\x41\x1d\x90\x9e\xfd\xfb\x4b\xfb\x63\x12\xca\xdf\x45\x8e\x46\xc0\x8a\x05\xf5\x5a\xd7\x9f\xee\x7b\x84\xe4\xf7\xec\xc9\xf6\xfc\xd9\xfb\x28\xca\x28\x66\x47\x7d\xcb\x0b\xf6\x3e\x0d\x35\xea\x25\x68\xe9\xee\x2e\x02\xe7\x93\x48\x55\x32\xf2\x8f\x43\x34\x78\xc4\x75\x41\x02\x89\x84\xf8\x25\x1f\x13\xbd\x8c\x3f\x8c\x76\x96\x7c\x88\x68\x0f\x91\xe1\x0c\xdf\x06\x3c\xd1\x6f\x74\xe1\x09\xa0\xe5\x9b\xbc\x7a\x27\x19\x78\x67\x93\xec\xe1\x43\x10\xd7\x5b\x9a\x46\x1e\xf1\x61\x83\x1d\x49\x7d\x3f\x1c\x0e\x30\x0b\x6c\xc4\x2d\xb5\x76\xe2\x59\x19\xdf\x47\x42\x85\x31\x3d\x7f\x88\x9d\x48\xb8\x15\x52\x24\x85\x4e\xd2\x17\xbb\xb9\x96\x76\x4e\x28\x40\x15\x54\x86\x90\xb3\x06\x1b\x08\x4c\x37\x85\x3c\xe7\xe0\xcc\x84\x89\xfb\xd0\xad\x0c\xcb\xc6\x7a\x6e\x1a\xfc\x5e\xa8\xd7\x1e\x54\x98\xd7\xac\x52\x46\x94\xc6\xde\x7a\xc0\xf1\x90\xa0\x56\xb3\x5a\xcc\xd6\x58\x9f\x38\x5f\x83\x1b\x82\xcb\x39\xa8\xe6\x3b\x44\xd7\xbe\xc7\x6b\x4d\xd0\x86\x43\x3b\xb4\x27\x16\x2e\x30\x28\x53\x9a\xed\x12\x5f\x0d\xcf\x5f\x1b\xc1\xeb\x5c\xdd\x94\x31\x8b\xed\x9e\xa5\x95\x3b\x62\xfe\xba\xa1\x9f\x6a\xe5\xb1\x13\x47\x3f\xe2\x55\x45\x54\x14\x67\xab\x93\x24\xb9\x12\x25\xd7\x6d\x11\x6a\xe2\x12\xb6\xbf\x84\xe2\x2d\xae\xf4\x37\x38\xcb\x3d\x80\xd2\xc5\x85\x2a\x17\xa2\x76\x91\x15\xa9\x05\x27\x29\xaa\xe4\xe9\x01\x4d\xde\x0d\xde\x54\xd9\xd1\xe1\x86\x3a\x18\x68\x15\xa5\x92\x53\x49\x8d\x29\xb4\x15\x16\x82\xd7\xba\x39\x3d\x57\xf8\x09\x12\xb5\x41\xe0\x07\xd4\xca\x0a\xb6\x37\x1c\xbe\x7b\x5f\xe1\x8d\x0c\xa7\x9c\xd4\xe9\x88\x22\xfb\xcf\x48\x71\xee\xb2\x65\x68\x3e\x07\xd3\xbf\x5e\xaa\xda\x0c\x67\xb2\x9e\xad\x25\x48\x66\xa5\x0a\xf0\x6b\x1b\xa2\x64\x21\x72\xac\x7a\xf0\x06\x75\x5b\x2f\xde\xbe\xf6\x2a\xaa\xa5\x5a\x17\xe8\x52\x39\x05\xb9\xcf\xf2\xae\x66\x29\x36\xc0\x9c\x00\x67\x2b\xcb\x42\x96\xe1\x5a\x8c\xba\x1d\x54\x6f\xc3\x9c\xd0\xa5\xdc\x97\x5a\x0c\x9e\x7b\xbe\xca\x5f\xf4\x28\xaa\xcf\xe7\x5d\xfa\x20\x5f\x24\x6a\x0d\x27\x4d\x43\x90\x13\x05\x71\x8b\x54\x59\x6c\x7e\x4c\x45\xdf\x50\xa5\x59\xb9\x05\x51\x2c\x06\x1e\x57\x6c\x55\x48\xaa\x57\xed\xef\xb3\xde\xe7\x1b\x11\xee\x61\xf7\x50\x9c\x73\x9a\x7f\xc7\xf2\x93\x26\x06\xd2\xd3\x61\x75\x6d\x71\x3b\x2b\xd6\x5a\x5e\x63\xa1\xfd\xd9\xba\x1e\x30\x55\xe4\x76\x51\x78\x79\x3c\x77\xbb\x8c\x0d\x32\x3f\x73\xb3\x1c\xb0\xe9\x7a\x3a\x2d\xa8\x06\x7f\xe0\x22\x48\xe1\x4a\x39\xf7\x71\xbf\xb6\xa8\xfa\x85\xaf\xcb\x0b\x16\xb8\xf1\xb4\x58\x43\x71\xec\x6a\x09\x56\x18\xb2\xd1\x8d\xd5\xda\x1c\xbb\x72\x23\xa8\x94\x00\x1f\x5b\x49\x2e\x55\x62\xc5\x6a\xf0\x84\x2b\xd5\x8d\xdb\xc6\xc8\xe2\x47\x84\x8c\x38\xab\x1d\xfa\xe0\x5d\x7b\xe8\x73\x19\x44\x89\x8b\xf7\xb2\x46\x4a\x3c\xbb\xd1\x6e\x03\xbd\x11\x09\xbb\xc6\xa2\xda\x9e\x69\xbc\xe5\x33\x43\x87\xd0\x2b\x55\x84\xe4\xfa\xb1\xd6\x12\xe8\x1c\x90\xb9\xc3\x01\x1b\x1e\x21\xa6\xf2\x47\xd4\x94\xc2\xda\xa6\x38\x6a\x99\xe2\x1b\x37\x58\xee\x26\x77\x1c\xfc\x25\x6b\xb1\x10\xb7\x95\xdd\x74\xe0\x77\x22\x40\x61\xde\x9e\xd1\xeb\x6f\xf3\xd3\x8e\x24\x23\xb3\x15\xb3\x91\x31\x37\x16\x55\xaa\x8a\x1f\x93\x9e\x35\x5e\x47\xcf\x07\x20\x25\x07\x15\x5d\x69\x87\x9c\xfb\x71\x75\xe0\x56\x69\x35\x5a\xba\x72\x86\x82\x86\x6e\x56\xea\x68\xa5\x03\xb8\x95\x10\x66\x6b\x2f\x6d\x1b\x76\xf9\x57\xec\x6d\x67\x88\x23\xde\x86\x62\x4f\x58\x09\xae\x8c\x37\xd7\xbb\x4d\x39\x1b\xaa\xcb\x9b\x81\x3f\xe3\xc2\xba\xa7\xb4\x18\x5a\x72\x7c\xb5\x3d\xd3\x7d\x11\x69\x11\x01\xff\x5f\x39\x23\x34\xda\x28\xac\x04\x88\xc8\xa0\x90\x46\xd4\x50\xc5\xba\x63\xd9\xe9\xb8\xd3\x44\x7d\xe4\xac\x1b\xe3\x31\xfb\xab\x9d\x7e\xd0\x17\xc2\xfc\x7b\xb8\x80\xfe\xee\x7e\x88\x45\x8b\xf0\x41\x28\xd9\x81\x0f\xa5\x7e\x47\x97\x25\x40\x36\xbe\x89\x61\xde\xff\x1d\x5e\xc7\xae\x06\x4d\xed\x27\xde\x81\x96\xb6\xbf\xd7\x01\x3d\xf9\x87\x9f\x23\x53\xfc\x0b\x12\x44\xa7\x83\x88\xd3\xdd\x90\x70\x31\x27\x2e\xb9\xf9\xff\xc7\xdc\xbf\xb6\xb7\x6d\x5c\x7b\xe3\xf0\x6b\xf1\x53\x8c\xe8\xdc\x36\x28\x51\xa4\x64\xe7\x48\x99\xd6\xed\xd8\x4e\xeb\x67\xc7\x71\x76\xed\x36\xed\x25\xd1\xdd\x20\x31\x94\x60\x81\x00\x03\x80\x3a\x34\x74\x3f\xfb\x73\xcd\x3a\xcc\xac\x19\x80\x94\x9c\x76\xff\xef\xbe\x48\x4c\x01\x83\x39\xcf\x9a\x75\xfc\xad\x13\xa9\x48\x23\xf4\x62\xcf\x5a\x13\xb3\xa6\x90\x0e\xab\x1f\xa1\xd7\x73\x29\xdd\xde\xbf\x7d\xf9\x76\xa4\xde\xd5\xc5\x52\xd5\xf1\x2a\xb7\x81\xd2\x60\xde\x05\xfa\x6e\x51\x74\xa4\xee\x11\x59\x06\x8a\x9b\x22\x03\x78\x5d\x58\xf7\xe6\x0e\xe7\x9e\x97\x09\xac\x4d\x5d\x1d\x01\xca\x0d\x61\xd2\xa6\x8c\xc7\xec\x71\xca\x7a\x35\x61\x7b\xe5\xc3\x87\xcd\x87\xe1\x31\x0d\xc4\x62\xb6\x18\xfa\x57\xad\xa8\xe5\x42\x1a\xe3\x5a\xd2\x5a\xb7\x9f\x54\x88\xc2\xa0\xec\x72\x64\x77\xa4\x50\x6f\xc8\x1f\x8a\xa9\xee\x54\xa9\x89\x89\x63\x11\xbd\x5a\x65\x75\x98\x91\x41\x98\x53\x07\x75\x5c\x9e\x3b\x4f\x71\xef\x59\xd3\x1c\xf7\x22\x2b\x72\x4d\x89\x9c\x67\xc5\xc2\x34\x08\x6b\x65\xd6\x63\x59\xea\xa5\x26\x4d\x31\x8d\x1c\xe3\xc9\x69\x51\x59\x52\x88\xcb\x73\x06\x17\x96\xd9\x62\x77\xad\xff\x53\x13\x70\x8a\x73\xad\x92\x00\x6e\xfe\x74\x29\xf9\xe8\xac\x0b\x94\x9c\xe2\x3a\xd4\xa1\x9b\xdd\x51\xc6\xd7\xaa\x58\xd5\x55\x9a\x20\x1b\x6c\xa8\xa3\xa1\x8a\x9f\xab\x6c\xf0\xa4\x2c\xbe\x2b\x1f\x3e\x0c\x1f\x59\xf3\xab\xd5\xbc\xb7\x31\xff\xcd\x75\x7e\x69\xed\x62\x38\xb0\x65\x59\x2c\xe3\x73\x84\xd4\x58\xc6\xf5\x05\x90\xe8\xe4\x2a\xce\x67\xba\xaf\x96\xba\x54\xbf\x3c\x79\x61\x79\xce\xa5\x9e\xa9\xe8\xc1\x77\xdf\x21\x9e\xdc\x70\xa8\xbe\x07\x0e\x07\xb6\x8d\x3b\x20\x04\xbd\x51\x17\x94\xcb\xe3\x58\x5d\xc3\xcd\x09\x41\x1f\x7c\xd2\x8a\xeb\x5c\x97\x2f\xe9\x0b\x65\x18\xae\xe8\xc1\x77\xdf\x3c\x86\xe8\x78\xcb\x42\x19\x46\xe8\x94\x86\xd8\xd0\xac\x30\x30\xf3\x64\xe2\xf6\x9c\xc7\x6a\x9a\x5b\x90\xbf\xca\x0b\xea\xaa\xb8\x1a\xd3\xea\x17\xe8\x9f\xd5\x32\x32\xe9\x70\x7c\x9b\x1a\xb7\x2b\x7a\xa4\x4e\x67\xb6\x32\xe4\xb9\xc9\x56\x89\x5a\xf6\x39\x8d\x16\x62\x30\xb2\xf7\x9d\xf4\x0e\xb5\xb4\xa3\xc8\x12\x3e\x19\x86\xdd\x84\xff\xa9\xb1\xf9\x7f\x9b\x13\xa7\x9d\x2a\x54\x83\x9f\x22\x87\x2a\x9a\x9e\xd0\xd9\xc7\x6a\x4d\x85\x9e\xd0\x0d\x96\xa3\x38\x49\x68\xa9\x48\xce\x3e\x2f\x6a\xb9\xa0\x2a\xd2\x83\xf3\x41\x1f\x9d\xa7\xd8\xb7\x47\x81\xb5\x15\x85\x14\x23\x98\x38\xc1\x18\x9a\x1a\x8f\x89\x51\xf7\x17\x7a\xbd\xb6\xb5\xf6\x36\x0f\xa2\xc8\x92\x01\x39\x0e\xff\x25\xd5\xd7\xa0\xf3\xc9\x12\x1a\x3f\x2e\x9a\x79\x86\x7d\x6e\x1b\xae\x14\x4d\x7f\x48\xa5\x6e\x80\xa3\xb5\x70\xf3\xc7\xf5\x45\xc7\xcb\xa4\x80\xd8\x38\xae\x43\x99\xcd\x82\xb9\xcb\x57\xf2\xcf\xee\xc4\x98\xab\x65\xa9\x93\xa8\xe7\xc0\x73\xdc\x8e\xb0\x95\x9c\xa6\x13\xc0\x69\xde\x09\xee\x7a\xaf\xc0\x11\xa9\xbc\xac\xa3\x49\x14\x68\xbc\x61\x61\x59\xda\x44\xb5\xe2\x6f\x9f\x54\xef\x54\xca\x13\x93\xa6\xa2\x1c\x3f\xc3\x5a\xbd\x7c\x5c\x17\x9e\xa3\x0b\xb5\xcb\x54\x05\xbe\x12\x49\x6f\x3f\x59\x76\xb1\xb6\x2e\x47\xe8\xbc\x13\xab\xa9\x11\x57\xff\x7f\xef\x1c\x58\x2d\x87\xfa\xc5\x01\x6b\xe9\x0d\x8f\xd8\x00\x73\xff\xad\xca\x53\xfe\x73\xd2\xe8\x9f\x1b\x50\x3c\x9b\xe9\x65\xfd\x92\x47\x85\x56\x01\xd9\xed\xf0\x6f\x6f\x18\x2d\x8a\x11\x9c\x38\xb2\xcb\xbc\xc4\xed\x16\xf9\x99\xc6\x5a\x78\x33\x9b\xd0\x36\x2f\xa6\x45\x72\xcb\x76\x1d\x9d\x78\xee\xee\x31\xc2\x75\x1b\xf9\x36\xf5\xc4\xaf\x26\x89\xe2\x7d\x45\x3d\xf8\x99\xeb\x8b\x7a\x3e\x44\x59\x64\x89\xd9\xdf\xb9\x15\xa1\x2a\xe2\x67\xf2\x5e\xf0\xcf\x5e\x73\x26\xac\xae\x72\x37\x72\x60\xab\xe0\x1a\xda\x0a\x43\xc3\x1a\x8f\x18\x20\xba\xdb\x17\x26\xa0\xa4\x2c\x03\xa8\x58\xe5\x4e\x85\xb1\xd0\xf5\x45\x91\xf0\x51\x24\x6e\x00\x5c\x79\xfc\xb8\x4f\x0c\xfe\xac\xdc\x81\x1d\xb8\x3a\x01\xfb\xb4\x32\xcc\x82\x92\x20\x7f\x3d\x4a\x42\x00\xee\xd5\x53\x0d\xb0\x40\xe4\x9d\x3e\x8f\xd3\x8c\x34\x31\x86\x40\xdb\xba\xac\x22\xc2\x5f\xbb\xca\x25\xa3\xea\xc3\x57\x8f\x18\xd3\x9b\x6e\xb0\xab\xb8\x4c\xe3\x69\xa6\x0d\x6b\xa4\xa2\x07\x5f\x1f\x31\x56\x14\xf8\xc3\x3f\xfd\x4e\x25\x04\x31\x21\x24\xf8\xba\x50\x98\x78\xcd\x62\xe2\x44\x0f\x8e\xbe\xfc\xf6\x6b\x81\x54\xe4\x0e\x06\x46\x91\xba\x83\x1d\x45\x2e\xdf\x1f\xd4\xd9\xe5\x9c\x33\x14\xd9\x9c\xad\x4a\xcc\x34\x23\xd9\xac\x41\x31\x9f\x57\xba\xfe\x05\x82\xe3\x4c\xb9\xc3\xde\xbd\x2e\x41\x0f\xfa\xf5\x80\x19\x91\x38\x57\x45\xfe\xc3\xdb\xb7\x44\x40\xc1\x51\xed\x5a\xa3\xe7\x7f\x5a\x57\xea\x87\xb7\x6f\xa3\x1e\x2d\x30\xd6\xe2\xee\x33\x79\xca\x85\x46\xd9\x14\x08\x71\xa7\xb8\xa0\xb3\x89\x0a\x8d\xa4\xe9\x18\x9d\x12\xd1\x35\x88\x73\x9c\xbb\x1d\x44\x3c\xa2\x8d\x52\xe6\xa8\x5d\xbc\x2c\x40\x9a\x8d\xa7\xc5\x95\xde\xcc\x61\x83\xc7\xb8\xbd\xe6\xb9\x6b\xd8\xb1\x88\x35\xd9\x1b\x3f\x14\x1c\xf1\xfd\x07\x5b\x64\xc9\x26\x80\x2d\xe7\x57\x2d\x59\x6f\xb6\x16\xb3\x57\x5e\x43\x15\xc7\xeb\xc9\x4e\xa3\xb1\xba\x2e\x29\x58\xce\x13\x97\xc1\x78\x0c\x50\x46\xc2\x8d\xce\x09\xd1\x2c\x84\x7b\xc3\x9d\xa7\x37\xdc\x8a\xbd\x8d\x07\x92\x5f\x36\x6c\x5d\x0a\x89\x94\x80\x12\x03\x76\x4b\xa5\xb3\x37\xa6\xa7\x7d\xd4\xa7\xe8\x84\x7f\x78\x7e\xca\xa6\x98\xf9\x20\x8b\x6b\x9d\x08\xaf\xe5\x12\x9d\xd4\xa2\xd6\x0c\x15\x77\x5d\x8e\x60\x62\xeb\xf5\x59\xb1\x2c\x9d\x69\xda\xfd\x10\xa0\x68\x5c\x9e\x9b\x46\x01\x4e\x0f\x74\x4f\xa4\x8d\x17\x6e\x8e\x98\x0a\x74\x95\xff\xdd\x1c\x83\x31\x93\x74\x27\xa3\x3b\x32\xef\x8c\xa7\xf7\x31\x44\x86\xbd\xff\xed\x93\x9c\x8a\xff\xa6\xc4\xc4\x4e\x57\xc8\x70\x54\xf3\xf4\xe6\x40\x27\xfe\x02\x97\x71\x7d\x01\x38\x60\x31\x92\xdd\xc8\x1c\x87\x03\x73\x1b\xf5\xbc\x35\xef\xe0\x88\x4f\x0f\x27\xcc\xa2\x38\x55\x81\xe5\x81\x59\x80\xc3\xe4\x41\x4e\xd7\x43\xd9\xdb\xf5\x4b\xda\x8e\x88\x11\xca\x4a\x3e\x34\xe3\x09\x8d\x52\xa6\x21\xa2\x69\x1a\xa7\x99\xe1\x3c\x13\x5d\xa5\xa5\x33\x11\xf0\xd5\x26\xeb\x13\x82\x90\x78\xec\xe5\x11\xe0\x6d\xff\x59\xc2\x90\xdd\x5d\x88\x0b\x85\xca\xf5\x72\x95\x93\xd3\x54\xa9\x11\xeb\x9a\xc6\x9f\x38\x93\xa7\x11\x09\xaf\x8a\x34\x01\x17\xd4\x4c\xcf\xeb\x03\xb8\x40\x91\xcc\x18\x9a\x94\xe6\xc0\x81\xce\x8b\x1b\x15\x3d\x78\xf2\xed\xd7\x47\xd6\x19\xde\xdf\x83\x66\x8f\xa0\xdf\x02\x87\xaf\x9b\x2b\x40\xf0\x1f\xee\x72\x76\x44\x9a\x12\x62\x39\x7e\x93\x88\x3e\x4a\x0d\xbb\xb4\x40\xed\x22\x84\x91\x61\x20\x6d\x90\xb8\xab\x91\xde\x2f\xcb\x62\xa6\xab\x4a\x41\x6b\x95\x8a\xde\xfe\xf4\xe3\xdf\x7a\xe6\x26\xb3\x28\xda\x16\xdb\x2c\x7a\xf0\xf5\x77\x47\x47\x7d\xf5\xe0\xdb\xa3\xaf\xbf\xea\xab\x07\x47\x47\x4f\xbe\x7d\x0c\xff\x7e\xf3\xf5\x97\xe2\x56\x33\x6d\xdb\xaf\x77\x05\x46\x87\x18\xe1\xae\x60\x3f\x2c\x8d\x64\x72\x61\x1d\xba\x01\x8e\x1d\xe8\x85\x70\x92\x6b\xb2\xf0\xde\xe4\x06\x08\xeb\x9e\xdd\x99\x57\x5e\xa4\x44\x83\x56\x55\x9b\x91\xd6\xc2\x75\xb3\x7b\x13\xf4\xed\xd4\xfc\x32\xf4\xbb\x3d\x6b\x89\x1b\x84\x2d\x28\x8d\xc7\xc2\x95\xd1\x02\xc1\xb8\x54\x56\x40\x07\x29\x9f\x15\x28\xcb\x98\xf9\x05\x1d\xf6\x28\x28\x8f\x00\xd9\xee\xa3\x3e\x01\xa0\x82\x5c\xa8\x26\xaa\x27\xdd\x08\x44\x2a\xc0\xd6\xe1\x88\x01\xd0\x8c\x6f\xf0\xb5\x6a\x24\x29\x83\xea\xf8\x9b\x10\x30\xdb\x23\x5f\x58\xe3\x6f\xb0\xa1\x46\x78\x4b\xd0\x77\x23\xfe\xa1\x3e\x6d\xcb\x40\xc8\x3e\x6a\x98\x2f\x2e\x4e\x73\x73\xe6\xa2\x24\x2d\xf5\xac\xce\x6e\x0f\xa6\xc5\x2a\x4f\x7a\x52\x4b\x2d\xa3\x37\x44\xda\x54\xff\x30\xfa\x11\x10\x2d\x3d\xc5\xc9\xb5\x5d\x75\x7e\x6d\x68\x83\x0f\x6b\xfb\xe4\x61\x47\xff\x69\x95\x0b\xaf\x39\x70\x21\x3d\x76\xb6\xbb\xeb\x38\xaf\x31\x4d\x49\xb1\xf4\xd4\x33\x53\x9d\xeb\xb8\xbe\x50\xab\xaa\x4d\x66\xf5\xfa\xfa\xd9\x62\xab\x5d\x63\xe1\x14\x08\x55\xb9\x63\xc1\xf6\x86\xd2\x50\x10\x7b\x03\xd0\x57\x03\x54\xe5\x75\xda\x7c\x40\xb8\x48\xb0\x21\x64\xe7\x5e\x2f\x16\x3a\x49\xe3\x5a\xb7\xf7\x72\x93\xcf\x48\x50\xb3\xf4\x1c\x81\xb4\x30\xcc\x8d\x91\xe7\xdd\xaa\xaa\x95\x4e\xe1\x1a\x3c\xea\x19\xae\x3d\x07\xf0\x60\xbe\xa5\x01\x39\x22\xbe\x32\x8f\xa5\x93\x53\x51\x72\x85\x8f\x7b\xf4\x9e\x5f\x46\x55\x4f\xc5\xaa\x5a\x4d\xc1\x11\xaf\x54\xfa\xd7\x55\x9c\xa1\xbf\x64\x51\x69\x0e\x07\x87\x3d\xc8\xb6\xad\x69\x51\x5f\x80\x3d\xa4\xd1\x52\x6f\xe0\xc8\x25\xf3\x12\xeb\xb5\x8a\x42\xce\x01\x26\xae\xc5\xf9\x44\x70\xfe\x9e\x4a\xdf\x5e\x23\xf2\xe9\x1d\x3e\x2c\x2c\x02\xd0\xb5\x8f\x7a\x54\x57\xd8\x3c\x38\x96\x25\x9a\x04\xf5\xed\xf4\x23\x13\x4b\x8c\xf1\x77\x4c\x5b\xc0\xe4\xb4\x38\xf0\x10\xb3\xd3\x63\x8f\x04\xeb\xba\x23\x3c\x58\x55\x8f\x89\x13\x8b\xbc\x72\x2b\x42\x14\x4a\x15\x38\xc1\x98\x8e\x6c\xc8\x2c\x15\xea\xb3\x6d\x8a\x29\xf1\x69\x8b\x6b\xc5\x56\x25\x82\x7b\x6d\x8e\xb2\xd8\xd9\x51\x3b\xd9\x6c\x10\x36\xc7\x51\x15\x55\x7d\x27\x4b\xd5\x60\x9b\xe4\x47\xd4\xe3\xb6\x77\x6d\xcc\xd3\xf1\x3d\x44\x0e\xf0\x93\x9f\x65\xab\x44\x57\x88\x2e\xe4\x14\xca\x95\xaa\x2e\xe2\x12\xc3\x67\xfe\x8b\x83\x54\xcd\xf1\x7a\x63\x83\x53\xe1\xfb\xbd\xbd\x3d\x40\xc1\x78\x01\xfe\x05\x16\x6d\x9a\xf9\x7e\x60\x53\xaa\x72\xf6\x8a\x64\x65\x8b\x1c\x66\xc1\xbc\x93\x3e\x9c\xe1\x5f\x9e\xbc\xe8\xab\x44\x2f\x4b\x3d\x03\x79\x41\x5d\xa7\x59\x66\x0e\x38\x3b\x0c\x61\x66\x05\xd3\x1e\x62\xec\x55\x23\xd5\xfd\x8c\x86\xe3\xac\xfe\x2f\xcd\xa2\x63\x65\x8e\xef\x4c\x67\x20\x43\xcd\xea\x32\x33\xaf\x7c\xb2\x88\x9a\xbd\x8b\xb8\xd2\x46\x14\x8e\x4d\x01\xaa\x99\x0a\x80\x6d\xc1\x3c\x26\xe5\x47\x9d\x2e\xf4\xbb\x3a\x5e\x2c\xd5\x55\xaa\xaf\xd1\x4b\xb9\x2b\xbc\x44\xfb\x88\xbf\xc4\xd0\x80\x30\xff\x97\xfa\x56\x40\x05\xf2\xa8\x66\x17\x71\xa9\xcc\xff\x5e\x98\x31\x5c\xea\x5b\xf3\x9f\xf9\xed\x57\xb7\xb3\x33\x4f\xb3\xba\xd5\x75\xc3\x9c\xc2\x34\x27\x4c\xdd\x8e\x73\x03\x47\xd7\x69\xb3\xf1\x4c\xad\xce\xe7\xcf\x39\x43\x0d\xb0\x48\x88\x8a\xe8\xbd\xb3\xd5\x0f\x6c\x27\x9d\x69\xa6\xf9\x6e\xe4\x9e\xd1\x38\x84\xfe\x5a\x6e\x4e\xe9\x77\x03\x81\x58\x2d\x73\x43\x7c\x35\xfe\x03\xec\xad\xce\xeb\xbf\xd2\xbf\x7f\x03\x11\x98\x57\x1c\x95\x26\x7f\xa5\x7f\xff\x06\x11\x77\x7f\x85\xff\xff\x4d\x55\xb3\x52\xeb\xfc\xaf\xf4\xef\xdf\x54\x5d\xd0\x57\xbf\x6f\x8a\x09\x38\x02\x09\x48\x31\xeb\xab\xc4\xfc\x6f\x5a\x24\xb7\x18\xc8\x62\xc1\xac\xec\x4c\xe0\x13\x7c\x2b\x3b\x2d\x8a\x88\xc7\xd6\x5b\xea\x45\x9c\xcd\x56\x66\x17\xe2\x68\x86\x7f\x33\xc2\xcd\x22\x45\xcc\x0d\xf4\x92\x82\x09\x19\xfe\x4d\xc5\x57\x71\x0a\x1b\x3c\x58\x60\x9c\x06\x5e\x60\x72\x75\xc3\x15\xa3\xc9\xdc\x6d\x5b\xfc\x97\xc5\x2c\x10\x50\x36\x9b\x05\x90\x34\x26\xee\x8b\x97\xc5\x6c\xc0\x2f\xed\x90\x60\x62\x8a\xe4\x56\x16\x32\x7f\x13\xbd\xf7\x7a\xdb\xec\xe4\xbe\x91\xbe\x8a\x99\x19\x40\x52\xcc\x06\xd5\xac\x2c\xb2\xec\x47\x3d\x87\x8e\x40\xb5\x0f\x1f\xc2\xbf\xc1\xab\x43\xd5\x53\x07\xfe\xb7\x58\x65\xeb\xb7\xfe\xab\x43\x0b\x80\x65\xfb\xf6\xb7\x66\xdf\xfe\xd6\xde\xb7\xf7\xc5\x52\x6d\xe8\x1b\xbf\xda\xd8\xb7\xd6\x6f\xfd\x57\x87\x61\xd0\x84\x39\xef\x1e\xc5\x02\x5f\x6f\x9b\xfa\xa3\xb3\xe3\x1b\x79\x7d\xe2\xf6\xf0\xa1\x77\x94\x7c\x32\xe0\x17\x1d\x7b\x25\xc7\x63\x7f\x93\x48\x8a\x60\x0f\x99\x1a\x29\x6f\x73\x87\xdd\x76\x64\x0a\x44\xc9\x91\x3a\x82\x7a\x8d\x68\x7e\xac\x1e\xc3\xef\x45\x9a\x24\x99\x3e\x56\x4f\xe0\x2f\xf0\x90\x12\xf6\x8d\x11\x03\x78\x63\x7e\x68\xef\xb2\xa9\x0a\x02\x13\x46\x5f\xc1\x70\x1e\xb0\x6d\x33\xc7\x58\x43\x3b\xb3\xe1\xd3\xc3\x88\x0b\x3f\x54\x47\xea\x04\x32\x93\x89\x47\x8f\xd5\x89\x7a\xe2\x3f\xfa\x52\x9d\xa8\xc7\x6a\x04\x0b\xde\xf3\x16\x6e\x13\x3d\x9c\xa7\x37\xed\x7a\x41\x79\xb6\x5b\x1c\x64\x7c\x4c\x20\x51\x2d\xb1\x27\xec\x22\x65\x35\x8a\xb3\x62\x69\xa3\x77\xa5\x02\x91\x4c\x42\x0c\x7d\x04\xdc\x82\x87\x24\x4a\x8a\x42\xf3\x0c\xc8\x1a\x2f\x3b\xe3\x58\x38\x2f\x39\xba\x05\x5b\x54\x91\x9c\xa1\xb4\x5d\x67\x06\x5d\x1b\x2b\x2a\x37\x40\x2e\xe5\x04\xb3\x1a\xc2\x1f\x83\x59\x91\xcf\xe2\x3a\x0a\x8a\xf4\xd4\x48\x14\x72\x0e\x3b\xae\x03\xe4\xd1\xe3\x77\x19\x19\x4f\x27\xa4\x99\xe6\x5d\xa2\x8d\x63\x9e\x5a\xc8\x1c\x84\x6f\x4f\xd5\xc1\x81\x27\x6a\x21\x80\x24\xaa\x85\x65\xdd\xfc\xfc\xd8\xb3\x71\xde\x30\x2b\xc1\x51\xd4\xfe\x89\x05\xec\xf9\xc7\x5f\xf5\xd5\xeb\x57\xea\xeb\xe1\x37\xc3\x6f\xd5\x43\x42\x6c\x7a\xdc\xfb\x1c\x8f\x0d\xaf\x27\x03\xc1\x22\x05\x14\x9c\x3b\x66\xf9\x1d\xcf\x5b\x15\x3d\x3d\x73\x73\xc1\x47\x0f\xbe\x3a\xfc\xb2\x4f\x7d\xe9\x79\x3b\x92\xaf\x8a\xc0\xd5\x73\x83\x2b\x89\xfc\xc2\x37\xac\xdb\x49\x2a\x28\x46\x7b\xe8\x18\x98\x3e\x33\x68\xe3\x31\xb2\xf6\xec\xb5\xec\x8e\x6d\xf4\xe0\xc9\x93\xaf\xbf\x45\xdd\xd6\xe3\x6f\x8f\xd1\x9a\x34\xfc\xd6\x3a\x2a\x0c\x98\xc5\x1b\xab\xdd\x5d\xef\x89\x4c\xc1\xca\xbb\x0a\x79\x82\x93\xe0\xef\x06\x67\xc0\xd1\x86\x23\x7b\xec\xe0\x24\x13\xff\x8e\x6c\x4d\x56\xc4\xc9\xc8\x7a\xf2\xb1\x45\xc4\xd9\x20\xd2\x45\x7c\xae\x07\xa6\x94\x17\x21\x66\x35\x93\xd6\x41\x03\xca\x74\x00\xc8\x0e\xbd\x24\xd8\xc9\x97\x72\xba\x81\xb1\x69\xe4\x3c\xb2\xd9\x0d\x62\x44\x76\xa8\x34\xef\x32\xc2\xd8\x34\x5b\x95\x5b\x4a\x16\xab\xba\x6b\xab\x9d\xea\x79\x51\x6a\x84\x30\x70\x59\x42\x56\x1e\x14\xfc\x5d\x21\xa5\x32\x73\x08\x38\x94\xb2\xf6\x84\x13\xbc\x38\x3c\x3d\x04\x25\xc4\x11\x57\x4e\xd4\x6e\xd8\xc1\x48\x29\x6a\x65\x3c\x38\xfd\x45\x2e\x7b\xeb\xe3\x40\x48\xe7\x2a\xcc\x81\xc7\x7e\xfb\x72\x24\x77\x8d\xc1\x25\xd8\x0d\xdb\x1a\x8f\x5b\x3f\xd8\xd0\x31\x67\x2f\x6b\x64\x67\xa9\xd2\x05\xf0\x7f\xb2\x5b\x2e\x04\xa0\xcf\x7b\x10\xc5\x1c\xe7\xa9\xfd\x73\x7a\x7e\x7e\x0b\x18\xcf\x90\x5c\x24\x29\x72\xe7\x2f\x5d\x28\xae\x14\x32\x3f\xce\xe7\x1a\xb0\xcd\x8a\x5c\x0f\x18\x20\xfa\x52\x07\xbb\xba\x2e\x14\x04\x65\x60\x4d\x8f\x2a\x15\x88\xc7\xa6\x07\x1c\xad\x8c\x95\x70\x1b\x89\x95\x31\x69\x43\xb3\xc9\xb6\x26\x3b\x64\x22\xa0\x83\xc9\xbc\x0c\x8d\x0c\x18\x44\xa7\x11\xf7\xde\x69\x73\xcf\x44\x83\x8e\xbb\x74\x7e\x53\x61\x60\x7c\x5a\xbd\xe3\x3e\x39\x3f\xf9\xe0\xde\x32\x82\x1a\x2f\x41\xcf\xfa\x28\x79\xb3\xbb\xc9\xb3\x8f\xf5\xb6\x1c\xe6\xe8\xc7\xbe\xb6\xe3\x71\xc8\x18\x11\x17\x88\x40\xf4\x74\xb3\x7f\xc1\x56\x1d\xc6\x27\x01\x33\x0c\x98\x95\xcb\x6c\x75\x9e\x12\x86\xb7\x39\xf8\xe7\xb4\x58\x44\x32\xe9\x06\xd0\xc9\xd0\x49\xe3\x70\xf9\x07\x02\xf9\xa0\x03\x40\xab\x5a\x1d\x0d\xbe\x09\x02\x6d\x2c\x14\x13\x5f\x1a\x14\x61\x68\x53\xaa\x22\x3c\x7f\xae\x75\xa2\xcd\x8d\x72\x3d\xf0\xc0\x96\x1c\x52\x4b\xeb\x2c\xb9\x54\xbf\x22\x1c\x46\x62\xd7\x8a\xc7\x36\xa8\xfc\xa4\xb3\xd3\x16\x42\xdb\xf7\x7d\x68\x5c\xc0\x78\x5b\x1d\x02\x50\xa6\xed\x7d\xe4\xd5\x28\x62\xd2\x71\x0d\xd4\xe8\x5e\x5d\x30\x5b\x9c\xd2\x3e\x08\x1f\x5a\x17\x25\x0b\xad\xa3\xd3\xd6\x2b\x69\x1c\x36\x67\xec\xc1\xb7\x5f\x7d\xf9\x55\x5f\x3d\xf8\xe6\xf0\xab\x2f\xfb\x7c\xc2\xcc\x35\xe1\x05\x2c\x03\x5f\x8d\x20\x49\x74\x04\x29\x7b\xd0\xb7\x54\x8d\xac\x9d\xd6\xc8\xe1\xba\x58\xb7\x87\xbe\x9a\x22\xa6\x25\x72\x8b\x71\xcd\xb4\x87\xb2\x29\xea\x32\xbb\x55\xfa\x66\x59\xa0\xfb\x69\x5d\xa8\x3f\xbc\xb0\xcc\xb6\x48\xa0\xe8\x70\x49\xdb\x73\x27\xee\x04\xe9\x20\x5c\xce\x1a\x87\xc2\x2d\x7a\xcc\xb0\xa3\x32\x10\x8a\x40\x86\x3d\x5b\xaa\x04\xfe\xa9\xca\x59\x5f\x31\xaf\xf8\x5b\xc7\xf9\x88\xa6\x79\x55\xc7\x79\x9d\xa2\xf2\xfe\x3a\xad\x2f\x8a\x15\x7a\x89\x3f\xca\xf5\xf5\x23\x75\xa9\x6f\xaf\x8b\x32\xe9\x10\xf3\x15\xa1\x47\x15\x7c\x34\x73\x00\x3e\xd8\x62\xcf\x47\x56\x6b\xfa\x93\xcb\x5e\x00\x36\x78\x27\x0c\x72\xa1\x76\xaa\x12\xc4\xc3\xaa\x9c\x0d\x44\x5c\x2e\x5e\x25\x01\xd3\x5d\x95\xb3\x63\x7e\x47\x2e\x50\xfc\xd9\xb1\x8c\xa2\xa9\x1c\x4b\x41\xfe\xc3\xd6\x71\xd0\xc6\x22\x41\x80\xfd\x22\x2e\x2f\x31\x33\xbb\x75\x9a\xc2\x6a\x00\x65\xc7\xa2\x0a\x14\xd7\xba\x54\x10\x0a\x07\xee\x41\xa5\x06\x37\xed\x79\x66\x04\x89\x46\xfe\x8a\x01\xf7\xb0\x49\xe0\x30\x62\xb7\x9c\xb1\x2b\xa1\x7b\xb1\x5e\xc3\x73\x9c\xcd\xbf\x04\x80\xfa\xeb\x35\x70\x22\xe5\x6c\x70\xae\xf9\x1b\xaa\x9a\x67\xae\xf1\x02\x68\xe9\x09\x61\x68\xbc\x2f\x21\xc1\x36\xfe\xf1\x03\x26\x4d\x13\xcb\x81\xba\x5a\x41\xcf\x83\x09\x76\xcb\xf7\xf3\xaa\x96\xa9\x38\x38\xd4\xda\xcf\x60\xc3\xe8\x0c\xcd\xa5\x16\x9b\x72\x27\xc0\x60\x44\x65\x6f\x63\xbf\x58\x89\xae\x4e\x17\xba\x02\x7d\xa4\xe1\x87\xd9\x17\x1b\xdb\xe0\xc4\x22\xb0\xae\x45\xae\x3b\x34\x00\xab\xc2\x1c\x7b\x9b\xcc\x3e\x76\x91\x2b\x79\x71\x1d\x31\x88\xf4\x9b\xb8\xbc\x04\x5f\x1c\x04\x7c\x4f\xb0\xb6\x16\x61\x94\x23\x20\xcc\x61\xb4\xae\x86\x62\x8e\x11\x85\x92\xb9\x6d\x9c\xf5\x4f\x61\x49\xb3\x34\x5e\x41\xaa\x13\x2e\x38\xef\x88\xa7\x95\xc3\xea\x79\xf9\xf6\xcd\x13\xde\xea\x71\xe5\xb0\x37\xcd\xbe\x35\x73\xff\xea\xc5\x9b\xe7\xef\x20\x7d\x89\xfa\x31\xce\xcf\x57\xf1\xb9\x06\x54\x93\x34\x3f\xef\xb8\xbc\x29\xd7\xd7\xd7\x83\xeb\x27\x90\x31\xe5\xfd\x9f\x86\x8f\x0f\x0f\x9f\x0c\x7f\x79\x79\xf0\xf2\xed\x9b\x83\x1f\xf5\x95\xce\x0e\x9e\x1c\x60\x13\x07\xe6\xd5\xe1\x93\x27\x47\x43\x3d\x5b\xc4\x07\x98\x17\xe5\x60\x8a\xf5\x0d\x2e\xea\x45\xe6\x11\x23\x23\x98\xd6\x05\x6d\x9f\xdf\x3a\x3b\xfe\x35\x3e\x0a\x61\x4c\x37\x9f\x15\x37\x43\xd6\x77\x47\x93\x8b\x87\x4f\x1a\x84\x8b\xff\x66\xd7\x0a\x80\x06\xf0\xce\x0e\xa5\x4b\x00\xa7\x8a\x9a\xb9\x33\xab\x09\x65\xdf\x13\x62\x57\x82\x6f\xf9\xf6\x6c\x61\x52\xb0\x39\x07\xe6\xc4\xc9\x1b\xe4\xe1\x0e\x91\xc5\xfc\x56\x1d\x68\x79\x84\x39\x03\x25\xaf\xa5\x7d\x2a\xe1\x92\x20\x7e\xa2\x54\x1e\x3e\xef\xba\x69\xbe\x9b\x76\xcd\x7f\xe3\x8c\xf3\x84\x07\x7d\xf9\xbc\x19\x0f\x3f\xb6\x53\xde\x6a\xbc\xfa\xb4\x69\xda\xd1\x36\x42\xce\xf6\x77\xcf\x3b\xb8\x81\xd0\xb4\xeb\x81\xf7\xb1\x0d\x79\xe2\x69\x6e\x33\x12\x6f\x9a\xef\x2d\x06\xe5\x60\xe2\x39\x5d\x78\xcb\x28\x4d\xc3\xcd\xa3\xe2\x51\x76\x28\xd1\x6c\xa3\x59\x66\x4b\x87\xbc\xc2\xcc\x6d\x13\x29\x76\x00\xa8\x43\x40\x3e\x65\xae\x0b\x78\x6f\x65\xb1\xe7\x86\x86\xb5\x88\xd9\xca\x7c\x60\x88\x2e\x05\x43\x7b\x50\xbe\xbf\x91\x6d\x04\x2a\x1c\x29\x87\x5d\xd7\xed\xd3\x1b\x68\xc4\xbe\x31\xd2\xfa\x27\x89\x12\x6f\x16\xb0\x6f\x08\xb5\x8f\xa3\xec\x1b\x74\x4d\x21\x0b\x8c\xec\x6b\x01\xe6\xe9\x0d\x68\x09\x28\x86\x83\x1e\x74\xd8\xaa\xbf\x49\x4b\x69\x33\xbf\x01\x4f\x57\x4b\xef\x33\x7c\x44\x5a\x65\xab\x07\xf2\x75\xd7\x0d\xbf\x81\xc0\x68\xed\xe3\x92\x6d\x71\xfc\x91\x4a\x24\xb1\x26\x33\x2b\x9a\x38\xb4\x02\xee\x51\x5a\x79\x51\x41\xa4\xa0\x62\x75\xf3\xf7\x23\xf5\x53\x11\xd8\x06\x09\xa6\x0b\x1a\x01\xb5\xf5\x10\xda\x22\x07\xf3\x69\x59\x5c\x57\xba\x24\x3d\x46\x47\xa4\xe3\xc0\xf6\xd6\x6b\x15\xf1\x6f\xf0\xb3\xb2\x3a\x79\xf6\xf8\x9d\x15\x79\x1d\xa7\x79\x15\xd1\x3b\xeb\x66\x29\x90\x53\x7d\xc7\xf7\xa6\x85\xde\x82\xf2\x7b\x6f\x19\x5e\x83\xec\xf1\xc8\x64\x08\x37\xc9\xe3\x66\xd5\xf3\xf4\xc6\x05\x18\xc8\xf4\x69\x16\x5c\xbe\xc7\x49\x6e\x54\xb5\x9a\x2e\xd2\x9a\x3d\x67\xd2\x22\xdf\x80\xed\x0f\xc5\xbe\x27\x5b\x2d\x4a\x38\xad\x50\xc4\x54\xdf\x98\x81\xa7\x3d\xcd\x93\x0b\x91\x85\x10\x19\x23\xca\xb8\xd4\x35\xce\x0f\x70\x5e\x94\x0b\xee\x58\x60\x12\x6d\xb8\xcf\x93\x97\xaa\xf9\xa4\xdb\xc4\xaa\x76\xd9\x75\xad\x39\xe3\xc7\xf8\x1f\xb7\x07\x71\x92\xa0\x8f\xc9\x22\x75\x70\x18\x08\x10\xaa\x12\x5d\xcd\x74\x9e\xc4\x79\x8d\x1d\x31\xec\xb6\x05\xba\xc8\x00\xa3\x08\x3f\x44\x4e\xdb\x9f\x86\x38\xb1\x8c\x20\x7a\xdd\x0d\xfe\x4e\xad\x5c\xea\xdb\x65\xa9\xab\x8a\x1f\x74\xfb\x9b\x80\x4e\xc1\x50\x0e\xd2\x15\xba\xdd\x13\xd8\x46\xac\xfe\xf2\xe6\xc7\x03\xde\x56\xb3\x32\xae\x2e\x50\x4e\x54\xd1\x83\xef\xbe\x3d\xfc\x06\x5d\x37\x18\xd5\x58\x01\xe0\xa8\x38\xaa\x3b\x30\x98\xf1\xc6\x00\x04\x4c\x84\x8b\x6e\xbe\x77\x27\x0f\xc5\x98\xab\x01\xd4\x39\xf2\x03\x15\x69\xa5\xe0\x95\x38\x21\xe4\x55\x6c\x1e\xf7\x55\x97\x26\xe1\xef\x8c\xc8\xe0\x25\x24\x6d\xce\x28\x7d\x85\x1f\xb5\xcf\xe0\x55\x80\x24\x07\x1f\x73\x33\xd3\xe0\xf6\x03\x4d\x5e\xe0\x6d\x7e\x47\x07\xdb\xa2\x3e\x7b\x8c\xb9\x5a\x86\x49\x2b\xac\x87\x3c\x5a\xb6\x60\xa7\xdb\x50\xec\x8c\xf4\x13\x56\x69\x2b\x3d\x47\x36\x92\x6b\x0c\x90\x81\x69\xbd\x36\x0c\x33\xef\x41\x66\x98\x57\x95\xb6\x51\x6a\x42\x7a\x21\xe9\xd1\x48\x7c\x81\xdd\x39\x98\x1c\x9e\x3b\x89\x4d\x12\x94\x39\x0e\x94\xaa\xc2\xf1\x55\x3a\x9e\x71\x7c\x75\xfb\x82\xb2\xde\x31\xe2\xf5\xec\xf6\xc3\xda\xac\xd6\xb4\x35\xd0\x16\xe7\xac\x45\x1d\xfc\x9f\x40\x5e\x08\xb3\xc5\xb5\xc6\x5e\x8c\xc7\x80\x97\x92\x03\xae\x0a\xb4\xba\x02\x6a\x52\xea\x78\x59\x05\x94\xa8\xb2\x40\x25\x2e\x9a\xa2\x15\xc4\x8b\x7a\x67\x0f\x44\x33\x81\xc8\xeb\x57\x04\x07\x2b\x28\xbc\x97\xe8\x61\x88\x69\xad\xe7\xe9\xcd\xa6\x14\x0f\xe6\xeb\x7b\x10\x7e\x6a\x06\x61\xd9\x5b\x29\xbf\x9d\x65\x07\xf3\xcf\x60\x19\x66\xf9\x45\x1e\x47\x41\x0c\x5f\xbf\xb2\xb2\xf1\x3c\x2d\x19\xdc\x16\x95\xe6\x30\x06\x1a\xc0\x2a\xaf\xd3\x4c\x4d\xb3\x55\x79\x6c\xc1\x30\x90\x3f\x07\x32\xcc\xd5\x59\xb0\x67\x62\xa2\xb1\xba\x81\x7a\x45\x80\xdf\xa6\x82\x03\x6a\x23\xcd\x95\x3f\x38\x0e\x02\xe7\xca\x20\xa9\x55\x55\xa7\x59\x06\x7d\xab\x54\x91\xd3\xa7\x31\x23\x54\x03\xd3\x08\xfa\x3d\xd1\x57\xec\x84\x69\x6a\x10\x1c\x28\xe1\x94\x6e\x93\x42\x90\x4b\xb9\x78\x47\x49\xcd\xb7\xd0\x4b\xda\x18\xc1\x28\xff\x8e\xff\x6e\xa5\x9b\x82\x3e\xf8\x66\x49\xae\x0b\xf3\x02\xda\x2e\x4a\xbd\x20\x9b\x4f\xfe\xfe\x71\x55\xd5\x7f\x67\x18\x62\x8f\xe8\x5a\xe7\xbc\xd6\x50\x9f\x96\xdb\xf3\xbe\x5d\x6e\x69\x78\x2b\x49\xda\xd0\x55\x99\x8e\xdf\x3a\x72\x5b\xed\xa3\x35\x03\xf6\x85\xf5\x84\x96\x9c\x64\x88\xe8\xc1\xd1\xd1\x57\x87\x87\xec\x47\xb9\x89\xf2\xd9\x61\x09\x0f\x41\x9f\xdc\xd9\x29\xfa\xb4\x89\xe2\x50\x74\x81\x1f\x3e\x71\xac\x32\xc7\xe0\x50\xd7\x98\xc1\x29\x72\xc9\xdc\xc0\x85\x5f\x6d\xe5\x60\xd0\x0a\x16\xcf\xea\xf4\x2a\xae\x37\xec\x1f\x3b\xa5\x2d\x9c\x87\x04\x9c\x6b\x1c\xfa\x96\xe4\xad\xbb\x4d\x3c\x4a\x73\x15\x63\xb3\xf7\xe5\x15\xe8\xab\xcf\xdd\xf3\xdb\x2e\x34\x6b\x96\xba\x6b\x4f\xdd\x6b\xb9\xef\xba\xe8\x36\x1e\x92\x3b\xa6\x65\x23\x87\xf2\xe9\xbe\xd2\x20\x2f\x9f\x30\xfb\x5b\x19\xed\xdd\x35\xe6\xa1\xa0\xb0\x26\x7f\xd7\x83\x0d\xdc\xbf\x52\xfa\x32\x3e\xd0\xd9\xcf\x01\x3f\xc9\xde\x6a\x76\xe6\x11\xd4\x8d\xb0\x78\x9a\xd3\x2e\x1e\xf2\xac\x1b\x99\x0c\xb6\x90\x0b\x73\x21\xba\xc8\x59\x80\x45\xfc\x0b\x13\xd3\xc6\x0d\x1e\x08\xad\xf7\x93\xb6\xee\xc3\x84\x6c\xbf\xaf\x69\x3f\xb0\x2b\x35\x75\x66\xf7\xae\x8b\x31\xbc\xdd\x49\x9f\xd1\x65\x53\x41\x17\xc3\x62\xe1\x82\x87\xd0\x58\x62\x6f\x5a\x6f\x76\xf2\x32\x90\x57\xbb\x97\xc3\xe9\x37\x45\x2e\x0a\xd6\x1f\xa1\xaf\xd0\x13\xc1\xb9\x1d\xa8\x2d\x8a\x0c\x8a\x23\x41\xa8\x97\xd8\x70\xc4\xe7\x99\x11\xeb\x97\x35\xa2\x02\x3a\xb1\x2b\xcd\xd0\x7d\xa9\xc8\x35\xb8\x1a\x54\x16\x8a\x8b\x1b\x72\xc9\x8c\x63\x0a\x52\x3a\x94\x41\x7b\xcd\xac\x39\x76\x9d\x37\x9c\xc8\x79\x7a\xd3\xf7\xf6\x79\x7f\x63\x14\x66\xcf\x3b\x57\x88\x11\xdf\xae\xa3\x31\x23\xb7\xb9\xab\x36\xc8\xbe\xb8\xe5\x79\x20\xfb\xfb\x04\x70\x68\x69\x88\xb5\x99\x36\x51\xb6\x71\x7a\x2d\x3e\x6b\xf3\xb0\xf7\x37\xb8\x49\x78\x4d\x1f\x1c\xb8\x59\xdc\xd0\x74\xab\x29\xf5\xce\xd6\xbd\x5c\x57\xac\x21\x9b\xe7\x0e\x0b\xbf\xb3\xe3\xa9\x16\x19\x31\xd9\xe1\xcc\xa2\x5f\xca\x3c\xef\xab\xe1\xde\xeb\x9f\xde\xbf\xfa\xd3\x4f\xcf\x7f\xdc\x1b\x2a\xb3\x2d\x9c\x29\xd6\xf4\xe3\x87\xbc\xef\x01\x07\x20\x88\xe9\x2c\xce\xd1\x11\x6a\x11\x2f\x41\x39\x6a\x9e\x0e\xc3\x28\x25\x32\x74\x12\xb8\xb0\x44\xbc\x72\xe2\x03\xf5\xed\x80\xc1\xb4\xfc\x2e\xaa\x5e\x68\x35\xb5\x5a\x2e\xa0\x36\x88\x51\x05\xf5\xa9\xe1\x10\x6c\x36\xee\x3d\x58\x4b\x99\x81\x0c\xdb\x71\xb5\x7b\x30\x3b\x02\xc4\xf4\x38\xd4\xaa\x35\x73\x9a\x07\x68\xc0\xb5\xc5\x9d\x16\xee\x2d\x6c\x19\x0f\xe7\x9e\x81\x80\xc1\xd1\xaf\x8f\x33\xdf\x50\x25\x61\x7c\xaa\x84\x51\xc3\xce\x3a\x07\xe6\x79\x1e\xfa\xab\xbb\xc1\x9a\x05\xc6\x31\x9a\x52\xfe\xc0\x68\xd0\x9b\x86\x27\x41\xe4\x9b\x4d\xb4\x2e\xc8\x38\x58\x90\x60\xe6\xe5\x0c\x70\xb7\xb0\x5f\x2e\x1a\x87\x3a\x15\x4c\xb4\x44\x4d\x97\xf5\xf1\x1e\xde\x5a\xd7\x67\xac\xa6\xf5\x36\x81\x01\x07\xb1\x32\x50\xbb\x67\x12\xf5\x27\x69\x77\x9e\x07\xfe\xa6\xcd\xb5\x33\x6b\x6c\x2a\x3e\xe2\x92\x78\xc0\x0c\x49\xcd\x8f\x6d\x23\x9b\xc8\x2b\xc2\x46\x30\x68\x04\xe5\xe6\xd4\x16\x22\x00\x0b\xb3\x72\x14\xf3\x79\xe5\xf3\x42\x50\xe6\xa8\x37\x28\xe6\xf3\x48\xc6\xc8\xd8\xce\x62\x4f\xee\xb8\x8b\x59\x05\xf3\xe7\x8a\x5c\x94\x00\x74\xb8\x2a\x30\xbd\x0f\xc2\xe4\x11\x1e\x19\xea\xf7\xb1\x56\x1c\x19\x23\xf6\x53\x4b\xf0\x97\x61\x2c\xbc\x07\x41\x96\xa6\x46\xea\x70\x38\x53\x70\x65\x6e\xe7\x02\x04\x67\x6d\x4f\x42\x33\x39\xd9\xb1\x4d\xb5\xda\x37\x04\xb3\xe1\x57\xd6\x4a\x31\x7d\x4f\x06\xef\x90\x6f\xa0\xb0\x47\xca\xb6\x31\x9f\x6f\x6d\xc3\xd6\x6e\xa8\xaf\x00\x13\x60\x10\x07\x7b\xee\x2a\x46\xce\xa8\x42\x4b\xa3\x7d\x2e\x82\x5c\x05\x5d\xe0\x2d\xa5\xd8\xa1\x28\x08\xb3\xef\x04\x96\x86\xa0\xae\xe3\x8e\x08\xed\xc5\x77\x41\x4c\x3d\xee\xb1\x8e\x67\xb1\x10\xc1\x79\x27\x6d\xe1\x72\xfb\x00\xe9\xb7\xdf\x1a\xcd\x37\x6a\xf9\x20\x30\x88\x0c\xfc\x3c\x2c\x0d\x0e\xd3\x3c\xf5\xb2\x9e\xbb\x93\xf9\x3b\x2e\x2a\xf2\x08\x3f\x75\xeb\x36\x21\x1a\x7b\xe7\x5d\x60\x0e\x5f\x78\x19\x78\xd7\xc0\xd6\x1b\x20\xcc\x49\x21\x3d\x3e\xda\x89\x31\xef\xb4\x96\x61\x98\xfe\xcf\xf3\xc9\xa6\xdb\x61\xe3\xb5\xf0\xd9\x24\xb2\xed\xec\x7e\x06\x03\x2f\x4e\x6f\xfb\xb9\xed\x80\x31\xae\xe5\x54\xdd\xef\xbc\xa2\x9b\xa2\x2b\x4b\x07\x75\x95\x6f\xa8\xb5\xbd\x3e\x5e\x58\x5b\xa1\xab\xaa\xb3\x93\xa5\x57\x6d\x94\x25\xe8\x9f\x3d\x54\xa6\x42\xca\x75\x69\x0e\x93\xfb\x00\xcd\xbc\x2d\xf4\xe8\xb8\x13\xee\x16\x33\x84\x24\x6d\x6b\xf5\xce\xf6\xc4\x50\xbc\x06\x21\xf9\xc3\xde\x5e\x77\x4b\x93\x1d\x6b\x2c\x95\x0d\x07\x5b\xfd\xf7\x13\x52\xb1\x38\xf7\x6a\xc7\xb6\x00\xbb\x5e\xc6\x07\xc3\x41\x0d\xca\xcb\x03\x41\x5d\xb2\xf7\x9f\x04\x48\x3f\xe2\xa0\x0b\x98\x29\x57\x09\xa0\xdd\xdb\x60\x0b\x39\x8d\x1b\x67\x70\x13\x04\x35\x92\x08\x02\xbb\x0a\xa7\xe8\xee\x03\x64\xbd\x70\x5d\x3d\x8c\xc0\xe0\x5d\x78\x54\x8e\xb0\xbc\xb6\x76\xc0\xea\x0e\x4e\x0f\xc3\xa8\x9a\xfb\x35\x7d\x7a\x38\x69\x03\x18\xaf\x8b\xf3\x73\x5f\x4f\x22\x17\xed\x5d\x7c\xa5\x55\xa9\xc1\x25\x7b\x06\xa8\xe3\x8e\x23\x01\x2c\x46\x48\xb8\x0d\x30\x9f\x59\x51\xad\x4a\x46\xbe\x26\xc0\x1b\x5b\x18\xae\x05\x62\x2f\xe6\x8e\xf3\xf0\x38\x0d\x28\x93\x5a\x61\x17\x3b\xb6\x4d\xd8\x85\xa0\x95\xf3\x55\xa9\x55\xb1\xaa\x39\x68\x8b\x9d\xb5\xea\x42\xe9\x1b\x3d\x5b\x21\xf6\x3a\x74\x2a\x8b\xab\xfa\x3d\xd4\xda\x82\x8d\x47\xca\x0a\x57\xc6\xdc\x86\xdc\xd5\x1e\x47\xc7\xfd\x1f\x95\x1e\x77\x9a\x3a\xaa\x6d\x1f\xf7\x65\xbb\xfb\x22\xab\x42\x33\x07\x27\x81\xa5\x54\x75\xb1\xec\xec\x6c\x71\xaa\xb6\xea\xfd\x3c\xe1\x41\x22\x66\x0f\x0d\x5e\x72\x95\x00\xc4\x23\xbb\x30\xd9\xc8\x61\x9a\x41\x0a\x8d\x2b\x8b\x9b\x59\x9a\x5f\x5a\xcf\x69\x9b\x1d\x17\x02\xd9\x5c\xe2\xda\x05\x70\x9e\x48\xb3\x71\xa7\x23\x86\x8d\xbb\xff\x69\x3d\x99\xc9\xe4\x6c\x51\xa8\x0f\x89\x00\x7f\xc2\xf4\x35\xc0\xfa\xc0\xee\xa7\xfb\xfb\x6a\x12\x7e\x29\x83\xcb\x91\x84\x9a\x16\x23\xc5\x1b\xc7\x9e\x6f\x48\xa2\xe3\xef\xf0\xb7\x57\x1a\x78\xbd\xb7\xab\xba\xe5\x80\x3b\x07\x17\x2e\xab\x7a\x03\xe7\xdb\x12\xd1\x87\x66\xba\xe8\x2d\xf8\x3f\x82\x9f\x81\xd4\x29\xa9\x08\x00\xd5\x48\x4d\x45\x5a\x1e\xc5\x5a\x1e\x05\xd1\x16\xa5\xae\x20\x9e\x0d\x02\x31\x29\x19\x27\xcd\x5d\x32\xcd\xf0\x47\x57\xed\x77\x76\xd0\x9f\x06\x7c\x5a\xe1\xd7\x6a\x89\xff\x62\x1e\x95\x46\x06\x49\xe1\xf6\x23\xb2\x1e\x53\x55\xa4\xce\x44\xb2\xa8\x9c\xc9\x1e\x6a\x67\xd3\xbd\xf9\xb1\x5a\x2a\x5d\x96\x45\xa9\x44\xea\xe7\xae\xcc\x3d\x24\x15\x62\x29\x46\xd9\x90\x3a\xcc\x81\x2d\xe3\xa9\x25\xef\x43\xab\x75\x9b\xe7\xc2\xa9\x3a\x8c\xd6\xb1\x34\x68\x83\xf4\xeb\x0b\x9a\x24\x67\xba\xb4\xf2\x5b\x2e\x90\x67\xea\x10\x21\x72\xec\x6d\x87\xfe\xda\x21\x17\x82\xb8\x38\x68\x8a\x62\x92\x9a\xb3\x5a\x12\xce\x06\xea\xf9\x39\x81\x36\xa9\x30\x73\x69\xd2\xdb\x10\x5e\x68\x47\xed\xbd\xe7\x58\x7c\x72\xa5\xc5\xda\x5d\x26\xee\x7f\xb9\x7e\x17\xd1\x6e\x37\xeb\x70\x6f\xb7\xa3\xf6\xd4\xbb\xf4\x1f\xff\xc8\xb4\x7a\xf1\xee\x9d\x7a\xc7\x17\xe5\xab\xfc\x3c\xcd\xb5\x79\xfb\xa2\x58\xde\x62\x06\x80\xc7\x87\x47\x8f\x19\x8f\xf3\x87\x62\x95\x27\xce\xbe\x0a\x4e\x7c\xb0\x49\x20\x6b\x7c\x51\x56\xe6\xd3\x3f\x99\x4d\x57\xe9\x04\x18\x58\x04\x9b\x78\xf3\xfa\xbd\xca\xd2\x99\xce\x2b\xa8\x9c\xfc\x5a\x2b\xe8\xc1\x47\xc3\x05\x2d\x86\x90\xfc\xda\xdd\xaf\x16\x40\xd1\x8f\x82\xed\xd8\x04\x0b\x49\xb9\xca\xcd\x05\x13\x57\x95\x2e\xeb\x3f\xe8\xfa\x75\xf2\x53\x51\xff\x64\x56\xb5\xb3\xf3\xea\x66\x69\x64\x92\x73\x5d\xbf\xd7\x37\x35\xb8\xd1\xfd\xf5\xcd\x8f\xfd\xce\x0e\x4b\xe9\xf0\x73\xb1\x4c\x33\x53\xba\x2a\xca\xfa\x6d\x99\x40\xfa\xc9\x8b\xb8\x7a\xb9\x5a\x66\xe9\x2c\xae\xcd\xab\x62\x55\xeb\x72\x51\x54\x35\xe1\x2c\x01\xdb\x1b\x57\xfa\x8f\xa2\x18\x19\xff\xc0\xd7\xb0\x74\xdd\xf5\xc2\x0a\xcc\x77\xec\x91\x6c\x6e\xa1\x6e\x95\xfe\x03\x86\x61\xae\x8c\x37\x71\x7d\x31\x28\xcd\xbb\x45\xd4\x53\x3d\x97\xd1\xbc\x3b\xe8\xf6\x21\xf1\x97\xf9\xfc\x7d\x71\xa9\xcd\xfe\x7f\x07\x8a\x1e\xc3\x67\xb2\xaf\xfc\x98\xa3\xf1\x2c\x8e\x32\xbc\x7c\x85\x86\x0e\xab\xf1\x0c\x42\xe1\x81\x53\x2d\xcd\x2c\xd2\xe5\x9b\x80\x96\x04\x7e\x2e\x21\xb8\xf4\x74\x32\x58\x42\x58\xed\x72\x55\x5d\xd0\xdf\xab\xea\xc2\x0c\xd4\x2c\x26\x3e\x81\x9f\xfd\x0e\x6b\x27\x62\x80\xdf\x5f\x2e\x75\x72\x00\x64\x85\x60\xda\x55\x3a\x77\x48\x9e\xa6\x9d\xb4\x52\xab\x5c\x80\x05\x70\x39\xa8\x93\xff\x30\xa4\xd6\x8b\x5d\x11\x42\xba\x63\x19\x32\x98\x16\x38\xb3\x0e\xa3\x0a\x65\x42\x04\x38\xca\x74\xee\xe1\x15\x39\xa6\x2a\xc5\xf8\x0f\x51\xb5\x25\x21\xa9\xa7\x9d\xa2\x87\x07\x47\x02\xc3\xe4\xf9\xea\x1c\x31\x3e\x1c\xfb\x61\x5a\xe5\xa0\xa4\x55\xa5\xd5\xf4\x96\x8e\x59\x67\x67\x11\x97\x97\x0c\x36\xea\x91\x3e\x23\x61\x41\x40\x02\xf5\xc0\x50\x48\xe9\xbc\x7e\x45\x51\x06\x48\x09\xd7\x6b\x7c\x20\xe4\x00\x50\x61\x41\xa7\x30\xf5\xc4\x0b\x82\x98\x0f\x78\x55\x7b\x72\x00\x10\x0d\x66\xee\x52\xdf\x8a\x94\x21\x54\x9d\xec\xa8\x38\x8f\x97\xfa\xd6\xef\xa7\x75\x41\xb9\x84\x3c\x89\xe0\x78\x58\xd5\xaa\xd4\x33\x33\x29\xda\xd0\x04\xed\x9c\x4e\x4c\x53\x04\x02\x76\xa9\x6f\x55\x4f\x3d\x53\xe6\x90\x22\x00\xfe\x8f\x3e\xd0\x17\x39\xe7\x10\x30\x3d\x7c\x49\xe9\x2e\x6c\xfe\xa0\x0e\x3b\xa2\x98\x56\xae\x34\x62\xc0\x46\xa6\xe6\x7d\x65\x2e\x28\x17\x2a\x38\x2b\xb2\x2c\xad\x38\x90\x86\xb7\x20\x2a\xa3\x85\x07\xbc\x88\x8c\x88\x2a\xad\xd5\xeb\xaa\x5a\x69\xf5\xe0\xe8\x2b\x74\x39\xa3\xb9\x89\x5c\x9f\xb0\x21\xb7\x42\x64\x84\x64\xf0\x7e\xbb\x24\x59\x5c\x55\xbc\x22\x62\x7d\x20\x52\xb0\x36\x47\x7a\xd3\x4b\xa2\x4f\xe5\x86\xf7\x1d\x1c\xff\xb9\xbe\xc1\x9f\xbf\x5c\xa4\x35\xc9\x59\xb3\x8b\xb8\x8c\x67\xb5\x2e\xab\xf6\x08\x82\x59\x55\x3d\x39\x60\xe1\xa8\x1a\x3e\xb8\xb6\x9f\x76\x76\xdc\x6f\x43\xc0\x4e\xcf\xce\x6e\x1e\x1f\x9e\x9d\xd5\x67\x67\xe5\xd9\x59\x7e\x76\x36\x9f\x74\xf1\xac\x6f\xa9\xf8\x36\xaf\xe3\x9b\xe1\x03\xd7\x8b\xce\x8e\xfd\xfd\x2a\x9f\x15\x86\x1f\x30\x95\x47\x27\xa3\xb3\xb3\xb3\xb3\xc1\xfa\xf4\xe0\xec\xec\x7a\xb2\x3e\xfd\x70\x76\x76\x73\x78\x78\x70\x76\x76\x13\x1f\x4e\x7a\xfb\x5d\x1a\xe4\x8f\x45\x51\xe9\xec\x56\x2d\x0a\xb3\x31\x20\xae\xc2\x5c\x5a\x69\xa2\xf3\x3a\x9d\xa7\xba\x54\xb2\x29\x73\x30\x0d\x4b\xfa\xeb\xaa\xa8\x75\x42\x3b\x96\x02\x02\xc1\x70\x12\x7c\x1b\xdd\x6b\x8a\xe2\x1a\xaf\x38\xed\x1e\xf6\x30\xd2\x06\xf6\x8d\xc2\x41\x8f\xda\xa7\xe5\xc5\xbb\x77\x8f\x8f\x86\xd5\x6d\x0e\xf9\x01\x2e\xea\x45\xf6\x00\xba\x75\x90\xe8\xf9\x81\xeb\x4a\x67\x47\x74\x6b\xac\x1a\x73\x26\xee\x85\x6b\x73\x2f\x5c\x3f\xa0\x9b\xc1\x0c\x19\x90\x94\x01\x4a\xc1\xf4\x27\x36\x1d\x6c\xef\xcc\xf6\x41\x75\x76\xdc\xe7\x66\x89\x4e\xf7\x3e\x7c\xb1\xde\xfd\xe7\xe4\x64\xdc\x33\x0b\x6f\xbf\x80\xb7\x67\x67\xa7\xe6\xfa\x12\x5b\x66\x5f\x75\xf7\x22\xf3\xac\xb9\xe0\xfb\xaa\xdb\x0b\x4b\x77\x76\x76\xba\x7b\xd1\xc9\xc8\x3c\x77\xed\x36\x6b\x3c\x19\x45\xa7\x8f\xce\xba\x93\x5e\xe4\xf6\xcc\x07\xf3\xef\xa4\xb7\x77\xd2\x3b\x3b\x7b\xb2\x86\x46\xc5\xf4\x99\xd6\xd6\xbd\x75\xa3\x45\xd5\xdd\x3b\x3b\x9b\xf0\xce\xfa\x19\x64\x5c\x21\x0c\xe5\x05\x24\xaf\x00\xdf\x85\x6a\x38\x2d\xe3\xd9\xa5\x06\x31\x76\x38\x54\x0a\x63\x85\xed\x14\x58\xf5\x42\x45\x20\x15\xf9\xc1\xb2\xd2\xab\xa4\xa8\x54\x94\xe8\xbc\x20\xaf\xc5\x51\xcf\xff\x3c\xbf\xc5\xfc\x73\x1a\x92\x25\x63\x30\x6b\x05\xd0\xa7\x24\x6e\x63\x88\x2c\x20\x87\xd6\x85\x2a\x75\xb2\x9a\xa1\x9c\x97\xaf\x16\x53\x5d\x2a\xa1\x6c\xac\xa8\xe6\x5c\xeb\x04\xe3\xf2\x2f\x75\x6e\xe4\x0a\xc2\x8f\xfb\xf9\xdd\xab\x3f\xbf\x7c\x6b\xea\xfe\x01\xc0\x02\x3a\x3b\xdc\xc3\xb1\xea\x8e\xb6\x2c\x14\x4c\x73\x74\xe7\xbc\x3f\x5e\x47\xa7\x1f\xa2\xde\xe9\xd9\xd9\x64\xb2\xb7\x36\xc5\x71\x2d\xc5\x36\x81\x85\x38\xfd\x30\x9a\xac\xe1\xfb\xde\xde\x7a\xb0\xd7\xeb\x9d\x9d\x99\xb5\xa1\x55\x00\xc7\xf8\xb8\x9e\x5d\xc0\x85\xf0\xf3\xdb\x77\x30\x9f\xee\x89\xc4\xb9\x34\xac\x09\xf5\xde\xf0\xb7\xeb\x22\x49\xd6\xfa\xd7\xf5\x79\xbd\xce\xea\x75\x5e\x5f\xac\x01\x13\x71\x6d\x04\x5f\x1a\x44\xfb\x9e\x8b\x4e\x46\x07\x67\x67\x49\xef\xe4\xec\x2c\xd9\x6b\xdf\x25\xbd\x75\x2f\x3a\x19\x9f\x7e\x38\x98\xac\xbf\xb0\x7d\xfd\x51\xc7\x89\xcb\x1e\x98\x1f\xe8\x6a\x16\x03\x8c\x5a\x19\xa7\x10\xc7\xe8\xaa\xe9\x0b\x37\x00\xc0\x2d\x31\xe5\xaf\x5b\xa9\xf4\xd2\x5c\x9a\x09\xe7\x23\xc9\xe2\x1a\xd6\xaa\xac\xcb\x14\x72\xfb\xba\x34\x3a\xaa\xfb\xa1\xd9\xd7\xfd\xb5\x19\xce\x07\xbb\x34\xbc\x56\xbd\xb6\x81\xed\x7f\x61\x48\xc7\x39\x51\x8e\x72\x56\x2c\x16\xf1\x3d\xda\xd8\xeb\xb7\x3c\x83\x4a\xa0\x8e\x69\x9a\x33\xcd\xb8\xb3\xa6\xa8\x79\xa9\x3c\xdb\xff\xe7\xa4\x6d\x11\xa8\x01\xdc\xb4\x41\xdd\xbc\x93\x99\x02\xbe\x8a\xab\x34\xbb\x3d\x58\xc6\x65\xa5\x0d\x1d\x1c\x96\xc8\x1b\x00\x4d\x7c\xfd\x52\x15\xa5\x7a\xff\xfc\x0f\xe6\x9f\x17\x3f\x3e\x7f\xf7\x4e\x9e\xa1\xf2\xd7\x55\x3a\xbb\x34\x7b\x4d\x8d\xd5\xf0\x43\x74\x32\x7a\x10\x9d\x9e\x5d\x9f\x1d\x4c\xf6\x7b\xeb\xe8\xec\x7a\xbf\xb7\x3e\x1b\xd8\x27\xbd\x2f\x86\x30\x75\x86\x56\x98\xe2\xa3\xbc\xa8\x87\xa6\x9b\x55\x8a\xa1\xac\x63\x35\x3c\x85\x11\xd6\x67\xe5\x59\x7e\x36\x9f\xec\x9d\xee\xff\x73\x02\x45\x74\x9e\x54\xbf\xa4\xf5\xc5\x4f\xf8\xad\xf9\xf4\x2c\xa2\xfa\x2e\x74\x9c\x00\xe1\x1f\x5e\x9c\x25\xc3\xd4\x14\x47\xef\x35\xf3\x08\x7e\xad\xb1\xcf\x6b\x73\x10\xe2\x52\xc7\x6b\x74\x55\x37\x65\x3b\x3b\xe5\x34\x9e\x5d\x56\x59\x0c\x9c\xfa\xf0\xec\x2c\x3a\xd9\x3d\x3b\xeb\x0d\xcf\x01\xd6\x8c\xcf\x12\xf9\x6d\x74\x5f\xbf\xec\x8e\x82\x95\x7a\xb0\x95\x6e\x03\xae\x41\x17\x66\xae\xf1\xe5\xd9\xd9\xe0\x1e\xdf\xfe\xf4\xfc\xcd\xab\x96\x4f\x4f\x8d\xd8\x3a\x06\x2a\x73\xb2\xa5\x16\x2c\x60\x48\x37\x55\xf7\xfe\xf9\x1f\x1a\xb5\xb5\x7f\xdf\xb8\x36\x41\x5d\x2c\xbb\xf6\xfc\xfd\xfb\x3f\x35\x2a\x0b\xe8\x18\x96\x44\x82\xda\x5a\x56\xec\x47\x53\xf0\x6d\x38\x4f\xcb\xa2\xea\xab\x6e\x6a\xa7\xf2\x8f\xaf\x7f\x6c\x2e\xc2\x28\x2a\xf2\xec\x36\x24\x64\x07\xb3\x8b\x34\x4b\x36\x92\x33\x43\xcf\x2c\x31\x8c\xa2\xd3\xfd\x83\xc9\xba\x17\x01\x61\xcb\x5b\x6f\x40\xa0\xeb\x50\x6a\x43\x6d\x67\x67\xc9\x7e\x6f\xdd\xdb\x48\x17\xbb\x62\x24\x44\xc0\x57\x88\x5a\x9a\xa5\xd3\x32\x36\x8c\xbf\x4a\x17\x4b\x94\x33\xcd\x12\x0e\xd2\x0a\x32\xdd\x75\x25\x2d\x6f\x9d\xc6\xa0\xb9\x53\x43\x1a\xd6\x30\xbf\x76\xfe\x9c\x04\xf6\x0e\xbd\xbc\x3a\x2c\x7d\x26\x88\x6e\xa9\xab\x9a\x89\x2e\xde\xb5\xa0\xae\x70\xe9\xa5\x51\x65\x10\x08\x61\x42\xb4\x4c\xd2\x2b\x29\x37\x23\xe3\x4d\x52\x73\xd4\x4d\xd2\xab\x2e\x6a\x63\xeb\xf2\xd6\xd3\xc8\xcf\xf3\x08\xbe\x25\xd8\x8d\x19\xe0\x67\x46\xda\x57\xdb\xbb\x30\x50\x35\x4f\x73\x70\x8f\x67\x69\xaa\x44\xc5\x09\xe3\x26\x70\x8a\xf7\x1d\xec\x8f\xd3\x73\xd9\xf1\xbf\x80\xd0\x99\x74\xae\xce\x35\x4b\xf5\xd5\xf7\xb7\xef\xe3\x73\xf0\xeb\xef\xee\x75\x7b\x64\x15\xac\x10\xe2\x86\xc1\xb7\x79\x0a\xa8\xe4\x4f\xc5\x0b\x4c\x9b\x09\xca\x7b\x78\x23\x04\x3f\x18\x11\x46\xe4\xa5\x57\x83\x78\xb9\xd4\x79\xf2\x02\x36\x64\x38\x45\x54\x4b\xd4\xed\xf6\x3c\x43\xd5\xae\xf9\x70\x63\x17\x9d\xd0\xfe\xa9\xd7\x32\xae\xe7\x96\xdf\xe2\xa1\x38\x58\x35\x75\x51\xea\xb9\x38\xa5\x3c\xae\x3f\x96\x7a\xfe\x53\x51\xff\xe4\x0a\xde\x39\xae\x34\xcf\x75\xf9\xc7\xf7\x6f\x7e\x34\xcc\xc5\xd3\x18\x6a\x1e\x3f\x7a\xf0\xe8\xd9\xd3\x61\xfc\xac\x2b\x06\x63\x0a\xc3\xd9\x84\x39\x60\xab\x7f\x31\x0f\x5e\x0c\xbc\xae\xef\x8e\xc7\xca\x53\x0e\x61\xfa\x94\x2d\x9f\x44\x5d\xd3\x83\x2e\x82\xd1\x77\x1f\x74\x5b\xa7\x47\xd0\x27\x27\xe1\xd0\xbd\x87\xdc\xa7\xe3\x56\x29\x23\x2a\x4e\xc3\x73\xc9\xc7\x7f\xd6\xcc\xe0\x15\xf4\xec\x29\xc9\x11\x38\x35\x90\xe9\xdf\xa5\xba\xa1\xc9\x30\xb4\xab\x6d\x60\x8b\x55\x56\xa7\xcb\x4c\x63\x6e\x4b\x08\x7f\xf8\xd6\x2e\x6e\x4c\xe9\x1b\x51\x95\x62\xd8\x26\x31\x48\x43\xe5\x30\x82\x0d\x12\x4a\x95\xba\x42\xc7\x09\xd6\xe2\xbb\x84\x26\x45\x91\xe9\x38\x0f\xd2\x9c\x90\x8b\xd4\xa6\x9d\xe6\xb6\xe7\x0b\x23\xb4\x83\x37\x2a\xb9\xdb\xd5\xe5\xaa\x82\x48\x38\x9c\xab\x3f\x03\x1c\xbd\x2b\xb5\x75\x0e\x87\x43\xf5\xd6\xc8\x36\x94\x02\x73\x0e\xd9\xf1\x39\x74\x02\xd4\x03\xa0\xb9\x8d\xd2\x5c\x7d\x37\x80\x7c\x2e\xcd\x59\x37\xb5\x41\xd1\xf1\x23\xce\x02\x63\x76\x66\x92\x5e\x3d\x6b\xbe\xe3\x37\x5d\x17\xfc\xdd\x38\x80\xae\xef\xeb\xf5\xb6\xd7\x51\x57\xdb\x13\xaa\x36\x11\xb2\x0e\x5b\x0d\xe7\x71\x99\xaa\x27\x83\xc7\xa8\x04\xa9\xb0\x5b\x72\x01\x0d\xdb\xcc\x91\x2e\x48\x1e\xd1\x26\x51\xd1\xa8\xdd\x96\x99\x89\xc9\xed\xea\xf0\x00\xde\xa3\xb3\xe6\xdc\x3c\xbe\x63\xa9\xbf\xbf\x7d\x9d\xd8\x9d\x67\x33\x13\x10\xc0\xcc\x96\xfd\x01\xfd\x5a\x96\xe9\x55\x9a\xe9\x73\x5d\x61\xb0\x15\xa8\xc1\x8b\xac\x32\x2c\x66\x5b\x9d\xaf\x5f\xfa\xdb\xe7\x5e\x3b\xe7\x75\x0e\x3e\x2f\x60\x87\x81\xad\x0e\x7b\x03\xc2\x95\x49\x45\xb8\xaf\x0e\x8f\x37\xd0\x30\x60\xad\x1e\x99\xcb\xd3\x15\xee\x22\x45\x83\x5d\xb3\xf1\xbd\xdd\x3d\xa4\x45\x1e\xa4\xb9\xe9\xe4\xf7\x10\x29\x01\x3d\x04\xac\x59\x78\x25\x68\xa1\xc5\x54\x78\xaf\x2b\xf6\x66\x86\xe4\xad\xe2\x32\x6d\xce\x23\x92\xc2\xe1\x50\x4d\x57\xe7\xe7\xb7\x1c\xa6\x5c\x21\xf0\x13\xef\x35\x7d\x2d\x33\x90\x30\x8e\xcb\xe3\x8e\xf4\xe8\x6d\x54\x1d\xd9\x71\xf9\xbb\x02\xf9\x9c\xed\x2d\x42\x5e\xf8\x46\x83\x87\xf7\x6d\x70\x5f\x1d\x7a\x29\x13\x9a\x56\x0a\x35\x56\xbb\x2d\x35\x99\x2d\x29\xfa\x7d\x2c\x93\x6c\xae\x96\x62\x49\xd0\x5b\x87\x2f\x62\xe4\x3a\xdc\x21\x31\xd3\x4e\x7e\xca\x1d\x8c\xa9\x44\x95\x3d\x21\x93\x5a\xc5\x7b\xdf\x81\x64\x29\x23\x40\xac\x96\x1d\xe2\x6a\x64\xc2\x1a\x6e\x13\xf8\xd0\x9f\xcc\x45\xd2\x37\xe3\x3b\x3d\x9c\x58\x88\xc5\xe3\x8e\x65\x78\x38\x5c\x86\x8d\x04\xc2\x54\x28\x98\x2c\x08\xf0\x40\x72\x52\xad\xb2\xda\xe5\xe4\x60\xcd\x7d\x44\x81\x1a\xa4\xa8\xf7\x53\x0e\xd0\x47\xa4\x51\x16\x60\x67\x1d\x11\x0c\x0e\x45\x8e\x39\x94\xc0\x2a\xe9\x51\x23\x2f\x5d\x48\xc8\xcc\xd9\xe7\x6f\xfa\xaa\xd2\x0c\xbb\xea\xba\xc7\xbf\x20\x19\xd0\x31\xda\x92\xf4\x4d\x0d\x28\x9c\xf8\xcb\x87\xb2\x34\xa3\x5c\x60\xc2\x22\x8c\x66\xb9\x59\x64\x7d\x05\x83\x76\xc0\x94\xfc\xad\x98\x48\xc6\x75\x92\xee\x2b\x77\xf9\x60\xb7\x0e\x9b\x6b\xb2\xad\xed\x82\x1b\xcd\xc3\x87\xfe\x93\xef\xfc\x0a\x60\x6c\xe6\xdb\x9b\x45\xa6\xc6\x0a\x2c\x67\x91\x1d\x62\xcf\xf5\xcf\xbc\x87\x4c\x99\x76\xae\x28\xdd\xdc\x82\xd2\xae\x38\xb9\x7a\xa0\x6f\xf4\x4c\x78\xd0\x39\xbc\x00\x73\x6f\x2c\xb5\x4e\x0e\x56\xcb\x11\xaf\x4c\xf7\xc1\xeb\x97\x5d\xe7\x7f\x1e\x2d\x38\x61\xc3\xe9\xd1\xa4\xe7\xc3\x1e\x7a\x08\x9f\xdf\x39\x37\x7f\xda\x3b\x3c\xb9\xe1\xf9\x5a\xd8\x30\x24\x4b\xe3\x45\x54\x54\x5d\xd0\x56\x06\x56\xe3\xfb\x2c\x9e\x5d\x4e\x75\x59\xde\xaa\x2f\x07\x5f\x33\x69\xb7\x5f\x03\x5f\xe5\xd2\xf4\xe7\x85\xca\x8a\x1c\x02\x33\x73\x1f\xd1\xea\xc1\xd7\xdf\x7d\xfd\xa4\x23\xe2\x0f\x29\x2b\x7d\x90\xd0\x53\x44\x5a\x39\x5b\x3a\xe2\xa3\x54\x9a\xf2\xc8\xbd\x7e\xd5\x47\x9e\x02\x93\x21\xfd\xa2\xa7\x97\x69\xcd\x94\x2b\xad\xf5\xa2\x72\x35\x30\x5c\x5a\x9a\x57\xb5\x8e\x13\x55\xcc\xe1\x26\xf2\xfb\x01\x57\xca\x78\xac\x16\x32\xce\x6b\xd3\x19\xdb\xd9\xd9\x69\xd9\x6d\x5e\x4c\x97\x74\x1c\xdf\x50\x96\x32\x17\x78\x25\xcd\x62\xd0\x3e\x63\x42\xe5\x25\x4f\xe6\x94\x40\xb4\xaa\x3e\x12\x38\x27\xf8\x17\xcb\xee\x15\x68\xdb\x04\x36\x8f\xe1\xce\x8e\x03\xb7\xb0\xd4\x80\xcc\x82\xbc\x46\x2d\x73\xb4\x6d\x8a\xb6\x8d\xba\xb3\x71\xeb\xbf\x7f\xfe\x07\xdc\xfa\xd2\xc5\x1d\x37\xff\x63\x97\x58\xc7\xb4\xc7\x0e\x3d\x8e\x66\x39\x8a\xdd\xdc\xf7\x42\xe8\x12\xc7\xb0\xaf\x0e\x7b\x81\x3f\xba\xed\xef\xc6\x2e\x0e\x50\x0d\xd4\xe8\xa5\x38\xa7\x4f\x30\x95\x7c\x3b\xb7\xfc\xf0\x61\xcb\xb9\xf4\x78\xd2\x7f\x69\x98\x8e\x1d\x34\x4b\xb5\x6d\x84\x02\xe4\xb4\xc3\xf0\x7b\xe8\xd3\x50\x59\x98\x2f\x9c\x2b\x37\x67\x4e\x9b\x04\xea\xd9\xbe\xea\x7e\x71\xd4\x35\xcd\xb4\xdf\x21\x40\xf4\x15\x46\x0b\xe1\xfc\x0d\x5c\x0e\x2a\x61\xdb\xbe\x59\x96\x7d\xc7\x2d\x4a\x9c\x31\xbe\xad\xb0\x08\xfa\xab\x38\x88\x4f\x0e\x12\xf8\x74\x1c\xd6\xff\xce\x39\x12\x87\xf8\x8f\xa6\xaa\x7b\xb6\x81\x39\x94\x45\xfe\x27\xf5\xcc\xf0\x9b\x04\x35\xf4\x27\x2b\xb4\x49\x07\x3c\x52\x05\xb1\x42\xcc\xdc\xe7\xa0\xbe\x44\xb7\x4c\x77\x0f\xa3\xd2\xe0\xb5\x79\xf5\x33\x94\xe5\xe4\xf6\x12\x8e\x6d\x93\xf9\x9f\xc0\x2a\xbd\xf8\xda\x41\x5d\xfc\x58\x5c\xeb\xf2\x45\x5c\xe9\x48\x2a\x20\x72\x1b\xce\x4d\x00\x20\x5e\xf4\xa4\x79\x41\x7e\xfe\x36\xe8\xf0\xde\x23\xa3\x94\x10\xe1\xa8\xbe\x87\xc7\xff\xcb\xc3\x8a\x1a\xe3\x5a\xaf\xc5\x58\x09\xc8\xa4\xf7\x6f\x1c\xed\xb2\xa8\x52\xf3\x3a\xce\x1a\x23\xfe\xd9\xbe\xe2\x51\xb3\x4e\x6d\xbb\x5f\x01\x1b\xdf\x68\x12\xec\x9f\x63\xb5\xcf\xbf\x8f\xef\x74\x4e\xc0\xa3\xc6\x27\x4b\x04\xfb\x12\x42\x13\xbc\x79\x9d\x27\xfa\x06\x0f\x5e\x1e\xa9\xd3\x09\x9e\x50\xda\xd7\x7d\xd1\x11\x02\xea\x65\x6a\x46\xdf\x59\x6e\xbe\xc3\x5e\x9c\x86\x45\xb0\x87\x70\x0e\xb9\x9a\x08\x61\xc1\x01\xfd\xa5\xf8\xb1\xf9\xc6\xfa\x3c\x1e\x1c\xf8\x4c\x8c\xe9\xc6\xa9\x8a\x3e\x06\x0d\x1a\xa6\x57\x26\x53\x83\x62\x1f\x27\x46\x70\x88\x38\x6f\x15\xfc\x49\x2f\x1a\x81\x8a\x3d\x17\xa9\x38\xdc\xdb\xeb\xa8\x3d\xf5\xe7\x3a\xcd\xd2\xfa\xd6\x77\x58\x21\x85\x11\x9b\x9f\xe0\xfa\x45\xb3\x79\x31\x57\x71\xae\xe2\xb2\x8c\xc1\xe1\xf3\xe5\xdb\x37\xa4\x46\x52\x7b\xea\xff\x2e\xe3\x32\x5e\xa8\xdf\x20\x13\xfe\x9a\xc8\xef\x27\x98\x0f\x70\xe5\x22\xdf\x2b\x35\x26\xea\x32\x70\x0f\xda\x76\x3f\x6c\xfe\x22\x81\x08\x13\x44\x87\xea\x76\xcd\x6f\xeb\xe6\x23\x58\x66\x7b\x3a\x3c\x7e\xd9\x16\x10\xac\xa8\xc7\x1e\x1e\xc1\xf1\xf0\x19\xc6\xf0\xc9\xd1\x91\x60\x4c\x21\x29\xa6\xbe\x41\xdf\x2f\x44\x4a\x12\x2a\x54\xc4\xce\x33\x22\x37\x0c\x6b\x55\xc5\xe7\x2e\x6d\xd0\x1c\x9d\x27\x2b\x88\x2c\x9d\xc1\xec\xe5\xfa\x1a\x53\xfb\xa3\x83\xc9\x83\xa3\xa3\xa3\xaf\x9e\x34\xa2\x2c\xf1\xa0\x8a\x46\x5b\x83\xfb\x38\xb0\x3b\x28\xdc\x1a\xb5\xf7\xbe\x8c\xaf\x74\x09\x70\xb8\x95\x02\x09\xae\xd4\xe8\x2b\x8c\x92\x16\xc7\xc3\xfb\xc2\xfc\x31\x25\x92\x97\x6f\x73\x7d\x53\xbf\x23\x23\x97\xdd\x95\x66\xb1\xf6\xc7\x8a\x56\xd7\x67\x82\xdc\x56\x14\x6c\x42\x00\xca\x1f\xae\xc0\x97\x81\x9a\xc9\x2e\xf6\x5f\xd8\xed\x89\x10\x04\x5f\x16\x64\xae\x87\x4c\x52\x6a\x86\xca\x67\x65\xa8\x14\x66\xa1\xc4\x1c\x9a\x55\x5d\xae\x70\xaf\x93\x06\xd4\xce\x8f\xc8\xc7\x6d\xbb\xd0\xb7\xe9\xc9\xf5\xcd\x52\xcf\x20\x39\x77\x01\x7e\x23\x74\x0e\xa4\x80\x0a\x69\x08\x28\x43\x71\x28\xa0\xba\x0e\xd6\x3c\xff\xdc\x43\xea\x47\x73\xea\xa0\x3e\x87\x9e\xed\xa1\x9a\x99\x1b\x17\x44\x31\x77\xa0\xf8\xcf\xb6\xe3\x34\x1c\xaa\xc0\xdd\xcf\x8c\xe9\x4a\x97\x48\x95\x60\x7b\xc6\x95\xe6\xc4\xd4\xa9\x03\x67\xbd\xd5\x04\xb8\x09\x95\x44\xd5\x6a\x76\xa1\xe2\x0a\xbc\x96\x61\x42\xe7\x65\xbc\xd0\x04\xde\xac\x0e\xd4\x83\x2f\xbf\x7d\x62\x76\x31\xd8\x4d\x82\x16\xc7\x56\xc6\xd9\x90\xd0\xdf\x3c\xed\xb5\xa4\xe8\x61\x4d\x5f\x50\xdf\x49\xf8\xc4\xa1\x06\x80\x3c\xfc\xc7\xf7\x6f\x7e\xec\xaa\x91\xc5\x70\x45\x26\x85\xbf\xb6\x01\x9a\x71\x0e\x3c\x5e\xc7\x3e\xb0\x33\x2a\x9e\x58\x95\x07\x3f\xf2\xa0\xbc\xe3\xbe\x9a\x8a\x5b\x3b\x06\x57\xc7\xb1\x8a\x07\x01\x79\x39\x51\x71\x38\x3c\x35\x52\x31\x5c\x30\xd3\xd5\x52\x8d\xd5\x14\x92\xbe\x04\x79\x27\xd8\x8b\x19\x6a\x31\xe5\xd6\x6b\xb5\xbb\x1b\xc1\x4f\xc8\x11\xb3\x1c\x04\x94\xcd\x30\xdb\xa6\x13\xae\xbf\x8d\x27\xd1\x74\xb5\x44\x56\x18\x40\xc1\xdd\x00\x17\xa6\x71\x5e\x16\xbe\xc6\x37\x8e\x97\xfa\x06\xfd\x36\x7d\x8a\x37\xd5\x10\xc1\x27\x0f\xd5\xd1\xd7\xae\xd1\xd6\x1a\xf9\x5e\x8c\xa6\x66\x3e\xc4\x54\xf4\x3c\x87\xcd\x29\x0c\x35\x0e\x69\xa0\xc5\xdd\x09\x5c\x35\x59\x3d\x2d\x38\xe3\xb8\xae\xdb\xd8\x61\xeb\xbd\x0e\x6b\x79\x15\x67\x66\x79\x3c\xe5\x07\xd3\x34\xa9\xf9\xc0\x6e\x10\xbf\x96\xb7\xb1\x69\x9f\xa8\x78\x74\x05\x89\x9a\x41\x0f\x62\xba\x80\x32\x3d\x3b\x6c\x07\x00\xdd\x57\x71\x26\x68\x28\x57\x61\x1a\x5c\xaf\x55\xc3\x78\xe3\x7d\x0a\x67\xcc\x33\xb5\x08\xd7\x75\x33\xb8\x8c\x09\xb9\x2c\x64\x26\x5a\x14\x74\xdd\x00\x7f\xf9\x8d\x88\xe9\xd6\xc2\x02\x5e\xf5\xde\xfb\x13\xfc\x31\x42\x87\xd5\x11\xb2\x62\xd9\xc0\xf1\x44\x27\xa6\xfa\x01\xb2\x18\xa2\x14\x1a\x38\xcd\x7a\x91\xab\x02\x2d\x9b\xf3\xb3\x1a\x73\x88\xc1\x0b\x42\x41\x48\x3e\x82\x5d\x46\xa2\xc3\x75\x76\x84\x4b\xe9\x48\x7d\x75\xe8\x1c\x63\x91\x31\x1d\x79\x4c\xa4\x75\x8f\x18\x39\x8f\x23\xce\x51\x08\xc9\xff\xed\x59\x5c\x14\x09\x76\xff\xa2\xd4\x73\x74\x85\xfb\x23\xa1\xcd\x6c\xb2\x3a\x9a\xb9\xf9\x0d\x36\xfe\x0e\xec\x59\xb4\xe9\x8d\xda\xd9\xff\x6d\xeb\x88\x1f\xf6\xd5\x63\x8e\x53\x05\x0a\xd2\x35\xab\xf3\x3b\xaa\xc3\xef\x02\x98\x97\x39\x84\x5d\x3a\xef\x90\x16\x8d\x35\x2c\xb5\xd0\xe6\x26\x42\xea\x75\x47\xc2\xe7\x67\xda\x35\x70\x6d\x06\x51\x79\xac\x88\x7b\xdf\xa6\xc2\x4b\x93\xff\xb7\x3a\x3c\x16\x48\x4c\xcf\x3d\xfd\xdd\x89\x3a\x5d\x4c\xd4\xc8\x66\x98\x46\x26\x08\xcf\xc1\x7f\xd6\xe4\x05\x03\xe1\x14\xd2\x56\xd3\x85\xd1\x7a\xd4\x97\x26\xd5\x68\xed\x47\x0b\x71\xe9\xa6\x49\xb7\x37\xb8\xb2\x60\xf9\x69\xe2\xb2\x55\xc3\x54\xf1\x1f\xae\x22\x7e\xe4\xcf\x21\xa0\x11\x91\xe7\xcf\x26\x07\x86\x60\x8f\xd6\xf1\x79\xdf\xe9\xae\xef\x35\xc5\x4e\x53\xd6\x1c\xa0\xe4\x7a\xcd\xa4\x6d\xd7\xb3\xd5\xf1\xb9\xcf\x09\x87\x9b\xa0\xb5\x77\x88\x58\xcc\x46\x87\x7b\xb5\xd0\xb1\x71\x91\x59\xad\x4b\x88\x8b\x5c\x16\x55\x95\x62\x66\xb5\x85\x15\x58\x68\xe4\xf1\x39\xd2\xf0\xbd\xae\xbf\x63\xac\x49\x66\x67\x67\xa7\x5e\x60\x04\x08\xff\x8d\xf9\xa2\x69\xcb\x84\x26\x1a\xea\x6e\x83\x09\xf6\x54\xcc\x01\xc7\x22\x41\xea\x16\xcb\x56\x0d\xaa\xcd\x71\xeb\xcd\x79\xbd\x58\xb6\x60\xc6\x79\x4a\x3d\xdc\x28\xe4\x71\xd6\xb0\xb9\x3e\x7c\xa8\xb6\x2f\xc1\x9d\xfb\x63\xfb\xe6\xd8\xb6\x37\x70\xd9\xec\x6d\x2b\x61\xb6\xac\x77\xdd\x46\xad\xa9\xeb\xb5\xb5\x8e\xb7\x13\x91\x3b\x07\xe0\xaa\xbd\x93\x96\x6c\x1b\x8d\x50\xb5\x3a\x7b\x7d\xcf\x53\xac\x82\x6b\xa2\xce\x20\xea\x82\xae\x97\x67\xdd\x91\xfa\x4d\x25\x69\x39\x52\x5d\x47\x37\xbb\x7d\xcc\x67\x8e\x49\x91\x14\xdc\x70\x5d\xd5\x5e\x94\xde\xee\xcb\xb7\xa5\xbe\x4a\x8b\x55\x45\xf2\x69\x6b\x6d\xff\xdc\x52\x5e\x71\x67\xad\xb3\x34\xf5\x96\x9c\x03\xdd\xdc\x2f\x64\x5a\x64\x36\x4b\x09\x0b\x95\xd0\x10\x5b\x97\x4c\x8c\xe2\x72\xaa\xa3\xe2\x0a\x6d\x3a\xe7\xe9\x95\xce\x49\xd9\x52\x17\x56\x79\x6e\x2e\x2d\x08\xad\xa3\x20\x86\xa2\xb4\x01\x0d\xae\xd1\x27\x13\x88\x24\xc3\x3f\xbe\x84\x8c\x85\xf8\xfb\x2b\xf8\x6d\x1a\xbc\xab\x2b\xbe\x71\x01\x68\xc2\x3f\xc7\x8e\x28\x88\x76\xba\xaa\xab\xf6\x5d\xff\x20\xf6\x45\x84\xe2\x58\xed\x5c\x3d\xbb\xe0\x4c\xf6\x87\x7d\x23\xcb\x1f\x8b\xfd\x4d\x2e\x8f\x1b\xa6\x72\xb8\x67\x15\x78\x80\xb4\x67\xd9\xb1\x53\xfa\x72\x02\x9d\x3a\x42\x6d\xaa\x73\x94\x1c\x0c\x06\x08\x43\xf4\xd8\xa9\xf0\x9c\x3f\xe4\x59\xb2\x67\xfe\xcb\xc1\xe1\xf1\x2c\xd9\xef\x9d\xb8\x0f\x9e\xa8\x9b\xfc\xc0\x48\x2f\x45\x8e\x99\x7b\xd5\x4d\xbe\x7f\x2b\x6a\x31\xdf\x9c\x98\xaf\xd7\xf8\xc1\x97\xaa\x4a\xcf\x73\x2c\xe8\x3e\x84\x57\x5f\xa9\x9b\xd6\xe7\x5f\xdb\x4f\x6e\x83\x37\xdf\xa8\xdb\x96\xc7\x7b\xc3\x4d\xdb\x2a\x10\x2f\x82\xf5\x3b\xa2\xf5\xcb\xeb\x0b\x0f\x03\x2a\xaf\x2f\xd0\x7d\x54\x95\xfa\xd7\x15\x00\xb8\xf2\xf8\xdc\x8d\xb0\xdb\x30\x30\xed\x10\xef\x0d\x61\xc0\xdc\xc6\xe1\xc4\x5d\x67\xb6\xfe\xd5\x42\x97\xe9\x4c\xdd\x80\x25\xf2\x56\x81\x56\x50\x83\x57\xbb\xb9\x25\x40\xe8\xc1\x4c\x85\x03\x58\x45\xfe\xae\xd4\x0b\x0d\xe1\x0c\xc0\x75\x81\xb0\x36\x84\xa3\x3a\x8b\x21\x88\xcc\x48\x0b\x86\x66\x64\xb7\xe6\x60\x1c\x0e\x8f\xc2\x1d\xb9\x1f\xb9\xed\x78\xe2\x4e\xc1\x3e\x99\x9f\xe9\x14\x1c\xf5\xd4\x48\x3d\x56\x7b\x8d\x7d\x6e\x36\x48\xd7\x9d\x19\x7e\x5c\x24\x88\xbc\x79\x2c\x9a\xfb\x92\x9a\xe3\x2a\xbe\x9e\xd8\xa3\xf0\xcd\x04\xe3\xe7\xdb\x2a\xb1\xa7\x1d\xa3\x64\x11\xeb\x62\x59\x16\x17\xe9\x34\xad\x5d\xcc\xc9\x9d\xb6\xbe\xad\x2b\xd1\x3c\x7e\xe2\xc0\x59\x6f\xe5\x0d\x27\xce\xdc\xf9\x4c\x57\xfa\x4a\xdf\xcc\x74\x85\x17\xa8\xeb\x88\x77\xfe\x28\x18\xd9\x75\x21\xbc\x24\x82\x24\x59\x62\x3c\x4f\x26\x01\x55\x79\x3c\x11\xc6\xc2\xe3\x86\x29\xd1\xc6\x6f\x8d\xed\xd2\x7a\x88\xc9\x10\x78\x48\xc8\xf1\x36\x7a\x07\xd1\x14\x50\xdd\xa1\x62\x32\x5c\xb8\x5d\x4e\x71\x04\x38\x0a\x6e\xc0\x59\x80\x87\x43\xf5\x07\xd0\x7d\x01\xb6\x05\x90\x20\x1b\x4f\x13\x95\x7a\xb6\x2a\x2b\xd8\x8f\x84\x7a\x1b\x51\xc1\xb1\x2d\x15\x89\xc9\x44\xc4\x0d\xaf\xf2\x38\xb9\x8a\x09\x4d\x03\xa2\x79\x0c\xc3\x31\xcb\x0a\x50\x53\xe2\xdd\x76\xa1\xab\xb4\x0a\x6b\xe7\x3a\x39\x28\x36\x52\xdd\x5e\xb7\xef\x1e\x93\x59\xee\x80\x3b\xde\x53\x07\xe1\xcb\x1e\x43\x55\x62\x47\xa8\x60\x5a\xa9\x58\xe5\x00\x97\x7d\xa5\xd1\x4e\xd1\x21\x36\xdc\xce\xbd\xad\xc8\xd1\x74\x6e\x86\x98\x34\xbb\x19\xc6\x76\x5f\x6c\x2c\xfc\x29\x5c\x7f\xae\xbe\x11\xd4\x09\xc0\x68\xb0\xc4\x10\x42\xa3\x6d\xd6\x3e\x12\xf4\x29\x22\x04\x09\x8b\x5a\xe8\xfa\xa2\x48\x54\x04\x17\x83\x21\x43\xbc\x25\x7a\x5b\xee\xa6\x27\x3e\x20\xca\x5c\xde\xf9\xf7\x16\x80\x9d\x48\x61\x66\x2b\x4d\xb6\x5d\xb8\xe2\x9c\x6c\x10\xd8\xb7\x48\xec\x46\x84\x22\xe1\x89\xe6\xf2\x78\x83\x58\xf9\x6f\xee\x12\xdb\x65\x9c\x6b\x6f\xab\x06\xa9\x95\x8f\x6c\xd7\x35\xc1\x58\x8e\xbd\x01\xe7\x84\x45\x6c\xfe\xf5\x04\x45\x6f\xac\x52\xfc\x13\xd9\x51\x1d\xb8\xb2\xe3\x7d\xed\xc3\x50\xce\x09\x47\xdb\x53\xbf\x29\xa9\x48\x54\x9f\x1c\x0e\x98\xab\xc4\xd6\xb7\x79\x32\xdb\xae\xe7\xed\x53\x1b\xda\x37\x98\xcb\xdf\x62\xfb\x85\xe1\xf0\x2b\x87\x0c\x18\xc8\x0f\x2d\x62\x82\xa4\xf8\x4b\x08\x2f\xcb\x8d\x6c\x69\x63\x93\x45\xc4\xf9\xa9\xf8\x8a\x42\x9c\xbd\xd1\xf0\xe7\x98\xec\x6e\x27\x72\xd5\x79\xc1\x1c\xd1\x87\x75\x33\x9c\x03\x02\x4a\xbc\xea\x1b\xf1\x2c\xaa\xbb\xfe\xa2\xd7\x15\xa4\xd3\x75\xd2\x13\x7b\xee\x38\x42\xd4\x2b\x89\xc2\x3d\x93\x2e\xcf\xd1\xa6\xcd\x7c\xbf\x8d\x1c\x75\xa1\xb6\x6e\xaf\xc7\xac\x36\xed\x54\xc9\xef\x36\x24\x07\x84\x1c\xe1\x40\xd7\x3e\xdd\x5f\x81\x57\x75\xa0\x9c\xde\xac\x1d\x70\x0a\xd2\xb8\xae\x4b\x5f\x99\xed\x61\x92\x53\x69\x1f\x4a\xc5\xe1\x4f\x52\x77\xf0\xa8\xec\x8e\xbb\x92\x56\x23\x77\x68\x8b\x84\xdf\x3a\xcc\x7b\x62\x08\xa9\xad\xfd\xb1\xea\x76\x8f\x3b\x9d\x8d\xcd\x8c\xbb\x90\xf3\x90\x3a\x36\xa6\x99\x20\xad\x4f\xa3\x47\xae\xec\xee\xf6\xb2\x1f\xa0\x2c\x16\x78\xf8\x90\x3e\x72\x17\x27\xcf\x37\x42\x02\xb7\xd6\xb0\x77\xbf\x1a\x9e\xa9\x83\xa3\xf6\x0a\xbe\x68\xad\xa0\x5a\x4d\x2b\xb3\x46\xf4\xa7\xbd\xb3\xa1\x9c\x73\xaf\xbf\x63\x2a\xfe\x09\x75\x47\x24\x8c\xf1\x5c\xc3\x9f\xbd\xcf\xe9\xe3\xba\x7d\xfa\xd7\xeb\xb0\xbb\x87\x7d\xbf\x87\x80\x63\x25\xbe\xd8\x57\xdd\x83\x2e\xb7\xe1\x61\x48\x6d\x11\xfa\x10\xa1\x8c\xaf\x68\x92\xd3\x11\x2e\xcb\xf2\x29\x56\x81\xd1\x22\xd4\xdc\xf3\xc2\xea\x43\x52\x69\x56\x5f\x21\x83\xc5\xf6\x0f\x69\x6d\xeb\x38\x35\x15\xf4\xc4\x19\xd4\xa0\x47\x01\x7c\x74\x73\xe7\x5b\xf5\x14\x66\xce\xc4\x76\x5c\x79\xd3\x09\x54\x9d\xed\x08\xd5\x19\xdd\xa8\x58\xda\xb3\xba\x9b\x37\xc7\xfc\x1e\xee\xc3\x56\xab\xbb\xb8\xe7\xb6\x28\xd6\xa0\xf5\xfd\x7d\xeb\xb4\x29\x1c\x4f\xf9\x26\xf1\x8a\xef\x4c\x4b\x1d\x5f\xba\xe2\x9c\x1b\xc2\xfe\x08\x34\x72\x10\xa0\x30\x2b\xca\x65\x51\xc6\x04\x46\x56\xcc\xe7\x95\xae\x55\x84\x06\x66\xc8\xd4\xf7\x53\xfc\x53\xaf\x8f\xd1\xef\xc4\xb1\x9f\xc7\x69\x5e\xd5\x6a\x76\x3b\xcb\xb4\xaa\xd2\x7f\x20\x58\x1b\xce\xd5\xc1\x18\x26\xde\x67\x10\x70\x16\xc7\x63\x5a\x22\x40\xaf\x85\x67\xff\x47\x2c\xda\xa1\x59\x34\x78\x3a\xa4\xa7\xcf\x60\xed\x3c\x26\xe2\x1e\x17\xb3\x60\x79\xc0\x07\x02\x07\x5b\x5d\xa7\xe8\xdd\x2e\x92\xdf\x9a\xeb\x29\xae\xb4\xea\x1a\x5e\xb5\x3b\x92\x4f\xa0\x03\xfc\xc8\x99\x38\xe5\xc2\x06\x2a\xa8\xde\x67\xaf\x6e\x23\x5d\x86\xbf\x54\x1d\x51\x95\x3b\x4b\xd8\x31\xdf\xcf\x37\xdc\xd2\xee\xe3\xe6\x3c\x80\xa2\x66\x1e\x67\x99\x91\xb7\xca\x62\x75\x7e\xa1\x50\x67\xc1\x23\x37\xab\xb7\x7d\xe0\x62\x47\xff\x6f\x0d\xba\xe5\x82\x0a\x08\x53\x8b\x70\x8c\x52\x45\x3f\x74\x49\x33\xdb\x1c\x5f\x1d\x60\x40\x13\x20\x5a\x82\xa5\xc8\x8c\xf8\x20\xcd\x2b\x9d\x57\xa9\x11\xa3\xa8\xf4\x5d\xc0\x1b\xb2\x36\xcd\xae\x44\x3f\x97\x69\x51\xa6\xb5\x11\x37\xa7\xb7\xe8\xed\xcd\xf5\xa6\x35\x44\x83\xc2\x33\xca\xa1\xcd\x5e\x79\xa6\x17\x71\x62\x44\x23\x80\xb7\x59\x2d\x97\xba\x84\x72\x99\xae\x11\x10\x85\x33\x36\x09\x75\x4b\xa5\x6b\xd4\x71\x56\x2a\xcd\x2f\x74\x99\x72\x76\x0b\xaa\x95\x59\xc5\xb8\x3c\xa7\x34\x89\x80\xbc\x06\xca\x1c\x2a\x72\xca\x32\x18\xa8\x59\xe0\x8d\xab\x95\x5f\x06\xdc\xeb\x84\x99\xc6\x40\xa7\xd1\x5d\xe5\x94\xaf\x41\x27\xf4\xe5\x48\xb9\x98\x6a\xa1\x4a\x79\x4f\x46\x5e\xc8\x57\xb7\x32\xb3\x21\x0c\xbb\x86\xd6\xa4\x79\x82\x98\x5c\x66\x9c\xf4\x91\x53\x10\x80\x71\x0f\x05\xc9\xba\xa0\x6f\x11\xdf\x10\x05\x49\x89\xa4\x38\x1c\xaa\x8f\xab\x0a\xd2\x0b\x13\x52\x5a\x52\x08\x3c\x23\x1f\xa5\x29\xbc\x9b\x3c\xbf\x46\x5f\xba\xfd\x7e\x55\xab\x45\x9c\xa2\x92\x82\x86\x0d\xaa\xb2\x22\x4b\x40\x57\x18\x83\xc0\x2b\x1a\x72\x9e\xb7\xee\x24\x10\xd2\xe6\xa9\xdd\xb3\xfc\x6f\xb7\x2b\xf6\xef\xc4\x13\xf1\x82\x45\x1a\x5c\xc4\xd5\xdb\xeb\xfc\x67\x4a\x79\x14\xb5\xaf\x59\x8f\x6d\x75\x9f\xe3\x79\x49\xdb\x27\x4d\x6e\xf8\xfe\x45\xa9\x1f\xb3\x0f\xd9\xaf\x42\x8f\x4b\xe9\x74\x69\x95\x17\xc7\x01\x25\x91\xde\x93\x20\xe5\xde\x18\x31\x17\x99\x1f\x0a\x57\x92\x7d\x4a\x4e\xd3\x89\x08\x5b\x40\x57\x4b\xf3\x11\xfa\x51\x72\xcf\xdd\xb3\xb6\xcf\x6c\xaa\x1a\xcb\xeb\x6c\x60\x3e\xe4\x06\x40\x7e\xfc\xb0\x8f\xa8\xa8\x36\xe1\x51\xcb\x35\x94\x4b\x45\x04\x9d\x2f\xd2\x44\xe4\x45\xdd\x1d\x6d\xf6\x7a\x65\x3f\x7e\x4b\xa7\xde\x97\xe9\x02\x3d\x50\xf9\xdd\xd2\xd0\x18\xdc\xef\x08\x28\x45\x25\x2d\x40\x56\x6d\x8e\x81\x61\x2e\x32\x81\x6d\xc2\x78\x26\x54\x18\x84\x33\x48\x61\x2d\xc0\x3e\x98\x4a\xa0\x73\xb7\x33\x16\xca\x80\x2e\xe1\x7e\x8b\xa0\x46\xd8\x87\x3b\xfd\xe9\x83\xa4\x31\x54\x81\x3c\x72\x27\x9d\xfb\xee\xca\x0d\x86\xf6\x86\xc9\x73\x95\xbb\x4d\x4a\x0d\x72\x4d\xe8\x0c\x0f\xf1\x5b\xa7\x13\xb7\x5d\x53\x72\xbe\xf5\x5c\x83\xdb\x9c\x83\x5d\xd5\xd3\x5b\xf5\x3f\x54\xf9\xff\x74\xb6\x6c\x6c\x54\x83\x92\x7d\xd5\x7e\x0e\x2e\xc1\x62\xf7\xc3\x76\x4e\x7d\x97\x60\xf8\x13\x3c\xeb\x1a\x76\x54\x6f\x13\x6f\x90\x34\x83\x49\x82\xc5\x45\xfd\x1e\x32\x01\xe2\x34\x97\x11\xae\xbd\x37\x3f\xbc\xfa\x81\x8a\x67\xd7\x86\xca\x14\xcb\x48\xb2\x64\x18\x9f\xbb\xd3\xbd\x88\xab\xfb\xef\xf4\x7b\x69\x56\x9a\x71\x7e\x58\xca\x8b\x64\x08\xbb\xc1\xde\x72\x9b\xfb\x22\xc5\xf1\x7b\xf5\x23\x6a\x3a\xf5\x92\xef\xe3\xc0\xb9\x0f\xaf\xd7\xa1\x0b\xad\x94\xe9\xa8\xcd\x67\x08\x40\x18\x74\x59\xe7\xf1\x34\xd3\xc9\x46\x47\x20\xa9\x68\x4a\x52\x30\x2b\x27\x0e\x43\x5e\xb0\x44\xfc\xf2\xf3\x6b\x62\x3e\x8b\x2a\xe2\xa4\x79\x9b\xea\x01\xb9\x41\xbd\x78\xf7\xee\x49\x5f\x8d\xa8\x30\x23\x18\xb0\x7f\x61\x51\x5f\x28\x7e\x65\x28\x12\xae\xa2\x4e\x42\x0f\xec\x0d\x39\xf2\x8f\x8e\x86\x7f\x7a\xf5\xe2\xc0\xc7\x71\x3b\x30\xcf\x0f\xbf\x7b\xfc\xdd\xf0\x01\x55\xdd\x11\xfc\xfe\x4f\xf7\x8a\xbd\x70\xc1\x17\x9e\x8e\xd1\x05\x96\xec\xee\xa2\xba\x09\x1b\x00\x05\x51\x50\xb6\x58\x62\x6e\x00\x57\x98\x07\x27\xd5\x47\xfc\x6c\xdb\x2c\x3e\x9f\xb1\xa3\x33\xb8\x2d\xdb\xac\xe9\x8b\xf8\x52\x57\x76\xca\x0e\xa6\xb7\x07\x09\xe2\x48\xd3\x77\xd8\x03\xf0\xe2\xa5\xa8\xfd\xeb\xa2\xbc\xa4\xef\xb3\xdb\x8e\xe7\xb8\xd1\x12\x9b\x18\x3c\xb7\xfd\x87\xc8\x85\xe6\x0d\xe7\x8d\xb1\x6d\xc3\x60\x55\x77\xed\xbb\x5d\x8f\x01\xed\x42\x22\x96\xee\xc4\x0b\xff\xa5\x13\x01\x6f\xb6\xcc\xdb\x5d\x0c\x3a\x54\x70\xe0\x0c\x48\xc3\xa1\x1a\x61\xde\x97\x94\xa0\x54\xe2\xf9\x1c\x47\x33\xb5\xb0\x2a\xe4\x46\x06\x89\x47\xe9\x9c\xc3\x93\x08\x5d\xd4\x61\x95\xcc\xf9\x7e\xd2\xeb\xab\x19\x20\x88\x7f\xd9\xc3\xab\x04\x41\xdc\x8a\x9a\x9d\x75\xfa\x1b\x5c\xd8\xab\xbe\x32\x8c\x22\x45\xa8\x11\x47\x1c\xe7\x97\x95\xb9\xcd\x5f\xa6\xfa\xbc\x50\x3f\xeb\x32\xcd\x53\xc4\xc1\xb9\xd0\x6e\x5f\x57\x17\x45\x59\xcf\x56\xb5\x6d\xee\x0f\xc0\xfd\x52\x50\x7d\xf7\xff\x76\xd5\x42\xc7\x79\xa5\xe2\x6c\x79\x11\x4b\x6c\xb2\x88\xfc\x36\x67\x00\x55\x63\x3a\x59\xd5\x71\x09\x0c\x03\x48\x1c\xdd\x07\x5d\xd3\xa9\xee\x09\x06\x04\xf2\x61\xb2\xb9\xbe\x37\x84\x17\x74\xc4\xcd\xe7\x11\x4d\xdf\x61\x08\xfa\xfe\x0c\xfa\xc7\xe7\xa8\x2d\x08\xa4\x77\x57\x30\x41\x9b\xdc\xf8\xc9\x6e\xe5\x96\x00\x07\x67\x06\x08\x44\x49\xda\x62\x88\xd6\x75\xd7\x8e\x25\x50\xaf\xf6\x64\x90\xa2\x36\x82\x43\x6a\xaf\x8b\xd1\x55\xfa\x80\xa4\x71\xcc\x04\xf4\xd5\xd7\xb0\xd5\xbe\x41\xd8\x82\x45\xbc\x14\x41\x5e\x75\xa1\x1e\x99\x3a\x1f\xc1\x46\xc8\xf5\xb5\xfa\xe3\xfb\x37\x3f\x7e\x45\x46\xe8\xa8\xd2\x71\x09\x61\xe9\xf5\xac\x47\xd5\x19\x61\xca\xd3\x83\x73\xbc\x70\x5d\x00\xa0\x12\xa1\xbb\xc7\x95\x0e\xcf\xf5\x16\x53\x85\xa3\x8a\x30\xd5\x51\x2d\x96\xae\xb6\xcb\x86\xa3\xb7\x85\x54\x44\x7e\xda\x1b\x1d\x57\x7b\x12\x0d\xd7\x14\x6e\x69\x1a\xb5\x34\x6e\x8a\xe1\xca\x71\x41\x88\x3b\x3b\x94\x48\x71\xd4\x12\x86\x48\xaf\x10\xa8\xcb\xa6\x55\x6c\x2d\xe9\x92\x2e\x42\xe1\x79\x9a\xe9\xf6\x82\xf0\x06\x0b\x19\x8e\xfc\xba\x28\x93\xf6\x82\xf6\x2d\x16\x4e\x17\xf1\xf9\x86\x2a\xf1\x15\x31\x01\x94\x1c\x79\xd4\x16\x7f\xc8\x2f\xb1\xc6\x52\x57\x7a\x53\x41\x7c\x47\x55\x52\xfc\xe0\xb6\x6d\x79\xbf\x70\xc5\xfb\x87\x61\xda\xe4\xeb\x6d\x81\x8c\xe2\xbc\xe0\xf7\x77\x1d\x3e\x84\xcf\xbb\xf3\xf0\x01\x32\xff\xd6\x61\x26\xc5\x8c\x47\xe9\xc5\xb0\x1c\x07\x67\x01\xba\x9b\x14\xb3\x01\x64\x93\x65\xc8\x30\x08\x80\xd9\x35\x8f\x2f\xe2\xea\x07\x48\x0a\x80\x40\x11\xf6\xef\xa8\xd7\xa3\x70\x0a\x37\x1d\xcc\x22\x02\xc4\xd5\x7a\xad\xfe\x89\xaf\xe2\x29\xdc\xb1\xb2\xff\xd8\xd8\x7d\x98\x36\x0b\x76\x1d\x44\xc6\x7b\xdd\xf5\xce\x8c\x8b\xea\x74\x07\x87\x54\x9b\x9b\xe2\x3e\xc3\x14\x29\x0c\x2b\xa1\x0e\x51\x1f\xc1\x6c\x2b\xea\x09\xef\xac\xc5\x0b\x89\xec\xab\x56\x28\xa2\x53\x65\x2d\x2a\x47\x7e\x23\xfa\xd7\xdf\xdb\x44\x53\x0d\x68\x1b\xb3\x2f\x9e\xaa\x43\x75\xe2\xfe\xdc\xe7\x6e\x8c\x02\x15\x8c\xed\xcd\x95\xce\xff\xd5\x21\xa3\x01\xc1\x22\xa0\x5b\x84\x73\x23\x7f\xaa\x54\xed\x8f\xd5\x63\xdf\xd5\x86\xc3\x57\xd1\xc3\x36\x6d\xc9\x74\x25\x8b\xc9\xee\x16\x49\xf2\xef\xed\xed\xd1\xff\x66\x6f\xb3\xdf\xbd\x9b\x9a\x4b\xed\x77\xfb\x33\xd6\xfb\x58\x1d\x1c\xa4\x60\x77\x38\xfe\x77\x8d\xeb\xfc\x3f\x63\x5c\xfb\xfb\x72\xe9\xfe\xe5\xb1\x41\x32\x8a\x63\x81\xca\x43\xe8\xa9\x10\xc8\x81\xe1\x61\x7d\x23\x0b\x62\x4b\x98\x4f\x16\xc3\xe1\xfc\xa0\x27\x08\x8e\x04\x69\x03\xf0\xed\x57\x25\x86\xe1\x49\x46\xae\x63\x19\x4d\xf3\x5a\x44\x07\x43\x69\x51\xa5\x87\xf2\x8f\x12\x0c\x56\x38\x5b\x95\x01\x6f\xf8\xa9\x63\x43\xa5\x8e\x20\xc0\xda\xe6\x90\xf0\x62\x07\x3f\x2f\xb4\xae\x65\x94\x5e\x3e\x0a\x99\x65\x9e\x1a\x3f\x3c\x0e\x32\x9f\x44\x6a\x77\x63\x44\x1e\x84\x11\x4e\xb7\x75\x6b\x67\x67\xf3\xc7\xa3\xad\xaf\xa3\x69\x4f\x3d\x54\x5f\x76\x76\x76\x7a\xea\x04\x2c\xcf\xea\x68\x6b\xd4\x1f\x69\xf3\x49\x66\x2a\x35\xa1\x77\xcf\xe2\x0c\x92\x6a\xcf\xe2\x5c\xe9\x9b\xb4\x56\x3a\x46\x81\xf4\xf7\x4d\x0e\x01\x94\xc6\x59\x36\x8d\x67\x97\x88\x6a\x80\xd8\xa0\xab\x72\xa6\x61\x47\x02\xf2\xde\xeb\x57\x3d\x95\xce\x55\x5a\x3f\xaa\x1c\x38\x96\x2a\x48\x0f\xc1\x11\xbb\xd2\x45\x31\x1e\xc8\x3a\x20\x88\x53\x3e\xf0\x77\x94\x5f\xf8\xc0\x2f\x6b\x97\x10\x4c\x2e\x59\x5f\x4d\x21\x02\x71\x27\x16\x11\x18\x53\xf1\x3b\x86\xc0\xd1\x58\x66\x58\xef\xb8\x78\xd2\xf0\x31\x1d\x89\xd5\xf2\xd8\x05\x3c\xd7\xde\xc4\xd3\xc9\xab\xc0\x68\x6b\x57\xa1\xc7\xab\x90\x14\x2a\x56\x80\xe4\x84\xfa\x18\xbb\x16\xa6\x3d\x8a\x4f\xf5\x47\xdb\x3c\xca\x0e\xc8\x0c\xc3\xad\xb1\x8f\x95\xba\xd6\xa5\x26\xe4\x04\xb0\x0f\xfb\x1d\x4b\xd2\x6a\x56\xe4\x39\xc8\xd9\x61\xd2\xd7\xb8\xd1\xaa\x39\xb5\x61\xa9\x66\xdf\xdc\xd1\x1e\x0e\xd5\x5b\x23\x49\x5f\xa7\x15\x18\x81\x6e\x1f\x95\x98\xa1\x1b\x43\xa2\xb1\x16\xec\x52\x5d\x6a\xf3\xca\xcc\x48\xae\xa1\x2f\xa8\x40\x9f\xae\xd2\x2c\x51\xab\x25\x00\x67\x64\x99\xca\xd2\xaa\xa6\xcc\x58\x22\x16\xad\x22\x34\x00\x73\x6e\xd2\x0a\xac\x4b\x4d\x82\xb4\x13\x2f\x07\xab\x1c\xd3\x5c\xe0\xe3\x63\xb7\x7a\x86\xfe\xf8\x11\xc2\x82\x38\x4d\x69\x69\x5b\xea\x9c\x7e\x7e\x9d\x10\x24\x1a\x2f\x85\xf1\x65\x6a\x9e\x4c\x97\x52\xc7\x3d\x1c\xaa\x77\x75\x5c\xd6\xea\x3a\xce\x2e\xcd\x71\x82\xf8\x67\x3b\x53\x59\x51\x5c\x32\x84\x67\x0c\xab\x58\xea\x65\x9c\xcf\x5c\xf0\x7c\xc0\xbe\xc4\x00\x24\x66\x7e\x4d\xb3\x66\xa6\x96\x78\x79\x9a\x4e\xc0\xf5\x67\x0a\xbf\x02\xf5\x6a\xb0\xdb\x4c\x91\x3e\x97\x14\xa1\x28\xd8\xed\x5f\xb4\xd2\x79\xa2\x13\x58\x68\x30\x3c\x98\xe5\x93\x6b\x0c\xdb\x9d\xa1\xbc\x79\xc3\x33\xb4\x16\x86\x20\x63\x68\xec\x4e\x73\x9b\x63\xdb\x07\x47\x9c\x47\xaa\xbd\x6b\x36\x2f\x2d\xc6\xa7\x3f\xcf\xae\xe3\xdb\x4a\xc5\x55\xb5\x5a\xa0\x35\x12\x81\x4d\x67\x80\xbf\x91\x30\x7d\xab\xcc\x96\x36\xb7\x0c\x47\xea\x9b\x6f\x01\x5d\x11\xf2\xb0\xd5\x85\x2a\x56\x72\x97\x39\x8c\x8f\x28\x06\x45\xdf\x1f\x8a\xe2\x3c\xd3\xea\xc5\x45\x59\x2c\x74\x6f\xd0\x39\x3d\xec\xab\xc3\xc9\xc0\x54\x19\x29\x77\x7d\xf5\x8e\x3b\x2d\x09\x8e\x76\x25\xa9\xc5\x7e\xdb\x40\x7e\xf3\x2d\xdb\x8d\x00\xff\x02\x76\x84\xed\x37\x47\x5f\xaf\xf2\xf4\xd7\x95\x7e\x57\x04\xc8\xcb\xd6\x5e\xc0\x01\xd8\x6c\x92\x11\x23\x67\xd2\x07\x3c\xa4\xf9\xf1\x91\xa3\xd1\x82\x1b\x20\xec\xf9\xb1\xc5\xef\x6b\x1b\x27\xf1\x15\x5e\x1d\xb8\xb9\xee\x1b\xe0\xe6\xfb\xd3\x70\x29\x95\xa2\x20\x62\x77\xaa\xe9\xae\x1b\x4e\x0b\x9f\xf4\x49\x9c\xdf\x8f\xce\x0e\x64\xfb\xbe\x44\xb7\x65\x57\xc7\xa9\xfa\xa8\x26\xbc\x91\x18\xc1\x2a\x0c\x85\x13\xa1\xef\x98\xce\x4d\xce\xfb\xa2\x22\x77\xa2\xfa\xa2\x2c\xae\x41\x47\xf4\x8a\xcc\xf1\xef\x20\x99\x09\xa6\x80\xeb\xab\x55\x5e\xea\x59\x71\x9e\x43\x44\xb3\xbe\x81\x24\x71\x69\x91\xa3\x85\x1e\x6a\x39\xf6\x39\x39\xe7\x0f\xef\x2c\x2f\x00\xcb\x0f\x4e\xfb\x76\x9d\xc9\xa4\xd5\x67\x8c\x44\xf8\x8c\x12\xcf\x9a\x35\xae\x8a\x1f\xe2\xb2\xaf\xce\xcb\x62\xb5\xac\xfa\x2e\x89\x05\x78\x24\x60\x0a\x30\x76\xbe\x6f\xfa\xb0\x5a\x83\x91\x70\x61\x45\x9e\x0f\x3f\xf4\x78\x48\xd7\xb9\x13\x75\xa8\x46\x54\xc6\xfa\x8a\x53\x00\x7d\x07\x7b\xe4\x27\xec\xc5\xde\x31\x76\xa5\xeb\xa3\xf5\x96\xe0\x27\x92\x0d\xc5\x7a\x7a\x16\x82\xe4\x05\x24\x61\x30\xc7\x07\xdd\x96\xca\x55\xde\xf1\x22\x73\x34\x26\xec\xb6\xb8\x8a\x90\xb5\x81\x31\x15\xb1\x32\x1f\x2b\xc1\x0b\xf3\x40\x2c\x12\x80\xdc\x2d\x72\x24\x32\x9c\xad\x02\x2a\x02\xbb\xee\x55\x9c\xa5\x60\x0d\x71\xa3\x34\xff\xf2\x24\x58\xdf\x7e\x2b\xde\xad\xd7\x58\xc2\xf1\xfa\x38\x17\xb4\xbb\x71\x35\x61\x62\x78\x8f\x76\x3c\x2f\x00\xd4\xc3\xda\x09\x10\x46\xe5\x00\x44\x52\x58\x9c\x37\x0c\x19\xdb\xa2\x86\x5d\x13\x66\x4b\x43\xd2\xb4\x88\x9d\xff\x29\x89\x14\xc7\xf7\x6c\x1e\xa9\x8b\xab\x70\xbe\x27\x2f\xe2\xaa\x56\x89\xae\x66\x3a\x4f\x62\xc0\x13\x71\x69\x2f\xea\x42\x51\xfe\x24\x3b\x46\x52\x6a\xb9\x99\x6b\x18\xba\x55\x57\xcc\x8c\x8d\xde\xad\x3a\x61\x42\x6b\x11\x43\xe5\x2d\xb2\x9d\x22\x17\xa9\x43\xd9\xac\xc3\x79\x02\x05\x94\xdb\x9c\x36\xe9\x35\xfb\x70\x73\x45\xcd\x22\x76\x2b\xf5\x44\x10\xc9\xef\x9d\xef\xfb\x4e\xf8\x4e\x73\x16\x39\x0f\xbb\x7b\xe1\x60\xf4\x6c\xd8\x93\xbb\xe9\xfd\xb3\xc3\xdc\x10\x3b\x37\x3a\xc0\x3f\x0a\x35\x81\xac\x2b\xd8\x3c\x71\x6f\x69\x0e\x07\x82\x02\x58\xa0\x6c\x3a\x57\xd7\xda\xf0\x88\xe0\x16\x64\x68\x06\xf8\x47\x48\x36\xb2\xaf\x90\x98\x1a\xd9\x05\x08\xae\x85\x82\xa6\xf3\xd0\x69\x21\x39\x4c\xea\x78\x02\x46\xfc\x00\xb9\x0c\xdf\x55\x4a\x18\xc2\x47\x76\x5f\xce\x2e\x90\x6f\xe0\x36\x76\x44\x62\x31\x49\x84\x89\x58\xf5\x3c\xca\x26\x91\x71\xe3\x24\x71\x47\x91\x57\x06\xf0\x71\xf9\x61\x1f\xae\x58\x47\xc4\x93\x94\xbc\x3a\xe8\xfd\x20\x49\x21\x19\x3c\x30\x4e\x3f\x15\x39\xc7\x0a\xd3\xdd\x8c\xd8\x8f\xb2\x30\x6a\x78\x65\x18\x30\x60\x1c\xe7\x6c\x8d\x35\x3f\xf7\xf7\x8f\xdd\xed\x26\x3e\x47\x6a\x79\xd2\x11\x08\x10\xd6\xb5\x34\x2b\x2a\x5d\xd5\x2a\xce\x67\xba\xaa\x8b\x72\xe8\x52\xec\x68\x4e\x03\x71\x2f\x0f\x08\xeb\xc0\x28\xec\x44\xa7\x30\xec\x10\x8a\xb6\x31\x64\xd6\xe0\x06\xce\x8c\x0d\x93\x94\x75\xa6\x68\xeb\x85\xf4\x5e\xec\x60\xc0\x4f\xdb\x78\xe3\x2c\xdb\x32\xd6\xea\x9e\x83\x45\x06\x19\x71\xea\x2b\x5d\xab\xb8\x9c\xa6\x75\x19\x97\xb7\x98\x92\xba\xc8\xd5\x5f\xdf\xfc\x88\x02\x1a\x24\x02\x36\x52\x93\x59\xa1\x47\xb5\x9a\xea\x5c\xcf\xd3\x1a\xdd\x08\xcd\xf4\x98\x4b\x94\x1c\x88\x42\xd0\x1c\x91\x8b\x90\x3c\x69\x92\xb4\xbc\xd4\xb7\x66\xb9\x29\x23\xe5\x3e\x39\xb9\xdb\x9d\x00\x0f\xa8\x34\xde\xcf\xf6\x03\x4c\xc6\xe7\x92\x82\xe2\x94\xdd\x6b\xe1\x3e\x6f\xe5\x42\xef\x1c\xce\xa6\x88\x55\x5b\xee\x83\x3c\xe4\x6d\x27\x9b\xae\xb6\x68\x0f\x4f\xff\x51\xe9\xda\xfa\xe8\x08\xb1\x95\x23\xf7\xb1\x7a\x89\xff\x66\x8e\x8f\x79\x6a\x3d\x43\x70\xf8\xbd\x86\x9b\xba\x30\xa3\x62\x3b\x6d\x3e\xb4\xc2\xa1\x47\xb8\xd0\xfa\xd8\xbd\x3b\xc1\xe0\x94\x18\xd9\xb1\xd7\xd8\xd6\x6d\xec\x35\x2f\xbb\x35\xf6\xfc\x8e\xb7\x77\x2d\xf8\xd0\x73\x01\xf6\x7d\x9c\x3a\xe1\x40\xfe\xf7\x77\xc3\xbd\x87\xdf\x32\xc2\x96\xce\x77\x76\x42\xd8\x72\x3a\xcb\x6f\xb8\x1d\x6a\xd0\x47\x8b\xe5\x87\xd2\x67\xf4\xe4\x9e\xa7\x9f\x85\xf2\xa0\x0e\xcf\x54\xdf\xc0\xae\xdc\xe5\xd2\xa7\xe9\xe4\xae\xb1\x6f\x30\xc1\xb7\x5a\xd9\xe1\x7a\xb3\x75\x1f\x4e\xfc\xb9\x98\x15\x79\xa2\xf3\x0a\x42\x6e\x85\x1c\xb1\xec\x93\x27\x6f\xdb\x00\xa5\x6c\x99\xeb\xeb\x3f\x0b\x6f\x3f\x27\x5d\x02\xd4\x24\x26\x94\xb5\x35\x33\x42\x28\x74\x68\xb9\x24\xff\xc0\xa5\xda\xe5\x9c\x3c\x9d\x6d\xd9\x66\xef\x76\xe4\xc3\x79\x24\x06\x6f\xbd\xa6\x21\xdc\x31\x99\x72\x04\x2d\xe0\x29\xb4\x25\xa1\xb7\x76\xfe\x17\xf1\x32\x90\x3d\xc5\x66\xf3\x44\x48\x59\xbb\x3f\xf3\x95\x76\x3b\xd0\xb2\x8b\x7d\xc1\x64\x58\xa6\x61\x59\x54\x35\xbf\xc6\xdf\x79\xc2\xbf\xdf\x79\xfe\x7c\x18\x39\x63\x8b\x83\x29\xd4\xfd\xd9\xf4\xb3\x16\x45\xc7\x7e\x87\xdc\x0b\x89\x9e\xe6\x5a\x17\x55\x9b\x3f\x37\x55\x9d\x27\x1b\xaa\x6e\x1b\xc1\xb1\xc4\x6a\xdc\xea\x8f\x6a\x91\xa1\x5b\x4e\x1f\x38\x79\xe8\xc5\xb2\xaf\xd2\xbe\xf3\x4a\x5d\x96\xfa\x8d\x54\x03\x9b\x96\xfd\x07\xa5\x06\xb0\x46\xcc\x3b\xc7\xfa\x02\xde\xb0\x1d\x17\xd6\x9e\xe6\x69\x9d\xc6\x99\x73\x49\x85\x8b\x1a\xa0\xfb\x5d\x9e\xf7\x0e\xd1\xd8\x8a\xfc\x5a\x01\xda\x80\xb2\xf5\x10\x30\x7b\x25\x78\xd0\xf5\x5a\x75\xf7\xba\xfd\x46\x0a\x03\x75\xa2\x4e\x6d\xe0\xe2\xc4\x08\xd4\x3c\x5e\x74\x9e\xed\x70\xc0\x83\xa6\x4d\x5f\x17\xea\x5c\xd7\xbc\x75\xd8\xa9\x14\xd4\x60\x25\x68\x93\x62\x38\x70\x90\x12\x48\xeb\xe4\x80\x75\x46\xd5\x6d\x3e\xbb\x28\x8b\x3c\xfd\x47\xcc\x6e\xfb\x54\xc7\xeb\x5c\x8a\x33\x20\x00\xd9\x11\xed\x0a\x26\x1a\xbd\x88\x1d\x39\x81\xd1\x43\xd3\x6f\x0c\x35\x11\x3b\x3c\x58\x33\xf4\xa1\xc5\xe2\x1d\xd1\xf0\x5b\x70\x85\xe6\x91\x9c\xb0\xfc\xfd\xda\x08\x0f\xea\x22\xbe\xd2\x2a\xf6\xf6\x52\x51\xd2\x79\xd7\x09\xed\x92\xa2\x84\x4c\x91\xd0\x5b\xb1\xa1\x01\xd7\xd4\x2d\x36\xef\x25\x68\x40\xec\x5a\x08\x8d\x82\x6f\x4f\xc4\xf8\x47\xde\xb7\xeb\xb5\x77\x52\xd4\x89\xf3\x5b\x1e\x0c\x06\x69\x5e\xeb\x72\xa1\x93\x34\xae\xb5\xe7\x87\x56\xa9\x5c\x9b\x3f\xe2\xf2\x16\xcb\x9f\x4e\x90\x1b\xb5\x9f\x16\x56\x9f\xbe\xaa\xb4\xd5\xec\x25\x69\xa9\x67\x75\x76\xcb\x97\x00\x3e\x1d\x09\x69\xae\x7c\x9d\x5b\x53\x4d\x9a\x27\x6a\x59\xa6\x0b\xc3\x75\x92\x8c\xd7\xf1\xaf\x58\x26\x68\x8b\xe0\x26\x7c\x9d\x5b\xea\xf3\xd6\xec\x9f\x26\x23\xcd\x92\xf6\xf3\xe5\x32\xbb\x15\x73\xc0\x0d\x78\xb3\x82\xaa\x05\x0d\x38\x58\x6e\x83\xc8\x06\xf8\x34\x22\x2d\x75\x1f\x47\x74\x92\x4f\x27\xcd\x4e\xd0\xde\xff\x73\x7e\x80\x82\xf5\x9c\x34\x31\x5a\x64\x0a\x22\x15\x2a\xe8\x75\xd9\x6c\x65\xc7\xd8\x21\xbf\x73\xd3\xc4\xbd\x6e\x68\x9b\x47\x45\x2f\x96\xbe\xff\xb8\x1b\xcb\x29\x8f\xe5\x34\x9d\x28\xe9\x4e\x5e\xbe\xce\x1b\xef\x84\x6f\xf9\xa7\xa6\xd4\x2d\xb2\x81\x34\xa8\xaf\xd9\x78\x76\x4f\x7a\x9d\x14\x85\x6c\xf7\x88\x72\x61\x7c\x4e\x1e\x67\x62\xee\x21\x42\x0a\xd7\xc4\x3a\xbf\x7a\xfb\x36\xcd\xeb\x42\x56\x4a\xcb\x40\xe8\x1a\xb4\xaa\x8c\x2e\x27\xa2\x4e\x4c\xe5\x7e\xe0\xc9\x3d\xdc\xf3\xc5\x3c\x06\xfe\xf9\xa0\x62\x30\x32\x99\x76\x0b\xa8\xaa\x34\x9f\x69\xbc\xad\x29\xcb\xc5\xad\x86\x2c\xf2\x6e\x90\xfc\x3d\x2c\x32\x5e\xd9\x62\x41\x9c\x87\x7f\x0b\x56\xda\x8e\x4f\x10\x22\xf2\xcd\x8f\x3c\xfa\x74\x3a\xe9\xf5\x69\x93\x7a\x52\x26\x93\x2b\x00\xa8\x62\xfe\xa8\xe5\xca\x80\xc4\xc4\x78\x8e\xeb\xc2\x26\x80\x5f\x08\x82\x8c\xae\xd5\xdb\x66\xb6\x75\x62\xb7\xcd\xab\x4d\xd5\x11\xd1\xfa\x89\xf5\x3d\x69\x0d\x01\x22\x37\xa8\x11\xd1\x73\xa8\xe5\x19\xda\x67\x18\x0f\x05\x43\x28\x4c\x85\xb8\xed\x59\x87\xcf\x4f\x64\x20\x85\xc7\x9f\x13\x25\x49\xc4\xfc\xb8\x59\xe9\xdb\xd8\x48\xd1\xc7\x74\xae\x08\x53\xa0\xe3\x4b\x27\xde\xd2\x58\x52\xd3\xd9\x09\x5e\x39\x0b\x83\x8b\xc9\xb2\x33\xcb\x26\x02\x41\xe7\xfb\xcd\x99\xb7\x17\x97\xf8\xd4\xfc\x8d\x23\xdc\x74\x12\x9b\xbb\xc9\x0e\x53\x92\x43\xb7\x93\x3c\xd1\xab\x35\x89\x87\x18\x97\x8f\x17\x17\x68\xa4\xa8\xdc\x0f\x65\xb1\x00\xd5\x62\x65\x35\xcb\x96\xa7\x07\x79\xed\x05\x93\x59\xcb\x7e\x7e\x74\x9c\x3c\xe9\x2b\x1d\x1b\x4f\x91\x4e\x7f\x22\x5c\x3a\x56\xd6\x33\x4e\xdd\x29\x7d\x71\x7a\x38\x41\xfd\x23\x8a\x07\x0b\x33\xc5\x69\x2d\xbe\x0a\xeb\xe1\x48\x48\x5b\x51\x57\x75\xad\x68\x11\x16\x3e\x51\x47\x6a\xa4\x0e\xd9\xd3\xee\xfd\x05\x59\xc2\x63\xf2\xb7\xe3\xdb\x4e\xe7\x15\x20\xe0\x40\xe4\xa6\xdd\x6b\x71\x69\x2e\xd8\x78\x76\x01\x8e\x0a\x84\x56\xb4\x3c\xc8\xf4\x95\xce\x98\xda\x45\x55\x8f\x85\xa8\x17\x36\x57\x55\xa0\xe3\xbb\x9f\xcf\xa0\x9c\x63\xf4\x0f\x54\xe1\x74\x30\xe6\x51\x9f\x9b\x7c\x9e\xdf\xfe\xbe\x56\xfd\x93\xec\x2f\x2f\x15\xe7\x40\x98\xfb\xf4\x03\xad\x31\xa7\x9b\x90\x35\x3c\x11\xd8\x39\xd1\x84\xab\x05\x1c\x24\xc1\x30\x33\x6b\xbb\x3b\x1e\xab\x62\x65\x6e\x9d\xa2\xaa\x5f\x58\xa0\x0e\x0c\xf9\x40\xcd\xba\xec\xbd\x43\xf3\xec\x09\x56\x59\x1c\x47\x2a\xb7\xa1\x83\xf2\xe0\xba\xb9\xdd\x24\x26\xa2\x10\x3d\xb9\x97\x70\xea\xc2\xf3\xda\x8f\x41\xca\xc7\xa0\x17\xb0\x5e\x38\xb1\xc1\xda\x6e\xd6\x53\xf4\x05\x07\x87\x7e\x91\x4d\x22\xc8\x9d\x98\x93\xec\x17\x76\x81\x29\x09\xd2\x21\xf7\xd6\x46\xa0\x1e\x07\x30\x52\x10\xbe\x10\x67\x6a\xb5\x04\xe9\x55\xa3\x38\xe1\x12\x99\x70\x9f\x3a\x81\x22\xa7\x2d\xbc\x97\xf9\x53\x8b\xdf\xc5\x53\xe5\xe0\x4d\xa2\x74\xae\xe2\xfc\xb6\x87\xe9\x52\x20\x9e\x46\x5d\xc4\x79\xc2\xc1\x94\x60\x0b\xde\xdf\x4f\xf1\x4a\xe1\xa5\xf9\xc8\x4b\xf3\x51\x82\xa7\x42\x77\xda\x97\xe4\x23\xcf\x87\xe0\x36\x24\x78\x83\xb8\xaa\x5c\x26\x23\xbb\x26\xcc\xf5\x3c\x43\xa0\x8b\x2d\x2b\x16\x94\x24\x4a\xea\x50\xb4\xd0\xd2\xdd\x1b\x7c\x2c\xd2\x3c\xea\x76\x7b\x9b\xd2\x23\x79\x97\x8e\xad\xf5\xa9\xfa\x08\x98\xc1\x9b\x88\x3c\x37\x94\xf6\xd5\x47\xb3\xa9\xe9\x43\x9a\xad\x0d\x9f\x46\xd6\xf4\xe8\x57\xf2\x11\x2c\x86\xcd\x2a\xa8\x14\x8f\x00\xde\x0b\x0f\x46\xab\x0d\x93\xe6\xae\xb2\xcd\xee\xbe\x79\x1a\x37\xde\x69\x7f\x28\x8b\xd5\x92\x3e\xa8\xc2\xa3\x03\x29\xa4\xec\x1f\xee\xc2\x9b\xde\xbe\x03\xfd\xa7\x78\x29\x42\x1a\xcd\x00\xa7\xb7\x7e\x0a\x06\x51\x67\x50\xb2\x5a\x2d\x75\xf9\xc6\x1e\xbd\x50\x63\x21\xa9\x8a\xb8\xf5\xf1\x64\xbc\xf0\xa1\x89\xac\x7e\x4d\x7d\x74\xd7\x70\x07\x59\x2c\x6a\x3e\x69\xc4\x04\x27\x2f\x8a\x15\x74\xf3\xd0\x25\xdd\xe9\x1e\x92\xa2\x5f\x06\xe4\x02\xdb\xf9\xf0\xa1\xfd\xdc\xd2\x5d\x9b\x0a\xf5\x85\xa5\xca\x48\x1c\x58\xb2\x37\x0f\xbf\x87\xd4\x96\xaa\x49\xae\xfb\x7c\xae\x7f\xd1\x6a\x01\xe1\xfe\xe8\x8d\x03\x92\xba\x4e\x01\xb9\x11\x9a\xb6\x17\xaf\xaf\x2d\x69\xa8\x4b\xdc\xd4\x3f\x7c\xc8\x94\x2c\x4f\x4e\x01\xb6\x6c\x12\xa1\xbe\xc4\xef\xaf\x48\x87\x26\x22\xed\xc4\x35\xd3\xb3\x9d\xfc\x49\x03\xda\xbd\xdd\x58\x14\x32\x69\x84\xed\xbc\xc8\x0f\x8c\x04\x74\xae\x4b\x36\xa2\xc0\x57\xf4\xfb\xcf\xe0\x7c\xa3\xc6\x2a\xb2\x16\x16\x7b\x1b\xf1\xe4\x50\x4c\x0d\xf2\x25\x6f\xe2\xfa\x62\xf0\x4a\xe2\x8c\xba\x19\x67\x92\xd3\xb8\xfb\xc6\xde\xd5\x98\x88\xcc\x7c\x33\xc7\x3b\xb0\xfd\x06\x7a\x31\x56\x72\x07\x0e\x74\xe6\x83\x25\x78\xec\xf5\x32\x46\x45\x44\xb0\xa3\xad\x7e\x41\xf0\xdf\x9d\x16\x90\x6a\x58\x29\x10\x01\x58\x71\xeb\x41\x55\x63\x8e\x09\xb9\x7a\x5e\x58\x1a\x55\x87\x8e\x47\xf2\xca\x0c\x7a\x03\x79\x98\x7c\x32\xfe\xd9\xf6\x81\x2d\x69\x17\x3d\x80\x1e\x5f\xe6\xdb\xb0\x48\x76\x0b\x38\xeb\x1a\x6e\x06\xae\xc5\x5b\x8d\xfd\xfd\xb6\xf5\xf0\xf3\x16\x52\x52\xa1\xd9\xa5\x08\x6b\x77\x32\x22\xe8\xe8\x6a\x52\x6a\x55\x72\x6a\xdf\x49\x2b\x14\x72\xbc\xb7\x18\xbc\x06\xa7\xed\xbc\xc8\xb5\x15\x9b\xe2\x2c\x73\x10\xe6\xbc\xdf\x5b\x44\x44\x36\x3f\xf0\x7a\xc9\x99\x94\x14\xe6\xe0\x20\x40\x6b\x1a\x0e\x15\xa6\x88\x20\xaf\x53\x4c\x72\x05\x19\x9e\xae\x74\x69\x63\x3a\x2d\x8c\x04\xaa\xe5\x64\x16\x4a\xa9\xe8\x90\xc4\xaa\x6d\xe1\x42\xc9\xd1\x29\xa1\xc4\x5c\x81\x77\x72\x63\x46\x3b\x21\xad\xdc\x1f\xab\xd4\x89\x6b\x38\xad\xe0\x3d\x69\xce\x9c\x57\x92\x3b\xb7\x69\xeb\x8a\x0b\xa4\x65\xdb\xda\x0d\x2b\x4c\x2c\x8e\x92\x6f\xb2\x53\x77\x36\xcc\x0f\x30\x64\x40\xa0\x00\x2a\x8a\x43\x66\x99\x6d\xab\x0b\xa5\xb3\x74\x61\x78\x48\x4d\xec\x15\xa5\x29\x22\xef\xc2\x4e\x78\x92\x68\x8c\xcf\x3c\xb3\xe7\x26\x90\x10\xb0\xb0\x44\xd2\xfa\x02\xfe\x4b\x76\x34\xa1\xde\x66\xc7\x7b\x05\xaa\x86\x25\xc9\x23\x21\xbe\xc1\x36\x70\xac\x97\x69\x35\x8b\x4b\x4a\x02\xa7\x80\x31\xba\x28\x32\x23\x5a\x03\xc8\x65\xc5\x8a\x6f\x8c\x28\x9e\xd5\x2b\xcb\x8e\xd2\x5e\xf7\x6e\x4e\xa7\x84\x14\x8f\x1b\xaa\x1b\x43\x32\xc5\xac\x0a\x82\xb8\x21\x9d\xa6\x57\x17\xd7\xf2\x4e\xeb\x24\xd3\x55\x05\xfb\x93\xab\xab\x56\xb3\x99\x46\xc7\x02\xb6\x0a\xe0\xb3\xaa\x9a\xaf\x32\x71\x2d\xd5\xe9\x72\x95\x99\x95\x94\x8b\x17\xd0\x27\x9b\x39\xf8\xe1\x43\xd1\x07\xc1\x9e\x58\x7d\x4f\xb0\xe2\xfb\x6d\x8c\x4f\xcf\xa2\xe3\xe0\x37\x0d\x9f\xd3\xc6\xc2\xf9\x87\xf1\xed\x95\x2e\xcb\x34\x31\xb4\x26\xc7\xce\x1b\x4e\xad\x98\xab\xf3\xac\x98\xc6\x19\x26\x85\xf7\x6f\xdf\x2d\x17\xe3\x56\x8a\xbb\xf9\xd6\xc4\x8b\xb8\x19\x3e\xbf\x72\xa6\x38\xb0\x0a\x77\x76\x02\x22\x4d\x00\x73\x0c\x9d\x00\x24\xe1\xa4\x13\xa0\xa3\x78\x37\x2d\xc9\x93\xf2\x11\x30\xa9\x84\xcf\x22\x53\x62\xf1\x83\x26\x1a\x07\x79\x14\xa9\xe1\x9e\x7a\x9d\xd7\xba\x34\xd2\xd4\x9f\x2b\x8d\xe0\xcc\x7b\x43\xc7\xb1\xa6\xc0\x6a\x0a\x5e\x96\xd9\xc0\xf0\x2a\xe7\xe7\xd6\xbd\x93\x9a\x2f\x3f\xc3\xc3\x73\xd7\x73\xf1\x04\x25\x72\xae\x81\xe8\x88\xf4\x96\xc5\x5c\x59\x48\x67\xfb\x94\x11\xa4\x31\xb9\xd0\x8a\x61\x73\xc0\xd1\x46\xc7\x0e\xcf\xc5\x3a\x98\xe1\xf0\x69\xd5\xf1\x8f\x71\x8b\xfb\xab\x4b\x4d\x6e\xd8\x5b\x28\x27\x34\xa1\x2d\x34\xcb\x0e\xbf\x45\xbc\x81\xcf\x9d\x73\xbb\x70\x6a\x6d\x93\x58\xe5\x51\xc1\x7b\x89\x67\xa7\xa9\xa8\x0b\x25\x85\xb6\xf2\xc2\x88\xe2\xfc\xce\x68\x91\x12\x89\x9f\xd5\xbe\x82\x51\xd3\x50\xfc\xf9\x62\x90\x6f\x71\xc5\x86\x02\x17\xe4\xcd\x46\x4b\x7b\x6f\x55\xfd\xa6\xeb\x79\xe0\x01\xc0\x25\xdd\x62\x6d\x51\xa5\x6c\xcc\x2a\x5f\x81\xd7\xbf\xa4\x3e\x9f\x5a\x5c\xb5\x3d\x13\xbb\x9f\x72\xf8\x8e\xdc\xc2\xee\x90\x39\x17\x6a\xf3\x2f\x79\x52\x2b\x23\x7f\x58\x65\xd8\x86\xfd\xc9\x3e\xf5\xe8\xb7\xe9\x22\x3d\x38\x11\xbd\x3c\x4e\xef\x4b\xe0\xb4\x17\x69\x9e\x2e\xd2\x7f\xb0\xea\x03\xe1\x44\xc0\x79\xb2\xd4\x16\x25\xc3\xb0\x74\xb0\x61\x3d\x13\x1e\x13\x6d\xe7\x47\x43\x54\xf8\x7d\x7c\x69\x4e\x29\x63\x55\x10\xee\x4b\x4d\x9b\x8c\x12\x83\xa3\x83\x66\x59\x14\xb5\x1b\x40\x5a\xa9\x38\xa7\xbc\xe6\x56\xfc\x67\xcf\xdb\x36\x68\x72\x79\x7a\x3c\xf5\xb0\x7a\xa6\x1e\x83\xb2\x0f\x9e\x5a\x25\xc2\xe9\xe1\xa4\x27\xc2\xd4\x5f\xbf\xb4\x78\x05\x3b\x0d\xeb\x37\xa6\xfe\xe3\x3c\x2a\x5c\xac\x5d\x8f\x73\xe4\xe9\x71\xa4\xc8\xea\x14\x61\x46\x7c\x7c\xfd\xd2\x48\x8f\xf0\x11\xab\xba\x7c\x9f\xe2\x00\x8e\x3a\x64\xcf\xc0\x83\xc6\xb1\x42\x21\xaa\x70\x6b\xb2\x72\xe2\x29\x2a\x97\x48\xda\x82\x76\xd1\x34\xb2\x82\x05\xfd\x7c\x7d\x0f\x5e\x7b\xb5\xfe\xa0\xcd\xbe\x8b\x91\x1f\x04\x76\xb7\x28\x55\x99\x9e\x5f\xd4\x07\x75\x71\x90\xe9\x39\x31\x18\xc4\x27\xe0\x11\x4b\x3d\xb7\xe6\xee\xcf\x6f\xdf\xd9\xf4\x03\xd2\x7a\x8f\x81\x86\xfe\x02\x1e\x60\x98\x31\xc6\xe0\x4a\x46\x30\x58\xd1\x74\xe2\xd8\x9d\xe7\xd3\xa2\xac\xd1\xc3\x57\x5d\xa4\xb5\x8a\x85\x9b\xa9\x9b\xb6\x60\x09\x19\xce\x02\x57\x05\xf1\x2c\x84\x3e\x4e\x88\x6a\x02\x4c\x39\x32\xeb\xe9\xad\xad\x0a\x74\xab\xc4\x7f\x11\x42\x07\x50\x74\x74\xd5\xc7\x25\x33\xf3\xc3\x48\x6d\x36\x4c\xc9\x07\x65\xe3\xa6\x60\xc6\xc7\x40\x00\x48\xe5\xb7\xf3\x19\x3b\x88\xbe\x28\xa9\x11\x9a\xfd\xc0\x32\xd2\xbb\x53\x7d\xc1\xf5\xdc\x2c\x32\xfc\x25\x3d\xc9\xd9\x37\x02\x7a\x9a\x56\x0a\x31\x76\x40\xd4\x62\x3b\x4f\xa9\x17\x71\x9a\xdb\x98\x50\xd6\xb5\x51\x54\xe8\x8e\x73\x47\x67\x0b\x58\x6a\xc3\x62\x1a\xbb\xd7\xf1\x97\x4d\xbd\xdf\xb1\x14\xd6\x77\x43\xc0\xb1\xcd\xec\xb3\xcb\x46\x4f\x44\xf9\x50\x09\xb3\x6c\xeb\xc1\x12\x38\xa5\x1b\x74\xb6\x7e\x5a\xfa\x17\xc4\x83\x19\x72\xa8\x6f\xf4\x6c\x85\xbc\x0c\x48\x8d\x10\x67\x67\xaf\x5d\xf0\xaa\x29\xae\x0c\x23\x8b\x28\x73\xff\xe3\x70\xfe\x4a\x4d\x94\x1f\x79\x5b\xdc\xec\x36\xa9\xa1\x87\x19\x18\x4f\x8b\x2b\xdd\xd9\x69\x80\xf5\xf5\x39\x1a\x20\xea\xa0\xe1\x14\x78\x35\xb7\xce\x37\x8b\x0c\xf3\x37\x5b\xdf\x94\x60\xf7\xb8\x69\xed\xec\x88\x6c\x93\xf2\x1a\x84\xf9\x67\xd5\xd1\xe0\xd7\x95\x2e\x6f\xd9\xd7\xea\x39\xc3\x97\x87\x18\x13\xe8\x89\xee\x82\x45\x81\x59\x80\x8d\x57\x64\x09\x7e\x6d\xa9\x57\x1f\x19\xeb\x6a\x16\xc3\xe1\x1d\x3e\x5a\x9f\x9d\x0d\xcf\xf1\x69\xcc\x48\x33\xff\xbd\x2a\x30\xee\x6c\x78\x36\x3e\x3d\xbb\x79\x7c\x78\x56\x9f\x95\x67\xf9\xd9\x7c\xb2\x17\x9d\x7e\x78\xd4\x3d\x9b\x4c\xf6\x7a\xc1\x8b\xb3\x89\xa9\x86\x88\xde\xaf\xef\xe2\x68\x04\xc0\x22\x3d\x55\xea\x65\x51\xd6\x15\xfa\x3d\x62\x3e\x42\x30\x51\x45\x18\x8a\xa7\x1e\x1f\xf5\xfa\x90\x83\x98\x2c\xeb\x71\x56\x15\x2a\x4e\x30\xf3\xf0\xea\xfc\xfc\xf6\x0d\xcb\x5f\xe0\x38\xc0\xd2\x18\xf0\xa5\x15\x96\xf8\xef\x77\xcf\x59\xab\x60\x31\x45\x01\xb5\xe7\x9a\x30\xd5\x20\xf5\x8f\xaa\x8b\x42\x2d\x56\xb3\x0b\x35\x33\x67\x34\xc2\x97\x9c\x40\xd9\xaa\xeb\x4a\x1d\x27\x98\xe5\xa4\xe4\xca\xc1\xce\xd3\xc5\x01\x75\xd5\xc4\x0e\x93\xfa\xc2\x0b\x14\x8d\x10\x49\x64\xcb\x98\x5f\xbf\xfa\x6e\xf8\xd6\x70\x0c\xea\xe8\x68\xf0\x55\xef\x7f\xa3\xd7\x8c\xdc\x5a\x5d\xa6\xcb\xb0\x87\x40\x3e\xa9\x97\x6e\x84\x3c\xc1\x38\x4a\xc2\x53\x41\xab\xef\x8e\x8b\x33\xe1\xb0\xfe\xb0\x4a\x8a\xa2\xb1\xaf\x8b\x7f\xbc\xd9\x5e\xe2\x5a\x4f\x2f\xd3\xfa\x8e\x42\xc5\x1d\xef\x17\x55\x50\x80\x3d\xa8\xbe\x87\xa0\x64\xb3\x68\xa5\x3e\x87\x9c\x2e\xa0\x7b\x39\xd7\x37\xaa\xaa\x8d\x1c\x74\x7e\xab\xe2\xa4\x58\x1a\x59\x16\xec\xc6\x12\x38\xac\xb3\xb3\x83\x79\x4f\x84\xf3\x62\x92\x5e\x89\x00\x01\x3a\x4e\x29\xaa\x06\xea\x82\x68\x36\x7a\xa8\xab\x22\x57\xcb\x55\xb9\x2c\x2a\x86\x19\x7d\x4f\xe9\xb4\x19\x46\xea\xf5\xab\x47\x15\x42\x8e\x2e\x28\xe7\x56\x5e\xd4\xe6\x9a\xcb\x52\xf6\x11\x1b\x0e\x4d\xd5\x18\x52\xaa\x28\xcf\xac\x45\x54\xb3\x47\x94\x81\xd3\xf0\x50\xa4\x75\xe5\xc2\x66\x49\x2d\x3e\xd5\x4a\xe7\xc5\xea\xfc\xa2\xe3\x81\xbe\x4d\x57\xe7\xd5\xe0\x23\x10\x16\x23\xdd\x0e\xeb\x74\x76\xa9\xeb\xe1\xd1\xe3\x27\x5f\x7d\xd7\x01\xe1\xfd\x0a\x71\x19\xff\xf8\x1e\xd2\x6b\x77\x9f\x22\xe1\x78\xf6\x14\x51\xf3\x2c\xac\xde\xf8\xd1\xa3\x67\x4f\x87\xf8\xf0\xd9\x53\x82\x8f\x7b\xd6\xb5\x06\xc8\xd7\xaf\xbe\x55\x07\xea\x9d\x39\xe2\x3c\x8a\xd8\xa5\xee\xc5\x44\xa3\x35\xce\x85\x4e\xd4\xac\x28\x9d\x9b\x1c\x5e\x42\xa6\x27\x21\x01\x8c\xba\xa7\xdc\xfe\xa4\xeb\x58\x2e\x0e\x89\xe6\x03\x4b\xc2\x5b\xf7\xec\xec\xb4\x99\x61\x63\x2f\x3a\x61\xd4\xc5\x35\xc3\x38\xae\xd3\x6a\x11\x2f\xd7\x2c\x38\xad\xcd\x71\x82\x14\x6b\xdc\xda\x1a\x54\x56\xbd\x6e\xc8\xde\xfd\x02\x9b\x99\xce\xf4\xc1\x26\x38\x47\x0b\xfe\x47\x73\xa8\xff\xdd\x20\x8e\x34\xdf\x10\x7f\x55\x51\xf4\x15\x88\x22\x51\x82\x69\xd8\x01\xfb\x4b\x57\x75\xa5\xe2\x39\xe2\xde\x81\x90\xa2\x7b\x77\xcd\x37\x8f\xe8\xce\xd9\x16\x25\x9d\xb0\x8c\x3a\xb5\x8d\x67\x8a\xd5\x4f\x48\x11\x0f\x0f\x8e\x1e\x0f\x5f\xbf\xfa\x4e\x1d\xa8\x0f\x63\xf5\xc5\x58\xed\x8d\xf1\xd2\x87\x23\x86\x3a\x43\x3e\x86\x38\xbd\xb9\x95\x82\x54\x9c\xdf\xd6\xcc\x44\x37\xf7\xf0\x12\x06\x8f\x5b\x76\xf9\xac\xeb\xa4\x9f\x0d\x9b\xcc\x94\xfe\x30\x7e\xf4\xe8\x3e\x9b\xec\x74\xef\xc3\x17\x93\x71\xfb\x3e\x3b\xeb\x9e\x75\xd7\x8f\x1e\x35\xf7\xcd\x0f\x3f\xa8\x27\x83\xaf\xcc\x8e\x21\xfc\xd2\xe1\xc8\x42\x8a\x9a\x31\x5f\xa4\x49\xa2\xdd\x46\x51\x51\xf8\x00\xa0\x2b\xea\x34\xcb\x14\x55\xd0\xfb\xd7\xf7\x41\x73\xde\x52\x0b\x1a\x37\x7e\x84\x3d\x78\x34\x94\xd3\xb7\x69\xd3\x30\x28\xeb\xdd\x9b\x86\x4b\xf6\x55\xd7\xce\x40\x73\x07\x0d\x87\xca\xdd\xc6\x64\xa4\xb4\xb9\xde\xf1\x62\x86\x90\x2c\xe6\x23\x10\x7b\x81\xda\xb6\x30\x06\xe2\x3e\x1f\xee\xb9\x0a\x05\x57\xbc\x37\xf4\xf2\xf8\xb8\x22\xc8\x27\xaf\xbb\x0c\xcd\x5c\x31\x5b\xd5\xa6\x17\xbc\x53\x61\xe1\x92\xb8\xad\x2a\xad\x1a\x5c\x1e\x30\x0c\x66\xb5\x2c\x93\xcb\xe4\x1e\x59\x09\xba\x54\x4c\x09\xe2\x39\x01\xe8\x3d\x4f\xf8\x4b\xb8\xff\x0c\xa5\x57\xc0\xb0\x77\x04\x63\x2f\x72\x9c\x9a\x7f\xdd\x08\x1b\xe2\xa5\x8c\x56\xe3\x30\xf4\x94\xe4\x99\x22\x4b\x28\x76\x89\x1e\xe4\x90\x6f\x8b\x34\x70\xfc\x4c\x5f\x37\x94\xbc\xee\xd5\x3b\x27\x9a\x6c\xd6\x21\x54\xf2\x76\x27\xd6\xf2\x39\xa0\xb5\x56\x70\x9d\xe7\xe7\x1a\xf4\x2c\x8a\x0c\x97\x07\x65\x01\xb9\xdb\xcc\x94\xa6\x64\x46\xb0\x61\x7d\x88\xf2\x1a\x97\x04\xb8\x92\x82\x5a\x1b\xf1\x3d\x6f\x11\xc1\x41\xe9\x9b\xba\x8c\xd5\xeb\x97\xa6\x4a\xd6\xb3\x70\x25\x30\xbf\x45\x09\xd8\x1e\xab\x25\x39\x9d\xe1\xe1\x72\x30\xa4\xcf\xf3\xa4\xd4\xd7\xea\xe5\x6a\x59\xe4\xb5\xc5\x21\xad\xf5\xec\x02\x74\xe0\x3d\xae\xec\xf5\x2b\xf5\x2d\x43\x59\x60\xbf\x8a\x5c\x15\xd3\x8f\x66\x53\xc9\xdb\x81\x34\x9c\x6d\x13\x74\x24\x85\xcf\x0d\x30\x94\xbb\x00\xb8\x0b\xd5\x8a\xa4\x17\x36\x6c\xbf\x5d\x59\x2b\x85\x68\x5c\x68\x91\xfe\x36\xc8\xca\x26\xed\x46\xb8\x07\x8a\x4c\x26\x5d\x43\x49\xa3\x6f\xae\xe2\x2f\x1e\x76\x9d\x45\xd0\x0f\xb3\xe3\xfa\x2b\x3f\xed\x7b\x6a\xc8\x42\x2e\x52\x9d\x7f\x92\x9b\xad\x7b\x9a\x26\xe3\x47\x86\xee\x9a\xbf\xf7\x55\xf7\xd1\x44\x75\x6d\xef\x59\xd5\x5c\xdd\xc7\x9f\x19\x4b\xa2\xad\x0b\x2b\xb3\x4f\x42\x09\xf9\x53\xcb\xde\xde\x28\xe6\xdd\xa9\x1e\x38\x6e\x3b\x0e\xd4\x6f\x6c\xb8\xdf\x6d\x31\x2e\xca\xf2\x76\x14\x75\x79\x6b\x07\x74\xa7\xb0\xee\xfa\xdf\x24\xdf\x2c\xbc\x8b\x56\xe8\x51\x2f\x90\xef\x5b\xc5\xfb\x4f\x98\x7a\x3e\xfa\xb5\x8a\x01\x52\xc3\x76\xf0\x13\xfa\x78\x67\xb7\xbe\x6b\xc0\xae\xd9\x63\x42\xd1\xc0\x13\x06\x60\x2a\x3a\xd8\x6f\xdb\x62\x06\x3b\x22\xdf\x16\x0b\xbe\xf7\x26\xcb\xd6\xb8\x24\xad\xac\x36\xa5\xc3\x36\xa9\xc0\x85\x23\xd7\x85\xa9\xd1\x22\x69\x59\x0b\x7e\x0d\xb8\x3a\x81\xe0\xc4\x9f\x16\x39\xa1\x04\xb1\xf8\x8e\xd9\x77\xa2\xd7\xaf\xd4\x77\x48\x2e\x1a\xb2\xbd\x35\x8d\x54\xb4\x9a\x49\x7a\xd5\x57\xdd\x24\xbd\xea\x4a\x2b\x26\x08\x1f\xc4\x88\xce\xe3\x34\x43\xc4\x62\xa0\x72\x33\xbd\xe4\x90\x21\xb4\x11\xcd\x2e\x0b\x20\x47\x28\x8f\x20\xf4\x09\xce\x25\x4b\xb1\x84\x88\xdb\x09\xb6\x5a\x5b\x47\x80\x7d\xda\x35\xec\xd3\xa8\x02\xbb\x80\x3b\xf8\x9e\xc4\xc9\x1c\xd4\xee\xb8\xdb\xb7\x29\x5d\x78\xbb\xe3\x2e\x52\x91\x82\x78\x7b\x5c\x62\xe7\xde\xe8\x4b\xae\x0d\x8e\x00\x85\x58\x20\xd9\xf7\xe5\x0e\x1a\xc2\xb0\x65\x11\xb8\xb7\x77\xb0\x09\x5c\x2c\x64\x15\xd8\x1a\x1b\x0a\xce\xe3\x86\x4f\xae\xbe\x59\x96\x72\x57\xbd\x89\x2f\xb5\xaa\x56\x25\xe6\x73\x71\xe2\x93\xdd\xd3\xc8\x06\xba\xd4\xd8\x3b\x50\x03\xdc\xc3\x32\xb5\x44\xa0\xd8\xe9\xab\xee\xf8\xd1\x17\x47\x8f\x26\xde\x6e\xb9\xd7\x8c\x36\xa7\x11\x70\xea\xaa\x1a\x24\x4f\x3b\x95\x74\xb0\xd3\xea\xaf\x6f\x7e\xb4\x4e\xce\x8e\xdd\xe0\x99\x22\x68\x5a\x1c\x75\x1b\x37\x42\xaf\x5a\x49\x1c\xa6\x02\xac\x1b\x67\x41\x4e\xe5\xb1\xd4\xb3\xbe\x52\xdf\x3d\xaa\x1a\x1a\x11\x7f\x93\x17\x79\xf3\x28\x56\x92\x58\x99\x16\xd7\xeb\xa6\xba\xcd\xe6\xf6\x21\x8d\x4e\xa5\xae\x75\x96\xf5\x5b\x6a\x43\xce\x3d\x4e\x51\xc1\x05\x10\x27\xb1\xd5\xe3\xc8\x3a\xe6\x65\x7c\x0e\x5a\x02\x00\xe8\x53\xdf\xd9\x77\x10\x8e\x2d\xdd\xcb\xbc\x07\x8e\x49\x30\x97\xff\xd1\x51\x4b\xf0\x75\x29\x02\xef\x7d\x9a\xad\xf9\xa8\xb9\x94\x86\x5e\x32\x09\x33\xad\x9c\xef\x02\xff\x7f\x8a\xcb\x3b\xd9\x94\x58\xa2\xb3\xf3\xa9\x17\xa1\x0b\xe8\x70\xa8\x5e\xea\x65\xa9\x67\x46\xe2\xef\xf8\x68\xf6\x79\x7d\xd1\x9d\x84\x49\x96\xba\xfa\xd7\xee\x04\xe1\xb6\xbe\x8f\x67\x97\x90\x2a\x3c\xae\xbd\x68\x5c\x02\x6c\x89\xa0\xdf\xc2\x75\x1a\x9d\x12\x6d\xb2\x9f\x65\x59\xd4\x05\x19\x2c\x64\x13\xc7\x9d\x20\x2d\x10\x01\xb9\xc8\x9a\xb1\x03\xd6\x45\x02\x29\x9a\x38\x8c\xa5\xae\xcb\x54\x5f\xc5\x59\x47\x24\xa4\x54\x63\xf5\xf1\xbf\x41\xc9\x82\xa8\xe5\xf4\x07\x99\x3f\xb0\xa0\x7d\x4a\xa7\x96\x3e\xb7\x87\xdb\x7b\x7f\xda\x1d\xc1\x04\x89\x47\x6e\x10\xf4\x70\xc5\x6e\x8e\x0d\xff\x0f\x5b\x84\x38\x16\x2a\x40\x39\x37\xec\x5b\x38\xb0\x2f\x01\xee\x99\x4a\xc0\x13\xfb\xde\x92\x03\xe1\x20\x81\x4f\x8e\x3b\x9d\xce\xa7\x5e\xa4\xae\xd3\x3c\x29\xae\xcd\xc9\x83\xf3\xb9\xca\xeb\x34\x33\xb4\xf4\xcf\xe6\xc7\x17\xc3\x7e\x67\xa7\x24\xf4\xc3\x65\xa9\xaf\xcc\x9b\x0f\xd1\xc9\x88\x1e\xad\xcd\xb3\xe8\x64\x04\x85\xd7\xcf\xb3\xac\xd7\x33\x5f\xa4\xd5\xbb\x74\xb1\x04\x2f\x8c\xe1\x87\xc1\xe9\x87\xd1\x83\xb3\xd3\xb3\x41\x7f\xb2\x87\xf5\x19\x5a\x54\x39\x66\x4c\x4e\x10\xda\x5b\x65\x81\x3e\x58\x09\x30\x65\x72\xa5\xce\x57\x71\x19\xe7\x35\x69\x9e\x97\x65\x91\xac\x66\x5a\xc5\x8a\x26\xb2\xd2\x35\x4a\x54\x16\xf3\x1f\x98\x7e\xf9\xbe\xb3\xe3\xea\xb0\x5e\xa6\xbf\x01\x04\x4c\x9a\x25\xa5\xce\x47\x56\x4a\x22\x1d\x5e\xe5\x9e\xe4\xfa\xa6\x76\x7f\x99\xc1\xe3\x5f\x08\x8e\xc7\x5b\x26\x1f\xe8\x9b\x5a\xe7\x49\xf4\x5b\x67\xc7\xec\x9f\x51\x8b\xcc\x29\xc2\xa8\xd3\xbe\xca\x1c\x04\x6e\xde\x57\x78\x93\x83\xe0\x55\xe9\x6c\x6e\xd8\xfe\x8b\xb4\x72\xac\x0e\xe1\x6d\xd8\xaa\x76\x25\xe4\x86\x1f\x19\x82\x5d\x92\xcd\xd2\x71\x6b\xc0\x5e\x0b\x43\xe6\x61\x5f\x65\x68\x7f\x98\x0f\x1c\xf6\xf1\x53\x15\x78\xa0\x62\x67\x82\x8d\x06\x4d\xcd\x4f\x55\xaa\x26\x7d\x14\xd9\xa4\xc0\xd1\x96\x8d\xd2\xf1\x83\x3d\x09\x0e\x4b\xa3\x06\x8e\xe3\x5d\x1d\xcf\x2e\x23\xc8\x15\xd6\x35\x13\xda\xed\x87\xe2\x4f\xa3\xf3\xf0\xed\xe6\xce\xb3\x45\xdf\x4c\xb4\x94\x37\xc4\xa9\x97\x8c\xa8\xa9\x8d\xdc\x22\x6a\x25\x9d\x8c\x53\xcf\xa1\xaf\xc9\x01\x80\x48\x4a\xae\x14\xe6\x1a\xc1\x7d\x28\xe6\x3b\x87\x48\x2b\xec\x66\xae\x9e\xca\xfe\xa8\x5c\x4e\x36\x16\x2f\xd1\x29\xb2\x14\xd0\xc6\x65\xd3\x77\xb7\xd4\xf5\x69\x39\xa1\x08\xbc\xfa\x34\x9f\x04\x57\x0a\xdb\x1e\xf3\x83\x83\xbe\x3a\xba\x8f\xb7\xae\x1f\x38\xeb\x63\x19\xf7\x11\xd7\xd0\xcb\x99\x1a\x97\xe7\xd6\x7b\xd6\x7a\x54\xed\xe0\xe3\xca\x9e\x79\x2e\xc8\x3b\xa5\x4f\x4b\x63\xd6\x0f\x8b\x4a\x14\x4f\xde\x3c\x66\x65\x37\x6c\x62\xb1\x0d\x5a\x9d\x5e\x36\xed\x59\x53\x67\x9f\xdb\x44\xcc\xce\xd0\xd5\x20\x4c\xcd\x48\xaa\x2e\x1c\x7e\x5e\xd4\x5b\x0e\xb9\xec\xb8\xd8\xce\xd7\x69\x9e\x17\xd7\x11\xb6\xed\xf6\x1a\xf0\x35\xbd\xbe\x82\x5c\x6a\xee\x85\x6d\x8b\x33\xbf\xff\x9b\x9a\x33\xe3\xea\xc1\xb9\x32\xd5\x06\x27\x0b\x5b\x4c\xab\xbb\x5b\xdb\x75\x26\xe8\x87\x0f\x31\x9a\x2c\x24\x53\x1e\x32\x90\x44\x1a\x60\xf5\x98\x0c\x73\x1a\xda\x50\x25\x21\x0e\x82\xcc\x86\x89\x21\xab\x8b\x74\xc9\x70\xb7\xd8\x05\xf4\xd6\xe0\x6a\xab\x42\x7d\x11\x75\x97\x23\x04\xff\xef\x0d\xd2\xca\xfc\x05\x18\xfe\x3d\x75\x0d\x10\x50\x62\x61\x19\xfa\xb5\x98\xa1\xc8\x55\x5f\x17\xaa\xbb\xec\x0e\x90\xa3\x92\xd7\x51\x8b\x53\x07\x6e\x93\x90\xd2\xe2\x9e\x1e\x58\xcf\x15\x84\x40\xc2\xad\x76\x7a\x68\x76\xd8\x33\x91\xd5\xd9\xd2\x1d\x8c\xc7\xf7\x2b\xf1\x38\x35\xfa\x42\x9e\x02\x49\xdd\x45\x41\xbb\x7e\x04\x2e\xd6\xb6\x88\x55\x98\xb1\x9b\x50\xc9\xe1\x24\x5a\xf7\xb2\x9d\x80\xa2\x92\x4d\xba\xf6\x80\x3e\x0c\x31\xdd\x32\x53\x15\xc6\x19\x06\x9b\xa2\xf2\x2f\x2f\x9c\xcb\x70\x2a\x45\x27\x4d\x0d\xde\xb4\xd2\x74\x1c\x8a\x5b\xa0\x8d\xde\x23\x86\x30\x91\x71\xa4\xdf\x12\x7f\xf8\xe1\x43\xc0\x17\xf6\xb2\x4c\xd0\x43\xcc\xe1\x2d\x62\x5f\x56\xe5\x46\x86\x9d\x03\x92\xd5\x89\xf9\x3f\xad\xf8\x6c\x55\x72\x72\x6b\x25\xae\x97\x50\xba\x34\xe5\xdc\xe1\xab\x7c\x02\xc4\xbe\x8d\x16\x13\xb9\xc5\x5d\x67\x13\x4c\xb2\x47\xb6\xbd\x1b\x0f\xd1\x96\x94\xc7\x8b\x46\x04\x62\x3f\x42\xea\xbe\x99\x9c\x18\x0e\x45\x75\x69\x6b\x09\xb2\x51\xb9\x7d\x07\xe2\x43\xad\xcb\x45\x9a\x13\x50\x30\x63\xb3\x17\x73\x90\x43\xc9\xa9\xde\x1c\xb9\x14\xbd\x41\x4c\x29\x8e\x28\x30\xcc\x1c\xa5\xbc\x47\xe5\x2a\xcc\x67\x6b\xda\x10\x34\x38\xfc\x54\x88\x34\xdd\x32\x38\xd7\x10\x0a\x9c\x14\xeb\x0a\xdb\x12\xc7\xeb\xce\xe6\xc3\x87\xfc\xd3\x4f\x26\x76\x42\xb3\x50\xea\xab\xe7\x59\xe6\x3c\xc8\x46\x12\x82\x7f\x38\x74\x8d\x56\x4e\x75\x24\x39\x37\x1b\xa7\xbc\x95\x6b\x1b\xa4\xf9\xf3\xb2\x8c\x6f\x6d\xbf\xfa\xf6\xda\xa4\xde\x7b\x20\x21\x3f\x16\x33\x0e\x46\x90\xf3\x6c\xfe\x4e\x74\x95\x96\x2e\x46\xa3\xb3\xa9\xa1\x8e\x25\xc9\xa9\x21\x8f\x33\x9d\x5e\x19\xf1\x97\x8a\x91\xb6\xbb\x4f\x08\x17\x65\x65\x15\xdf\x86\x78\xaf\x2a\xd4\x68\x80\x68\x8b\xe6\x6a\x75\x82\xb8\x65\x87\x13\x35\x22\x29\x1f\xc9\x19\x6f\x90\x38\x69\xe5\x8d\xdb\x68\x12\x61\xaf\xdd\x7d\xa5\x34\xe9\x70\x48\x2b\x68\xd0\x8b\xf8\x52\xd3\xfc\xca\xab\xcb\xfa\x0c\x7a\xe8\x40\xb6\x84\x19\x8a\xef\x87\xba\x13\x67\x99\x93\x62\x16\xba\x3c\xd7\xb8\x62\x46\x58\x8b\x7a\xe0\x0d\x4c\x3c\xe3\x86\xa3\x94\x56\x2f\x85\xd2\x01\xc2\x25\xf0\x86\x58\xaf\x1b\xef\xe2\x2c\xc3\x77\x27\xdc\xf4\x48\xf0\xad\x7c\x86\xe3\x8c\x83\xaa\x79\x9e\x8d\x38\x7e\x4f\x9e\x21\x4e\x04\xef\xeb\xc2\xec\x3a\x7c\xeb\x98\xed\xff\x16\x0d\x1f\x23\x15\x3c\xe1\x2b\xc9\x72\x2d\x1d\x0c\x4e\xfd\xd4\x01\x55\xa0\x93\x90\xe2\x3c\x79\x87\xb2\x8d\x78\x86\xdd\x24\x98\x71\xb5\x8c\xd3\x7c\xbe\xca\xb2\x5b\x55\xa1\x34\x39\x0b\x74\xb6\x82\x84\xa4\x95\x8f\xbe\x0f\xda\x18\x90\xfc\xac\xda\x25\x72\x6e\x16\xe9\x62\x59\x16\x57\x3a\xe9\x2b\xc4\xce\x9f\xeb\x18\xf4\xbe\xbd\x81\x53\x55\x84\x13\xef\x92\xcf\x33\xc7\x93\x93\x65\x60\x17\xb3\xa3\x7b\xd6\x82\xe0\x51\x60\x07\x3a\x0a\x1c\xa8\xd1\x18\x01\xf4\xbd\x0f\x20\x7f\xd0\x4e\x52\xa0\x5c\xca\x74\x9d\xf0\xff\x20\x4b\x45\xcb\xe5\xe5\x5f\x4a\xb8\xe3\xd8\xe7\x7c\x85\xd1\x12\x2c\x69\xc7\xb3\x0b\x23\x9b\x62\xff\x36\xe4\x61\x32\x87\x0e\x0b\x70\x2a\x29\xff\x5a\x71\xc0\xb0\x74\x57\xe2\xaf\xc6\xdd\x78\xc2\x45\x46\x84\x3e\x67\xb6\x24\x35\x5d\x6d\x68\xdb\xa7\x4e\x49\x6a\xa3\x10\x25\xf0\x2a\x6f\x6f\xae\x0b\x74\x10\x61\x85\x00\x4f\x86\x3a\x8d\xcf\xa8\xda\x7e\x42\x2d\xa0\xd8\xbf\xad\xab\x76\x09\xa9\x32\x91\x7d\x45\x74\x14\xf4\x05\x9f\x53\x4d\x90\x72\xbf\xeb\xf5\xe8\x79\xd6\x18\xee\x9d\x83\xdc\xd8\xaf\xdf\x53\xd9\xd6\xde\xfd\xab\xcb\x21\x7b\x1a\xae\x87\x69\xf8\x5f\x5e\xee\xa0\xf3\x61\x1b\x9c\x65\xe4\x5e\xb3\x62\xd7\xad\x99\x82\x74\xbd\x56\xbf\x7d\x02\xb5\x0b\xe7\x92\xec\xbb\x58\x4b\xd3\x90\xd3\x3b\x7d\x4e\x43\xda\xcf\x4f\xe9\x6a\xb3\x3a\xab\x7b\xd4\xc6\x36\x68\x3b\x29\xe9\xbc\x8c\x17\xe6\x68\x21\xb9\xd7\x98\x15\x08\x6a\xb4\x6c\x31\xc3\x8b\xd2\xf3\x5f\x40\x7f\xe8\xb4\xdb\xf2\x3a\xa2\xcb\xf0\x74\xd2\xa7\x4f\x4c\x57\x31\xc5\x08\x5d\x0a\x7d\xd1\xcd\x3c\x5e\xe8\xbe\x9a\xe7\xd8\x55\x7b\x2d\x9c\x62\x66\xbd\x89\x67\x7e\x81\xb5\xea\xb7\x69\xd3\x90\xc9\xb5\x77\xfc\x92\x85\xfb\x79\x2e\x56\xd8\xb2\x81\xa8\xef\x24\x51\x05\xda\xb1\x8c\xb7\xf0\xc4\x86\x42\xc7\x01\x6c\x98\x63\x19\xb6\x72\x25\x8e\xb3\x13\x77\x5d\x43\xcc\x23\xbd\x52\x53\xfd\x25\x38\xf5\x87\x0f\xd5\x6e\xa8\xbb\xb4\x93\x73\x27\x1b\x8f\xfc\x67\xb3\x4a\xa9\xdd\x6d\x9d\x07\x27\x35\x94\xfa\x4a\x97\x9c\x24\xf1\xd3\x5d\xb2\x01\x2e\xe7\xac\x28\xf5\xdf\xa5\x1d\x9b\x39\xf4\xca\xa2\x70\xf4\xbb\x3d\xce\x2f\x22\x99\x04\xa9\x43\x0d\x35\x1e\x68\xd5\x20\xf0\xc3\xbc\xa8\x25\x3c\x8c\xfb\x93\x8d\x6b\xdd\x51\x5e\xd4\x51\x57\xed\xa3\x91\x69\x5f\x75\x7b\xdd\x70\x08\x50\x97\x1f\xe8\x73\x12\x28\x04\x1b\x12\x1b\x46\xe8\x1b\xbe\xdc\xd4\xdb\x03\x46\x91\x9f\x01\xa3\x08\x80\x83\xed\x95\x44\x62\x08\x96\x4f\x4b\xd2\xb2\x49\xd1\x92\xb4\xf4\x69\x9a\x48\x46\xe1\x04\x70\xe4\x12\x04\x4c\x70\x23\xc7\x4e\x1b\x9b\x00\x2e\x3b\x11\xe9\xfc\xc7\x66\xa3\x13\xe2\x17\x78\x3c\x34\x99\x0a\xc3\xed\x30\x83\x0d\xc2\xe8\x20\xad\x22\xee\x9c\x0f\x10\xeb\x7d\xed\x23\x10\xfb\x81\xe7\x4e\xa8\xfd\xd4\x91\x62\xec\x69\x92\x96\x13\x0e\x44\xf4\xe0\x82\x13\x9e\x2f\xa2\x86\x72\xce\xf2\x7e\xc8\xc4\x94\x84\x9c\x27\xf4\x03\xf9\x31\xe8\x5d\x73\x99\x24\xcd\xeb\x7c\xde\xe2\xb8\x93\xc3\x1c\x78\x20\x0b\x25\x0d\x21\x0f\xc3\x0d\x59\x41\xea\x38\x5f\x23\x56\x19\x26\x16\x68\x24\x20\xf6\x73\xe2\x2a\xdb\xf9\x38\x4b\x6b\x0c\xe9\x27\x98\xd1\x38\x07\x87\x49\xc7\x28\x92\x0a\xcf\x8a\xc4\x7d\xf5\xeb\x2a\xce\xd2\x79\xaa\xcb\x3e\xa2\xda\xa1\x30\x0c\xd1\x8e\xf9\xa3\x1a\xf3\xed\x00\xfb\x5e\x94\x62\x71\xeb\x82\x41\xab\x8c\x90\xfa\x43\x5a\xea\x79\x71\xa3\xbe\xec\xa0\xbf\x34\x78\x49\x1f\x02\x9f\x7d\x99\x2e\xd9\x53\x9a\x4c\xc5\xb6\x41\x35\x76\x8d\x9b\x7d\x71\x68\xe3\xef\xac\x69\xca\x85\xf2\xba\x92\xbd\xd6\x8b\xe8\xbc\xd4\xcb\xc8\x8d\xaa\x71\xa9\x4b\xcc\x96\x52\xd7\x7f\x81\xac\x4f\xbb\xbb\xb6\x5a\xcf\x92\x9c\xf6\x25\x98\x81\xd3\x55\xc3\x57\xe3\x31\x4c\xd4\xb1\xf5\x54\x94\x40\xe6\xae\x3e\xbb\xfc\xff\x4a\x6f\xbd\x7c\xfa\xd0\xb4\x9c\x87\xed\x5d\xa1\x3b\x45\x4c\x77\xf3\x52\x31\xb3\x61\xc1\x58\xc7\xf7\xea\x5d\x0b\x60\x5a\xb0\xd5\x5d\x77\xc8\xc2\x41\xb6\x3c\xba\x1b\x9a\x2b\x19\x4c\x0e\xdd\x6d\x62\x63\x72\x17\xfb\x6a\xd7\x8c\xb7\x17\x22\x69\xc9\x2d\x15\x5c\x90\x2d\xb5\xb4\x21\x19\x7d\xde\xba\xd8\x65\x09\xd5\x2c\x58\x4c\x8e\xf0\x19\xa2\xd4\x8b\xa5\x42\xc0\x3f\x07\xec\x0d\xde\xf0\xef\xe2\xb9\xfe\x81\x8c\xff\x2e\x18\xc8\x85\xba\x42\x9e\xb5\xb1\x4d\x6e\x8e\xb1\x5f\x75\xa4\xba\x6b\x0c\x5c\xab\xe8\x7b\xe5\x40\x68\x06\x58\x33\x73\x5d\xb6\x76\x97\x06\x8a\x3f\xa2\x92\x0c\x04\x83\x63\x64\xc2\x6f\x5a\x0e\x3c\x7a\xdb\xbf\x43\x1f\x32\x28\xbe\x2c\x96\x11\xf8\x31\xb9\x99\xb6\xf2\x09\x7d\x0b\xd2\x24\xa7\x4e\x87\x21\x99\x6b\x36\x9e\x4e\xcb\x75\x5c\xd6\xe9\x2c\xd3\xeb\xb8\x4a\x13\xbd\x8e\x57\x49\x5a\xac\xa7\x49\xba\x9e\xc5\xf9\x55\x5c\xad\x93\xb8\x8e\xe1\x7f\xa6\xa9\x75\xa2\xeb\x38\xcd\xaa\xf5\x3c\x3d\x9f\xc5\xe0\xe0\x64\x7e\xae\x4a\xbd\x9e\x17\x45\xad\xcb\x75\x57\xed\xbb\xec\xe5\xeb\x0b\x70\xb4\x5b\x2f\xe2\xf2\x72\xbd\xd0\xe6\x7d\x1e\x5f\xad\x8b\x55\xbd\x5c\xd5\xeb\x65\x59\x9c\x97\xba\xaa\xd6\x95\x86\xb5\x59\x57\xab\xc5\x22\x2e\x6f\xd7\x75\xba\xd0\xeb\xab\x34\xd1\x45\xb7\xdf\xd9\x29\xd3\x3c\x4b\x73\x4d\x2a\xad\xb1\x1a\xd2\x36\x38\x4b\xf6\xc7\xdd\xe8\x64\x64\xa8\xe5\xfa\x2c\xd9\xef\x75\x21\xca\xaa\xa4\xd8\xc5\x5f\x9c\xa7\xf8\x58\x0d\x3f\x9c\x55\xfb\x60\xca\xbe\xb9\xa8\x17\xd9\x7b\x58\xb9\xe1\xd3\xe8\x64\x37\x2e\x75\xbc\x9e\x96\xeb\x59\x91\xad\xf5\x62\xaa\x93\xf5\x45\xb9\x4e\x17\xe7\x6b\xf0\xcb\x5e\x67\x69\x0e\x3d\x8f\xd7\xcb\xb8\x8c\x17\xbd\x28\x3a\x3d\xbb\x1e\x4d\xf6\x7b\xa7\x1f\x9e\x4d\xf6\x7a\x67\xc3\x67\xc3\xf3\xd4\xd4\x5b\xc7\xe7\x94\x50\x64\xf8\x94\xcb\x40\x83\xf5\xb4\x48\xa0\xdb\x4f\xe1\xd7\x10\x4a\x9b\x4e\xc0\xb3\xf5\xc3\x07\x27\x67\xd7\xfb\xc7\x68\x66\x2f\x5e\xe7\xb9\x76\x2f\xa3\x93\x51\x35\x2b\xd3\x65\xbd\xae\xea\xdb\x4c\x43\x67\x7a\x58\x41\x5e\x70\x6e\x08\x59\x0c\xf5\x7d\x34\x0e\x0c\x84\xc0\x4f\xed\x57\xd5\x45\xba\xe0\x2f\x85\x7f\x55\xd7\x54\x02\x7e\x9e\x76\x7b\x18\xa6\xeb\xf4\xec\xac\x1a\x3e\x9b\x74\x8d\xa0\x01\xc9\xbd\x4b\xb8\x54\xe2\x69\xc6\x49\xf2\xc1\xb7\x80\x73\x94\xaf\x21\xad\x79\x0f\x7c\x06\x86\x43\x45\xc1\x0a\xe3\x2e\x47\x2d\x00\xb4\x15\x47\x54\x94\x1c\xc7\x31\x56\x43\xfa\x79\x56\xed\x45\x27\xa3\xd3\x0f\xe3\xc9\x7a\x7c\x56\xed\x0d\xe8\xf1\x80\x7a\x8f\x83\xe4\x86\xcf\x86\xd1\xc7\xf8\x2a\x5e\xeb\xd9\x22\xee\xe1\x2b\x2c\x36\xcb\x74\x9c\xbf\x83\x07\xb4\xf2\x7b\x4f\x77\xa3\x93\xd1\xd9\xe9\x8b\x97\xcf\xdf\x3f\x3f\x3b\x5d\x9f\x1d\x9c\x1d\xf4\xd6\xa7\x67\x93\xb3\x83\xc9\x6f\x8f\x3f\x3d\x3b\xab\xf6\xbe\x80\xbd\x73\x5d\xc6\x4b\x44\x3f\x37\x07\x0f\x27\x70\xa4\x4e\xd5\x51\xdf\x06\xe9\xd8\xc8\xff\xf1\x23\xfe\xf5\xe8\x99\x99\x20\x17\x9f\x83\x71\x5d\x99\x3e\xd7\x79\x62\xbf\x9e\xa7\x3a\x4b\x2a\x5d\x53\x59\xf7\x27\x96\xae\xcd\x81\xb1\x85\x6b\x33\xc3\x54\x92\x7e\x53\xb1\xd2\x94\x79\xec\xca\xe0\xa6\xe2\xa2\xf0\x3b\xfc\x04\xaa\x7d\xd2\xf8\xe4\x69\x5d\xf2\x67\xe5\xb3\x0d\xdf\xce\x8a\xac\xbd\x3d\x5b\x7e\x56\x64\x70\xc4\xa9\x2a\xfb\x67\x50\x91\x39\x65\x76\x74\x8b\x98\x8b\xc3\x2f\x2c\xf1\xf7\x44\xcf\xe3\x55\x56\x9b\x52\x87\x7d\xf4\x1c\xe8\xaa\x09\x89\xf6\x82\x5c\x1b\x5e\x73\x2b\x0d\xef\x77\x76\xd8\xaf\xeb\x65\x7a\xa5\xc6\x4a\x7e\x3d\x88\x97\x4b\x9d\x27\x20\x82\x47\x21\xed\x66\xca\x0a\x6e\x9e\xe8\x5b\x48\x3b\x62\x50\x2c\x6b\x86\xdf\x10\x8f\xd2\x22\x3f\xb6\x45\xf8\xa0\xdb\xbf\x0d\x45\x14\x7f\xf3\xdc\xc8\x47\x48\x42\xe5\x47\x66\x1f\x88\x3a\x2f\xe4\xbb\x84\xd8\xd2\x57\x5f\x1f\x7c\x6b\x93\xe8\x94\x69\x9c\xa5\xff\xd0\xca\x10\x87\xbe\xc2\x83\xd0\x57\x70\xea\x01\xea\x3d\xce\x6f\x95\xa1\x28\x5f\xa9\xe8\xa7\xe2\xdd\xac\x58\xea\x9e\xaa\xe3\xf3\xaa\x6f\xaa\x5a\xe5\x80\xc1\x63\x5a\x58\xea\x84\x1c\xe5\xd2\x2b\xb4\xa9\xe6\x45\x7e\x00\x46\x2b\xe4\x26\xe3\x32\x9e\x81\xff\x56\x9a\xab\x79\x59\x60\x6c\x5d\x5a\x0f\x30\xa0\x76\x97\xf5\x1d\x18\x66\x39\x30\x4d\xbe\xb3\x9d\x83\x9b\x8c\xc7\xc1\x4b\x0d\xd1\x90\x66\x47\xfc\xf5\x69\x92\x5e\xd1\x96\x80\x5f\x6a\x22\xb5\x9f\x9e\x7b\x4e\x1d\x68\xf6\x20\x66\xa9\x95\xe9\x8b\x01\x37\xc8\x6a\x13\x5a\xbf\xe0\x4f\xf0\x99\x2f\x50\x49\xeb\xc4\x00\x91\x50\xc9\x3d\x46\x18\x74\x21\x70\x2a\xea\xd1\xb6\x8a\xda\x4d\x52\xbe\x95\x12\x53\xf3\xd3\x66\xa5\x9d\xf7\x5e\xdf\x80\xf2\xc9\xf5\x8e\xf2\xef\x93\x0b\x20\x3c\x75\xd9\xb6\x2b\x89\x84\x00\x82\x95\x99\xdb\x40\x23\x08\xd7\x88\x10\xb3\x5b\xb8\x7c\x2a\xe2\xcf\x05\x8e\x2b\x9e\x5d\x38\x67\x8d\x94\xe5\x27\x12\x25\x4d\x91\xde\x80\xda\xc4\x6a\x90\xa1\xc7\xb9\x4e\xd9\x7f\x5d\x38\x08\x59\x6d\x06\x1a\x43\x38\x42\xe7\xfd\x85\xf6\xe0\xad\x4d\x9d\x18\xcf\x81\x0e\x29\x18\x4a\xc2\x92\x04\xbc\x75\xbe\x28\xa6\xdd\xfe\x86\x59\xee\x0d\xf4\xaf\xd1\x61\x6f\x30\xcb\x8a\x5c\x47\xe0\x33\x21\xbc\x80\x5a\x8d\x85\x38\x44\xd3\xc6\x20\xcd\x2b\x5d\xd6\xdf\xeb\x79\x51\x6a\xd1\x6d\x11\x60\x06\xc5\x16\xf1\xb2\xe9\x96\xc5\x30\x95\xd2\x0b\xcc\xf1\x77\xa1\x1a\x90\x7d\x4b\xdd\xa3\x8d\x69\x80\x04\xcc\xa0\x28\x7e\xdc\xe2\x4b\xaa\x39\xf5\xcf\x27\xb7\x33\xad\x21\xaf\xa1\x08\x92\x7b\x08\x18\x90\xff\xcf\x77\x11\xb4\x7a\xbf\x7d\xb4\xb9\x7a\x21\x71\x56\xd2\x50\x15\x49\x5f\x25\xab\x6e\x65\x77\x39\xfe\x3b\x92\xdb\x83\x1f\x86\xa1\x75\xf6\xb9\xb7\xf5\xd9\xbf\xcc\x8b\xb8\x81\xca\x79\xee\xb9\x54\xc3\x0d\xc9\xd4\xb3\x61\xb6\xc1\x09\xcb\xce\xb2\x93\xb4\x9a\x33\xdf\xb0\x54\xb6\x4f\xbb\x3f\x1b\x6e\x08\xa2\x91\x93\xb6\x25\x18\x89\xee\xbb\x9e\xaf\xf2\xa0\xef\x2d\xae\x4c\x70\xb8\xa2\x5e\xfb\x3a\x79\xb7\x86\xd3\x6b\x63\xb3\x5d\x73\x97\x76\x85\x53\x57\xd0\x79\x72\xbc\xff\x25\xad\x2f\x48\x47\x1a\x68\xaa\x79\xa2\x07\x66\xfe\x9d\x59\x15\xd6\x63\x6b\xa7\x93\x62\xf1\x26\xce\xd3\x65\x64\x69\x2d\x7a\x5c\x6d\x92\xcb\x9d\x96\x36\x38\xb6\xec\xf8\x12\x18\x12\x1d\x58\x0c\x58\x6e\x25\x37\x22\x74\x20\xfe\x2e\x59\x96\xfa\x3f\xac\xdf\x3e\x7d\x74\x9e\x02\xa1\x81\x23\x1c\xc9\x14\xbe\x68\x0c\x84\x63\x19\x7c\x03\xae\xbb\x2d\x5a\x48\x4b\xdb\x78\xc1\x11\x6f\xd3\x80\x77\xc4\x9e\x04\x0b\xef\xa6\x31\x6c\xb8\xbb\x9a\x77\xaf\xa4\x37\xc2\x56\x00\xf2\x87\xa7\x36\x3f\x0e\x3b\x2f\x34\xef\xbe\xe1\xa5\x12\xae\x95\xaa\x8b\xb3\xd5\xa5\xa9\x6d\x80\xbd\xe1\x96\x9e\xfb\x9a\xf6\xff\xc0\x09\xf5\x95\xb6\xff\xef\x26\x97\x1d\x29\x6b\x98\x5c\x98\xb8\xed\x73\x3b\x1c\x82\x12\xe9\x65\x5c\xc7\x2a\x45\xe4\xd9\x94\x61\x08\x57\x10\xca\x92\xdd\x1e\x1c\x50\xd8\xb7\x8b\x2f\xc1\xa8\xba\x76\x3f\x19\x5b\x9f\x23\xf2\x9a\x73\x71\xa5\x9c\x73\xbc\x81\x2c\x4c\x6e\x70\xed\xc0\xc2\x01\x9e\xd0\x7a\xbd\xd9\x68\xd5\x8c\x24\xf1\x1c\xe1\x76\x6d\xef\x98\x2b\xd9\xc4\x8a\xc8\xd5\x30\x1f\x10\x5f\x73\xae\x6b\x4e\x6a\xf8\xfd\xed\x7b\xd4\x88\x44\xdd\xbd\xae\x8b\x67\x6c\x7e\xe8\xfa\xd4\x0c\xc2\x0c\x4d\xb3\x1e\x2b\x24\xb7\x1e\x4e\x79\x93\x8e\xb6\xbb\x41\x4b\xa6\x07\x18\xf8\xc6\xf9\xf9\x77\xac\x0b\x80\xa2\x98\x6e\x59\x9f\x17\x0a\x4e\x82\xfc\x53\xfa\x0a\xd0\x69\xf5\xa2\x28\x6f\x55\xa6\xe3\x4b\x07\xf7\xb9\x6d\xe6\x7f\xe7\xc4\x7f\xea\xf8\x3d\x32\x42\x21\xe2\x5e\x99\x33\x69\x43\xb0\x36\x31\xa9\xdc\x3a\x3c\x6f\xcc\xf5\x06\xa2\xbf\x61\xc2\x81\x21\x97\x87\x23\x89\xeb\xf8\x79\x9e\xbc\xba\x42\x9a\x93\xd0\x1e\xb4\x8f\xa8\x75\xaf\x98\x1a\xab\xe0\x6f\x8b\x2d\x8e\x51\x66\x23\xff\xbd\xe9\x55\xb3\xe2\x71\x4b\x63\xae\x22\xbf\x81\x51\xb3\x6c\x83\xef\x02\xe3\xb5\xd5\x34\x47\xad\xda\x76\x94\x47\x88\x16\xdd\x3d\x74\x9f\xe9\x32\x8c\xd8\xbf\x51\xf8\x0d\x24\x15\x73\x35\x80\xf3\x83\x43\xca\x27\xd0\xfc\x30\x3e\xc3\x71\xca\x6d\x82\xb3\x35\xb6\x6d\x34\x59\xb0\x0b\x36\xbc\xb2\x70\x18\x22\x9c\x52\xaa\x7c\x11\x2d\x8e\xfd\xae\x6d\x33\xfe\xbe\x7e\x87\x0e\x66\x84\xe1\x56\xb7\xc0\x3c\x02\x62\xd3\x0a\xa2\x6c\xa9\x3d\xc7\x06\xa1\xe9\xc6\x8d\x45\xa6\xc3\xdd\x95\x6a\x59\xb2\xa9\xf0\x2c\x12\xf4\xa2\xbd\x68\xda\x95\x1f\xeb\x35\x54\x62\x55\xaf\x41\x25\x5b\xea\x69\xaa\xb2\xa1\xae\xc6\xe3\xa0\x46\x5b\xe1\x2e\xa9\x5c\x4e\x55\xa4\x58\x43\x4d\xa9\xdb\xb9\xec\x7a\xad\x4e\x51\xd9\x36\x51\x3d\x40\x8b\xf4\xd0\x0d\x04\x6c\x24\x4d\x0f\x7e\x29\xd6\x8a\x35\xea\x7d\xd5\x7d\xfa\xc5\xd1\xb3\xa7\xc3\x2f\x1e\x3f\x73\x61\xaf\x22\x9e\x14\xa8\x67\x7b\x60\xd2\xef\x22\x96\x4e\x24\x26\x3a\x8c\xbb\xd7\xc3\xd9\xdb\x7a\x8b\x7d\x1e\x39\x55\xdd\xbd\xae\x87\xbc\xe7\xef\x5e\x9e\x99\x46\x34\x8e\x27\xbc\x1f\xba\x68\xe0\xd7\x73\xb5\xc2\xbc\x87\xb6\x0a\x02\x95\x91\xf1\xe3\x7d\xd8\xb3\xe0\xc0\x1b\x67\x19\x24\xeb\xc3\xd0\x3a\xbc\xde\xc2\xa0\xd2\x4f\x1d\xef\x1a\xf1\x79\xb5\x50\x59\x45\x7b\xc0\x91\xec\x7b\xab\x9b\x84\xfc\xb5\x89\x1e\xdd\x93\x05\x6d\x8f\xc0\xd2\x7e\x16\x2a\xb3\x31\x12\x0b\x07\xa2\x5e\xbe\x7d\xa3\x90\x37\xc6\x04\xe1\xa6\x10\x32\x9f\x16\xaa\x09\x78\x68\x43\x0a\x2e\x74\xb6\x54\xf3\xf4\x46\x61\x97\x29\x39\x0f\x3a\x38\x82\x96\x13\x04\x47\x0f\x10\x64\x93\x9e\xc3\x1d\x2f\x8f\xbe\x6d\xd3\x74\xb4\x68\x23\x40\xeb\xd1\x57\x88\xfa\x01\x5a\x02\x73\x7e\x22\xde\x56\xf0\xc4\x13\x6f\xf1\xbc\xa1\xbd\x9c\x84\x72\xfc\xdc\xee\xc5\x4f\xf2\x92\x6f\x52\xb4\xb6\x68\x43\x7b\x9a\x59\xb0\xa6\xc1\x0d\x12\x5d\x9b\xa1\xf4\x9a\x20\xe1\x9b\x55\x2e\x30\xca\x1c\x63\x43\x43\x86\x9f\xd0\x68\xac\x63\x6a\x20\x34\xd0\x71\x68\x88\xf7\x66\xc5\x59\x25\xc3\x80\x1c\x12\x4e\x96\x3e\xc8\x21\xd7\xd5\x94\x44\x0e\xb9\x9f\x03\xfc\x13\x2a\x8f\x0d\xb7\x9f\x80\xb6\x98\x46\x3b\x6e\x3a\x00\xc2\xa7\x3a\x94\x32\xa2\xe6\x8e\x41\x40\x33\x75\x82\xcd\x44\x3d\x35\xc2\x5f\x46\xfc\x10\x4b\xdc\xed\xdb\xad\x35\xe2\xfa\xad\x83\x11\x2c\xc7\x3d\xfd\xc0\x69\xda\x82\x58\x31\x77\x6a\x59\xc4\x93\xd5\xc5\xe5\x39\x04\xd2\x4d\x33\xdd\x57\x33\x26\x31\x2e\x44\xe3\x87\x2c\xae\x6b\x9d\x03\xc7\x48\xf8\xf4\x90\xc9\xa2\x02\xab\xce\x39\x22\xaa\x0f\x66\x45\x3e\x8b\x6b\x86\x43\x39\x9d\x00\xed\xe0\x5c\x59\xe8\x03\x42\x78\x20\xc0\x2b\xf6\x6d\xe4\x7d\x5f\xa5\x3f\x15\x2f\x0c\x4f\x14\x04\x30\xf1\xfe\x34\xf5\x9c\x1e\xa2\xcb\x14\x1a\x37\x1c\x88\x7b\x2b\x5f\x62\xb1\x88\x1e\xd5\x0a\x98\x2d\x90\x1c\xb8\x3d\x46\x60\xc7\x40\x42\xb6\x46\xf6\x55\x9a\xab\x5f\xf4\xf4\xbf\x52\x17\x6f\x12\x5c\xc5\x98\x67\xcd\xd4\x67\x98\x82\xcc\xe6\xab\xda\xc6\x3a\xb0\x89\xb3\x71\x3d\xdf\xa1\x28\x6d\xd5\x93\x5a\xf9\x7c\xd3\x92\xb5\x0a\xd6\x1b\x37\xe5\xfd\xb5\xb5\x1b\x48\x18\x9e\x19\x5a\x1e\xcb\x16\x04\x64\x0a\x3a\xa9\x4e\x24\x9d\x53\x23\xc9\x2a\x1e\x3b\x65\xe9\xef\x1b\x60\x60\x52\xe0\xd0\x5d\xab\x30\x98\xae\xd2\x2c\x71\x66\x42\xaa\x1a\x35\x01\xb4\x9d\xb0\xe2\xb9\xb3\x2f\x72\x82\x1c\x7e\x84\xef\x21\x7e\x66\x6c\x77\x92\xa7\x82\xb7\x84\xd7\xbe\x75\xfa\xc8\x26\x18\xf9\x8e\xdf\x1c\x54\x14\x52\x70\x6c\xce\x5e\xdf\x30\x8f\x63\x9a\xcf\x87\x0f\x9b\xfe\xc0\x74\xae\xba\x75\xe9\x41\x8e\xfc\x99\x98\x87\xa2\x4c\xcf\x21\xfb\xab\x6d\x97\x81\xb3\xb2\xb8\xaa\x55\x5a\xeb\x05\xc3\xcf\x70\x0c\x12\xf6\x60\xaa\x67\x31\x70\xcd\x98\xb6\x40\xe7\x89\x02\xb0\x75\xa8\x7d\x0a\xc9\xee\x0c\x5b\x91\x82\xf5\xd0\x42\x4c\x9a\xf3\x34\xd3\x25\x9c\xb1\x2a\xad\x57\x04\xdf\x1e\x3d\xf8\xf6\xf0\x9b\xc3\xde\x80\xbf\xff\xc1\x9e\x4a\x7b\xb7\xdb\xfe\xa1\x97\x82\x4c\x99\x35\xd5\x78\xa0\x11\xbe\x2f\xd7\x57\xba\xc4\x1c\x0a\x69\x8e\xa9\x4f\xb0\x5e\x0a\x29\x26\xb2\x22\x96\x13\x6a\x84\x09\x5c\xaf\x55\xc6\x30\xde\x4d\x66\x94\x77\x1c\x6e\x66\x62\xe7\x36\xcf\xbc\x0d\x35\xef\x42\x99\xae\x8b\x30\xdd\x01\x30\x81\xb7\xe5\x73\x61\x82\xa1\x92\xac\xdf\x1e\x71\x49\x7e\xc7\xcc\x2b\x6c\x17\x3b\x08\x57\x21\x4f\xcf\xa8\xc1\xc2\x82\x5c\xe9\xe8\x2a\x2a\x7f\xf1\x02\xc0\xb2\xad\x79\x49\x7e\x48\x6f\xd4\x83\xa3\xa3\x6f\x0f\xbf\x1b\xa9\xe7\x00\xe3\x9c\x91\xc5\x17\xd9\xed\x4e\xcb\x5e\x55\xa4\xed\x70\xbb\x95\x8e\x52\xa8\x55\x92\xe1\x2b\x5c\x46\x4a\xa3\x69\x3f\xc8\x81\xe5\x78\xf6\xaa\x9c\x85\x41\xf2\x2c\xda\x7e\x8c\x6f\x5a\x78\x78\xf3\x38\xb2\x0f\x77\x56\x65\x36\xb2\x35\xf5\xed\x63\x43\xaf\x47\xaa\xfb\x87\x57\xef\xbb\xee\xa1\x11\xc3\xdf\xe3\x0b\xec\xa4\x78\x17\x57\xb7\xf9\x6c\x44\x9a\x50\xfb\x14\x93\xb6\x34\x1e\x77\x91\x81\xef\x32\xc6\x04\x49\x02\x0e\x52\xcb\xc7\x64\xb3\xf3\x53\x96\x45\x19\x75\xf3\x42\x99\x41\x34\x11\xb8\xfc\xaf\xd8\x77\x0e\xba\xf0\xea\x2a\xce\x6c\x10\x03\x07\xdc\xda\x3f\x5e\x10\xa6\x2d\x3f\x73\x92\xc6\x7a\x0d\x52\xb5\x10\xe3\x84\xdb\x0c\x49\xdc\xbd\x20\xa3\xd5\x76\x95\xdc\xfd\x75\x72\x8c\x50\xb0\x5d\x57\x84\x5e\xb8\x56\x9b\xe2\x9f\x24\x52\x2e\xc7\xe7\x5e\x80\xd7\x16\xd9\x0d\x8a\x92\x82\x03\x8a\x35\x2c\x2f\xbe\xfd\x38\xf0\x08\xa1\xa6\x82\x3c\x8b\x70\xe6\x5e\x14\xcb\x5b\xd0\xd6\x44\xca\xec\x34\x95\x68\xa2\xdb\xe4\xf5\x67\xfe\xde\xec\x95\x3d\xb8\x88\x2b\x14\x3c\x71\xc3\x4b\xa6\xee\x18\x5d\x26\xcd\xfd\x8b\x89\x36\x00\x77\xa4\x03\xd0\x90\xa0\xa5\xb5\x97\xdc\xdf\x13\x57\x45\x1f\x23\xd0\x5a\x0b\x98\xbe\x80\xec\x80\x2a\x68\x48\x90\xc3\xaa\x30\x7a\x3a\xd0\x56\xb7\x85\xeb\xed\xe9\xe0\x74\xa6\x6b\xad\xa8\xfa\x01\xa4\x1d\x05\x81\x97\x9f\xd8\xda\x7e\xfb\x24\x14\xa6\x80\x0a\x94\xe6\x7e\x5d\x4d\x04\x10\x7c\xcd\xe9\x0a\xb6\x01\x99\xf0\xb9\xb9\x02\x8f\x9e\x24\xe1\x91\xe1\x34\xf9\xf5\x00\xb2\x49\x90\x03\x1a\x75\xfb\x0b\x23\x77\x42\xe6\x0f\xbc\x55\x96\xab\x69\x96\xce\x40\x29\xc7\x38\x91\xb1\x9a\x15\xcb\x5b\x77\x3b\xf1\x35\xda\xb1\x2e\xf3\x30\xec\xc4\x69\xf4\xbd\x47\x02\x2a\x07\xfc\x57\xd4\x6f\x9f\xfa\xc1\x47\xb8\xd5\xc3\x4d\xf5\x43\x7a\x63\x51\xf9\xaa\x70\x63\xed\x48\x3f\xce\x63\x1c\xcb\x2f\x5a\x91\x1d\x82\x41\xde\x93\xc2\x02\xf6\xc2\x5d\x9f\x17\xf9\xc1\x2b\x17\x99\xbd\x69\x6b\xb6\x6c\xc0\xe1\x50\x19\xe2\x50\xba\x1e\x91\x48\x5e\x61\x62\x3b\xfb\xb8\xaf\xae\x2f\xd2\xd9\x85\xba\x36\x9d\x01\xd4\xcd\x38\x27\x38\xa0\xe9\xaa\x46\xd8\xf9\xe0\xcb\x78\x76\x01\x87\x87\x16\x4d\xd4\xb0\x97\x14\x7b\x50\x81\xec\x6c\xd8\x0f\xde\x96\xcd\x57\x68\xf4\xa5\x85\xd6\xe5\xb9\x43\x39\xac\x80\xdb\x37\x12\x40\x19\xc3\x71\xc8\xb3\x5b\x2c\x52\x29\x60\x34\x11\x98\x14\xbe\xb4\x6c\x93\x1c\x24\x80\x6a\x5f\x68\xea\xb2\xec\x5e\xd0\x90\xec\x5e\xf0\x8a\x0e\x2b\xf5\x91\x17\x13\x34\xd2\xd5\x26\xa8\x51\x7b\x26\x5d\xf1\x26\xf6\x28\xf9\x87\x1d\x1d\x62\xcc\xec\x52\x97\xd9\x2d\xee\xa9\x4a\x71\xe0\x9a\xe1\xf0\x02\x20\x54\x52\x45\xcd\xb2\xb8\xaa\xd2\x64\xc0\x15\x1d\x1d\xb2\x4e\xea\xa7\xe2\x0d\x64\x72\x98\x01\x2b\xf7\x3c\xcb\x8a\x6b\x9d\x00\xf8\xa4\x4a\xe7\xac\x50\x49\x2b\x52\x20\x3d\x38\x7a\x7c\xf4\xe4\xf1\x80\x99\x74\x18\x54\xf3\xd2\x80\xc7\x90\xad\x8c\x14\x68\x55\x39\x73\x7f\xcb\x50\x79\xc0\x59\x5c\xc6\xf5\x85\x32\x74\x3b\x2e\x2b\xb5\xca\x21\xe9\x04\x26\x27\x2f\x4a\xf5\xfa\xd5\x77\x03\xf5\xcb\x85\xc6\x03\x44\x58\xb3\x38\x48\xac\xc2\x06\x1e\xe7\xa6\x2c\xc6\xc4\xbb\xb6\x1d\x70\xfd\xb4\xb8\xd2\x0c\xfd\x5b\xad\xe6\xf3\x74\x96\x1a\x2a\xd3\x71\xd8\x27\x1a\xd6\xee\x22\xae\x84\xe6\x2e\xa6\xa4\xcd\x66\x48\x69\x8e\x09\x30\x18\xec\xb1\x8f\xdf\x02\x25\xa1\xaf\xc5\x4d\x9c\xe6\x75\x61\x3f\x15\xca\x70\xf5\xe0\xe8\xf0\xc9\xe3\x2f\x03\x41\x4e\x6a\x98\xbf\xb2\xe2\x68\xe4\x57\xf9\xf0\xa1\xbd\x5e\xea\x32\x5d\x44\x7e\xcd\x2e\xec\xc7\x7f\x4e\xf3\x6f\xff\xe6\xf9\x97\x41\x0e\xfe\xce\x03\x17\x69\x21\xe9\xb2\x5f\x30\x03\x89\x94\x33\xce\xe1\xe2\xed\xcd\x6f\x01\x2a\x13\xdc\xbd\x96\xba\xac\xd2\x8a\xf2\x2f\x31\xae\x7b\x1d\xd7\x1a\x00\x27\x98\x30\xb3\x7f\x31\x56\x51\x94\x0a\xfc\x8c\x0d\x4d\xa9\x8b\x7c\xa0\x7e\x29\xca\x4a\xf7\xa1\xea\x6f\x10\x85\xb3\x2e\xd4\x79\x7a\xe5\x11\x77\x87\xa4\x30\x1c\x9a\x9a\xa9\x31\xdc\x4e\x31\x20\xfc\x33\xf4\x02\x38\x27\xbe\xa0\x02\x28\xb4\xa7\x00\x22\x0c\x04\xac\xd2\x75\x87\x0f\x75\x50\x96\x4e\xaf\x73\x6c\x36\x33\x40\x7f\xb1\x6e\x02\x7b\x79\xae\x41\x07\x31\x07\xf1\x05\x00\xd8\x41\xae\xb2\x69\x09\x4c\x47\xb0\x65\x31\x0f\xb4\x8d\x68\x32\x86\x72\x12\x20\xab\x47\xee\x67\x4a\x10\xe2\x5c\xb7\xc8\xbb\xde\x59\x74\x8a\x41\xd3\x45\xcf\x28\x24\xde\x8b\xb7\xbc\x19\x9a\x4b\x68\xd9\x36\xdd\xc0\xe0\xb7\x1b\x1b\xdd\x3d\xf9\x35\xd4\x82\xab\x7c\x2d\x0f\x2c\x7e\x55\x6d\xdb\x71\x58\xa4\x2b\x09\xab\x6d\x14\x7b\x4b\x8d\xbd\xa3\xa7\xc7\xad\x7d\xe6\x94\x5f\x54\xf8\x2f\x30\x5a\xea\x2d\xc9\xb0\x34\xfd\xa6\x83\x74\x03\x52\x27\x21\x63\xb3\xd9\xd6\x15\xf8\xbf\x02\x7a\x3b\x7a\x73\xdf\xe3\xa8\x10\xd0\x80\x7b\x6e\xb8\xf4\xb8\xd4\xb1\x37\x24\xaf\x5b\xde\xb0\xfe\x82\x6b\x41\x63\x52\xd3\x0c\x40\xb1\xad\x4f\x9b\x37\x9d\x24\x6f\x6d\xeb\x15\x49\x3b\xe6\x04\x43\xc3\x36\xb3\x32\x1c\x5d\xa7\x70\x75\x2f\xdd\x2b\x77\xbd\xe2\x05\x0e\xec\x0c\x80\x85\x95\x7a\xae\x4b\x9d\xcf\x40\x32\xb7\x7b\x70\x56\x2c\x41\x49\x80\xa7\x8c\x60\xcc\xe1\x7b\xf8\x88\x5e\xd7\x45\xd1\xc1\xe6\x42\x6c\x62\x81\x3a\x08\x29\x08\x7b\xd2\x45\xd8\xd3\xf2\x78\x71\xc7\xa8\xf0\xb1\xb8\xc4\x56\xe7\xc3\x7c\x94\x13\x98\xad\x7a\x80\x7e\x5e\xa4\x40\xb9\x59\xe2\x05\x4d\x97\x3a\xc4\x38\x4d\x0a\xbb\xb3\x29\xb3\x0c\x7f\x78\x7d\x11\xd7\x6a\x11\xdf\xaa\x59\xb1\x40\xcc\xd1\x4a\x68\xba\x00\xae\x8a\x62\x58\x66\x45\x96\x69\x4a\x13\x69\x1e\x9b\x45\x81\x3a\xff\xbc\x4c\x20\x55\x47\x5d\x80\xc9\xe2\xc1\xd1\xe3\xc7\x5f\x7f\x4d\x90\x17\x68\xd1\x15\x89\xba\x8c\x34\x33\x03\x80\x0c\xb8\xa2\x3d\xab\x11\xdd\x72\xc3\xa3\x43\xf5\x10\x6a\x06\xd2\x95\x14\xab\x69\xa6\x2b\xd3\x31\x53\xbd\xb9\x36\x1f\x7c\xfb\xdd\x57\x87\xd4\xc2\x32\x8b\x53\xbe\x33\x2b\x05\x6a\x9f\x44\xb5\x47\x35\x49\x7c\xe3\x59\x23\x37\xb7\xf0\x70\x3e\x96\xef\x77\x1b\x20\xeb\x0e\xbc\x9b\x64\x33\x07\xda\xdd\xa8\xb6\xe9\x46\x6d\x0b\x77\x2c\xd8\x3f\x6a\x8d\xba\xd5\x22\xce\xb2\xae\x8a\x8e\x86\x8f\xd5\x7f\x7d\xdf\x53\x7c\xc7\xa7\xf9\x39\x69\x80\x63\x33\xa5\x55\x55\xcc\x52\x98\x71\x04\x11\x03\x2c\xa3\x34\x17\xbe\x3c\xc3\xa1\x7a\xe1\x93\x27\x05\x00\x4a\x3e\xbd\x03\x62\x06\xc0\xbd\xc8\xf7\xce\x38\x73\xe5\x82\x4f\xea\xd7\x16\x89\x3e\x4b\x2f\x41\x9b\x06\x67\xf5\xb6\x58\x41\xbe\x88\xa7\x38\xeb\xcf\xcc\x7e\x78\x0a\xe1\x3b\xcf\x1c\x6b\x06\x5e\xf9\xbc\x4f\xa1\xc2\xe7\x59\x55\xf4\x49\x61\xed\x30\xa5\xe1\x96\x50\x8f\xe8\xc2\x79\x24\x73\xc1\xb0\x5c\x61\xb8\xaf\xb0\x9f\x50\xe3\x8f\x71\x55\x67\xb7\x70\x89\xf6\xbf\xe9\x7f\x8b\x59\xb3\xa1\x52\xab\xd2\x2b\xf5\xaa\xd2\x9c\xad\x33\xd0\xa7\x5f\x9b\xfd\x33\xa3\x44\x33\x70\x1a\x56\xf9\x65\x5e\x5c\x53\x98\xb6\xe1\x65\xbe\x3a\x3c\xea\x58\x67\xaf\x40\x29\xea\x14\xe9\x74\xda\x02\x45\x3a\x3c\xe5\x4f\x9e\xaa\xaf\x8e\x1e\x8b\x9d\x03\xa5\x05\x56\x2f\x9f\xd9\xc1\xec\xc2\x08\x04\xd1\x21\x86\x03\x76\x9f\x5a\x73\xbe\xb4\xc2\xb3\x9e\x15\xbe\x8b\x36\x2b\xfd\xc1\xf0\xee\xeb\xf3\xe9\xd3\x0d\xdf\x0a\x0e\x6d\x83\x03\x80\xfd\xde\x59\x5b\xde\xc4\xe5\xa5\x23\x44\xc0\x19\x64\x45\x71\x49\x68\x77\x17\x60\x9e\x70\xaf\xc7\x16\xe3\x50\x68\xe8\xd8\xf9\x8b\x17\xe8\x94\xda\x81\xc8\x6c\x26\x6c\x42\x8f\x0d\xf4\x5e\x7a\x55\x7c\xb2\x69\x39\x6d\x11\xbc\x05\x44\x23\x7c\x24\x37\xc7\x3c\xfa\xb6\xf5\x06\x1d\x76\x64\x57\x68\xe1\x71\x0e\x90\x08\xe2\x5d\x6c\xba\xdb\x07\xe1\x11\xa4\xb4\xaa\x2e\x4a\x8d\x4a\x37\x2c\x4b\xf1\x2b\x0e\x8f\xb0\xd2\xb3\x22\x4f\x8c\x3c\x02\xa4\x92\x54\xd9\x95\xb9\xf1\xe8\x96\xec\xc8\x94\xb6\x30\x8d\x9e\x7f\x74\xcb\xc4\x99\xf1\xf2\xbc\x99\xcd\x28\xac\x02\x7e\x54\xeb\x6f\xf6\xdd\xa8\xed\x5e\x19\x89\x36\x3f\x61\x3e\xd9\xb0\x4d\xd6\x9c\x04\xb8\x3f\xa8\xac\x7a\x5f\x8c\x54\x17\x7f\x76\xfb\xd6\x2b\x18\x9e\xd2\x6f\xf3\x58\x7a\x61\x8e\x9c\x0f\x29\xbf\x78\x8e\xfe\xa2\xec\xfe\x68\x4d\xf9\x10\x3c\xe2\x59\x25\xdb\xb0\x3e\xac\x3c\x7c\x0f\xc4\x8f\x16\xa8\x0f\xc4\x7f\xf0\x0d\x7d\x1e\x2a\x21\xf6\x51\x98\xa5\x03\xe4\xae\x4c\x8d\xc9\xd2\x2f\x81\x0d\x7d\xe3\x72\x83\xb2\x34\x62\x3d\x5c\xac\x74\xc4\x9f\x92\xd7\xd7\x7a\xbd\x05\x1f\x89\x1c\xa1\xdd\x9b\x0d\x36\x9e\x1e\x5a\x08\x3d\x7b\x0f\x76\xfa\xd4\x4d\xe0\x24\x0c\x2b\xf1\xd5\x9f\x9e\xd2\x77\x33\x4a\xe2\x0e\x92\xd7\xb1\x05\xb6\x25\xc0\x3b\x11\xf5\x42\x90\x5f\xaa\x87\xe8\x66\xc7\x9e\xbd\x9d\xba\x95\x4e\x54\xcf\xef\x1b\xd6\x4b\xa5\x1d\xa0\x08\xda\x79\xfd\xd7\x4d\x27\x81\x76\x60\x11\x5a\xb7\xa6\xab\xed\x71\xa0\xea\x3d\xd7\xf5\x73\x06\x07\xc0\x81\x86\x50\x7c\xad\x4a\xde\xff\x3f\x75\x6f\xdf\xdc\xb6\x91\xf5\x89\xfe\x4d\x7e\x8a\x16\x3c\xeb\x90\x16\x45\x4a\x8e\x9d\x38\x54\x38\x2a\xc7\x76\x26\xde\x4d\xec\x6c\xec\x6c\xf2\x94\xac\x49\x41\x44\x93\x84\x0d\xa2\x39\x68\x50\x94\x32\xf2\x77\xbf\xd5\xe7\xa5\xfb\x34\x00\xca\xce\x33\x7b\x6f\xd5\x9d\xaa\x89\x45\xa0\xbb\xd1\xaf\xa7\xcf\xeb\xef\xa0\x9f\x83\xa7\x64\x49\x6c\x20\xff\x94\x5f\xcf\x9e\x70\x7e\xa8\xd6\xca\x1e\xf4\xe9\x2f\xb5\x32\x7e\xb4\xbe\x22\x6a\x9c\x5f\xb0\x16\x10\x2d\x76\x60\xd1\x02\xba\x39\x72\x8c\x1a\x71\x1b\x0d\x61\x13\x95\x3b\xf5\x8d\x54\x91\x5f\x3f\x8f\xca\xb4\xa6\xb0\x53\x4c\x47\x6b\x81\x94\xd3\xe1\x49\x4b\xb6\x25\x40\x20\x92\x66\xb1\xbf\x2d\xe4\x97\x96\x77\x27\x41\xa2\x7c\x9e\x8f\x27\x98\x9a\xab\x39\xaf\xd1\x88\xe5\xd1\xe8\x01\x22\x13\xc3\x87\x4e\x9b\x76\xee\xee\xcb\xb7\x01\xbd\x0e\xde\xbb\xc3\x7d\xb7\xb2\xe3\x13\x0e\x83\xdf\x18\xec\xac\x43\x95\xfc\x5d\x44\xa3\xcc\xc9\xb0\x88\x33\xc2\x7c\xd5\xc0\x7b\x5b\xb0\xa4\xff\xed\xec\x49\xe0\xce\x62\x65\x9c\x42\xc7\x0e\x9d\x8d\x22\x4e\xc9\x3b\xbe\x35\x29\x40\x08\x68\x8d\x14\x36\x68\xb8\x90\x1a\xb3\xa8\x68\x64\x82\xe1\x5e\xcb\x02\x4d\xcf\xdd\x60\x57\x1f\x34\x1d\x20\x4a\x34\x45\xa2\xb0\x27\x0c\x18\x8d\xf7\xb4\x5f\x82\x4f\x63\x97\x07\x1e\x1b\x61\x1a\xa4\x75\x28\x35\x57\x8d\xd5\x0a\xee\x62\x2f\x5f\xa0\xb0\x68\xd9\x9e\x70\x09\xd9\xa6\xae\xf2\x34\x52\x28\x03\x7f\xcd\x5a\x4d\x5a\xa2\x31\x35\xf1\x2c\x2d\x20\x18\x01\x17\x01\xcb\x53\x3a\x2a\x9c\x25\x60\x7f\x85\xbe\x3a\xd2\xf7\x52\xea\x88\x86\x49\x60\xac\x5e\x3a\x71\x2e\xd3\x15\xa8\x9f\x7c\xec\x22\x39\x1b\xec\x20\xdf\xbf\xb2\x66\xcd\x89\x2b\xdd\x86\xa8\x72\x5d\xa7\xd5\x8d\x47\xcb\xaf\x0d\xaa\xda\xc5\xf7\xc6\x2a\xa4\xbe\xfa\xc9\x98\xb7\xc6\x14\xdc\x87\xe5\xf6\xc6\x92\x1d\x3f\xb7\x6a\x65\xea\x52\x5b\x3b\xee\xfb\x2d\xda\xb0\x22\xe0\x51\xc4\x01\x86\x34\x2f\xbf\xc2\x14\x61\xae\x01\xc5\xb9\xd5\xe7\x55\xfa\xe7\x8d\xb2\x85\xd9\x81\xb4\x40\x9d\xef\xa4\xba\x22\x69\x8d\x38\xba\x6a\xd6\x20\xe3\xa7\xcd\xb3\x2c\x4a\x34\xbb\xf4\x9b\xce\xab\x4c\xe5\x35\xa5\x7d\xf7\x3e\x08\x2f\x5f\xe0\xc2\x10\x97\x82\xee\x0b\x78\xf1\x7a\x6a\x48\x49\xdc\x38\x0d\x0f\x2b\x7d\x17\x20\x6a\x39\xa1\x8f\xd5\x23\xae\x32\x44\x6c\x3b\x26\xdb\x7d\x1f\x79\x45\x6a\xc0\x0b\x5f\xb4\x2d\x36\xe9\x52\x83\xca\x37\x45\x56\xc7\x54\x2a\x47\xd5\x1a\x76\x20\xe9\x37\xc1\xcc\xc5\x64\x9c\xe7\x17\xa7\xea\xf0\xd0\xc3\xcc\x80\xd2\xa4\x8c\x3d\x1e\xa5\xe2\x18\x70\x2a\x49\x05\x8d\x61\x05\xdf\xc3\x2d\x70\xef\x9b\xc7\x4f\xbe\x0e\x1e\x71\x72\x36\x11\x02\x9d\x1d\x18\xba\x4d\x48\xa2\xec\xa8\x5d\xb9\x2b\x5e\x02\x52\x43\x93\xd6\x9a\x0e\x5b\x6b\xdf\x7b\xbd\x99\xfb\xa8\x57\x32\x76\x10\xf7\x5e\xd3\x5c\xda\xb1\x1f\x69\x5c\xdd\xb7\xc3\x67\x6c\xb0\xcf\xda\x61\x9f\xbf\x4e\xad\x2e\xff\xb7\x66\x31\xee\x75\xa3\x87\xde\x91\x02\x3c\xa0\xbd\x2a\x95\xb4\xd6\x88\x8f\xce\xa0\xa0\x78\xe5\x71\x18\x85\x4e\x5b\x08\x84\x9f\x90\xb0\x42\x5c\xe9\x48\xbd\x1f\x05\x23\xfa\x08\x02\xab\xdd\x68\x36\xf5\x6a\x84\x19\xa6\x56\xa9\xfd\xce\x64\x37\x23\x05\xae\x2a\x90\xed\xc2\x3d\x2c\xb3\x42\xb3\x93\xc0\x7b\xfb\x16\x70\x04\x08\xa2\x46\x28\x80\x1a\x12\x79\x84\xc0\x10\x31\xfd\x3c\x72\x79\x1a\xb8\x11\x90\xe7\x44\xd6\x1e\x94\x49\x25\xae\x38\xb2\x68\x77\xcb\xa2\x28\xfb\xb7\x78\x35\xa1\x5e\x12\xaa\x2a\xbf\xeb\xd9\x6d\x2a\x2d\x20\xeb\xf3\x11\xab\x36\x60\x9c\x21\x6b\x90\xff\xb8\xda\xe8\x6a\x9d\xc3\xe5\x10\x6d\xae\x81\x88\xd9\xfe\x44\x04\x57\x0b\x69\xba\xdc\xae\x2f\x75\x95\x44\xac\xbe\x3a\x9c\xa9\x24\x69\xfa\x8a\x45\xd8\xd8\x30\xb2\xbc\xdc\xea\x38\x40\xe2\x99\x29\xaf\x9c\x68\x05\xb1\xbc\xde\x42\x50\x1b\x70\xa6\xf6\x01\x40\x9f\x85\x79\xcd\x48\x8c\x22\x20\x82\x3a\xd0\x0c\x55\x8f\x97\x26\x80\x1c\x44\x11\x5a\x91\x77\x4b\xd8\x0b\x29\x4e\x36\x79\x6a\xea\xca\xf1\xc4\x68\x1c\x06\xa3\x43\x09\x17\xed\x4a\xc3\x80\xb0\x2e\x6d\x42\xf8\xe7\xf6\xb6\x13\x25\xc4\x23\x4b\x93\x27\x4a\x06\x00\x21\x71\x37\x63\x14\x90\xd3\xd0\x76\x03\x3b\x24\xbf\x0a\xd9\xaf\xc8\x91\x2a\xf9\xdd\xb1\x61\xc9\x11\xa0\x6f\x00\xca\x06\x28\xef\x8a\x42\x5d\x56\x66\x67\x75\x65\xa3\xe9\xa1\x70\x2a\xf4\xc0\xe9\x8e\xa3\x90\x5f\xf8\x87\x71\x43\x87\x05\x74\x77\xd6\x65\x3a\xff\x00\x66\xcc\x52\x6d\xb4\x2e\x94\x59\x2c\x28\xb9\x26\xc2\x79\xf0\xc7\x6a\x00\x3b\x6a\x05\x80\xd0\x92\xdd\x1d\xff\xc1\x29\x1d\x11\x77\xc1\x47\x93\xb8\x26\x41\x5d\xdb\x84\xf4\xe0\x69\x75\x84\x84\x2a\x9c\x1f\x5f\x84\xc9\x8e\x98\x57\x78\x7b\x72\x41\xdc\xb6\x3a\xc4\x07\x0f\x2f\xc4\x90\x7f\x02\xde\x0b\x2f\x98\x2a\x5f\xae\x6a\xa4\x51\xd4\x2b\x8a\x56\x83\x47\x51\xb2\x49\x5c\x56\xf7\xbd\x22\x8d\x60\x12\xbc\x2f\x53\x88\x37\x81\x7c\xe1\xe9\xb6\x36\x1c\x41\xa0\x08\xe3\x86\xae\x3a\xb4\x30\xb3\x82\x46\x78\x42\x35\x19\x60\xc4\x7f\xf1\xe1\x32\x18\x96\x84\x07\x6d\x07\x8c\x03\x41\xe8\x8c\xd4\x83\x75\x7a\xf3\x40\xad\xd2\x2b\xad\xec\x66\x5b\xe5\x66\x6b\xf9\xa3\x54\x95\xa8\xaf\x93\xba\xe1\x39\x1e\x33\xe0\x84\x7d\xf8\x09\xe3\xcd\xc0\xfa\x82\x2d\x09\xdd\x0f\x1d\x0f\xcd\xf5\xcf\x82\x8f\x5b\xcc\xed\xdf\xbf\xaf\xe2\x27\x32\x80\x7e\xda\xf7\xd5\x9a\x63\xb8\x74\x2c\xd4\xb7\x80\x52\x83\xca\x6a\x40\xb9\xf9\xbb\x2f\xcf\x6b\x8a\x1a\x57\xc6\x00\xea\xee\x12\xf4\x29\xfa\xac\x7f\x73\xee\x37\x01\xd1\xd3\xf7\x6e\xa0\x30\x13\xc4\xf0\x81\xf7\xe6\x7b\xc4\x7b\x3b\x55\x47\x47\xef\xa5\x4b\xa0\x14\x09\x85\xa3\xa6\xab\x7f\xae\xde\xab\xc8\x03\xd3\xf5\x2d\xbc\xe9\xd0\xe9\x88\x76\x7b\xa2\xe0\x3e\x4f\xb7\x50\x44\x84\x0a\x7d\x6c\x78\xf4\x85\x5d\x08\xd2\xcc\x7a\x53\xe8\x5a\x17\x37\xea\x43\x5e\x14\x56\x51\x7c\x97\x4c\x76\x0d\xd2\x8c\x70\x1a\x08\xf0\xfd\x7b\x76\x63\x3b\x74\xec\xfe\x7d\xb5\x37\x72\xac\x49\xbf\xe9\xac\xca\x78\xee\x7d\xb4\xbc\xa3\x4d\x20\x30\xb0\x59\x41\xbd\x35\x6a\x6c\xb5\x96\x63\x21\x91\xc3\x78\x3b\x08\x2a\xf0\x36\xfd\x00\xbe\x1a\x8e\xdf\x0e\xfe\xc1\xfe\x62\x18\xec\x34\x7a\x3d\xa5\x6a\x51\x69\xbb\x02\xd2\xac\x53\x77\x53\xe4\x6b\xca\x07\x0c\x03\xda\xb7\x64\x44\xca\x7b\xb1\x73\x6c\x47\xfc\x98\x88\xfc\x21\x20\x51\x89\xd9\x20\x2f\xb2\x38\xf2\x1c\xb4\x60\x4d\x78\x07\x0e\xb0\x40\x07\xdc\x2f\x1f\x7f\x35\x55\xcf\x40\xf6\xf3\xb2\x07\x10\x20\xc9\x3b\xf5\x43\x4a\x75\xee\x4b\x98\x3b\xbe\xfa\x98\xa7\x0c\x9f\xf8\x45\x5b\x5d\x37\xf5\x47\x0b\xc2\x86\x02\x37\x02\x0c\xb4\x63\xd7\x02\xe0\x05\x26\x13\x95\x5e\xba\x49\xc7\x1c\x8a\x78\xf7\xa1\x6d\x92\x63\xb0\x30\x6b\xe2\x57\x93\xaf\xc1\xb1\xfb\xab\xe3\xe1\xbe\xe0\x09\xbe\x38\xf1\xcb\x6d\xff\xbf\xc0\x28\x55\xba\xde\xcb\x26\xed\x39\xd6\x9a\x90\xb0\xd1\xc2\x2e\x36\xf1\x5e\x7d\x58\xc4\x78\xfc\x27\xba\x45\xe1\x8d\x5b\xe9\xcd\x9d\xb1\xd8\xd8\xbd\xe1\xa8\xad\xa5\xdb\x2b\x7a\xa1\xb3\x6b\x04\x8f\x94\x3a\x41\xf7\x2a\x77\xeb\xe0\xf9\xeb\x45\x63\x73\x34\xac\x36\x40\xc2\x37\x7a\x9e\xa7\x05\xf2\xef\x64\x17\x81\x03\x82\xa2\x81\x70\x8e\xe9\x49\x16\xbf\x95\x3f\x55\x0a\xb0\x98\x8f\x97\x62\x6e\x4d\x69\x73\xc7\x90\xe5\xb5\x72\x87\x7f\x0b\x84\x5f\xf0\x8a\x41\xc7\x78\x7b\xab\x04\x90\xdf\x5e\x15\x24\x7e\xe3\x39\xe8\x67\xd0\x84\x83\x3d\x72\xdb\x14\xad\x40\x79\xcd\xd9\xa4\x58\xbe\x81\xb8\x24\x35\xc8\x17\x7e\x92\x86\x8a\x82\x1c\xc4\x1c\xf5\x22\x51\xab\xda\xd6\xab\x1b\x82\xd7\xcd\x29\x1d\x4b\x5a\xbb\xc6\x9d\xb0\x7f\xa9\x75\x49\x42\x0f\xd1\x5a\x86\xd5\xa4\x4f\xf2\x65\xc6\xfe\xef\x81\x28\x48\x77\xb7\xb3\xe6\x93\x2e\xdf\x68\xca\xb8\x22\x62\x02\x16\x9d\x98\x75\x6d\x74\x03\xa4\x94\x7f\xfd\x38\xc5\x8b\xf8\x45\x05\x5e\x9b\x5a\x81\x65\x28\x6c\x15\x70\x2b\xe0\x25\xa5\x81\x8b\x95\xdd\x7f\x20\xd9\xb9\x04\xae\x58\xb9\xad\xc4\x75\x23\x17\x9b\xb6\x7b\x6d\xc2\x0e\x76\xab\x8d\x35\x15\x18\xc5\xdd\xbe\xf7\x6e\x2d\x9f\x37\x45\xff\x91\xed\x80\x7a\x16\x9d\x89\x14\x93\x98\x12\x0d\x04\xf5\xd8\xd6\xea\x08\x6a\xc4\x8d\x41\xa3\x14\x63\xcb\x74\x63\x57\xa6\x0e\xda\x2c\x6a\x16\x85\xe7\x06\x08\xb0\xda\x03\xc3\xdf\x4d\x52\x68\x82\x87\xee\x86\x8d\xba\x18\x25\xe5\x7d\x03\x99\x03\xa3\x83\x02\x72\x9f\x13\xc1\x71\xa9\xeb\x95\xce\x2b\x77\x1f\xac\x01\xc2\x7a\xae\xdd\x01\x83\xb9\x4f\xb3\x2b\x70\x8d\x33\xdb\x8a\x52\x24\x5d\xea\x1b\x83\xae\x8e\x6b\xfa\x44\xc8\x4e\x18\xb2\xa1\xd7\x23\x75\x9e\xab\x43\x75\x32\x52\xc7\x17\xde\x68\x44\x43\x16\x21\xd4\xb9\x93\x67\xf1\x71\x9c\x43\xfe\xf3\x72\x18\xfa\xb0\xed\x0e\x3d\xc8\xe4\x41\xc0\x6a\x79\x30\x01\xef\x99\x4d\xdd\x40\x5e\xc9\xd2\x3a\x1d\xa9\x3c\xf3\xaa\x90\x9b\x4d\x33\x0c\x91\xdb\xf8\x5f\xfa\x26\x4a\x7c\x9a\x96\x99\x41\x3b\x04\x81\xa9\xb2\xb5\x1b\x2c\xd6\xa8\xeb\x74\x3c\xdd\x0b\xf2\x56\x9a\x35\x2d\x14\xd1\x6b\xd4\xa1\x10\x91\x0e\x9f\x01\xf7\x76\x7a\xdc\x89\x3f\x72\x87\x5a\xc1\x73\x30\x62\xe4\xc1\x14\x12\x1e\x46\xbc\x1f\x9e\xeb\xcc\xe3\xd2\xcb\xd1\x93\x14\x47\x7e\xed\x39\x88\x10\x30\xda\x73\xf7\xe3\x42\x86\xea\x0a\x77\x78\xf9\x68\x1c\xfb\xff\xf7\x9a\xe1\x01\xdd\x65\x28\xc0\x08\x67\x81\x9d\xfa\x23\xa6\x3c\x9a\x2e\x8e\x81\x0d\x2b\x2a\x8e\x83\x77\x25\x46\x5f\x01\x86\x87\x70\x17\x2b\x84\x3e\x75\xb4\xf4\x85\x55\xe6\x4a\x57\x2b\xce\xcb\xde\x11\xc5\xc3\x1d\xc0\x0a\x91\x72\x13\x03\x12\xb2\x10\x2c\xf1\x59\x32\x01\x49\xa6\xb8\xb5\xc0\xf1\x01\xf2\xdd\x83\x08\x56\x9a\x9a\xb5\x52\x3e\x30\xfe\xf2\xa6\xab\xe7\x62\xf6\xc5\x3a\x49\x01\x95\xc3\x39\x5a\xab\xc8\x92\x89\x37\x5e\xa5\x45\x61\x76\x6a\x0b\x3c\x08\xd5\x62\x3f\x3c\xd2\xbc\xe7\x9a\xf8\x55\xd0\x25\x8d\x42\x33\xa5\xa9\xb0\x1d\xb8\x53\xaf\xb4\x4a\x55\xc3\xb5\x2f\x40\xa6\x98\x52\x79\xff\xae\x12\x85\x00\xdf\xce\x8e\x82\x01\x69\x1e\xd3\xa2\x20\x8d\x3d\x38\x25\xd9\x38\x87\x78\x7c\xf8\xc4\x66\xe1\xce\x77\x6d\xef\x7e\xb4\xbc\x81\xfd\x6f\x76\x57\x34\xd7\xf5\x7e\x10\xb5\x3b\x6c\xb6\x1b\xd5\x6d\xf4\x41\xf0\xee\x72\x4b\xf0\x06\xc3\xce\x67\x2f\x33\x66\x34\xf2\xac\x19\x53\xd5\x97\x51\x2e\x1f\x87\xa7\xfd\xc9\x44\xfd\x98\xaf\xf3\x5a\xd9\xb9\xd9\x68\xb5\x31\x45\xb1\x45\x6b\x31\x64\xdb\x2a\x6f\x54\xe6\x13\x86\xab\xa7\x3f\xbf\xec\xc7\x61\xc8\x7d\x91\xbb\x62\xc4\x5a\xac\x53\x36\x54\xbb\x15\x60\x0f\x4c\x7c\x05\x38\x59\x95\xd9\x95\x3a\x53\xdb\x8d\x29\xc7\x7d\xd0\xe2\x54\x68\xf0\xcc\x0b\x3b\x55\xab\xba\xde\x4c\x27\x93\x74\x93\x53\xd6\xb9\xf1\xdc\xac\x27\x71\x33\xae\x16\xa7\x47\x49\x31\xfb\xfb\x3a\xcd\x51\xe0\x43\xd1\xe5\x52\x64\x2b\x6f\x94\x8c\xd2\xce\x10\x21\xda\x3a\xa2\xb5\x4d\xdb\x01\x15\x7e\x7c\x6a\xa6\x26\x83\xf9\xaa\x32\x6b\x3d\x3c\x57\xef\x26\x17\x83\xf3\x77\xbb\xf1\xc5\xe1\x70\x42\x0a\x33\x68\x0a\x72\xd0\x4f\x06\x3b\x7d\xf9\x21\xaf\x3f\x5d\xce\x1d\x8d\x74\x38\x38\x9b\x8e\x1f\x5c\xe9\xca\xe6\xa6\xbc\xfd\x74\xa5\xb5\xcd\xf5\x50\xed\x2f\xb1\x4d\xc7\x94\x0c\x62\x90\xe0\x0c\xe4\x97\x85\x4e\x86\xea\x5b\x75\xec\xa8\xf2\x64\xb0\x36\x7f\xe6\x45\x41\x1f\x3e\x53\xd5\xd5\x94\x5b\xbb\xed\x68\x0f\x95\x2d\xec\xc3\xd4\xef\xf5\x68\x11\xa6\x38\x31\xe7\xea\x04\x95\x7d\x09\x84\x45\xd2\x38\xfc\xcb\x87\xf4\xf2\x38\x41\x57\x8e\xd3\x7e\x3f\xe4\x3a\x89\x57\x66\xa0\xca\xf4\x2a\x5f\xa6\xb5\xa9\xc6\x5b\xab\xab\xa7\x4b\x10\x53\x4e\xfb\xbc\x79\xc8\xfb\x09\x8e\x1e\xe7\x1c\xe1\x77\xb0\x8c\xf4\xe3\xbc\xf5\xf6\x22\x38\xc3\xd1\xa3\x31\x75\x54\xcd\x7c\x61\x7a\xc2\x99\xf2\x9f\xc1\x62\xbb\x1d\xfb\x1b\x2c\x27\x3a\x9a\xe1\xdf\x70\x43\x14\xd6\xa8\x37\xe9\x22\xad\x72\x02\x39\xe6\xa6\x71\x9b\x44\x5d\x1a\xe3\x96\xf0\xdd\x90\x54\xa4\x51\x24\xaa\x66\xa1\xfd\x50\x2d\xb8\x34\xfb\x39\x09\xa7\xce\xf3\x10\x97\x72\x93\x43\x7b\x9e\x86\x62\x99\x37\xdb\xcb\xfd\xe9\x19\x69\xa9\x4b\xbd\x0b\xa5\xc7\x8b\x72\x9c\x97\x79\xdd\x59\x0b\xdc\x3d\x7a\x8d\x58\x36\x0c\x30\xf6\x0d\x08\xf0\xc4\xd0\xa8\xdd\x6e\x74\x05\x41\x45\x1e\x0d\xb7\x27\x3f\xe9\xb7\x88\xfb\xb9\xa9\x4c\x6d\x6a\x84\x77\x77\x65\x07\xc3\x46\x69\xc7\x49\xda\xba\xda\x52\x92\x27\xff\xaa\xf1\xc9\x4b\xf6\x04\xb3\x8d\x57\x34\x44\x31\x77\x6a\xef\x90\x03\x86\x8d\x4c\x25\xcb\xa6\xa9\xd2\xd6\x8e\x31\xf6\xe4\x0f\xb4\x88\x83\xbd\xaf\xdf\x6c\x2f\x87\x6d\xc3\x93\x58\xa9\xc8\x2e\x21\xb9\xdd\x00\x81\xed\x7a\x1a\xc1\x2b\xb4\x3a\x3d\x52\x95\x31\xb5\x6f\x95\x53\x34\xb5\x27\x20\x9a\x69\xf9\xf6\x14\xe9\x61\xdc\x8c\xec\x28\x2b\x1d\x5c\xd3\x51\x0f\x61\x15\xdc\xd9\xfd\x38\x74\xcb\x46\x49\x89\x9f\xbd\x79\x33\x52\x98\xa2\x8c\xff\x7d\x6e\xe6\xa3\x7e\xaf\x4a\x8b\xcd\xca\x91\xe4\x09\xfc\xf1\x6e\x70\xfe\xcf\xe1\xc5\x83\x77\x04\xf4\x6f\x36\xe9\x3c\xaf\x21\x69\x02\xfd\x39\xc3\x02\x98\x51\xc1\x27\x4b\x85\xf4\x03\xb5\xd9\xdc\x82\x69\xe0\xf6\xd2\xd4\xb5\x59\xdf\x16\x7a\x51\xfb\x1c\x04\x76\x97\x6e\x36\x20\xb9\xe6\x0b\x95\xe5\x76\x53\xa4\x37\x68\x5a\x2f\xc1\x88\x6f\xeb\xb4\xaa\x2d\xb9\x7f\x43\x39\xf4\x6c\x67\x6d\x3a\x47\xf5\x1f\xcd\x75\x51\x24\x00\xa8\xce\x0f\x10\xbb\x3d\xc1\xcf\x68\xf2\x9d\x70\x57\x13\x7f\x06\x22\x48\xe8\xc2\xb3\xd3\xc9\x24\xd3\x57\xba\x70\x37\xc2\x98\xe8\xf3\xd8\x54\xcb\x89\x2e\x8f\x7e\x7d\x33\xc9\xcc\xdc\x4e\x9e\xbd\x79\x33\xa1\xca\xfd\x5e\x45\x7f\xb9\x11\xe0\x48\x5d\x9f\x6f\xe1\xe3\x83\xb3\x83\xa3\xf9\xb9\x4e\x2f\x86\x63\xca\x32\xb1\x4e\xab\x65\x8e\x33\x82\x7f\x62\x42\x89\xed\x1a\x12\x97\xc4\xc9\x1e\x54\xf2\x4f\xc8\xad\x05\x99\xbe\x36\xe5\x76\x0d\xb9\x1e\x06\xe3\x07\xc3\xbf\x61\xa6\x07\x70\xb6\x74\x95\x4b\x53\x6e\xae\x3f\xab\xf2\xd9\xc1\xe6\x7a\x78\x9e\x1e\xfd\xf9\x3f\x2e\x0e\xa3\x56\x2a\x5d\xbc\xda\xae\xdb\x6d\x9c\x1f\x1d\x5e\x0c\x67\x1d\x4d\x89\xca\x8e\x43\xe2\xc9\x9c\xa9\x7f\xab\xef\x5e\x3f\xff\xaf\xa9\x4a\x2e\x0b\x33\xff\x90\x28\x14\x01\xad\x7d\xb3\x32\x3b\x78\xcd\xfb\x62\xaa\x92\xf4\xd2\x9a\x62\x5b\xbb\xf5\xbb\xca\x6d\x7e\x99\x17\x79\x7d\x33\x55\xc9\x2a\xcf\x32\x5d\x26\x23\x5e\xa3\xa8\x35\xd7\xd8\x2b\x53\xad\xd3\xe2\x6d\x95\x96\xd6\x09\xc4\x94\x09\xa2\xd0\x75\xad\xab\x37\x1b\xc0\x8f\x9a\xa2\x68\xb8\x30\x65\xfd\x9b\x76\x1b\x6f\xaa\x1e\x1d\x1f\xb3\x48\x6a\x2d\x72\x9d\x00\x6e\x9f\xbc\x35\x1b\x37\x9e\x5f\x5c\x31\xf7\xc7\x77\xb0\x45\xdd\x5f\x3f\xea\x45\x8d\xa9\x0f\xe6\xd6\xfe\x5c\x69\xf4\xf3\x83\x4a\x78\x03\xb9\x42\xaf\xdd\x7f\x7e\x32\x7f\xba\x7f\xd6\x16\x8a\xf7\x29\x62\xfb\xad\x59\x2e\x0b\x1d\x65\x63\xad\xe1\x11\x32\x67\x74\x38\x53\x35\xb7\xd6\x3b\xc7\xa8\x35\xc2\xfc\xa3\x22\xd1\xd4\xba\xac\xf3\xb4\x28\x6e\xd4\x95\x2e\x33\x53\xa9\x0d\x76\xa3\xcb\xb7\x10\x4b\xfc\x5c\x99\x0d\xea\x78\x28\xbf\x00\x25\x9e\xa3\x14\x56\x5e\xa0\x82\x78\x63\xc8\x22\xe2\x63\x2d\x9c\x14\xd1\xf8\x0c\x47\xb3\xa2\x17\x11\x36\xd9\xb8\xa1\x20\xc0\xd9\x07\x21\x83\xb2\xca\xb5\xdd\xec\x2f\x7c\x0b\x69\xd7\x3c\xdd\x50\x24\xad\x7b\x18\x62\x00\xc6\xb5\xf9\x75\xb3\xf1\xb8\x76\x87\xf8\x1a\xf2\xdc\x0d\x4e\xc0\xb9\xd8\x54\xf9\x52\x54\x75\x8f\xdc\xbd\x2c\x96\x47\xc0\x0c\xb1\xed\x31\xf7\x76\xc7\x12\xab\x8a\xe2\x18\x79\x7e\xc8\x5d\x3a\xf5\xf9\xee\x3a\x06\xdc\x18\x71\xc3\xb1\x9c\xbb\x16\xc3\x0f\xe4\xf6\x07\xd8\xce\x2c\x6c\x6a\x72\xcb\xf6\xca\x01\xf6\xb3\x6b\x12\xeb\xf1\xdc\x7a\x77\xb0\x84\x4e\x42\x42\x59\x93\x12\x47\x65\x12\xe9\xe0\x47\x86\x16\xdb\x05\x93\x10\xac\x1a\x51\x7a\xdc\x95\xd9\xfd\x90\xb3\xa1\x1f\x5d\x3e\xdd\xb3\x10\x75\x45\x5e\xa1\xf8\x69\xe0\x2a\x81\x56\x7a\x47\x70\x54\x36\x91\x12\x86\x7d\xab\x7d\x6b\x62\x1d\xbc\x6b\x34\x54\xf8\x56\x79\xd0\x00\xf7\xdb\xeb\x3a\x85\xba\x04\x3d\xfb\xb1\xf8\xc5\x69\x94\x5d\x7c\x1c\x2d\x88\x74\xa3\xf8\xe8\x7b\xe8\xab\xb6\xb0\x15\x68\x3a\x4d\x91\x85\x19\xf5\xed\x87\xd1\x0b\x83\x0c\x24\x95\x03\xa0\x4b\x7f\x65\x80\x44\x9b\x5b\xef\xb7\x56\x1b\x55\xe8\xb4\x2a\x49\x01\x90\xb3\xe7\x1f\x02\xef\x20\x35\x73\xe2\xff\x3c\xb5\xf3\x34\xd3\x99\xaa\xb6\x85\xb6\x0a\xc2\xfd\xeb\xe0\x1f\xd2\xec\x3b\xc3\xfb\xc2\x80\xc7\x9e\xc4\x86\xe5\x8f\x00\x5f\x1b\xa5\x62\x07\x14\x8a\x84\xf3\x46\x0a\x74\xd1\x00\x41\x1f\xb4\xe7\xe6\x4a\x57\x15\xf6\x13\x2e\x59\x4f\x78\x4b\x74\x17\xc3\xec\xeb\x2a\xc5\xd3\x60\x57\x1a\xb3\xd9\xed\x56\x69\x0d\x00\x3f\x32\x80\x94\x59\x62\x5c\x27\x3f\x19\x6e\x0f\xd8\xed\x5c\x3a\xfc\xc5\xf6\xbb\x8e\x61\x82\x4d\x3a\x3e\x40\x42\x1d\xfd\xd7\xd7\x7a\xe4\x0e\x3e\x7b\x41\x3c\xc7\x87\x83\xc8\x89\x78\x28\x6d\x7f\x42\x15\x10\xe6\x15\x19\xa6\x8e\x83\x29\x7c\xe3\xba\x96\x92\x5b\x38\x68\xaf\xdf\xa7\xbb\xcd\x95\xbb\x00\x32\xde\x70\x98\x6c\xd8\x9d\x6b\x63\x6b\x8e\xaa\x89\x03\xd4\x28\xf2\xa6\x30\x66\x03\x95\xbd\x52\x0d\x83\x6a\x81\x25\xae\x55\xa5\x17\x85\xd9\xf1\xb9\xf5\xc7\xfc\xff\x8b\x03\x4c\x38\xd9\xee\x24\xb2\xff\xf1\xde\xfd\x7f\x47\x81\x44\x5a\x5e\x5b\x67\x03\x9a\x27\xc0\x3f\xb1\x4a\x08\xb7\x33\xa5\xe6\xdb\x04\x9e\x07\xb6\x37\xed\xcd\xdc\x46\x09\x82\x31\xa2\xe2\xaf\xc3\xff\xe2\x0e\x68\xd7\x8e\xf3\xe0\x1c\xec\xcf\x83\x03\xe3\xed\x6e\x27\xca\xd5\x2f\x6e\x18\xe4\x11\x38\x9d\x4d\xa8\xd2\x81\x2f\xfa\x77\x4c\x83\x8e\x39\x9f\x56\x66\xb7\x2f\xe3\x41\xb8\x60\x70\x80\x12\xe6\xb0\xb7\xca\xb3\x76\x86\x81\xce\x8a\xbe\x0a\x72\x4e\x11\xca\x22\x46\x74\x2e\xca\x87\xc2\x5e\x70\x69\x0c\x20\x0e\x52\xf6\x60\x88\x60\x87\x3d\xe1\x5e\xe8\xb4\x4c\x5a\xf1\x08\x12\x3e\x14\xcb\x0f\x05\x86\x98\x7c\x8b\x5f\x8a\x57\x43\x72\x7a\x6c\x5c\xc1\x01\x37\xf0\xef\x3f\x2f\x33\x0a\xea\x22\xdc\x18\xce\xa8\x33\x53\x41\x02\x29\xb7\x51\x03\x7b\x90\x63\x87\xdc\xc4\x0d\xf6\xfa\x39\xf8\x62\x6e\xee\x07\xcd\xc4\x0f\x7b\x92\x04\x4f\x26\xea\x69\x96\x05\x46\xc8\x73\xa9\x2b\x63\x3e\xa0\x5f\x3b\x5d\x1e\xec\xae\x4d\xe4\x15\x01\x65\xf4\x2a\xbd\xca\x5d\x99\x85\x5a\x12\x6a\x02\x18\x87\xf9\xef\x46\xab\x70\x84\x7e\x70\x2d\x4f\xa1\xeb\x24\x58\xe2\x8f\xde\x52\xb7\xd2\xc5\x8f\xc0\x2f\x67\x5b\x0b\x40\x6b\x52\x07\x34\x9e\x12\xfc\x8e\x5d\x41\x2c\x36\x61\xd5\x81\xff\xbf\x42\x17\x4e\x44\x95\x01\x7d\x2b\x7d\x15\xeb\x85\xe4\xd7\x0d\xca\x4f\xa5\x12\xaf\xdc\x0d\xa6\x2f\xa6\x41\x67\x2a\x39\x49\x44\xb2\xe8\x86\xea\x97\xb2\x17\xbc\xb8\x9e\x17\xdb\x8c\xe0\x83\x4d\x51\x98\x1d\x84\x43\x04\x91\x20\xd7\xe8\x56\x90\x65\x6a\x73\x8d\x02\x10\x74\x19\xa7\x25\x59\xe4\x45\xf1\x9a\x3a\x83\x98\x66\x23\x78\xec\x45\x1f\xf9\xd4\x31\x32\x3f\xb4\x9e\x9a\x76\x75\x53\x6d\x56\x69\x69\xe5\xa3\x5d\x9e\x05\xdc\x34\x78\xf2\xe7\x4b\x47\x3a\xa3\x27\xc6\xac\x3d\xb2\x1a\x8f\x90\x76\x90\x18\xce\x6e\x65\xac\x26\xe9\xe3\xc6\x6c\xd5\x2e\xb7\x2b\x0e\xa8\xc7\x60\x48\x92\xd8\x71\x9f\x98\xca\x6f\x1f\x0f\xba\x41\x32\x99\xd9\xd0\x5e\x41\x2b\xc6\x1a\xd1\xbc\x17\x85\x49\xeb\x48\xac\x82\x29\x71\x4f\x93\x69\xd3\xca\x37\xb7\xf6\x7b\x28\x7f\xa6\x12\xfe\x1b\xee\x01\xd8\x9c\xf8\x33\x0c\xe6\x1f\xba\xe6\x3d\x8c\xf6\xda\xf8\x5c\x18\x77\xcd\x3e\x7f\xfd\x93\x7a\x05\x78\x01\xf0\xb6\xbd\x6b\x23\x0a\x8b\xfe\xa0\x1e\x7d\xe5\xb9\xc1\x9c\x71\x35\x71\x5b\x10\xdd\xa0\xaf\xf1\xab\x73\xb3\x8e\xe2\x8f\x84\x6b\x71\x67\xbc\xce\x97\xdd\x8f\x9f\x80\xec\xd0\xbe\x8e\x3d\xa4\x94\xf7\x6f\x69\xe0\x3e\xa3\x0b\xc2\xce\x54\x80\x3e\xe8\x03\xf2\xd1\xed\xd3\x8d\x2a\xe4\x8b\x67\xc3\x1a\x50\x0a\xb0\x35\x09\xe1\xcd\x5b\x62\xd7\xba\x00\x69\x8f\x6e\x20\x34\xb2\x42\x97\x66\xe2\x76\x87\xe3\x53\xc6\x55\x69\xf5\xcf\xbd\xe0\x85\x57\xf8\xe0\xce\x02\xb3\x7d\x42\xb2\x2f\x33\x0c\xc1\x61\x80\x79\xb1\xe2\xd0\x6e\x88\x30\x61\x61\x96\xb4\xd4\x7d\xe2\x6d\x11\x69\xc9\x31\xf9\xae\xd4\xb6\xec\x28\x87\x04\x53\x76\x1f\x08\x9d\x8f\xca\x0d\x76\xdf\xf0\x2a\x74\x9c\xbb\xd4\xf0\x05\x09\x84\x94\xce\x84\x04\xfc\x3f\xe8\x02\xfc\x67\xd5\xad\x80\xc4\xf5\x21\x3d\x73\x72\x3f\xaf\x74\x91\xd6\xf9\x95\x66\xd2\xc8\x98\x0c\x83\xc3\x99\x3b\x8a\x47\xb3\x21\xba\x77\x47\xa5\xec\x58\xdd\xfb\xfa\xcb\x47\x8f\xfb\xd2\x9d\xa3\x05\x12\x30\xa0\x30\x55\xd4\x38\xc5\x30\xf7\xc3\x16\xee\x35\xb8\x29\xa0\xf7\xf1\x89\x1a\xaa\x07\xf0\xf3\xa1\xfb\xb9\x49\x2b\x8b\x47\x73\xd0\x21\x2f\x97\x7e\x21\x7b\xde\xef\x5b\x5b\x75\xb9\x5d\xaa\x7b\xdf\x3c\xfc\x12\xc3\x73\x68\x26\xd8\x85\x3f\x16\x97\x1a\xdb\xfe\x55\xfa\x0a\xf1\x4c\xb7\x45\x41\x7c\xa3\x4a\x2b\x4d\x07\x75\xac\xde\x68\x3d\x55\xf7\xbe\x3e\x39\xf9\xaa\xdf\x4c\xba\xe0\x63\x96\xc3\x7c\x70\xd0\x00\x48\x37\xaf\xd2\x57\xfb\x50\xcb\xe3\x2e\xbd\x5c\x84\xcb\x6a\x97\x5a\xc8\x42\x0e\x51\xa8\x23\xb8\x1a\xbe\xd8\x5c\x7f\xc1\x7e\x7f\x03\xd2\x8f\xba\x6d\xcb\x08\xaf\xcf\xde\xbc\x11\x14\x78\xd8\xb1\x4c\xa2\x5b\x07\x61\x4e\xf1\xae\x89\x0e\x51\xbc\x4c\x87\x33\x95\x6c\xae\x93\x8e\xce\xc2\xd1\x81\xae\x92\xab\x17\xe3\xe4\xa7\x35\xd3\x3e\x40\xea\xd9\xe5\x56\x63\xea\x07\x4f\x54\x37\x7a\x9e\x2f\x72\x86\x76\x0a\x92\x15\x9e\x22\x47\xbc\x06\x89\xd5\x75\xe2\xee\x15\x78\x06\x4e\xf2\x03\xde\x38\xf0\x68\x6c\xb5\xb7\xf1\xc7\xa4\x76\xd8\x7d\x36\x80\x49\xa8\xbc\xfa\x8d\x53\x1a\xbc\x7c\xc1\x01\x55\x15\xde\xcd\x00\x05\x4a\x40\x3e\x5f\xe4\xe5\x55\x5a\xe4\xd9\x17\x62\x5b\xf8\xf1\x76\x6c\xbf\xc7\x8f\x8f\xbf\xc1\xed\x17\x72\x2e\x00\x09\x12\xe1\xf9\x22\x45\x41\x77\xee\x00\xc9\xdd\xed\x9d\x6c\x60\x6f\xdc\x64\x96\xa6\x3c\xf2\x0c\x11\xce\x10\x07\x88\x55\x61\x6a\x71\x66\xef\xdf\x57\xc9\x52\xce\xab\x38\xb4\x38\xa9\xcb\x30\xa9\x94\x79\xea\x13\x93\x1a\xb9\x04\x89\x2d\xf2\x3a\x5e\x7a\xee\x6d\xdc\x41\xba\x5e\x3d\x46\x9c\x97\x11\xe4\x94\xc9\x74\x50\x0d\x19\x4c\x5e\xb7\xe5\x76\xad\xab\x7c\x1e\x5f\xb8\xee\xb2\xba\x4a\x0b\x78\xfb\x17\xef\xaa\xd3\xff\xfe\x15\xf9\xff\xce\x55\x16\xee\xcb\xff\xdf\xdc\x67\x9f\xd8\xba\x77\x6d\xdb\x3b\x77\x2d\x6d\xbe\x2b\x70\xd5\x6a\x6d\x5c\xb4\x8a\xd2\x36\x90\xdc\x8e\xdf\x93\x23\x77\xc7\xa6\x6a\x97\xde\x70\xa0\x70\x47\x77\xf4\x75\x6e\x6b\x1b\x88\x9a\xb8\x7e\xbb\xb3\xed\x60\x77\x62\x41\x42\x48\xde\xd8\x09\xbe\x85\x13\x64\x67\x13\x88\x37\x8e\x3e\xdc\xfc\x8e\x2f\x79\xff\xbe\xd7\x5b\x77\x98\x49\xe2\x4e\xb4\xde\xc7\xa7\x49\x06\x3b\x8e\x98\x33\x00\x06\xdc\xf0\x25\x94\x2f\xdc\x3e\x9a\x33\x6e\x56\xc8\xf0\x1f\x2d\xa5\xbb\x36\xdd\x27\x0b\x58\x17\x3a\x83\x5e\xcb\x8e\x3f\x81\x49\x85\xd5\xe8\x24\x21\x25\xd8\xa6\xe4\x95\xef\x1a\x8c\x10\x39\x44\x43\x5e\x6e\x7f\x85\xcf\xe0\x2b\x6a\xa8\xce\xe0\xdf\xdb\x5b\x75\x8c\x29\x1e\x58\xe5\x14\xb4\x2a\xa7\x42\x64\xa1\x68\x6f\x38\x29\xff\xda\xe6\xf3\x0f\xc5\x0d\xda\x29\x31\x26\x6f\x62\xb6\x75\xe3\x4a\xe5\x8d\xc2\xd8\x74\xf3\xb4\x98\x6f\x8b\x94\xe0\xf2\x5c\xdd\x36\x61\x22\xb8\xaa\x46\x52\x07\xc1\x42\xb3\x91\xa3\x87\xa9\x48\x08\xb1\x17\xdd\xcf\x34\xac\x02\x84\xf9\x16\xb4\x33\xec\x08\xe6\x9b\x10\x5a\x80\xf8\xeb\x9d\x32\xa5\x0e\x41\x8f\xbc\x41\x18\x29\x8b\xe6\xd8\x14\x99\xb8\x81\x02\x25\x91\xbb\xa2\xd7\x7e\xac\x66\xdc\x50\x6b\xfb\x90\xd4\x1c\xe1\xb4\x7b\x4b\x04\x0f\xe2\x8a\xfb\x19\x86\xf0\xa9\x9e\x76\x77\x22\x74\xbf\xa9\x6b\x21\x5f\x54\x54\x70\x4c\x26\xea\xd5\xeb\xb7\x2f\xa6\xea\x2d\x20\xef\xaa\xc5\xb6\x76\x84\xdb\xfb\x2d\x55\x23\x47\xbf\xaf\xb4\xda\xe5\x65\x66\x76\x8e\x68\x3c\xa3\xb3\xf7\xc6\x7d\xb2\x0f\x5a\x0d\x8c\x74\x7f\x6f\x33\xb3\x56\x14\x0a\x3e\x7e\x6f\x31\xee\x1d\x92\x71\x03\xd9\x77\x5b\xc4\xa7\xde\xde\xd3\x1e\x0e\x0a\x29\x42\xcb\x93\x5f\x98\xee\xc4\x96\xd8\xe5\x59\xbd\x1a\xa9\x75\x5e\xfe\x46\x7f\xa5\xd7\xf8\x17\x2a\x54\x89\x52\xcc\xf6\x7d\xd2\xb7\xed\xf8\xd2\x3b\x05\xae\xb6\x2a\x85\xae\xee\xa5\xae\x7f\x26\x81\xf7\xff\x10\xf4\x26\xba\x40\x96\x5a\x67\xe4\xfb\x05\xfc\xf8\x17\x98\xde\xf0\x8b\xa1\x47\x74\xb5\x5a\xab\x7b\x27\x0f\x1f\x23\x13\x4e\x7b\x84\x3e\x31\x6e\xb6\xcb\x37\x2d\xe2\xc8\x61\xa1\xb0\xcc\x9e\x75\x11\x2a\x17\xc9\xbb\x7e\x86\x49\x4c\x32\x29\xc2\xfd\xb7\xa9\x3f\x6d\x26\xe8\x7b\xaa\xd8\xcd\x90\x18\xee\x24\xdd\x69\x6b\xd6\x5a\xad\xdc\x19\xbe\xbc\x51\xcf\x75\x5a\xaa\x17\xd9\x2e\xad\x32\x9b\xf4\xd9\x8f\x1f\x1c\x92\xbe\x55\x27\x5f\xc3\x29\x45\xaf\x25\xf5\x78\x7c\xec\x6e\x10\xab\x92\x98\xca\x27\x11\x38\x28\xe0\xfc\xd1\x73\x37\xbd\xe8\x40\x70\x04\x5c\x05\x9b\x78\xb8\xbd\x93\xf1\xd7\x6a\x90\xd6\xaa\xd0\xa9\xad\x87\x64\x66\xb6\x6a\xa3\xab\xb9\x2e\xeb\x74\xa9\x09\xaa\xac\x48\xab\xa5\xc6\xdc\x9d\x2c\x0b\x5a\xf4\xaf\x82\x3d\xe6\xd6\x6a\x6d\x29\xb4\xa8\xd2\x45\x9e\x5e\x16\x37\x6a\x93\x5f\x6b\x0f\x6e\xe1\x31\xbd\x96\x6e\xa6\xf1\x24\x3f\x7b\xf3\xe6\xf5\x4f\x2a\xab\xd2\x45\x0d\x7c\xbc\x77\x26\xcc\xf4\xd5\x78\xf7\x25\xf8\x53\xcc\xad\xdd\xc1\x7f\xcd\x7a\x72\xaf\xd2\xd6\x14\x57\x3a\x3b\xf2\xe7\x9f\x96\x95\x9d\x1b\x28\x00\xc5\xad\x11\x68\x66\xc9\x91\x82\x1e\xb3\xb0\x47\x2b\x89\x5d\x9f\x21\x87\x38\x86\x5f\xc8\x4a\xf3\x81\xf1\xef\xf8\x01\xbd\xa6\x53\x14\x5e\xd3\x03\x52\xdd\xc5\x75\x5a\xa5\xe2\x2f\x62\x54\x87\x04\x66\xf2\x7b\x7c\xd7\x6a\x93\x6b\x88\xbe\xb6\x3e\x16\xf7\xb5\xf5\xe9\xd0\xd7\xfd\xce\xf8\xb1\xbb\x1b\x3b\x09\x8d\xf9\x0f\x8a\x5d\x18\xcf\xb7\x55\xa5\xcb\xfa\xbf\x41\x9d\x0a\xbd\xa8\x47\xaa\xb2\x3f\xba\x7f\xc3\xe9\x86\xd3\x17\xb5\xca\x96\x4d\xf9\x90\x8f\xf5\x5d\xf4\xc8\x9d\x3c\xb0\x56\xb1\xda\xa3\x42\x3b\x64\x84\xa8\x4b\xdc\xe1\x64\x42\x98\x28\x08\xa2\xc8\xd6\xc9\xda\x40\x18\x71\x3f\xa2\x1c\x48\x0a\xef\xdf\x27\x61\x83\xff\xf0\xd7\x4b\x50\x8e\xf1\x2a\x77\xf1\x4a\xdf\xb3\xc8\x72\x17\x2d\xc0\xa2\x74\x20\x74\x95\x7f\x18\xeb\x54\x8f\x4b\x5d\x4f\xd2\x6a\xbe\xca\xaf\xb4\x9d\x3c\x3c\x3e\xfe\x7a\x72\xfc\xf5\xe4\xe1\xd7\x93\x93\x27\xe3\xc7\x8f\xc6\x27\x8f\x27\xf7\x48\xef\x77\x74\x72\xfc\xf0\xe1\x37\x27\x81\x79\x46\x61\x03\x52\xdb\xea\xb4\xf0\x02\x47\xaa\x2a\xbd\xdc\x16\x69\x85\xc7\x95\x38\x36\xac\x05\x28\xef\xcc\xc3\x81\xc4\x82\x90\x29\x3b\x00\x74\xd1\x65\x96\x97\x4b\x80\xc2\x61\x90\x7a\x66\x48\x73\x98\x3e\x7f\xfe\xa9\x29\x80\x4d\x62\x67\xaf\xb9\xb5\x11\x0a\x7b\x6a\x55\x0d\xaa\x5e\x92\x8a\x37\xa6\x72\xe5\x02\x20\x09\x01\xb9\x79\x08\x18\x8f\x53\x33\x99\x00\x8d\xdc\x71\x96\xa8\xb5\x4e\x49\xc4\xf2\x95\x98\x3c\x8a\xec\x37\x6b\x10\xb2\xea\x2a\x5f\x3a\xc2\x96\xaa\xc4\xd6\xe9\x1c\xe4\xb0\xcc\x14\x85\x4d\x5c\x1f\x2e\x0b\x08\x8b\xb9\x9b\xc4\x1c\x78\x07\xb6\x36\x95\xf1\xfe\x01\x92\x03\x63\xa0\x95\x40\xc3\xdc\x71\xf0\x54\xc1\xfd\x40\x7e\x15\x8e\x87\xc7\x15\xd8\x96\x75\xbe\xd6\xf1\xb1\x90\x0f\xa9\x22\x7d\xf2\xe7\xad\x8f\xa7\x73\x7c\x1d\x69\x1c\x18\xc9\xa8\x29\x9e\x98\x6d\x30\xb1\xd3\x67\x23\x97\x81\xd6\x77\xba\x0e\x6b\xe8\xf9\x47\x7f\x32\xb9\x70\xe9\x31\x8a\x17\xa6\xac\xdf\xe4\x7f\x6a\xb4\x79\xe8\xb5\xb7\x7a\xc4\xc7\x66\x0c\x9b\x07\x7a\x72\x48\x4a\x23\x3f\x99\x9e\x13\x9c\xaf\xd2\x72\xa9\x05\x37\x18\x7f\xd4\xf7\xe7\x2f\x8d\x0b\xcb\xed\x23\x8f\xc2\x60\xe3\xa8\x43\xe8\xfd\xc7\x86\xcf\x8c\xae\x7f\x86\x6d\x71\xa5\x51\x2d\xd6\x50\x2f\xd9\xed\x65\x5d\xa5\x73\x91\x01\x02\xbd\x9a\x9d\x9c\xec\xfd\xfc\x62\xa5\x67\x70\xfb\xe1\xa2\x60\xca\xfd\x29\xad\x57\x8e\xc0\x0f\xd4\xf1\x88\xdf\xa0\x8f\xf7\x91\x1a\x84\xef\x80\x34\xe3\x76\xe5\xa1\x77\xc6\xb6\xc1\xdb\x7b\x73\xed\xb3\x17\x91\x4a\x49\x0e\x26\xdd\x42\x54\x1e\xdc\x1b\xaf\x2b\x34\x0a\xc5\x0a\x13\x10\xc9\x46\x2a\xb7\xdf\x01\x64\xd6\x77\xe6\x3a\x0c\x2c\x77\x9b\x05\x44\x36\x37\x77\x83\xa8\xd0\x99\x4a\x2e\xe1\x07\x58\x51\x08\xd2\x93\x53\x2e\x31\xdd\xf2\x01\x32\xe0\x86\x12\x34\x24\x74\xd0\x91\x4b\x43\xe7\x04\xea\x29\x47\xe6\x3d\x82\x21\x45\x1a\xa4\xbc\xcc\x6b\x4a\xe4\xea\x58\x9b\x95\xa9\xf2\x3f\x1d\xfb\x57\x28\x70\x44\xab\xea\x7c\x9e\x16\x42\x56\xf3\x2a\x18\xb7\xee\x70\xef\xba\xc5\x3f\x51\xe0\x36\xd8\x67\x19\xf9\x38\x72\x5e\x52\xdf\xaa\x47\xee\x9f\xc3\x99\x7a\x18\xac\x35\x97\xa6\x5e\xa9\x4b\x73\xad\xd6\x26\xd3\x85\x55\x9a\xac\x79\xc8\xa2\x40\xe4\x61\x9a\x65\xe0\x17\x04\xa3\xde\xa5\x8e\x72\x79\x55\x41\x98\xc2\x04\x6b\x24\xc2\x03\x89\x10\xbd\x82\x1a\x25\x82\xea\xc6\x5b\x99\x75\x78\x42\x2e\x21\xcf\x0f\xe2\xd8\xf4\x4f\xd0\x2e\x78\x37\x82\xc4\xba\x32\xe6\xc3\x01\x2b\x02\x0e\x67\x1d\xea\x73\xec\xd4\xa1\xf2\x7e\x92\xe0\x24\x27\x2c\xf8\xcd\x3b\x2f\xb7\x6a\x63\x72\xc4\x67\xa3\x4e\x53\xf7\x90\x55\xbd\xce\xd7\xdb\xb5\xe3\x3f\x17\xa6\x5a\x43\xb0\xe2\xa0\xd2\x85\xbe\x4a\x31\xd5\x43\x5a\xe6\x6b\x94\x93\x7d\x70\x7a\x6b\xcf\xd1\x64\xbb\x67\x47\x6e\xba\xf3\x12\xe6\xd9\xaa\x4d\x9a\xe1\x8d\x15\x70\xe0\xe2\xc9\x0e\x90\xb2\xad\x29\x17\x5b\xd3\x6b\xb4\xd5\x51\xac\x6a\x68\x98\x7d\xe9\x73\x49\x6b\x7a\xe0\x18\xba\xf3\x18\x8b\x0a\x80\x1c\xc6\xf3\xc3\x53\x8b\x99\x0a\x70\x34\x10\x7b\x25\x76\x0b\x8d\x01\x5f\x36\x3a\x7d\xd0\xb1\x4f\x3e\xa3\xcf\x7c\x18\x5b\x5d\x3e\x54\xc9\x6f\xb8\xf9\x1b\x9d\x6f\xa9\x98\xef\x18\x06\x4d\xa2\xdf\xea\x34\x43\x62\x87\xfd\x87\xd3\xf9\xd9\x5d\x80\xa9\x94\xfb\xc1\x75\x67\xff\x44\xfa\x6f\xcb\x99\xbc\xbb\xbb\xff\xad\x99\x8c\x9c\x88\x40\xcd\xf4\x31\x06\x52\xfd\x14\x09\x0e\xce\xbb\x6f\xea\xb4\xa2\x94\xb8\x66\xb1\x70\x82\x1b\x1b\x9e\x39\x29\x4f\x6e\x95\xfe\xd7\x36\xbf\x4a\x0b\x72\x4d\x44\x08\x3d\x7f\x6e\x48\x81\x48\x6a\xef\xe8\x12\xf7\x74\x10\xe5\x65\x68\x1f\x05\x8c\xa9\x7c\x84\xdd\xf4\xfe\xa0\x2f\xc5\x49\x9d\x79\x47\x80\x3c\x7a\xda\x30\xb8\x5f\x9a\xeb\x37\xf9\x9f\x8e\x2b\x0b\x6e\x36\xd2\xdb\xd5\xbf\xf7\xfe\xae\x61\x00\x09\x01\xc9\x03\x87\x5d\x9a\xf2\x08\xa0\x96\xbc\x97\x1b\xcd\x72\x50\x21\x82\x87\x4a\x18\x0a\x6c\x8b\xe0\xa3\xec\x18\xff\x89\x2f\x8c\x0d\x5f\x2d\xd5\x91\x0f\x07\xb8\xdc\x2e\x31\x0a\x40\x46\x03\xd8\x95\xd9\xfd\x71\xb9\x5d\x8e\xe7\xcb\xfc\x2c\xcf\x66\x5f\x3d\xfa\xe6\xe1\x93\xc7\x7d\xb4\x05\xd4\xab\x9f\x7e\xfc\xab\x0d\x3c\xfa\xe6\xe4\xab\xaf\x9e\xf4\x83\x56\xf7\xdb\x99\x3a\x76\xbb\x08\x35\xbc\xa4\xaa\xe1\x2b\xe7\x7b\xc0\xaa\x72\xc2\x85\xd4\x0c\x03\xc6\xd4\xb6\xf4\xbf\xe1\xba\x58\xa8\x52\xcf\xb5\xb5\x29\xe4\x08\xbc\x5b\xfd\x1c\x3e\xbe\xef\xdb\xd4\x40\xb7\x72\x30\x60\x11\x52\x07\xb6\x25\x46\x68\x81\x80\x00\x42\xc3\x58\xbd\xa9\xcd\x06\x63\x30\x1c\x73\x8f\x8b\x35\xde\xc3\x8c\x5f\xa5\x45\xd3\xd7\xca\x6b\x6d\xfb\x7c\x3f\xa2\x8c\xc2\x89\x69\xd0\xcb\x14\x1d\x4f\x4b\x08\x38\x55\xa9\x77\x48\xc5\xf3\xc1\xca\x90\x6d\xc9\xf7\x63\x60\x34\xc9\x4d\xb5\xa5\xa3\xb3\xb9\x3b\x4c\xc5\x0d\x64\xf7\xb6\x7e\xea\xe5\x25\x2b\x26\xa5\xfb\x60\xc8\x03\x71\xff\x7e\x1b\x0c\xd7\xef\xf9\x5f\xb8\x45\xbf\x04\x5d\x33\x1e\x74\xa8\xaf\xbc\xd3\x4b\x92\x8c\x40\xb8\x1d\x71\x42\x76\x27\x27\xc1\x88\x80\x8a\xf8\x0d\xd0\x52\xa4\x33\xbd\x22\x8f\x52\xce\x65\x9e\xce\xc1\xbc\x7f\x69\xae\x8f\x2c\x1e\x57\xe0\x71\xc8\x17\x69\xe2\x99\xd0\xbc\xf2\x97\x39\x7a\xac\x78\x62\x87\xed\x1f\xf6\x7b\xbd\x4e\x66\x93\xb5\xb9\x20\xf3\x7b\x4d\x37\x92\x3c\x30\x7f\x7d\x0e\x53\x19\x12\x11\x8b\x09\xef\xf7\x7a\xc3\x7e\x6f\xe8\xa5\x8c\x8f\x7d\x50\xfd\xbe\xad\x6e\x30\x38\xba\xd6\xd5\x3a\x2f\x75\xe4\xb8\x1c\x45\x04\x41\x4a\x9f\xe0\xa9\x1c\x12\xbf\xb5\x1d\x88\x43\xba\x96\x80\xe1\x2c\x82\x62\xce\xc3\xfb\x8b\x36\x06\x75\x47\x21\x91\x51\x90\x3c\x6a\xd9\x7f\x0f\x51\x8f\x9b\x80\xc7\x63\x06\x9e\x17\x4a\x1d\x44\x39\x73\x53\x13\xbc\x5e\x51\xb4\xb3\x76\xe0\x9d\x96\xdd\xb1\x17\xc1\xd1\x18\x6b\x2b\x12\x68\xe5\xeb\x4d\xa1\xc1\x06\x06\x49\x79\x46\x9c\x08\x86\xa7\xe5\x0b\x47\x6f\xd3\xa2\x35\x83\x97\x37\x04\xf2\x0b\xb6\x12\x54\xba\xa8\x5a\xaf\x37\x14\x5e\xc6\xd9\xd8\x3a\x5d\x7a\x3b\xfd\x78\xef\x40\x7b\xc4\x26\x21\xbf\x99\xb1\x36\x47\x48\x1b\x7a\x38\x8b\x67\x24\x02\x20\x41\x8e\x00\x8a\x05\xa3\x11\x87\x4d\x66\xdd\x19\x26\x13\xac\x90\x0c\x47\xc4\x31\xc0\x4f\xdc\x75\x14\x71\x44\x0a\x48\xff\x6b\x45\xd1\x47\xc7\xc0\x0e\x38\xfe\xd6\x9f\xdc\x67\xd0\xb6\x93\xdb\x7d\xc6\x01\x48\x3f\x46\xfc\x3b\x75\xce\x43\x08\x01\x78\x78\x65\xc1\xb0\x54\xf8\xe4\x6f\x70\xd6\x5f\x6f\x74\x95\x32\x1e\x72\x00\x01\xc0\x64\x20\xa1\xad\xe7\x66\xee\x0d\x13\x95\x3e\xda\x55\xb9\x77\xa9\x5b\xa4\x1f\x34\x24\x60\xc1\x76\xfd\x47\x6b\xa3\xf2\xfa\x94\xb3\x98\xdc\x57\xdf\xe7\x95\x5e\x98\x6b\xb5\x33\x98\x6b\xcb\x7d\xcc\x7d\x86\xdb\x69\x74\xda\xd3\xf6\x83\xd0\x83\xdb\x5b\xfe\x15\xcf\x6e\x00\xda\xe4\x92\x20\x57\x52\x49\x3c\xef\xbf\x81\x49\xc3\x35\x11\x3f\xf7\x80\x04\xc3\xb1\x44\x0a\x0d\x6d\x8d\xdd\x60\xf5\x20\xf9\xf6\x20\x33\x73\x70\x79\x71\x7c\xc3\xdf\xbf\xc5\xff\x02\xaa\x1f\xc1\x48\x86\x2a\xf3\xc2\x30\xbc\x22\xdc\x38\x74\x1a\x43\x81\xd6\x9e\x12\xef\xe2\x8d\x13\xc5\x17\xf4\x3f\x33\x9e\xa0\xd7\x8b\x77\x6f\x84\x47\x44\x13\x2d\x12\x28\xbe\x01\xc4\x25\x99\x1d\xab\x71\x2e\xa3\x58\xbd\x88\x2c\xcd\xb8\x88\x88\x31\xf7\x4f\x3e\xc6\x99\x2e\xce\x55\x82\x7b\x3a\x19\x79\x96\xf1\xa2\x91\x2f\x38\x28\x86\xf7\x79\x07\x60\xc8\xde\x9d\x1e\xbd\xb1\x9f\xc6\x1e\xbf\xde\xc9\xc4\x3b\x38\x79\x1e\x70\x9e\x96\xa8\x54\xc8\xf2\xb5\x2e\x2d\x46\x10\x2f\x0c\xc9\x84\x79\x09\xc1\x86\xc5\x0d\x86\x01\x78\x90\x9c\xc9\x44\xad\xcc\x4e\x5f\xe9\x6a\x04\x9a\x44\x84\xb1\x00\x28\x0c\xd2\x87\x79\xd2\x44\xc8\xa1\xe0\xec\x01\xfe\xc4\x97\xba\xd4\x8b\xbc\x66\xff\x04\x0c\x7a\x11\xb1\x2d\x92\x97\x76\x74\x0d\x10\x00\x64\xec\x28\x29\x19\xf7\x6e\x06\x89\xc2\x14\x07\x11\xb8\xda\x7e\xe6\x30\xce\x72\xd4\xf4\xab\x17\xb5\x3e\x4b\xda\x60\xb4\x8a\x4e\xf0\xd7\xbf\xde\x50\x70\x7a\x06\xdd\x8a\xed\x5a\xf4\x0e\x57\x58\xef\xea\xf3\x09\xa5\x1b\xd6\xc1\x00\x88\xbd\x6c\x86\x60\x34\x04\xab\x41\xcc\x06\xfd\xfd\x7f\x53\x4a\x81\x16\x87\x8a\xe8\x7e\x33\x8b\x46\x27\xfe\x1e\x07\x54\x77\x9d\x9b\x71\x88\xb6\xfe\xe4\xb9\x89\x51\xf8\xc1\xb2\x88\x56\x58\x72\xd7\x0f\xde\xed\xac\x00\xa5\x47\xb4\x09\x07\xbe\xa1\x2e\x3b\x0d\x8b\x87\x91\x8e\x18\xdb\x67\x31\xd1\x8a\x67\x43\x4e\x62\x4d\x0b\x34\x50\xc7\xe3\xe3\x13\xf5\x20\x62\x42\x31\xe2\x78\xfc\xb7\x13\x52\x65\x26\x09\xc5\xa9\xf8\x9e\xb0\x27\x3d\x46\xb5\x7d\x6a\x1f\x05\x71\x85\xa5\x01\xc9\x42\xe3\x6a\x47\x63\xea\xd0\x7b\x63\xa9\x30\xed\x6d\xaf\x12\xfe\xd4\x99\x4a\x20\x3e\x7e\xc0\x61\xf0\x8e\x49\xc3\x97\x0f\xd4\xc9\xf1\x31\x06\x4c\x43\xe7\xb1\x51\x9a\xad\x99\x6a\x1a\xc5\xba\xe6\xf4\xf6\x56\xd9\xc6\xef\x24\xa8\xcd\x5f\xbe\x00\xe3\x4d\x5d\x41\xd2\x38\x52\x0c\x50\x9f\x31\x1a\xd1\xa3\x03\x01\x2d\x2b\xd2\x1b\xb2\x0a\x38\x39\xd2\x54\x73\x50\x96\x5d\xde\x44\x39\x2d\xff\x34\x66\xad\x0a\x7d\xa5\x8b\xa0\x7c\x87\x67\x33\x75\xe2\xbf\x9c\x2f\x82\x77\x3e\x7d\xb0\x36\xea\x04\x65\x8f\xd2\x50\x0a\x46\xde\x78\xe0\x29\xa5\x8e\x1c\x5b\xa8\xd7\x9b\x1a\x99\x13\xd0\x73\xd1\xb0\xbc\xd1\x48\xdd\xfb\xea\xab\xc7\x0f\xfb\xb1\x17\xed\xdf\x29\x4b\x90\xcc\x97\x4a\x35\x45\x72\x74\x58\x05\x4e\x8b\x1e\x1c\x02\x84\xc5\xb4\x0b\x24\x88\x89\xff\x1b\x1a\x4d\x34\xdb\xe0\xec\x54\x14\xd0\xe8\x7d\x95\xa8\x44\xd9\xda\x71\x59\x85\x76\xb3\x99\x60\xa9\x69\xc2\x46\x99\xb9\xb5\x6f\xf5\x75\xcd\x4d\xe6\x0b\x59\xc4\x3a\x91\xcc\x02\x62\x1e\x70\x4e\x23\xcc\x22\x01\x3e\xf9\xb9\x75\x97\x8b\x63\x01\xb3\x91\x57\x5c\x8a\xe0\x3c\xba\x51\x20\x25\x67\xd7\x40\x72\xeb\xb6\xc2\xeb\xb2\xb8\x41\xfb\xbd\x35\x2a\xdd\xa0\x99\xac\x00\x28\x05\xd0\x9c\xcd\x4d\xa6\x21\x41\xef\x78\x3c\xde\x3f\x2b\x03\xee\xb4\x0f\x6a\xa4\xb1\x80\xe3\x1d\xfd\x17\xe4\x7a\x5e\x3c\x3c\x63\xe9\x66\x53\xe4\x98\x16\x07\x23\xda\xab\x6d\xa1\x61\x34\x29\xa1\x16\x86\x5b\xb1\xb9\xf3\x0f\xba\xb6\x7e\xe3\xc6\x6b\x61\xbf\x4e\x26\xc1\x7d\x78\x04\x5e\x0c\xa5\xde\x71\x9f\x9a\xd6\x23\x7f\xe8\x70\x9b\xf8\xec\x6e\xf4\xa5\x33\x71\x32\xdb\x5b\x2a\x90\xe6\xa9\x3c\xc1\x87\xb0\x23\x0e\xf9\xb5\x20\xf2\x28\x6d\x02\xec\x15\xfa\x23\xce\xd3\xd2\x1d\xc2\x4b\xed\x44\x67\x50\x8e\xd4\x79\x01\x71\x22\x68\x04\x61\xdd\x3d\xc8\x5d\x78\x21\x28\xd7\xc5\x3e\xe9\x24\x82\x2a\xa5\xda\x96\x54\x1b\x81\x01\x7d\x1b\xc4\xa5\x35\x22\xca\x3a\xaf\x9a\x2e\xd3\x00\xce\x76\xf3\xde\x59\x8b\x12\xb3\xbf\x12\x86\x05\xf1\x56\x20\x34\x7c\xb7\x5d\xaa\x93\x2f\xbf\x7c\xf4\xa5\x3a\x6a\xab\x56\x58\x1d\xb3\xab\x4c\xb9\x64\x2f\xcf\x0e\xf7\x16\x68\xcf\x54\x1f\x38\x5f\xcb\xe5\x0d\x08\x94\xa6\x4a\xab\xbc\x08\xe4\x8b\xed\xc8\xcc\xa9\x01\x66\x68\x91\x97\xfa\x08\x10\x24\xfa\x77\xf3\x4f\xff\x0e\x2c\xd7\x54\x25\xb2\x62\xa2\x3e\x76\x71\x55\x7b\x62\xcd\x7c\x2e\x88\x98\x9d\x13\x73\x99\x34\x21\xc1\x44\x38\x5e\xe0\xe8\x09\xe5\xe8\x72\xbb\x9c\x4a\x7d\xa2\x25\x8c\xa2\x4e\x55\xe2\xc3\x6f\x8e\x9f\x3c\x62\x41\xbd\x7b\xae\xc9\x0f\x08\xfd\xd7\x83\xa7\x3d\xf8\x04\x9b\xcd\xa4\xd0\x8b\x7a\x82\x30\x2d\x13\x9a\xff\xc9\x44\x55\x29\xe6\xd4\x5d\xa5\xa5\xc8\xc9\x6f\xad\x5a\x9b\x6c\x5b\x68\x95\x41\x6e\x3b\xce\xc4\x42\xca\x69\x7c\x07\x34\x00\x7c\xbc\x83\x92\x2e\xaf\xc9\x72\xd5\xb9\x3f\x41\x5d\xf8\x33\x3b\x15\x04\xc2\xbf\x28\xc7\xde\xd5\x20\xda\xaf\x20\x99\xa8\x73\x95\xd4\x88\xe5\x51\x10\x70\x47\x2c\x96\x6c\x2a\xb3\xe1\x55\x6a\x09\x26\xf0\x92\x05\x93\xcf\xdd\xe5\x7b\x77\xc0\xbe\xb0\x41\xec\x82\x40\xcc\xcb\xbd\x25\xaf\xed\xa6\x05\x1e\xf6\x05\xab\x1b\x71\x4e\xe3\x1d\xd6\xed\xbf\x70\xe6\x35\x46\xe8\xe5\xe6\x27\x6d\x30\xf4\xe3\x44\xcd\x98\x30\xd3\xc7\xe8\x74\xa7\x21\x30\x54\xb0\xac\x01\x5a\xb3\x12\xab\xe2\x7e\x8e\xf9\xa6\x97\xdc\xab\x7c\x31\x26\x1c\x84\x3d\x68\xc5\x5e\x61\xb8\x5f\x5e\x6a\x99\x20\xe8\x15\x46\x7e\xec\x23\x71\x18\x39\xfb\x1a\xaa\x61\x30\xc3\x40\x84\xbd\x75\x62\x2c\xa0\xbb\xe1\x3e\x51\x4c\x22\x70\x10\x78\x53\xf7\x80\x51\xcc\xd4\x9f\x18\xf1\xc1\xfe\xb9\x12\x18\xb9\x9d\x77\x8a\xbb\x56\xc1\x2d\xf0\xf2\x86\x4c\xa8\x08\x6a\x8b\xd0\x36\xc2\xd8\xdd\x48\x54\x89\x74\x88\xf8\x51\x32\x82\xd1\xaf\x4b\x52\x65\x91\x31\x2b\xce\x2e\x89\x41\x00\x23\x4c\xb8\x7f\xbd\x47\xbe\xc7\x42\xea\x90\x4b\xf1\x89\xc2\x5e\xc9\x23\xd5\x62\xd5\xf3\x91\xe7\x36\x52\x6b\xb7\x6b\x0d\xf8\x9f\x79\xb9\x2c\xb4\x70\x39\x07\xa4\x4b\x72\xf6\x82\xe2\x1b\x00\x87\x8a\x43\xda\xe2\xb8\x33\x0a\xf5\x07\x04\xdc\x7a\x90\xa8\xc4\x09\x66\xe7\x54\x12\x3d\xce\xa8\x7f\x5a\x38\x59\xc7\x60\xcd\x6c\xfe\x97\x69\x1d\xa9\x8a\x18\x74\xcb\x2a\x18\x66\x01\xcf\x18\x74\x16\x5f\x62\x1a\x4b\xfc\x75\xc4\x3e\x1b\xf4\xe4\x98\x1c\xae\xa3\xb4\x8d\xfc\xbd\xc0\x67\x30\xf9\x8c\x1d\x22\xa9\x37\xc3\xee\x2b\xbd\x63\x89\xc6\x16\x5d\x74\x9a\x82\xb6\x77\x9b\x06\x6a\xf6\xf0\x58\xcd\xd4\xe4\x7f\x3c\x3c\x9e\x2c\x47\xfd\x5e\x75\x59\xa5\xf3\x0f\x50\x6f\xf2\xee\xfc\xdd\x05\x60\x79\x55\xcf\x7e\xf9\xf1\x7b\x78\x52\x9d\xbd\x2b\xb1\x1c\x26\x5f\x07\x6c\xac\xb3\xe9\xdc\x14\xa6\xba\xcd\xd2\x5a\xc3\x7f\xea\x7c\x1d\xfe\x38\x2a\xcc\x3c\x2d\x6e\xf5\x3a\xcd\x8b\x5b\x3c\x01\xb7\x6b\x53\xd6\xab\x5b\x5c\xfc\xdb\x4d\x6a\xed\xce\x54\xd9\x6d\x95\x96\x4b\x7d\x6b\x75\x5a\xcd\x57\xb7\xb5\x2e\x6e\x6b\x7d\x5d\xdf\x42\x63\xdb\xaa\xb8\xdd\x69\xfd\x61\xf8\x37\x44\x29\x43\xfc\xb5\xb7\x94\xc0\x9d\xbb\x81\x4f\x6f\x39\xaf\xfb\x70\x92\x9f\x76\x23\x3a\x58\x5d\xa1\x5b\xc9\x3e\xac\x02\xaa\xb4\x49\xab\x74\x3d\x20\x40\x3b\xae\xf3\xb4\xaa\xd2\x9b\xc1\x30\x80\x25\x44\x2f\xf6\xb5\x08\x6d\xac\xd3\x8d\xe0\xe3\xa4\x36\x04\x91\x03\x58\xd5\x75\xe6\xc1\xa8\xd3\x0f\xf4\xbd\x46\x09\x4e\x2d\x8a\x04\xbd\xdf\xeb\x11\x91\xb9\xab\x79\xd0\xd1\x41\xca\x0d\xf7\x8b\x05\x13\x9f\x2c\x90\xb2\x97\x12\x30\x3e\x60\xc5\x47\xb3\x4c\xdb\x10\x9b\x0a\xb6\x11\x80\xb1\x74\x5f\x82\x1d\x21\x0b\x31\xa8\x7c\xe8\x63\x34\x7e\x77\x75\x23\x25\xf4\xa4\xe2\x4a\x40\x30\x7b\x5c\x83\xab\xb4\x18\x90\xc4\x12\xec\x85\xde\x84\x89\x1c\x3e\xfc\x19\x81\x60\xe4\x96\xe6\x0d\x4d\x61\x67\x91\x2e\xc8\xf5\x03\xc3\xc3\x22\xba\x35\x52\x39\x75\x26\x7c\xeb\xdf\xa0\xfa\x22\x15\x88\x88\xef\x86\x58\x13\x21\x52\xb8\x23\x32\x52\xc9\xbb\xea\x1d\xf8\x70\x7c\xf4\xca\x36\x86\x94\xff\x4f\x1a\xfa\x18\x12\xc8\xfa\x80\x87\x37\xbc\xed\x54\x5a\x12\xfc\xbe\x81\xc8\x9d\x75\x50\x99\x82\x3b\x38\xfa\x81\xf7\x27\x93\x0f\xfa\x66\x42\xbe\x85\x80\x42\x9e\x2a\x80\x80\x65\xa2\x2b\xf7\x7c\x9c\xc6\x7f\xa4\xea\x2a\xcd\x72\x72\xf1\xf4\xbe\x62\x74\x71\xf4\x7b\xbd\x00\x1e\x95\x66\x59\x54\xf7\x83\xbe\x69\x68\x6f\xd0\x10\x75\xc5\xf1\x05\xa9\x2f\x3c\x52\x79\x79\x65\x30\x41\x7b\x30\x23\xab\xbc\xb6\x21\x5a\x94\x03\x41\x3b\x40\x3c\x82\xde\x06\xfe\x1a\xb8\x13\xd2\x0c\xd7\x3d\x43\x24\x98\xe0\xa3\xd7\xeb\xd9\x73\xe5\x21\x50\x20\x44\xa6\x74\xe2\xf4\xaf\xbf\xbc\x74\x4c\xb6\x29\x01\x4f\xfa\x83\xbe\x41\x05\x16\xe8\x80\xba\x4a\x88\x16\x3f\x9e\x0a\x00\x1f\x31\x6d\xb5\x41\x47\x2b\x77\xfd\x10\x70\xe5\xb7\x33\x75\x32\xfe\x72\xfc\xd0\x03\x6a\x8c\x39\xdd\xae\xa8\xd7\x15\x71\x16\xbd\xf7\xb8\x33\xef\xd3\x6b\xd2\x76\x58\xc1\xc6\xc9\xc7\x63\x51\x31\xc8\x23\x2f\x17\x61\x0b\x35\x23\x90\xe1\xc2\xf6\x79\x19\xdc\x7a\xed\xdb\x6c\xdc\xf7\xe6\xf9\x4b\x89\x93\x53\x29\x41\x0e\xc7\x89\x46\x7f\x2e\xd2\xbc\x7c\x0d\x71\xa0\x58\x76\x18\x6c\x83\x61\x8b\x23\x88\x86\xf8\x5a\x53\x46\x48\xdb\x72\x5c\x9a\x65\x83\x40\xf8\x10\x22\x75\x2c\x17\xaa\x99\x11\x98\x4c\xa4\x61\x8a\x46\xb4\xd6\x18\x0b\x62\x8a\x2c\x01\xab\xe9\xc0\xfd\x74\x7f\xe0\xe2\x99\x4a\x99\x22\x63\x37\xec\x2c\xcf\x54\x5e\x0f\x65\x08\x34\x35\x02\x07\xcb\xaa\x4a\xcf\xb7\x95\xcd\xaf\x74\x71\x33\xf6\x31\x51\x74\x77\x83\x8e\x85\xba\x7f\xb9\xcd\x8b\xec\x67\xa8\x13\x78\xb4\xd4\x5f\xf3\x17\xa3\xb8\xa7\xee\xe0\x0d\x4f\x23\x08\x29\x91\xd2\xb0\xd2\x76\x5b\xa0\x1e\x8c\xe6\x94\xbc\x2e\x59\x19\x3f\x7e\x6f\xf2\x72\xa0\x92\xfb\x89\x1a\x0a\x62\xf4\xf0\x78\xa4\x92\x43\x10\x6b\x3f\xca\x34\xd1\x9d\x9d\x33\x97\xef\xbb\x3a\xc5\xe4\x02\xe1\xf5\xf6\xec\x12\x73\xf9\xbe\x7b\xe5\x71\xb3\xe5\xb5\x5e\x8f\x9b\x6b\x0e\xdf\x8b\xae\x93\xab\xc8\xaa\x24\x4f\x89\xbb\xce\x88\xb5\xe9\x66\xa7\x10\x9f\xbe\xd2\x69\x8d\xd9\x59\xc2\x77\x15\xb8\xd1\xdb\x79\x5a\xa4\x15\xea\xd7\x60\x67\xf1\xa8\x7d\x26\xba\xc8\x9e\x42\xc7\x2a\x34\x82\xb8\xa7\x47\xd8\x8c\x1a\xd0\x19\xaa\x28\x04\x7a\xe8\xb7\x5a\x5e\x7b\x9d\x20\x07\x3f\x22\x90\x15\xe8\x56\x21\xa2\x46\x65\x3a\x5a\x45\x95\xae\x2f\xf3\xe5\x16\x94\xc3\xd6\x6e\xb5\x1d\x73\x0b\xaf\x0c\x27\x55\x71\x43\x57\x83\xd4\xba\x63\x7b\x32\x3e\x1e\x1f\x0f\xc9\x01\x9f\x34\x74\xc5\x8d\x68\x55\xfb\x1e\x68\xeb\xe4\x5f\xe8\xac\xf5\x59\x94\x51\x19\x4c\x3a\x5f\x8a\x1d\xcd\x8c\xb2\x46\xad\xd3\x1b\x05\x0a\x2f\xcf\xf0\xbb\xfd\x76\xa5\x2b\x8c\xad\x1f\xab\x9f\xc9\x96\x4f\xa9\xb5\x9d\xa8\x53\x1b\xb5\x36\x59\xbe\xb8\x81\x3e\x7e\xe1\x47\xdf\x1a\x64\xb1\x34\x55\x5e\xaf\xd6\x90\x57\xc6\x70\x24\xaa\x23\x48\x18\x49\xe8\x9e\x2f\x8a\x74\xc9\x0d\xd4\x06\xe3\x58\x69\x15\xe2\xd6\x30\xfa\xc9\xae\xc0\xd4\x8d\xf3\xd5\xb1\xa7\x1d\xcd\x3f\x4f\xc0\x0b\x9b\xc5\x10\x14\x41\x70\xd5\x9c\x08\x92\x83\x05\x00\xaf\x87\x8b\x64\xa4\xae\xf6\x9d\x4b\x0f\xca\x14\xe7\x3a\x3f\x90\xbb\x54\xe8\xc2\x6f\x36\x9a\x4f\x45\xf4\xc5\x8e\x23\x82\xaf\xfc\x19\x69\x44\x59\x5e\xbe\xbf\x83\xa2\xf8\x01\x96\xe4\x79\xe2\x86\x60\x2e\xdf\xfb\xb0\x9d\xbd\x44\xa6\x49\x39\x43\x77\x68\x8b\x73\x77\xa2\xc3\x02\xbd\xa1\x04\xe6\x57\x69\xd5\x47\x60\x1c\x32\xf2\x3b\x41\x01\xa9\x92\xbb\xb3\x7e\x34\xf3\x9f\x9d\xd4\x34\xf2\x3f\xe1\xa5\x13\x26\xab\x55\x6a\x01\x33\xfe\xde\xf8\x01\x0a\x28\x2b\x9d\x66\xba\xb2\x28\x08\x8c\x1f\x9c\x0d\xa7\xe7\xea\x5d\x7d\xf1\x60\x70\xfe\x4f\xc7\x48\x5d\x3c\x18\xbe\xab\xce\xfe\x36\x59\x2f\x47\x0a\xcd\x2b\xa0\xe9\x87\xdb\xec\x5d\xa5\xe6\xab\xb4\x4a\xe7\x68\xaf\x50\x2f\x5e\xff\x08\xdd\xba\xf7\xf5\x57\x8f\xbf\x1c\xa9\x7b\x4f\x4e\x1e\x3e\x86\x7f\x1e\x3f\x9c\x42\x17\xc1\xe1\xbc\x36\x73\x53\x80\xc7\xd1\x9c\x08\x29\xbc\xfa\x99\xdf\x90\x44\x02\x59\xbc\x6e\xd3\xcd\xc6\xfd\xff\xdd\x91\xad\x4d\x95\x2e\xf5\xed\xf8\xf0\xdd\x11\x48\x23\x80\x4a\xbf\xc8\x0b\x7d\x5b\x69\x7b\xbb\xcb\xb3\xa5\xae\x87\x53\x1c\x53\x69\x9e\x91\xff\x2b\x35\xf6\x8f\x17\x6f\x6f\x7f\x78\xf1\xf4\x39\x02\x2c\x57\x1b\xf9\xad\x77\x93\x77\x13\x78\x8a\x57\xac\x93\xd5\xce\xe0\xb7\xe5\x6c\x52\x93\x6f\xf1\xcf\x77\x97\xe7\xff\xfc\xf6\xe2\xc1\xe0\x6c\x3a\x38\x3b\xf8\xf6\xdd\x04\x9f\xfe\x7d\xf8\x2d\x3c\x1e\x3e\x08\x8f\x26\x4b\x90\xb5\x40\x0a\x9f\x0c\xce\xcf\xee\x5f\x0c\xff\x98\x9d\xff\xf3\xfe\xc5\x03\x68\x79\x5b\xd1\x30\xcf\xdf\xed\xde\x1d\xbe\x1b\xbf\x3b\xba\x38\x9c\x0e\x07\x67\x53\xd7\x17\x37\xf1\x93\xb3\x7b\xd3\x8b\x07\xee\xc9\x74\xf0\x2e\x3b\x1c\xde\x0e\x6f\x87\x13\x0a\xc4\xfe\x5f\x5a\x6f\x20\xb4\x25\x38\xc6\x98\x22\x53\x85\x49\x33\x0a\xd1\xee\xf7\xfe\x80\x5f\x12\x65\xd7\x3d\x80\x06\x1e\x28\x00\x7a\x05\xb5\x4a\xbf\xa7\x1e\xa8\x93\xa1\x7a\xbb\xd2\x37\xac\x3c\x59\x6c\x0b\x54\x12\xd7\x95\xc9\xb6\x73\xad\xe6\x5b\x5b\x9b\x35\x64\x03\x79\x7b\xb3\xd1\x56\x0d\xac\xd6\xca\x6d\xac\xc9\x7b\x6b\xca\xcd\xf8\xbd\xa5\xac\x6c\x4a\x5f\xa7\xeb\x4d\xa1\x87\xd0\xee\xc3\x21\xe9\x66\x20\x7d\x75\x5a\x14\x3a\x9b\xc2\x0b\xa5\xd4\x91\xfa\xee\xc5\xf7\xaf\x7f\x79\xa1\x52\x0b\xb1\x48\x18\x7d\x59\x57\x69\x69\x37\xa6\xaa\x43\xb1\xa7\xdf\xbf\x7d\xf1\x0b\xde\xff\x0d\x32\x34\xb0\x63\x48\xd8\x82\x39\x51\x28\x33\xec\x42\xd9\xf1\xa6\x32\x73\x6d\xed\x73\x7a\xe9\x38\x47\xec\xd0\x97\x43\x60\x47\x73\xcc\x82\xc4\xe3\x81\x57\x8f\x86\xa8\xbd\x4d\xeb\xb9\xa3\x6b\xca\xde\xac\x2f\x4d\xa1\x92\x07\x09\xf8\x4e\x5c\x6a\xca\x5b\xa8\x1e\xa8\xc7\x43\x4a\x2c\xe5\x3a\x01\x0e\x46\x36\xb8\x20\xfb\x11\xf8\xe6\x81\xe0\xbf\xfd\xe1\xc5\x2b\xc5\xc0\x8e\x2a\x33\x3b\xa0\xa2\xae\x75\xf0\x47\xd5\x19\xb6\x3d\xe9\xf7\x36\x7e\x6d\x40\xed\x42\x2b\xf6\x96\x9b\xb5\xea\x32\x87\x70\x34\xbf\x74\xfb\x46\xf4\xf0\xf3\x47\xf4\xe5\x90\x40\xd9\xff\xea\x88\x96\x66\xdf\x30\xea\xd0\x61\x3f\x0c\x0e\x55\xe4\xc0\xbd\x4d\x65\x0a\xb3\x04\x0a\xa2\xac\xfe\xd7\x56\x43\x14\xc4\xbd\x93\xe3\xe3\x6f\x9e\x0c\x4f\xd1\xdd\x24\xdd\x6c\x74\x6a\xb5\x2a\x72\x4a\xab\xa5\xaf\xd2\x0c\x51\x27\x2a\x6d\x11\x77\x23\x2d\x0a\xdc\x97\x33\x75\x9e\x3c\x98\x24\x17\xea\xd0\xfd\x91\x5c\x60\x70\xfb\xbd\x27\x27\x5f\x3e\x19\x39\xc2\xe5\xae\x58\x40\xac\xc1\xad\x3a\xd7\x78\xf7\x81\xd2\x1f\x91\x27\x9d\x2c\x07\x57\xef\x22\xd7\x45\x86\xce\x2b\x14\x33\xce\x14\x16\x00\xd9\x43\xa4\xe8\x3a\xcd\xcb\x90\x73\xcd\xea\xba\x4f\x28\x36\x92\xf0\xaa\x99\x27\xd0\xe3\x55\xa5\x17\xa7\x7d\x06\xb1\x51\x24\xdb\x09\x6f\x3e\x57\x40\x18\x7f\xd1\xeb\xf2\x69\x40\x88\x9d\x4c\x94\xcd\xdd\x54\x71\x5a\x79\x62\x01\xf2\x5a\x2d\xf3\x2b\x5d\x86\xde\xb5\x2e\x05\xee\xcc\x1e\x5f\x3e\x95\xa4\x68\x85\x91\xc5\xa1\xc3\x8c\x9e\xdb\x68\xa7\x55\x8e\x75\xb2\x6f\xf4\x32\xba\x96\x50\x68\x06\x4d\x5e\x5f\x5e\x50\x6a\xa6\x1c\x2d\xa4\xf8\xaf\xa8\xb9\x28\xe3\x09\x25\xfc\xa5\x15\xfd\xce\xed\x88\x44\x24\x55\x48\x84\x64\x08\x42\x9b\xa7\x70\xb0\x67\xc4\x0b\x7f\x90\x44\xd0\x57\x96\xbd\x35\x81\x24\xbe\xae\xc2\x61\x1b\x28\xfc\xc2\xb6\x12\x68\xe1\x7c\x0c\x5e\x5c\xf3\x16\x84\x58\xff\x0d\xf1\x21\xee\x83\xe4\x65\x66\xe9\x74\x78\x51\x21\x30\xdc\xed\x46\x90\x1d\x67\xfb\xbb\xcc\xfe\xd6\xf1\xc1\x83\x8e\xf4\xd6\x50\x7d\xd6\x51\x1a\x38\xa8\x8e\x46\x66\xae\x6f\xde\x95\x8f\x13\x8b\xbd\x05\x84\xba\x22\xb7\xf5\x48\x81\x28\x83\x89\x54\x47\xb2\x11\xdb\xf9\x9d\x78\xc9\x48\xb5\x8c\x28\xf9\x15\xa6\x72\x1d\x36\xb2\x94\x79\x84\x6c\xdf\xb0\x80\xc8\xde\x0b\x48\x4a\xf3\x14\x74\x22\xdf\x9b\x0a\x05\x0f\x4f\xa1\xc8\xf9\xa0\xdd\xc7\xa0\xc4\x46\xfd\xb5\x87\xed\x15\x4a\x6c\xdf\x8a\xe8\x17\xe8\xa7\x4f\x83\x19\x17\x88\x79\x65\x8a\x80\x3b\x97\xda\x0f\x04\x51\x9f\x65\x1e\xb0\x91\x38\xf9\xf2\x06\xdd\x3d\x84\x3d\x16\xf5\xf4\x61\x7e\x91\x13\x39\x9c\x90\x84\xe5\xfb\x40\x86\x31\x98\x0b\x59\xdc\xdb\xd5\x3a\x7a\x3b\xb6\xdb\x4b\x5b\x57\x03\x40\x88\xbb\xbd\xe5\x65\x66\x73\x96\x5b\x5b\x08\x3f\xa5\xad\x7d\x1e\xbe\x76\xb1\xf7\x39\x1d\x3f\x96\x0f\x1c\xc9\xdc\x81\xe5\x9e\xdd\xfe\xc3\x49\x49\xe7\x73\x53\xb9\x3b\xaa\xb8\xf1\xdf\x3b\x8f\x3a\x7f\xa6\x92\x6d\x69\x57\xf9\x02\x41\x25\x37\x5b\xbb\x4a\xd4\x05\xaf\x6c\x14\x26\xc4\x14\x05\xce\x7c\x5e\xda\x0d\x5d\x53\xfe\xf8\x2e\x18\x50\x1f\x2f\x4d\x77\xfc\xc2\xe5\x23\x40\xe7\xb1\xea\x27\xcf\xb9\x00\xa0\xe1\x00\xe6\xd7\xfc\xe0\xfd\xbf\x7e\xff\xe1\x17\xf0\x20\xe7\x79\x89\xb3\xf5\x8d\xf8\x2b\x3a\x6b\xe6\xf1\xc3\x63\xdd\xb1\x56\x6e\x62\xe9\x8b\x63\xb1\xdb\xd0\xda\x11\x9a\x9b\x89\xa6\x6f\x6f\xc9\x1e\xe3\x1f\x35\x56\x10\x53\xf2\xa0\xe6\xc0\x5f\xec\x80\x48\x7f\xc7\xca\x73\xde\x80\x18\xba\x1e\x6a\x9c\xc1\x3f\xac\xe9\x23\x3f\x6e\xe4\x81\xf4\xeb\xb2\xb8\x01\xaf\xe4\xb0\xfe\x4e\xe6\x12\x2b\x32\x6c\x86\x8c\x52\x3b\x10\xf2\x21\x5b\xb9\xbd\x55\x07\x81\x0f\x19\xca\x43\x19\x1e\x63\x97\xe0\x38\x0e\x3e\xb5\x54\xb8\x95\x7c\x74\xed\xd2\xd4\xaa\xd2\x59\x5e\xe1\x34\xba\xa3\x5a\xa2\x4f\x56\x60\x9c\x28\x86\xc6\xdd\xe1\xe4\xd5\xb3\x60\x6e\xaf\x5c\x22\xa0\x0b\x7a\x73\xd5\x94\x74\x14\x5d\xef\x1b\x14\x5b\x74\xb7\x83\x50\x13\x40\x69\x3c\x72\xb1\x96\xa1\x76\xc0\x15\x94\x13\xe0\x35\x9a\x6d\x58\xe3\xd6\x4e\x1a\xd3\x39\x1b\x28\x39\xb3\xad\x26\xef\x3e\x1d\xa4\xd5\xff\x0b\x67\x44\x6c\x3b\xb1\x71\x1b\x58\xed\x11\x5e\x03\x4c\xad\x98\x69\xc8\x04\xb0\xe2\x04\xee\xd8\x1c\x85\xa3\x85\xf5\x09\xdc\x6d\xa0\xfc\x8b\x8e\xc5\x81\x19\xbf\x73\xb3\x81\x62\x55\xac\x81\xe3\x69\x2f\x3a\x36\xdf\x67\x4c\xd4\x5f\x99\xa6\xe4\x41\xd2\x9c\x20\x9c\x97\x6d\xe9\xa3\xd4\x90\x3f\x6d\xcc\xcf\x20\x1c\xb0\x61\x9f\x71\x27\xf2\xfa\x8b\xa2\x70\x9c\x7d\xbe\x2c\x4d\x15\xc0\xea\x40\xf6\xaa\xf0\x52\x4c\x6b\x08\x02\x0b\xda\x4b\x1e\x1c\x13\xda\xa7\x9c\xb3\x52\xa1\xcd\x0f\x45\xb3\xf7\xe9\x35\x8f\xa6\x0f\xf4\x3f\xad\x55\x9d\x7e\xd0\x56\x25\x8b\x22\xad\x13\x8f\x48\x35\x70\xb3\x8f\x1a\xa2\xcc\xc9\xa9\xd8\x88\xce\x86\x7d\x0f\xfa\x78\xef\x9b\x27\x4f\xbe\x16\xfc\xd7\xfb\xf4\xfa\x05\xe7\xe6\x4a\xab\xa5\xae\x47\xca\x56\xf3\xa0\xfc\x04\x3b\x88\x6b\x0c\xd2\xd7\x14\x69\x4d\xb3\xd8\xad\xbe\x1f\xcb\x12\x44\x2a\x89\xfc\x80\xa8\x54\x86\xc6\x29\xc7\x45\x35\x3f\x87\x57\x17\xdd\x50\x6b\x03\x25\x5a\xe4\x92\x67\xd4\x55\x30\x94\xc0\x40\x41\x4f\x0f\x7f\x39\x81\x07\x95\xf1\x5c\x7a\x26\x3e\xe2\xf5\xcc\x9c\xf1\x51\x6f\x1a\x8e\x3b\x51\x9e\x32\x9e\x11\x2c\x47\xea\x9f\x7e\x2c\xd6\xc7\x99\x03\xab\x62\x44\xfa\xf2\x26\x86\x9a\x24\x51\xdb\xaa\x88\xb9\xc8\xfb\xf7\x15\x2a\x0d\x22\xd3\x2b\x3c\xba\x0b\xc3\x9d\xf4\xe5\x88\xd0\x9c\x19\x80\x59\xf9\xd7\x56\xdb\x1a\x4f\x62\xb0\xa7\xa5\x95\xa6\xf4\x1f\x54\xc0\x27\xd2\x41\x9b\x2a\xdd\x0a\x2d\xc3\xaf\x88\xfd\x0a\x99\xc3\x10\x46\xb9\xd2\x76\x63\x4a\x0b\xbc\xa9\xd5\xc5\x82\xf2\xa7\x41\x52\x9c\x85\xfb\xe5\x44\x0b\x9f\x72\x50\x25\x43\xaf\x42\x77\xaf\xff\x8e\x9e\x32\xe1\x84\x43\x72\x36\x57\x05\xb3\xeb\xb8\x42\x23\xf8\xcd\x5d\x73\x4b\x87\x9a\x1b\x51\xea\x78\x04\xad\x0d\x23\x9b\x50\x5e\x7f\x21\xcd\x73\x4d\xc5\x7d\xe0\x65\xc9\xb0\xe1\x51\x54\x90\xb9\x8c\x4d\x47\x5f\x58\x7f\x8a\xdd\x5a\xf6\x7b\x3d\xbf\xac\x33\x6a\xc0\xf5\x8c\x9a\x8a\xee\x87\x7e\x03\xc1\x11\xd4\x98\x2a\x65\x7d\x0a\x79\x8c\x48\x9d\x2a\xb5\x72\xff\x3e\x6f\x14\x6e\xb6\xad\x48\x65\xb4\xe0\x9f\x5f\xbf\x79\x9b\x9c\x0a\xd3\x09\xae\x3f\xda\x4e\xd6\xa6\x0e\xb1\x4f\xde\x39\xc6\x1d\xd8\xc1\xbf\x71\x3a\xa7\xb0\x65\x69\xf0\xf9\x42\x25\xae\xdd\x44\x5d\xa5\x15\x06\x7d\xe6\x36\x8c\x68\x84\x9c\x67\xf2\x8f\x17\x6f\x13\x86\x23\x44\x88\x39\x56\x67\x40\xaf\xa6\x3e\x25\x32\xdf\x0b\x53\x95\xac\xea\x75\x91\xf0\xb3\x29\x1f\x91\x3e\xba\xd4\x17\xba\x8e\x30\xc9\xf9\x1a\xab\xd3\x7a\x6b\xe3\x78\x9b\x18\x96\x10\x77\x1e\x59\x55\xf8\x5d\xd8\x9a\xc0\x37\x63\x6b\x63\x7e\xf6\x16\x72\xde\x61\xd3\xcc\xa9\x5c\x34\x2e\xc7\xe1\xd8\xdd\x60\xc2\xe0\x2f\x2b\x8b\xcd\xf2\x26\xbd\xd2\xe1\x63\x8e\xcc\x01\xec\x4f\xa9\x78\x50\x72\xdb\xf8\x72\xb3\x70\x88\x39\xf2\xee\x8d\xd6\x88\xef\xe9\xcf\x02\xdc\xbb\xec\x0a\x49\x27\x6c\xec\x26\x31\xe4\x1d\x54\x67\xec\x75\xec\x03\xf7\xb2\xed\x7a\x7d\xa3\xb2\xfc\xca\x5d\x02\x2b\x53\x64\xc2\x86\x66\x83\x97\xe1\x20\xf9\x36\xcb\xaf\xfe\x9e\x0c\x83\x37\x75\x09\x9a\x78\xca\xba\x52\xa3\x0d\x1e\xb5\x9b\x3e\xf4\x2e\x2f\x47\xe8\x24\xcf\x7e\xf9\x32\xa9\xba\xcc\xdd\xe2\x24\xae\x2f\x7e\xd6\xd5\x3a\x47\x51\xf7\xb9\x2e\x73\x9d\x7d\xc1\x30\xc5\x80\xbc\x07\x95\x28\x56\x2d\x9e\x5f\x61\xc4\xc3\x0f\xb0\x07\xbd\xef\x2c\x68\x29\x74\x03\x97\x59\xd8\x57\xc1\xa7\xc4\x35\xeb\x67\x6a\xa8\xa6\x02\x08\xba\x34\xf5\x08\xfd\x3f\xc5\xb0\x17\xdb\xa2\xa0\x99\x42\x87\x0d\xb9\xe2\x60\xfb\x18\x8a\x60\x34\xa4\x8d\x1f\x51\x23\xf2\x14\x62\x4b\x55\xaa\x2e\xb7\xe5\x7c\x05\xf6\x65\xda\x39\xa8\x9a\xf5\x59\xf1\xe7\x66\xbd\x36\xa5\x7a\xfa\x3f\x9f\xfe\x4e\x69\x3a\x22\x57\x38\x95\xc0\x55\x0a\xda\x3f\xfc\xcb\x6c\xe0\x8f\x67\xbc\x9d\xe0\xb6\x76\xb3\x88\xef\xb7\xa0\x36\xc3\xbf\x75\x99\x25\x2c\xf5\x27\x2a\x51\xc3\x86\x85\xd1\x80\x83\x88\xbf\xba\xce\x95\x81\xab\x31\x94\x59\xa0\x07\x89\xf4\xbb\x71\x8f\xcd\x48\x2d\xbc\xcb\x9f\x4c\xc9\xc1\x1e\xae\x4b\x0d\x91\x77\x1b\x63\x3b\x3c\x5c\x89\x4a\x08\xd7\xbc\x73\x7e\x76\xd1\xbe\x38\x31\xb5\x7a\x38\xc7\xe4\x87\x43\x86\x1a\x60\xa5\xc5\x05\x98\xa3\x72\xc6\x3f\x81\x33\x63\xd6\x79\x0d\x97\xdb\x5e\xa2\x4f\x79\xc6\xdb\xf0\xf3\xe0\x65\x49\xdf\x06\x72\x20\x08\xbd\xab\xe4\x35\x39\x4d\x29\xa0\x23\xf5\xa6\x27\xb1\x44\x11\x71\xcc\xa0\x76\x09\x44\xb7\xc7\xd4\x10\xc6\x0d\x3e\x1d\xb8\xa2\xd3\x30\x07\x52\xf1\x83\x84\xd5\x3b\xc2\x9e\x76\xa7\x48\xe9\xf7\x96\xba\xc6\x9c\xfe\xd3\xe6\x04\x37\xc8\x67\xdc\x67\xc0\x23\x86\x62\x82\xe2\x87\xc5\x48\xf0\x34\x26\xec\x3e\x06\xdf\xf9\x9f\x6f\x5e\xbf\x6a\x7d\x25\x5e\xc6\x4f\x7c\xab\xb9\xe6\xc9\x7b\x6b\x4a\xf1\x11\x4f\xde\xf0\x4a\x2f\x0a\xb5\x28\x74\xb6\xd4\x1e\x74\xcf\x7a\x33\x62\x59\x1b\xe2\xd8\x50\x52\xc9\x01\x09\xa9\x5e\xa9\xc8\xc1\x44\xe4\x7b\xb1\xa8\x69\xb6\x63\x1f\x65\x8e\x6c\x65\xee\xf7\xd1\x48\x41\x9c\x2e\xfb\x1d\x49\x4e\x17\xf5\xb1\x6f\x74\xbd\x8d\x70\x74\x3d\x13\xcd\x9f\x90\xcc\x6e\xfc\xcc\x7d\xf4\x3b\xc7\x13\x50\xea\x99\x78\x3c\xe0\x09\xd2\xc1\x9d\x77\x39\xcd\xa0\x69\x33\x46\xc8\xc1\x7a\xd0\xb4\x28\x0a\xbb\x8c\xab\xcd\xa8\x51\xd8\xd9\x34\xf6\x4e\xb6\x9e\xa1\x89\x3b\xa5\x85\xa8\x13\x4c\x3e\xb8\x5d\x58\x43\xd9\x14\x26\x47\x81\x43\x10\x5b\x47\x7b\xbd\xdc\xba\x5f\xc5\x54\xc5\x26\x49\x52\xca\x49\xcd\x35\x22\x8f\x81\x42\x73\x59\x98\x4b\x57\x87\x81\x5e\xf0\xbc\x01\x8f\x82\xec\x05\xdc\x66\xc4\x85\x40\x48\x10\x7e\x70\x72\x7d\xb4\xdb\xed\x8e\x16\xa6\x5a\x1f\x6d\xab\x02\x9d\x18\xb2\x53\x30\x88\x58\x5d\xcf\x7e\x7d\xfb\xfd\xd1\x13\x68\x42\x58\xb4\xc2\x67\x52\x7b\x53\xce\xc3\xcf\xc9\x03\xf7\xe9\x7c\xad\xcd\xb6\x26\x15\x0d\x1e\x6d\x88\xd6\x8a\x58\x21\x7e\xb2\xb5\xba\x42\xc7\x3a\x7e\xc2\xfe\xa4\xe1\x09\x04\xe2\x87\x9f\x60\x3e\xb1\x53\xc2\xb9\x8f\xdd\xa9\xc4\x53\xb2\x29\x4f\xc1\xf4\xd3\xeb\x3d\x98\x38\xfa\x94\xce\xe7\x7a\x53\xd3\xf4\xf7\xae\xd7\x45\x73\x3a\xd6\xc5\x08\xd2\xba\xb8\xbf\x30\x30\xd0\xb1\x1b\x53\x95\xc0\x43\xcf\xbf\xf5\xdc\x4f\x7e\xba\x29\xd2\xbc\xc4\xc7\xee\xd8\x36\x9a\x74\x8f\xa8\xcd\xf7\xe9\x55\x4a\xf4\x03\x4a\x27\x0f\x92\xa9\x62\xd3\x91\x8f\xa0\x64\xd6\x43\x76\xd2\x75\x67\x22\xba\x03\x3d\x99\x88\x4f\xc2\x67\x26\xbe\x0d\xbe\xb8\xbf\x87\x93\x1d\x0d\x97\x5f\xfd\xfe\xd3\x8f\xd1\x50\xe4\x5d\x9f\xf8\x86\x20\x07\x3e\xe6\xad\x03\xa2\x4f\xa8\x93\x60\xb7\x75\x2f\xc9\xfa\x07\x08\x62\x40\x32\x12\x6b\xb6\xd5\x5c\xff\x01\x77\x49\xa6\x6d\x9d\x97\x30\x0f\x7f\x20\x4b\x3d\xf0\xbe\xe3\xa8\x8e\xcf\xcb\xa3\x4b\x5d\xef\xb4\x2e\x87\xd8\xe0\xe7\xd9\x0c\x11\x52\x26\x7c\x09\xa7\x8d\x7a\x36\x0d\x68\x90\xcf\x08\x24\x33\x2d\x6f\x50\x93\xe3\x88\x23\xc5\x02\x26\x0f\xe0\xcf\x64\xca\xe6\xb5\x37\x20\x8b\x8c\xb8\x2e\x30\x3d\x8e\x83\xac\xd7\x85\x1a\x80\xf3\xdf\xcc\x89\x93\x35\x43\xb3\xc3\xb8\x20\x65\x07\xec\x03\x28\xe8\xb3\x2e\x31\xfd\xb9\x4a\x8b\x2d\xf0\x69\x90\x2b\xc8\x91\x6f\xb7\x52\x4a\x47\xe6\x00\xac\x0f\x34\x7f\x2a\x9c\x97\xad\x76\x37\x8b\x6f\xeb\x67\xf7\xc4\x37\x74\xbd\x2e\x42\xd5\x6b\xf8\xb2\xac\xf9\x3b\x80\x46\xf8\x45\xfc\x1e\x62\x8c\x91\x1b\x03\x99\x0e\x73\x6e\x01\xe0\x59\x43\x4d\x42\x30\x7e\x37\x66\x0b\x33\x9e\x66\x99\xfb\xbb\x52\x66\x57\xb2\x1d\x9e\x5b\x22\xf5\xa4\x00\x06\x75\xa2\x11\xd4\x44\x66\xdc\x94\xba\xfd\x39\xf2\xb4\x93\xdf\x0c\xf6\x7c\x24\xac\xc3\x58\xcd\x42\x1b\x98\x92\x75\x07\x82\x83\x14\x14\xd3\x5a\xf9\x5c\x13\x91\xf1\x6d\x7a\xb7\x6d\x4d\xea\x88\xc9\x53\xc5\xbf\xfe\x44\x55\x61\x5e\x1e\xd2\x15\xfd\x53\x9a\x97\xde\xfd\xc1\xb5\xd5\x62\x0a\x24\x68\xba\xd7\x0b\x3b\x79\x1e\x5d\x33\xf1\xce\x1b\x29\x9b\xaf\xb7\x85\x9b\xbf\x4d\xa5\x8f\x4e\xc6\x8f\x95\xcd\x97\x65\x5a\x6f\x43\x86\x05\xa1\x42\xe9\x10\x8b\x59\x09\x8b\x6a\x82\x53\x9a\xa9\x4e\x8e\xcd\x47\x1c\xfb\xdd\x01\x8a\x33\xdf\x99\xbe\x6c\xcc\xc4\x3a\x2d\x32\xd9\x81\xcc\xfc\x93\xc9\x50\x04\xf9\xa0\x6f\x50\x50\xe5\x27\xff\x4b\x43\x9a\x5a\x94\xcb\x49\xfa\x23\xe2\x2c\x65\x8c\x1f\xf0\x11\x1f\xc2\xf6\x1b\x6e\x44\x78\x68\xf4\x82\x91\xdf\xbf\xc5\xeb\x07\xc5\x0d\x30\x7f\xd1\x93\xb7\xf9\x5a\x57\x23\x2f\x2b\x1a\x6b\x8f\xc8\x74\xee\xdd\x80\x9c\xc0\x0f\x7d\xda\x90\xe7\x12\xd2\x01\xa3\x3e\x94\x66\xe7\x38\x6d\xbc\x66\x49\x6a\x61\xf7\xb7\x4b\xcc\xf2\x09\x30\x9f\x90\x5b\x66\x91\x57\xfa\x1f\x50\xd2\xb7\xf1\xa3\x31\x1b\xaf\x4e\x80\xe9\x19\xc5\x52\x2b\x08\x5f\x00\x55\xcb\x73\x1c\xf8\x9f\xb6\x96\x71\xbb\x19\xb8\x6b\x2d\x6c\x27\xdf\x1a\x71\x90\x96\x13\xdb\x4b\x0e\xfe\x99\x4f\x9f\x6f\xc7\x9c\x35\xff\xf6\x56\xf9\x4e\xf2\x7b\x40\xdb\x92\x23\x65\xa1\xb1\xa9\x06\xe2\x0a\xf9\x02\x0e\x7a\x94\x60\x82\xcc\x9f\xac\xb0\xed\x79\x12\x91\x7b\xd5\xd4\xf3\xd7\x3f\x01\xdc\x09\xfa\xb9\x93\x53\xf5\xdc\x14\x05\x3b\x65\x31\x5f\xf3\xc2\xf5\x22\xf4\xbe\xf9\xf9\x83\xd9\x4c\xd9\x10\x07\xd1\x78\x1d\x52\xac\x09\xc9\xc6\xf7\x1c\x72\xab\xce\xdd\x51\xa2\xef\xfb\x58\x03\x9f\x9f\xb1\x59\x67\xa8\x3c\xa5\x85\xe9\xe1\xe9\x7b\xae\x17\xba\xaa\x34\xa0\x49\xf7\x32\xfa\x11\x96\x8e\x5f\x0f\x86\x3e\x23\x80\x93\x66\x9f\xb7\x0a\xfa\x35\x1c\xa8\xc4\x94\x73\xad\xd6\x7a\x6d\xaa\x9b\x24\xac\xf2\x1b\xd0\xdb\x1c\x61\x70\xa7\x93\xf9\xb8\x8b\x14\x59\xed\xde\x3e\x73\x13\xeb\x56\x5a\xfc\x84\x63\xcb\x8d\xd0\xa9\x02\x77\x68\x74\xbc\xc2\x28\xf8\xa2\x50\x69\xad\xdc\x87\x87\x78\x08\x41\x95\xf6\x83\xf7\xd0\xa3\x16\xe2\xe7\xaf\x20\x67\xe0\x4c\x34\xff\x76\xa5\x49\xaf\x04\xf9\x32\xb9\x63\xda\x1b\xde\x71\xc6\x00\x09\x27\xbd\x34\x55\xad\xd6\xda\xda\x74\x49\x25\xab\xa7\xf0\x6c\xa6\x92\xb9\x5b\x9f\x42\x67\x09\xd7\xfa\x3e\xfd\xa0\xd5\xf5\x0a\xc0\x23\xf1\x0b\x33\x06\x0c\x00\x5b\x8b\x9b\x1d\xcd\x90\xb1\x74\x2a\x00\xc2\x17\x3c\x5b\xa0\xbf\xa4\x34\xab\x7f\x91\x83\xb8\x3b\x49\xac\x37\x9a\x71\x2e\x52\x19\x53\x5a\x94\x22\x6f\x7a\xe4\x82\xc0\x31\xa5\x54\xa0\x63\xd6\xce\xa9\xf6\xc5\xa7\x5e\xdf\xde\xfa\x14\xe7\xbd\xd6\x02\x74\xe7\xa9\x22\x6b\x7b\x43\x97\xdd\x63\xbe\x00\x69\x72\xba\x93\x71\x7b\x4b\x5d\x3f\x2d\x8a\x5f\x62\xd2\xdb\x8a\x8a\x92\x29\x9f\x38\x95\xeb\x43\x75\xa6\x3a\x89\xb9\x42\xde\xbd\xf5\x65\x90\xfa\x2c\xdf\x05\x6a\x95\xda\x55\x8d\xea\xd6\xe0\xc9\x85\x3d\x8a\xbb\x33\x8d\x03\x54\xc2\x5a\x78\x68\xe7\x53\xb1\x60\xb2\x83\x61\xd5\x28\x42\x2f\xee\xae\x78\xdf\xbc\x7c\x28\x00\x91\x5e\x42\x0a\xfb\x01\x83\x3b\xbb\x85\xa3\x41\x90\x17\x51\xf7\x34\x44\x78\x41\xed\x4f\x9c\x63\x6b\xe7\x27\x17\x0d\xc7\xa3\x0b\x48\x25\xe0\x5e\xa9\x87\xec\x01\x12\xd6\xd6\xff\xeb\xfb\xd2\x6c\xf6\x83\xbe\x69\xb6\xd8\xb9\x3d\xa8\x81\x38\x83\x31\x46\xde\x4c\xe5\xbc\x8a\x25\x7c\x8d\x59\x66\xb5\x0d\x0a\x60\x12\x5f\x8e\x10\xce\x2b\x1c\x37\x4a\x48\xab\x7f\xca\xd7\x1a\x65\x40\xa1\x2e\x08\x2a\xae\xbd\xe7\xcc\x8e\xd7\x54\x93\x34\x55\x9f\xbf\xc5\x9f\x01\x09\x21\x2d\x30\x9c\x1a\x78\x03\x64\xa7\x99\xb9\x78\x6b\xbd\x7a\x9b\x2c\xce\xfe\xd9\x4c\x16\x00\x04\x18\xa4\x52\x72\xb7\x05\x57\xc5\xd0\x73\xff\x6c\x0c\x5f\x8c\xbf\x13\x8f\x02\x34\xee\xea\x78\xd4\x55\xa4\x3d\xc2\x7e\x8f\xe2\x95\xe4\xd5\x0f\xd7\x37\xf0\xe1\xfa\x4a\x57\x24\xf6\xe4\x96\xa1\x3e\xe0\x1e\x87\xdf\xb4\xc2\xc0\xc3\x87\xe4\x39\xe0\xe5\x08\x97\x53\x9a\x97\xd6\x27\xcf\x57\x99\x9e\x17\x69\xa5\x39\x09\x00\xaa\x8b\x01\x5b\x60\x41\x9a\x63\xb2\xa5\x0e\x10\xd1\x93\x21\xb8\xd4\xda\x54\x5a\x15\x66\x09\x58\xdf\x18\x18\x96\x66\xee\x98\x03\x8f\xcf\xb5\x70\xe0\x6c\x90\x28\x21\x85\xe5\x1b\x3f\x07\xc1\x98\x61\x47\x9e\x5e\xc8\x18\x65\x4b\x5a\xe0\x91\xb2\xfc\x07\xe8\xd9\x85\x81\x0e\x7d\x14\x73\x8d\xfa\xc7\x78\x5d\x9b\xdf\xf3\x78\x3a\xcf\xc0\x65\x18\x6e\xc3\xfe\x5d\x04\xa5\x2b\x33\x24\xdc\x43\x20\x12\x67\x80\xa2\x58\x9a\x9d\xbc\x05\x1f\x86\x8f\x14\x3a\xad\x3c\xe3\x8a\x33\x8e\x49\xcc\xfc\x37\x25\x0f\xeb\x3f\x8a\x40\x35\xf8\xa6\x59\x24\xee\xca\x73\x5d\x39\x36\x03\xbc\x5b\xc3\x0e\x05\x0c\xd2\xb4\x2a\x6e\xd4\x32\xad\x2e\xd3\xa5\x6e\x30\x5f\x93\x89\x1a\x94\xc6\x9d\xfc\x5a\x57\x6a\x65\x76\xaa\x30\x64\xf4\xc0\x7b\x97\x54\x8e\xd2\xfa\x35\x8c\x98\xf2\xa6\x25\x30\xdc\xc6\x81\x5e\x7c\x4a\x14\x50\x33\xbf\xe2\x31\xca\xd2\x1b\x5d\xab\x70\xe1\x7b\x6e\x60\x1c\x9e\xf9\x13\xab\xfe\xae\x8e\xd5\x99\x7a\xa4\xa6\x02\xb9\xfa\x1f\x50\x9f\x7a\x91\xa5\x75\xda\x0f\x99\x8b\x68\xb3\x89\xf5\x0d\x66\xab\xf7\xe9\xf5\x0f\x20\x5c\xf0\xad\x64\x07\x2a\xb8\x53\x88\xba\xad\xdc\x9b\xb4\x37\x17\xdb\x62\x44\xf2\x09\x52\xbe\xf9\x2a\xcd\x4b\xba\x80\xfd\x16\x73\xbd\x9e\xa9\x87\xc7\xc7\x98\xf9\x04\x1e\x7c\xab\xbe\x3c\x3e\x46\xd2\x03\xbf\x21\x97\xf0\xf1\xa3\x26\x62\x12\x2c\xd1\xcb\xc5\x11\x4b\x60\x47\x6f\xc0\x59\x37\x2d\xb3\x89\xa9\xdc\x8b\x57\xa6\xd4\x47\x3f\x01\xb9\xc7\xb9\x85\xc4\x7a\x79\x29\xe5\xb8\xb5\xc9\x34\x46\xd6\x60\x97\xc6\xe2\x9d\xff\x5e\x8f\x0f\x95\x63\x5f\x61\xf6\x5b\xb7\xf5\x20\xf9\x31\xb5\xb5\xef\x4b\x32\x94\xe4\x72\x2d\x5b\x94\x6c\xf7\xb8\x48\x6d\xcd\x75\xce\x55\x24\x4d\xe2\x85\x48\xbf\x63\xfa\xf9\x39\xdd\x79\x51\xa7\xcb\xcf\xed\x85\xae\xd3\xe5\x67\x7f\xfd\xa3\x5f\x03\x34\xaf\xf9\x52\xfd\x5e\x63\x61\x5b\xeb\x16\x93\xa3\xa4\x34\x35\xd7\x4d\xb8\xa3\x4c\xe2\x84\x73\x5d\x4f\x78\x96\x21\xb4\x22\xed\xe2\xa0\x05\x6f\x57\x46\x53\x1a\xa8\xc5\x60\xdf\xfa\xad\xcd\x53\x12\x75\xc5\xd7\x04\x39\x82\xef\x5c\xeb\x5b\x0b\xef\xbd\x71\xa8\xd7\x03\xd2\x1b\xbd\x84\x27\x1d\x23\x39\x10\x2f\xf0\x3a\x6b\x44\xe1\xfd\xa6\x11\x49\x70\x5e\x23\x41\x47\x7f\xf8\xd0\x45\x2e\x07\x36\xf9\x90\x69\x5c\x8c\x01\x2c\x1d\x38\xed\x80\x2d\x6e\xca\x23\xb8\x86\xd1\x46\xca\x5d\xb5\x82\xf6\xc7\x3c\x88\xbc\xef\xa5\x25\xbe\xb9\x66\xd0\x52\xd2\xe4\x3c\xe1\xd0\x1e\x4b\x36\x86\x76\x00\x41\xd1\xc7\xf8\x2e\x92\xb4\x81\xba\x95\x33\x82\x2e\x48\xe6\x11\x5a\x01\xdc\xdf\xbe\x39\xfc\xe3\xb4\xf9\x86\x7a\x37\x68\x5d\x71\x61\x40\xc4\xef\x1c\x46\xb4\x15\x57\x68\x02\x66\x56\x4f\x96\xc2\xca\x79\x3f\x65\x92\x5e\xc7\x14\xdb\xf8\x5b\x5e\xaf\x5a\x12\xf3\x48\x9d\x87\x6b\xd9\x8a\x4b\xbd\xe1\x77\x20\x97\x5e\x34\xec\x06\xbc\xb7\xdd\xc8\x49\x02\x5b\xc5\x25\xbd\x68\xd2\xdf\xbb\x85\x66\x39\x67\x4e\x56\xe6\xd5\x03\xb9\x99\x42\xcd\xa5\x5c\xdd\xb8\xd6\x60\x7a\x84\xde\xc7\x4f\x50\x5b\x81\x31\xa6\x3c\x48\x64\xe8\xc6\xf0\xc4\x30\xb3\x67\x2a\xa1\x3f\xc1\x2f\x19\x16\x80\x45\xff\x5e\xaf\x17\x46\x3c\x8a\x2a\xf1\x89\x9c\xee\x1b\x3e\x5b\xcf\xfb\x1d\xba\x87\xb1\xeb\xf9\xe7\x4f\xb1\xc7\x39\xff\x0f\x86\xcd\xdd\x49\xe4\x17\x7c\xaf\x41\x3f\x41\x17\xe4\x4a\xb3\x32\x0a\x3c\x06\xe6\x66\x5b\xd6\x24\x52\xe0\x21\x1d\xa8\xa3\x23\x56\x8f\x21\x36\xba\x10\xb3\xa4\xa2\xa6\xd1\x85\x37\xb5\xd9\x24\x6d\x34\x54\x4e\x69\x86\xee\x0c\x99\x50\xea\xf8\x3d\xb9\xa9\xcc\x3a\xb7\x7a\x20\x5d\x7c\x69\x03\x79\xca\x86\xbf\x1d\xe7\x17\xde\x32\xb1\xc1\x5f\x8b\x34\x2f\xc2\x3b\xef\x2c\x33\x53\xad\xe5\x49\xb3\xcc\xfb\xc8\xdc\xb5\x8b\x9b\x9b\x38\xf2\x2d\x58\xa7\x9b\xc8\x89\x48\xfc\x06\x1e\xba\x5e\x6f\x4e\xe3\x8b\x4a\xab\x6f\xa5\xcc\x8c\x0e\x8c\xf5\x7a\xe3\x18\x05\x59\x5b\x1e\x8d\x73\x28\xe0\xae\xc8\x73\x71\x82\xce\xeb\xf5\xe6\x62\xe4\x2a\xc1\x5f\x0d\xf9\x33\x46\xb2\x75\xf5\x67\x50\x54\x45\x24\x8e\xeb\xe0\xc3\xb4\xd8\xa5\x37\x16\xbb\xd3\x5c\xc2\xa6\xa4\x24\xb3\xb3\x9a\x2b\x0d\x8a\x06\x11\x34\x3a\xb8\xf7\xf5\xe3\x2f\x4f\xa6\x74\x51\x00\xcb\xe9\x16\xd8\xb0\x75\xc7\x6d\x86\x2c\x0b\x51\xa3\xe4\xde\xeb\x35\x9d\x83\x7b\x8f\x9f\x7c\xf5\xd5\x54\xbd\x7c\xf1\x35\x06\x70\xa3\xcd\x9d\xcb\x1f\x15\x6e\x43\x6c\xab\xc2\x0e\x83\x73\x5d\x61\x8d\x07\xf4\xdf\x56\x05\x7a\x82\xe9\x1a\xb1\x94\xd2\xab\x34\x2f\x48\x51\x6c\xc7\xa8\xb8\x1f\x28\xb0\x20\x00\xd5\x86\x47\x84\xc8\x2a\xa3\xfd\xdd\xb8\x46\xcd\x87\xdc\x8d\x51\x87\xe9\xf8\x50\x25\x93\x49\x12\x92\x16\xbc\xa0\x9b\x36\xc4\xd8\x14\x39\xc8\xca\xc2\x9b\x3b\xe8\x29\x11\xef\x33\xbc\xa2\x30\x0f\x35\xfc\x8c\x20\x1c\x9f\x38\x50\xcd\xa5\x26\xde\xfb\x6d\x82\x7f\x14\x26\xe2\xd9\x51\x9c\x07\xa1\x3e\xf3\x78\xa6\x2b\x63\xeb\x29\x08\x19\xeb\xdc\x82\x76\xc2\x3b\x18\x8c\xa1\xd1\xe7\xd8\x66\x23\x59\xc6\xa6\x1d\xf3\x05\x13\xda\x0c\xf6\x42\x92\x1f\xb7\xa4\x0e\x0e\x06\x18\x41\x16\xb4\xcd\x9b\x30\x9d\x07\xb3\x59\xc7\x24\x07\xf8\xa8\x87\x9d\x65\x10\x62\x0a\xf7\xb6\x6f\xee\x4b\x4e\x35\x2e\x9a\x07\x3b\x0f\xe4\x28\x4c\xd4\x99\x7a\x72\xac\xa6\xea\xd1\xa3\x2f\x81\xd8\x1d\x10\x8e\x55\xaf\xe9\x20\xe0\xdb\x69\xf7\xeb\x8e\xe6\x40\x88\x1b\xc6\xe9\x43\xd0\x8e\x8a\xd1\xae\x04\xf7\x45\x99\xc2\x04\xec\x17\x4d\x3f\x94\x72\x52\x4b\x14\x07\x1b\xfc\x39\xa9\x44\x57\x04\x19\xbd\x9a\x35\x20\x9c\xf0\xf1\x48\x45\x10\x28\x71\xd2\xab\xa7\x9b\x4d\x71\x23\x0c\x7a\xae\x3b\x77\x07\xdc\x84\xb2\x70\x9d\x9a\x56\xe0\x86\xb7\xd0\xf1\xbe\xdc\xa5\x16\x95\xd5\x60\xe0\xb0\x80\x5f\x10\x9a\x71\x77\xa4\xd9\xc4\x99\xd0\x3b\x94\x05\xec\x03\xe4\xbe\x22\x07\xf0\x1b\x24\x55\x84\xeb\xb4\x69\x68\x02\x37\x44\xb2\x41\x71\x90\x57\x3f\x32\x34\x81\xaa\x1f\x6b\x71\xbf\x7f\xdd\x6c\x74\x05\xd9\x56\x1c\x95\x21\x2b\x39\xc1\x3a\xb9\xd2\xee\x8f\x71\x6d\xa0\x18\x2b\xab\xfb\xa4\x2e\xe0\x4c\x1c\x79\x18\xfb\x2a\xb5\x22\x69\x97\x1d\xaf\x52\x1b\x02\xdc\x0f\x42\xb8\x3b\x39\xaa\x30\x7e\x14\xb7\xf9\x1b\x48\x9b\x18\x63\x5d\xea\x1d\xa7\xb7\xa5\xd6\x6d\xbf\x83\x99\x10\x20\x38\x70\xaf\x1f\x1e\x7a\x6c\x41\x09\x16\xd9\x7d\xb7\xa7\x15\xc3\x79\xf2\xfc\xfe\x64\xaa\x60\xe5\xf4\xde\x88\xae\x47\xdc\x09\x24\xdc\xa5\x11\xe3\x24\x39\x40\x8e\x56\x24\x9b\x7c\x49\x5e\x11\xb9\x0d\x44\x7b\xa4\xd0\x9f\x13\xdf\xd4\xc6\x91\xed\x20\xd8\x8f\xc9\xf1\x8e\xfc\x76\x81\x94\x1f\x3a\xf2\x8e\x91\xff\x7e\xf2\x90\xc4\x9f\x01\xa2\xcb\x54\x25\x67\x08\x51\x21\xa5\xac\xc9\x44\xdd\xfb\xe6\xab\x27\x0f\xa7\x8c\xd9\x0c\x2d\x5b\x23\x5c\xb6\xdd\x29\xdd\x5a\x02\xff\x2d\x71\x37\x6d\xd3\x42\x55\xba\xae\x6e\x88\xcd\x06\x9e\x43\xb4\xfb\x51\xaa\x47\x62\xc1\x17\x23\x0a\x15\x42\x13\x62\xd6\x8f\xb2\xce\x8f\xc0\x3d\x27\xdc\x60\xfd\xa6\xf1\x17\x36\x1b\x98\xa1\xa9\x65\x77\x9b\x8a\x9a\x79\x89\x16\x70\xa9\xf4\x67\x3a\x0e\x05\xdc\xa2\x83\x5b\x4f\x90\x97\x81\x61\x11\x77\x51\x69\x76\x03\xe6\x91\xc1\x44\x7c\xa3\xf0\x0a\x74\x3d\xfd\x63\x16\xd4\x98\x7c\x38\x43\x06\x4c\x20\xfe\xe1\xbe\xac\xed\x48\x25\x7f\x3b\xf9\x03\xb0\xa2\x6a\xdb\x00\x5b\x96\x01\x41\x54\x27\x43\x5c\x8d\x3a\x5f\x6b\x5b\xa7\xeb\x0d\x07\x23\xea\x32\x13\x6b\x0c\x99\x87\x81\xd5\x0f\x89\xb1\xc3\x2a\x7f\xe6\xf2\x27\xbe\x57\x08\x5a\x72\xda\x64\x5a\x59\xf7\xc3\xa9\x26\x84\x72\x87\xf7\x29\xc6\x3f\x58\xb1\xbb\x25\xbd\x16\xdb\x1c\x7e\x0b\xc7\x31\x20\xd7\xb8\x0c\x22\x5e\x50\x16\xe0\x63\x89\x5c\x5b\xc3\xba\x36\x50\x09\xb5\x7c\xe4\x0a\x27\xa3\x46\xeb\xd1\x51\xfd\xbf\xad\xc3\xea\xd6\x60\x75\x6c\xd4\xf8\x37\x33\x5b\x21\xb1\xe9\x67\x29\xa7\xf8\x74\xef\x9d\x88\xd6\xb0\x92\xd1\x67\xb6\x1c\x52\xbe\x46\xc8\xaf\x9d\x5a\xaa\xcf\xe9\x46\x98\xc4\xd0\x85\x3d\xad\xed\xdd\x6c\x4f\xd1\xa7\x8e\x56\xc1\xab\x2c\x10\x39\x68\x44\x10\xc4\x18\xba\xd8\x80\x88\xd8\xd7\x35\xf7\xa5\x04\x9b\x45\xab\x6f\x33\x2e\x15\x37\x27\x39\xf3\x9d\x2b\xf9\xfa\xf8\x42\x5d\x90\x09\xff\xae\x12\x87\x6a\xa0\x5a\xad\x02\x43\xf2\x00\x12\xce\x8e\x00\x42\xdc\xc3\x3a\x1c\xaa\xe4\x54\xfd\x6b\x76\x3c\x3e\xa6\x84\x07\x1e\x74\x5c\x7c\x04\x02\xf6\xa2\x54\x42\x1e\x58\x99\x35\xd8\x78\x6c\xfa\x01\xc5\x34\x2f\xdd\xa9\x8b\x2d\x1a\xfb\x16\x2c\x1f\x85\xb2\x94\x8d\x31\x62\x80\x20\xed\x0f\x79\x68\x51\xb1\xc9\x3a\x5f\xeb\x1a\x86\x00\xc8\x15\xa0\xed\x07\x0e\x26\x9c\x0a\x24\xeb\x6f\xdc\x95\x05\xf1\xb0\xf2\xc9\xd8\x89\x97\x1d\x5a\x01\x2f\xb1\x0f\x05\x75\x26\x8d\x52\x60\x77\x04\x34\x17\x9a\xf3\x3b\x22\x23\x05\x56\x60\xbf\xd7\xe0\x8e\xc8\x5e\x86\xf3\xc9\xc3\x84\x67\x64\xd3\x2a\x0d\x98\x24\x20\xa9\x34\xfa\x09\x14\x9c\x8e\x56\xba\x10\x40\x95\xc4\xf3\x73\xa5\xad\xd3\xa2\x08\x92\xb3\xdb\x98\x52\xce\x17\x6b\xf3\x6f\xe5\x9d\xd1\x4f\x48\xb3\x04\x7f\x85\x78\x9d\x13\xf5\x31\x5a\x37\x0a\x0b\xee\x5a\xa0\x7f\x20\xa4\xa0\x77\x5e\x92\x66\x92\x4f\xb0\xaa\xc1\xd9\xec\x53\xac\x2a\x3b\x28\x82\x4f\x14\xc4\xc7\x6f\x6b\x73\x14\x2d\xf9\x41\xcb\x48\x89\xd6\xb7\xa3\x93\x91\x4a\x5e\x99\x80\xf4\x92\xb4\x5d\xaa\x3b\x4c\x2c\x27\xa7\x5e\x6b\x59\x66\x11\xe7\xfa\x9f\xa9\x88\x20\x98\xa3\x53\x3d\xf4\x91\x3e\x48\xb6\x2f\xc1\x30\x80\x43\x32\x52\x07\xb6\xa7\xfd\x5d\xa8\x5f\x23\x1b\x19\x40\xeb\x7a\xf3\x59\x03\x78\xd5\xeb\x19\xd0\x62\x9b\x50\xcd\xa0\x2f\x1a\x89\x4f\x48\x55\x1b\x41\xaf\x08\x43\x1f\xce\x8f\xb0\x02\x5b\x8a\xf6\x91\xfe\x1b\x23\x3c\x14\xac\x09\x05\xf7\x57\x35\xd0\xe2\x04\xfd\x5c\x99\x4d\xba\x74\x4d\x06\xd8\x98\xd4\x92\xba\x4f\x1c\xac\x3b\x75\x38\x61\xa1\xb5\x50\xb5\xbd\xc9\xd7\x4e\x76\xaa\x34\x22\xd3\x78\xe8\xc3\x2e\xed\x0c\x94\xd0\x5d\x4a\xb3\x86\x5c\xe3\xe3\x16\x50\x61\x47\x19\xa0\x0b\xcf\x3b\x12\x76\xb4\x59\x70\x46\x43\xc7\x01\x41\x12\x68\xfc\x4d\x1e\x3c\x93\x89\x8a\xec\x47\x7c\xcd\x20\x6b\x08\x1a\x7d\x7d\x5d\x07\xbb\xbe\xbc\x40\xc9\xf7\xdb\x5d\x68\xee\x4f\xc2\x4c\x9f\x3c\x20\xdd\xa2\x15\xc6\x3a\x88\xc4\xc7\x18\x63\x6a\x6a\xda\x57\x0f\xd4\x91\x02\x80\xf2\x14\xa3\xa2\xd0\x6f\xfa\xf7\xdf\x29\x60\x22\x42\x99\x80\xc2\x8b\xbc\xcc\xac\xc8\x9a\xed\x55\x23\x83\xb5\xce\x72\x08\xdf\x20\x6f\xe7\xd8\x4d\x02\x68\xf3\x35\x45\x60\x73\xa5\x21\xb6\xc9\x00\xf4\x9e\xaf\x73\xdd\xc8\x30\x88\x15\x7b\xd4\x57\x0f\x26\x71\x2c\xf3\xe7\xd9\x27\x81\x99\x76\x9c\xf4\xbc\xe6\x70\x56\x70\x41\x7c\xee\x21\x58\x20\xb3\x9d\xff\x29\x7c\xd3\x83\x0f\x61\x89\x8e\x92\x52\x3f\x24\xee\xd5\x51\xcb\x17\x1d\xde\xc7\x8f\x28\x46\xf4\xfb\xbc\x73\x96\x39\x72\xba\x26\x50\x95\x46\x73\x22\xb0\xa4\x59\xc2\x36\x08\x73\x5c\xf3\xdc\x15\xbf\x20\xb7\x2b\xaa\x70\x8e\x6d\x5c\x34\x81\x38\x41\xbe\x72\x84\x34\x06\xa0\x5a\xea\x3a\x5e\x47\x72\x7a\x24\xad\x47\x9f\xfd\x84\x1a\x6c\xc6\x8c\xd8\x0c\xec\x5d\xc0\x49\x40\x94\x84\x90\xf5\x75\x5e\x77\xa2\xc7\xf6\xe6\x28\xb7\x78\x77\x98\xdb\xdb\xbd\xc6\x4e\x9f\x92\xf3\x08\xdd\xef\x1b\x10\xa3\xc8\xa0\x78\xfc\x98\x4c\xa7\x20\x13\x83\x18\x9c\x82\xd7\x6b\xbc\x51\xfb\xbe\x63\xd8\x95\x78\x65\xfc\xe6\x88\x62\x55\xe9\x21\x4f\x2d\x64\x54\x6a\x3c\xe3\x3c\x6b\xb5\xe0\x19\x3a\xe0\x23\x6a\x01\x46\x73\x59\xe9\xf4\x43\x8c\xe5\x20\x46\x54\x1b\x65\x31\x98\x34\x28\x0e\xa3\x08\x55\x10\xd0\x9a\x07\x8e\xc3\xe1\xe3\xd5\xea\xd8\x50\xd1\x29\x89\x21\x7a\x10\x34\x25\xc6\x56\x7c\x0b\x6e\xad\xa0\x40\x03\xf0\x4c\x5f\xbc\x35\x83\xad\x9d\x8b\xf7\x75\xa3\x47\x20\x96\x84\x70\x07\x9a\x45\x4e\x7b\xd3\x60\x74\x79\x3e\x9b\x7d\x0e\x1e\x54\xf1\x54\xd2\x27\xa3\x93\x2f\x1a\x91\x4f\x45\x23\xb4\x08\xe0\x12\x56\x61\x54\xe9\xd6\x4d\x35\x64\xc6\xc4\x4b\xa9\xd9\x81\xf8\xf7\xed\x6d\x4c\x6c\xa2\x50\xf6\x9d\x5b\xb4\x6d\x99\xa9\x54\xac\x15\x69\xd2\xb3\x2c\x12\x2a\x58\xfa\x06\xd0\x18\xa1\x52\x20\xe7\xe3\x2a\x60\xea\xee\xa1\xa5\xcc\xb0\xc8\xce\x09\x1a\x13\xbf\x70\x02\x43\x63\x71\x98\xa3\x6a\x6f\xdf\x46\x9b\x1c\x4d\xc6\x39\x43\x02\x0d\x8a\x0b\x5e\x30\xe0\x02\xec\xee\x14\xcf\xd9\x95\xae\x2c\xe8\xb1\x10\x6e\x4d\x78\xb6\x21\xfa\xd0\x4a\x7b\xbc\x8f\x30\xb4\xe8\x8a\xe8\x76\x01\x08\x57\x82\x29\xaf\x46\xf0\xdf\x87\x23\x06\x99\x1d\xa9\x7a\x0d\x00\x18\x9c\xf5\x87\xe8\x04\xa3\x40\x86\x3b\x80\xd3\x3c\xfb\x54\xd0\x46\x20\xc4\xb9\x2d\x1f\x86\xb0\xff\xee\x20\x74\x83\x21\x46\x9f\xe9\xab\xd6\x41\x1b\x45\x51\x3f\xde\xfb\x18\x53\x43\x10\xda\x1f\x28\x85\x79\x83\x7c\x8f\x78\x6c\xf9\xc2\x1b\x6f\xfa\x52\x05\xf2\xbd\x4c\x70\x25\x3c\x7e\xe4\xdb\x81\x70\x28\x13\xa6\x0f\x01\xbd\x40\x0e\xfd\xa2\x63\xeb\x74\x83\x53\x55\x98\x1d\x6a\x64\x21\x4a\xc2\xb6\xe9\xcd\x89\xdf\x40\x48\x17\x5c\x23\x28\x22\x8a\xe6\x86\x3e\x18\xc6\x13\x00\xf7\x77\x87\xd3\x68\x4c\x25\xa0\xb1\xc6\xd5\xc6\x7a\xfd\xda\x20\x7a\x19\x62\x20\xd6\x79\x5a\x08\x20\xb6\xda\x14\xba\x4a\x41\xe6\x82\x63\x85\xae\x29\x8c\xeb\xc7\xb0\x4a\x03\xce\xc7\x29\x97\xe9\xf0\x30\xbf\x18\x9e\x8a\x70\x97\xb7\x2b\x5d\xe9\x2f\x2c\x62\xc9\xec\xdc\x26\x42\xf4\x61\x4c\xb8\x83\xf9\x3c\x3d\x8e\x0e\x62\x2e\xbb\x7b\xb7\x1f\x67\x28\xf3\x92\xfa\xb0\x1d\xea\xe5\x17\x0e\x96\x59\x5f\x75\xb6\x87\x10\x79\xf9\x62\x01\xf9\x17\x2b\xb3\xe6\x96\x3d\x05\x84\xaa\xfc\x99\xfb\xf7\xc3\x6f\xee\x42\xec\x73\xa5\x3f\x38\xe2\x04\xb8\x4e\x61\xe9\xe1\x35\x4c\xfb\x4c\xc9\x95\x80\xb6\x98\x5e\x73\x7b\x40\xd7\x65\xa9\xe4\x41\xfc\xfe\x34\x76\x2f\x2a\x89\x28\x8e\xdc\x55\xf7\x01\x00\x35\x72\x69\x16\x87\xef\x36\x8c\xb7\x70\x9e\x95\x27\x21\x7e\x3b\x91\xf5\x08\x9b\xc6\x42\x66\x5b\x6f\xb6\xb5\x95\xf3\xe2\x8d\xb3\x50\x42\xe4\x6d\x61\x97\x64\xe4\xc2\xd6\x9b\x60\x60\x6a\x4d\x96\xff\x0a\xcc\x01\x45\xf4\x71\x6f\x10\x10\x0b\xd4\x29\xa0\xb4\xde\x6c\xf9\xbb\x9f\x9c\x45\xf8\xaa\xa3\xbf\xc1\x98\xd6\x38\x23\x34\x9d\xa1\xa0\x77\xa4\x66\x3e\xe5\x2a\xf2\xce\xc6\x2d\x95\x69\xb7\x95\xf4\xbf\xb6\xf9\x55\x5a\x80\xff\x64\x14\x01\xd9\x6c\xc0\x8d\x19\x22\x05\x65\x4b\x5d\x9d\xc7\x49\xe6\x35\xa5\xef\x09\x94\x94\xbc\xb4\x70\x2e\x41\x3f\x5e\xeb\x8a\xe4\x07\xa9\x3c\xc3\xff\x49\xe0\x94\x8e\x0f\xc0\x96\xed\xe8\x91\x3f\xab\x3c\x1f\xa7\xe1\xa5\xa0\xc0\x1b\x04\x98\xc9\x8f\x8e\x46\xea\x78\x14\x96\x33\x94\xfe\x18\x46\x10\x18\x89\x5e\xdb\x3d\xbd\xe9\x22\x87\x94\xd9\xf7\x58\x0d\xd8\xaa\x58\xca\xd9\x1e\xf6\xe3\xf9\x8d\x46\xe3\xd5\xfd\xbf\x96\x60\x63\x27\x64\x8d\xb4\xd2\x98\x02\x1b\xf7\xd3\xe5\xf6\x12\xac\x32\x28\x52\xc7\x4c\x00\xe6\x18\x16\xed\xdf\xbf\xaf\xec\x79\x82\x11\xc6\xc9\x85\x98\x33\x71\x1d\xb8\x82\x83\xb6\xdb\x5c\x2c\x27\x0b\x3d\xc0\x67\xd5\x0e\x32\xbf\xd2\x71\x18\x02\xa5\x31\xb1\x18\xd5\x92\x40\x70\x67\x85\xce\x66\x5e\x23\x05\x7d\x3f\x53\x5a\x4d\x41\x81\x13\x6e\x57\xa4\x6d\x6e\xdf\xfb\xd3\x52\x9b\x88\xac\xf8\xa0\x86\xc6\x3a\x49\x53\xd0\xaf\x9b\x8c\x82\x11\xaf\x82\xc4\x9d\xd7\x70\x29\xa0\xab\x30\xdd\xcf\xd4\xa8\xb8\x63\x5a\xfd\x27\x7d\x5a\x82\x98\x07\xd3\x30\x13\x00\xb3\xe8\x58\x0f\x53\x64\x21\x8c\x8d\x12\x93\x54\xc0\xdb\x20\xfe\x19\x43\x63\x03\xf0\x33\x60\x5b\xcf\x86\xef\xce\x06\x67\xb3\xfb\xb7\x7f\x1b\xde\xbe\x3b\xc3\xd7\x25\x84\x4e\xc5\x06\x22\x04\x2a\xe1\xa8\x23\xac\xcf\x81\xfb\xfd\x56\x84\xdd\xbf\xfb\x10\x5b\xbd\x99\xaa\x84\x55\x85\xc9\x88\x9e\x71\x07\x5b\x81\x31\xc0\x3b\x05\xc4\x0c\x39\x96\xf1\xc6\x6c\x06\x94\x4c\x23\xa4\x17\x4b\xcb\xcc\x80\x69\x07\x1d\xc1\xa0\xdb\x80\x39\x08\x3b\xa3\x5e\xe5\xee\x2c\x73\x83\x01\x59\x31\x64\x33\x0c\x58\x1d\x3e\xb7\x0c\x18\x70\x9d\x50\x1f\x1c\x22\xd9\xee\x09\x11\x78\x2d\x05\x28\x40\xd7\xc2\x74\x78\x7b\x6c\x17\x92\xed\x00\x71\x29\xb0\x68\x22\x41\x4e\x04\xbe\x1c\x43\x1c\x78\xe5\x64\xe0\x29\xe9\x7b\xaf\x20\xb8\xca\x5c\xe9\x6a\x57\xe5\x75\xad\xcb\xc0\x81\x3e\x33\x65\x9d\xe6\x25\x06\x6a\x92\x27\x00\xd9\xfe\x3d\xf0\x15\x98\x64\x20\xc2\x3f\xb5\xcf\xc2\x54\xdb\x31\x8e\xc0\x9b\xa9\x50\xf7\x00\x36\xba\x97\xe5\xaf\x50\x55\xd6\xb8\x7f\x5f\xe1\x16\x22\xe9\x13\x4c\x6e\x51\x9d\xe7\xf8\xfd\x46\xa5\x83\xa8\xcd\xe0\xd4\x80\xbd\x8d\xe1\xcc\xdc\xd1\x38\x18\x34\x2c\x5d\x94\x7a\x39\xa0\x82\x7d\x12\x8f\x21\x19\x52\x5b\x51\x87\xd1\x92\x4c\x8c\x2e\x79\xcb\xe5\x8b\x45\x5b\xb6\x25\xf1\xd2\xe2\xea\x6d\x12\x65\x2a\xe9\x50\xe3\x5d\x8f\x40\x6a\xae\x23\x96\xb8\xa9\xb5\xa0\x06\x6e\x6f\x55\x34\x0b\xf2\xf7\x73\x36\x70\x07\xa5\xb7\xdf\xbf\x18\x56\x57\xe9\xb5\x5e\x5f\x6a\xf2\xb4\xd2\x1e\x96\x16\xc3\xed\x52\x6b\xcd\xdc\xdd\x75\x19\x32\xcd\x79\x2d\xd0\xc6\x5e\x61\x18\x1d\xad\xb5\x58\xfd\x0e\x88\x9b\x66\x21\x8a\xec\x6c\x3c\x1e\x90\x21\xa7\xf1\xd8\x9d\x30\xb1\x43\xd5\x8c\x40\x02\xce\xa3\x5d\x4c\x17\x38\x1a\x15\xdc\x7d\xed\x47\x0a\x48\x29\x6e\x4b\x99\x0a\x33\xdf\x90\x6b\x36\xc5\x17\x88\xb9\xf3\x8e\x2f\x01\xd6\x2d\x58\xa3\xa1\x4f\x60\x90\x06\x9a\x2d\x3f\x2d\x55\xf3\x71\xab\xcf\x85\x8b\x81\xf7\xa7\x71\xff\xfc\x37\x1b\x96\x07\x20\xea\xad\x77\x5c\xb0\x08\x97\x1d\xce\x51\x87\xe7\x02\x9e\x4e\xce\xc2\x24\xbf\x28\x6d\x24\xbf\x52\x2c\x86\xe0\x0c\x20\x73\x4a\x5d\xe5\xfa\x4a\x23\x76\x02\x66\xd8\xa5\xcc\x08\x1e\x07\x1f\x9c\x52\x04\x07\x44\x48\x3d\x88\xaa\x10\xc1\x2c\x45\xba\x95\x16\xe5\x09\x76\x53\xa2\xd1\xee\x8a\x1d\xc4\x53\xe4\xee\xd1\x5d\x8a\x0e\x16\x98\x55\x40\x5a\xe3\x9b\x22\xbd\x6f\xda\x33\x5a\xde\x23\x11\x33\x9c\xc0\xa8\x04\x67\xd7\x3e\x7b\x04\x08\xb4\xcf\x84\xd5\xef\xf5\xba\xb7\x67\xc7\xb0\xdb\x03\x8e\xa0\xd8\x64\x44\x59\xa1\xd3\xf2\x68\xbb\x11\xb1\x5d\x8b\xbc\xd2\x96\x16\x20\xcc\xf5\xb0\xdf\x70\xcb\x6c\x7e\x13\x43\xff\x6b\x53\xe9\xf6\x81\x77\xef\xf7\x76\x5e\x1c\xc1\xe0\x9b\xee\xe8\x16\x6c\xc6\xd4\xc9\x6e\x5a\x44\x66\xb5\x5a\x10\xf6\x13\x48\x8f\x6b\xb7\x15\x67\xd4\xd1\x47\x5b\xcb\xb6\x08\xbe\x1d\x33\xa3\x6d\xf9\x45\xed\xf6\x96\xde\x29\x70\xf5\xb0\x94\xdb\x98\x8c\xbd\x4d\xba\xd3\xbc\xf5\x9a\x54\x84\xbf\x6e\x5d\xa7\x65\xec\x3c\xc6\xeb\xba\x8b\x77\xb1\x05\xc8\x62\x4e\xbb\x13\xb3\x0c\x5b\xbb\x1a\x74\x1c\x4f\xe1\xd7\xed\xf6\x01\xba\xb7\x80\x77\x5a\x58\x2c\xc0\xe3\x68\xa9\x3f\xfb\xcd\x20\xa7\xb0\x0f\x82\xbf\x95\x24\xa3\x92\x0a\x06\xf5\xac\x78\xda\xd1\x14\xa9\xc2\x44\x4f\xbb\x76\x5d\x4c\x5f\x63\x68\x0a\xe1\x8b\x56\xe8\x25\xe5\x50\xc5\x13\x1d\x78\x1f\x06\xe3\xf2\xbc\x8f\x38\x1a\x74\xfa\xfd\xa9\xea\x62\xef\x22\x34\x20\x4b\x60\x61\x49\x03\xaa\x67\xa4\x22\x34\x9f\x3d\xcf\xf5\x7c\xdd\xf9\xfc\xfa\x28\xbc\x49\x30\xe1\x64\x8c\xef\xc3\x9f\x15\x2d\xdf\x86\x2a\x13\x5f\x45\x60\xdb\x30\xe8\x0b\xb5\x1a\x05\xd2\x8a\xd8\x55\x06\x19\x23\x3b\x6b\x5a\xf0\xeb\x53\x41\xa3\x6a\x8a\x78\xf9\x28\xd9\x47\x62\x26\xc0\xc4\xf6\x85\xf5\x60\xbc\xa0\xd2\x4b\xbd\x8d\x77\x1f\x8b\xc8\x08\x47\x92\x3d\x14\xe0\xaf\xd2\xab\xab\x69\xda\xf0\xef\x90\x83\x3b\x0d\x18\xb5\xb1\x27\x2e\x97\x66\xf8\xcf\x7f\xbc\x00\xf4\xcf\x1e\xbb\x40\x46\x0d\xf0\xa8\xbe\xcb\xcb\x8c\xb7\x45\x9d\x2e\xd5\x0a\x32\x38\x7b\x7b\x7c\x57\x86\x86\xce\xd1\x58\x9f\x86\xe1\xed\x0a\x72\xbb\xb0\x31\x1d\x74\x5a\x99\x4e\x0b\x72\x24\x84\x1e\xab\xd8\xb5\xd9\xee\x1d\x0f\x09\x0f\xb4\x89\xdc\x12\xad\x34\xe0\xea\xfa\x4c\x19\xf0\xfb\xf6\x36\x3c\x58\xea\x9a\xf2\x66\xd8\xef\x6e\xde\xa6\x4b\x47\x1f\x06\x2a\x71\xe5\x12\x35\x3c\x3f\xbe\x88\x4a\xf3\x1f\x54\xe5\x54\xd8\x6c\x51\x96\xb6\x3a\x4e\x05\xfc\x47\x03\xbe\x0e\x49\x20\x27\x24\xda\x9b\xc0\x43\x20\xe4\x89\x1a\x64\x9a\x9f\xa9\x04\xfe\xa0\x50\x23\x9e\x0c\x2c\xf3\x0c\x51\xc7\x44\x84\x15\x56\x25\x34\x32\x84\xb3\x90\x25\x4f\xa5\x52\x81\x0a\xdb\x6a\x1e\x7b\x1c\x8a\x68\x0e\x0c\xba\xac\x28\x57\x50\x51\xa8\x4b\x27\xe8\xb3\x2a\x87\x1a\x30\x25\x01\x1a\xfb\xdf\xe0\xee\x00\x02\xec\x7c\x95\x96\xcb\x38\xae\xe2\x8f\x91\xca\x2d\xba\x9a\x04\xa5\x04\x85\x4b\xe1\x63\xc0\xf9\xc6\xb6\x84\xe3\xc4\xed\xad\x9a\xb8\x0f\xe9\xec\x96\xbd\x49\x38\xf3\x42\xbb\xf0\xb0\xa1\xa6\xa3\x13\x8a\xc8\x20\xaa\xd0\xe9\x07\x01\x28\xfa\xd7\x46\x82\xd0\x0c\xa1\x69\xb2\x76\x06\x68\x53\xa9\xdc\x83\x2d\x78\xff\x3e\x37\xb8\x49\x9d\xb8\xff\x0a\x62\xa4\x82\xce\xc2\x15\x1a\xa3\x53\xea\xb3\x55\x5e\x64\x3c\x20\xa1\xec\x10\xdf\x8b\x62\x93\x9b\x1f\xf5\xbb\xad\x11\x6f\x15\xa3\xdd\x78\x8f\x74\xf2\x72\xf1\xdd\x3d\x90\x2b\xc3\xaa\x2f\x66\xfc\xd5\xc3\xe3\xe3\x51\x50\x48\xc8\xde\x49\x4d\x88\xf7\x92\xf8\x15\xb3\x3f\xe8\xaa\xa6\x14\x12\x4e\x8e\x76\xf3\x61\x16\xe4\xf2\x0b\xa3\x55\xee\xa6\x9a\xe7\xd5\x7c\xbb\xbe\x02\x40\x15\xb7\x2e\x5f\xa9\xcb\xed\xd2\xe7\xf5\x03\xba\x91\x56\xb9\xd5\x96\x32\xff\xa8\x4b\x47\x5b\x01\x0c\x27\xb7\xe8\xb3\x3b\xb8\xf7\xf0\xeb\xe3\x6f\x80\xde\xde\x7b\xf4\xe5\xd7\x4f\x86\x58\x1d\x26\x57\x76\x83\x67\x17\x03\xe3\xc7\x60\x45\xc3\x8e\xd0\xfd\x8b\x38\x08\x4d\xb0\x03\x9e\x11\x3c\x80\xb4\x3e\x8d\x73\x87\xfb\x07\xf0\x08\x4e\xda\x81\x52\x51\x1e\xea\xeb\x55\xe5\xb9\x96\x11\x26\x60\x7b\xfc\xf0\xc9\xf1\x54\xbd\x84\x0c\x14\xba\x56\x2f\xae\x37\x85\xa9\x74\x85\xe1\xe2\x1f\xb4\xde\x38\x0e\xb2\xd4\x04\x11\x9b\x16\xf9\x15\x5b\x6c\x33\x40\xf2\x46\x54\x18\x53\xaa\x2d\x74\xa3\xdf\xbb\x5e\x55\xaf\xcb\x5f\xe1\x07\xbb\x76\x11\x72\xdb\x53\xf0\x18\xf9\x1d\xf3\x90\xaa\xb3\xe6\x28\xbd\xff\x99\x3b\xf2\xec\x8d\x28\x3c\xcf\x51\x39\x4e\x38\xef\xee\x20\xc9\xd1\xf0\xac\xc8\x67\x84\xa3\x2e\x67\xc6\x5d\xa0\x2a\xc0\x0f\x5e\xaf\xaa\x97\x19\x19\xa2\x26\x13\xf5\xbd\x87\xc2\x75\x9b\x03\x2d\x44\xd7\xab\x4a\x24\x07\xc1\x87\x6f\xea\xb4\xcc\xd2\x2a\xfb\xfd\x87\x5f\xb0\xef\xac\x46\x24\x42\x5d\xea\x1d\x8f\xf9\xf7\x9f\x7e\xfc\xa1\xae\x37\xe4\x23\x88\xc9\x85\xa3\x8c\x4e\x60\x34\x6c\xb4\x4f\x13\xf5\xe9\xd6\xa3\x19\x1d\xa8\xe4\xa7\xdc\xdd\x57\x66\x51\xc3\x77\xdf\xbe\xfd\x99\xc0\x49\xdb\x5f\x8c\x31\xad\xd8\x2a\x49\x71\xab\x93\x89\x1a\xc0\xee\xcf\xad\xb2\x75\x0e\x58\x43\x8e\x32\x93\xea\x5f\xa2\x79\xba\x45\x71\x93\xbd\x4b\x2b\xc8\xd7\xb5\x49\xeb\xfc\x32\x2f\xf2\xfa\x66\xd8\xef\xc2\xdc\xbf\x5e\x55\x7b\x37\x04\x24\x30\xf3\x43\x50\x8b\x34\x2f\xf0\x8b\x9c\x13\x13\x72\x90\xe5\x8e\x0a\x03\x86\xae\xeb\x79\x3c\xbf\x48\x5e\xbf\x56\x03\x4c\xbb\xc9\xc3\xc2\x84\x82\x8b\xbc\xd0\x76\x38\x82\x46\xac\x71\x3b\x98\x63\xbb\xe2\x7e\xc0\x59\xa7\x3c\xbc\x21\xc6\x4b\x3d\x50\x4f\x33\x8e\x69\x29\x6e\x9a\x1f\x26\x1b\x89\xcf\xf7\x8d\x1d\x99\xbc\x7c\xf1\x44\x59\x03\xb5\xd9\xca\x9a\xba\xdd\x07\x1b\x74\x4c\x29\xd0\xba\x73\x99\x23\xd8\x3d\xe1\x8c\x82\x3f\x46\xc7\xde\xbb\xbd\x6d\x6f\x19\x58\xf0\x29\x3a\xeb\xd0\x05\x8a\xc9\x4b\xf8\x1a\x1d\xf9\x81\x5b\x6a\xac\x39\x1a\x8e\x5f\x6e\x7d\x32\x28\x2e\x31\xf2\xc4\x6e\x37\xc0\x54\xe1\x0a\xd5\xb9\xb6\x7d\x01\x45\xee\x16\x5b\xc0\x29\xfb\x84\x05\xf4\x93\x2a\x8f\x60\xd4\x08\xc4\x77\x70\x70\xbd\xaa\xd0\x62\xec\xb8\x68\xf8\x89\xfe\xae\x89\x63\xd6\x9e\x55\x3a\x43\xc3\xa7\x4d\x88\x02\xa8\x21\xc2\x5d\x7f\x1c\x0e\x3a\x93\x3c\x5c\xaf\x2a\x0c\x14\x93\x5b\xde\x33\x83\x39\x2a\xe2\x68\x66\x60\x15\x45\xca\xd3\xeb\x55\xd5\x97\x1e\xdc\xd4\x61\xf8\x00\x5d\xf5\x9d\xfc\x68\x8b\xa5\xf6\x60\x76\xcc\x67\x62\x7e\x18\x32\x7f\xe4\x0b\x9e\x47\xb7\xdd\x57\x95\xd9\x2e\x57\x8d\x15\x11\x31\x2e\x92\x23\xbd\xbd\x6d\x76\xcd\xcd\x9b\xe7\x42\xa4\x3a\x37\xca\xed\xce\x78\xf4\x31\x27\xb9\x62\x27\x47\x1f\xe5\x1a\xd9\x6f\xfe\xa1\x6b\x8a\x0a\x22\x58\x2f\xfc\x00\x72\x6b\x23\x95\x73\xf0\x33\x1e\x71\x9a\xf9\xd3\x50\xff\xf5\x86\x7c\x20\xac\x99\x7f\xd0\xb5\x7f\xfe\x73\x0a\xe9\xf4\x30\xfe\x8f\x91\x66\x47\x6a\xa9\x4b\x5d\x11\x96\x72\x61\x96\x79\xa9\x36\x66\xb3\xdd\xb8\xab\xe6\xf5\x46\x57\xa9\xbb\x7a\x9f\x7c\xf5\x78\x28\x58\x39\x3b\xe6\xea\x82\x95\xb8\x5e\x55\x63\xb3\xd1\x25\x07\x3b\x8d\x48\x35\xcd\x7e\xa8\x23\x51\xcd\xfd\xcd\xc8\xb6\xfb\x4c\x46\x9f\x6a\x4f\x80\x05\xf9\x21\x92\x19\x0d\x9d\xbe\xc9\x2d\x31\xf2\x6f\x10\x43\xb8\x5e\x55\x91\xd3\x5c\xaf\xd7\xf0\x43\xef\x2a\xe0\x7a\x85\xbe\xcc\x33\x59\x42\x24\x23\x13\x0c\x53\x58\x11\x02\x7b\x52\xeb\x7c\x4d\x20\x27\x31\xa8\x17\xf7\xc9\x3b\xb1\xdd\xbf\xaf\x60\xfc\x0d\x94\xa8\xe6\x74\x37\x5e\x47\x4d\x74\x4c\xcf\xef\x47\xbf\x70\xa6\x8f\xa3\xdf\x9c\x4c\x26\x00\xa9\x98\x8c\x75\x45\xa0\x5a\xb0\xaa\x03\x6c\x34\x44\xbd\x21\x79\x26\xb9\x01\x22\xfe\x0a\x70\xf0\x4c\x39\x98\x68\x32\x51\xe9\x87\x1c\x52\x6a\xa6\xea\x7d\xbe\xb4\xe9\x4e\x6d\xb6\x7f\xfe\xe9\xf6\xef\x4e\x2b\x8b\x1e\xb6\xa5\xbe\xd2\x15\x84\xbe\xe5\x9c\xa1\xc6\x6e\x2b\x82\x59\x01\xbc\x9d\x1c\x09\x3e\xea\xd1\xe0\xbd\x06\x1e\x28\x55\x1b\x5d\x1d\xf1\xb5\x73\x99\xda\xdc\x2a\x53\x81\x9b\xb5\x42\x3d\x96\xd7\x6c\x0c\xa3\xd1\xd9\x74\xad\xdb\x83\xdb\x01\x87\x45\x32\x00\x79\xd4\xe6\x0b\xef\x93\xcf\xdb\x67\x2c\xd6\xaa\x41\x20\xee\xdf\x57\x07\x1c\x8b\x90\x34\xa7\x39\x32\x9d\xfa\x88\x85\x76\x31\x54\x6d\xc6\x04\x29\x69\xaf\xe2\x2b\xb8\xdd\x4a\x44\x02\x51\x75\x75\x33\x99\xfb\x68\xc2\x4e\x21\xdb\x6d\xe7\xef\xf3\x4a\x2f\xcc\xb5\xfa\x12\x9b\x91\xf6\x58\xb1\xe9\x57\x6d\xe4\x37\xb7\xcf\x3a\x83\x2f\xda\xa1\x17\x72\xf3\x33\x27\xf4\x07\x72\x42\xbe\xf3\xcf\x8d\x72\xe4\xb0\x85\x3e\xe6\x05\x81\x75\x7a\xa3\xaa\x34\x07\xdd\x4a\x94\x12\x34\x9f\xaf\x80\x55\x98\xd7\x5b\xc7\x18\xf8\x5a\x48\x17\x81\x13\x10\x97\x84\x1a\x58\x83\xde\xff\x3c\x3d\x2b\x5d\x91\x01\x9d\xc6\xe4\x6e\xc8\x41\x47\x94\x17\xc5\x24\xde\xde\x52\xa4\xb4\x20\xad\x3f\xe6\xb6\x76\xe4\xb2\x1f\xc9\x4e\x9f\x16\x80\x51\x97\x81\x70\x5e\x3c\xb1\x02\xa4\xa3\x69\x18\x97\x10\xaf\xf2\x79\x78\x72\xbd\x8e\xa4\x54\x5e\x5d\x34\xd5\x87\x69\xb3\x8d\x54\xaa\x92\x7f\xf0\x95\x31\x9f\xa9\xbb\x4d\x48\xfa\x2a\x75\x0d\xbe\x48\xe8\x4c\x6f\xe6\x60\xc7\xce\x42\x05\x08\x93\x9e\x4c\x56\xba\xd8\x2c\xb6\xc5\xf8\x43\x69\x2e\xed\x51\xe6\x98\x85\xf1\xdc\xac\x27\x60\xc9\x1b\x6f\x56\x9b\xc9\x33\xb3\xde\x98\x52\x97\xf5\x1f\x78\x1f\xea\xec\x0f\xc7\x6c\x6e\x2b\xfd\xc7\xdc\x64\x7a\xfa\xc7\xf1\xf5\x93\xe3\xe3\x47\xc7\x27\x27\x27\x7f\x0c\x5e\xbd\xf9\xe3\xc5\x2f\xbf\xbc\xfe\xe5\x8f\x57\xaf\xdf\xfe\xf1\xf4\xff\x3c\x7d\xf9\xe3\xd3\xef\x7e\x7c\x31\x8c\x1c\x08\x78\xf8\x10\x41\x6b\x89\x80\xa0\xc9\x01\x6d\xb9\x21\x20\x19\xdc\xea\x02\xc8\x47\xaf\x95\x2d\x06\xb8\x1d\xa1\x94\x70\x9b\x42\x46\x72\xcc\x66\xea\x51\xac\x69\x40\x5a\xee\x38\x8a\x79\x0c\x84\xd6\xdc\x0d\x6d\xf1\x9c\xf7\xbe\x93\xcb\x41\xd8\x4b\x2d\x3b\xfa\xa7\xe5\xcd\x9a\x53\x53\xfa\x5e\x12\x1e\x56\xe4\xa5\x02\x14\xbf\x4b\x67\xe1\x8d\xfa\x66\x23\xfc\x56\xa0\x9d\x96\x90\x18\xb5\xc8\x01\xaf\xb1\x30\x47\xdf\x96\x3e\x30\x1f\xfb\xe1\x2f\x39\x22\x9f\x58\xa9\x8c\xb4\x0d\x0d\x8d\x4f\xf4\xcd\x10\xfd\x54\xab\x75\x5a\xc2\x59\x6e\xde\x86\xb2\xfb\x72\x4d\x0e\x68\x4d\xe4\x10\x5c\x11\x1f\x18\xd5\xd5\xe1\x98\xab\x90\x98\x43\x40\x06\x02\x50\x50\x7c\xd6\x02\xd2\xa5\x2b\xd6\x89\x03\x1a\x7d\x31\x38\x2b\x47\xd8\x98\x70\x54\xa9\x11\x81\x35\x2f\x36\x06\xb9\x56\x61\x92\xba\xe0\x00\x42\x58\x13\xd1\x6c\xac\x41\x3e\xb9\x5e\x17\x4d\xed\xa5\x9a\x3c\x50\xf7\x1e\x7d\xf3\xf8\x09\x67\xb6\xec\xb5\xfb\x35\xa6\x8e\xac\x8b\x68\x9e\xa2\x7e\xfc\xe6\x08\x00\x91\x65\x47\x2e\x2e\xf3\x32\xad\x6e\x28\x1f\xc7\xcb\x17\x5f\x1d\x7d\x83\xfa\x8a\x76\xce\xe6\xa8\x19\x30\xb7\xdc\x38\x61\x56\xaf\x37\x35\xbb\xb1\x59\x1b\xe7\x4c\x1a\xdc\x3b\x39\x79\xf4\xf0\xab\x61\xa8\x1a\x79\x09\x45\x7d\x27\xac\x63\x39\x8b\x01\x9d\x8a\xd6\x39\xce\xdf\xbc\x67\x84\x0d\x4a\x79\x57\xda\x69\x59\x4d\xc0\xfd\x80\x91\x2a\xdd\x16\xf5\x4d\x37\xaf\xb4\x7f\x38\x11\x06\x55\xd8\x7c\x9f\x39\x10\x72\xf1\x0e\x4e\x2c\xa0\x55\xff\x4d\x5f\x7e\xc0\x3c\xd3\xc0\xf5\x94\xca\xcd\xf8\x4d\x13\x12\xac\xe3\xfb\x49\xb2\x7f\x1b\x90\xeb\x6f\x8c\x13\x16\x84\xd8\x4b\xbd\x4a\xaf\x72\x53\xd9\xb8\xd6\xcb\x45\xa4\xe3\xc8\x2d\xe9\x03\xa4\xe5\x0d\xbd\x9c\x28\x9b\x5a\xca\xe1\x84\x51\x33\x03\x46\x0d\x62\xf8\x01\xb8\x8f\x91\x45\x5b\xea\xda\x91\x50\x04\xae\x04\xcb\x25\x61\x70\x5f\x02\x1e\x85\x8e\x1a\x72\x9c\x63\x66\xc8\x27\x9c\x1d\xbc\xbc\x56\x03\x0c\x52\x76\xd8\x38\x62\x84\x71\x86\x8c\x80\xd0\x09\x1c\x74\x59\x5c\xe2\x79\x95\x91\x33\xb8\x5f\xcf\x00\xaf\x70\xaa\x1e\x1d\x3f\x3a\x8d\x67\xea\x85\x3a\x52\xf7\x4e\x1e\x3d\x3e\x9e\x2a\x6b\xd6\x1a\xa2\xe5\x7d\x68\xd3\xc9\xc3\x87\x5f\x7a\xe5\x08\x66\x0a\x70\xac\xef\xc3\xe3\x47\x72\x93\x04\x87\x04\x81\xa2\x07\x55\xf7\x74\xee\x61\xd4\x0b\x49\xd1\x1b\x7f\xf8\x0d\xb8\xc0\xb3\xf2\x14\x96\xe3\x85\x3f\x26\xa2\xfd\xbd\x6a\x65\x0f\xaa\x85\xe1\x75\xfb\x5a\xea\x70\x8f\x8c\xf5\xd9\x41\x44\x6e\x5e\x11\x7b\xa0\x29\xa3\x4f\x33\x80\xaa\xed\x86\x4e\x6d\xe1\x1d\x37\x99\xd8\xd3\x7e\xcc\xf1\x93\xdc\xe9\x3f\x85\x28\x08\x18\x2d\xe4\x44\x46\xf7\x76\x6d\x32\xf0\xf4\x07\xe0\x92\x46\x96\xc0\x9e\x54\xb8\x37\xc4\xde\xae\xfb\x6e\xd6\xb8\xef\xdc\xe9\x78\xf9\xe2\x2b\x75\x5f\xbd\x7c\xf1\xf5\xd0\x63\xc7\x43\x7c\xc1\x7c\x85\xd6\x48\xce\x7c\x1f\xaa\xb0\xbb\x48\x46\x1e\xd9\xc5\x8d\x8c\x44\xd8\xd7\x4f\x19\x0d\x1a\x32\x31\x1d\xef\x93\xd6\x89\x69\x98\xa9\xc3\x43\x50\xf6\x46\x4e\xd0\x77\x71\x21\xb1\x82\x94\x78\xa2\xeb\x55\x65\x85\x43\x5e\x33\x7c\xc5\xd7\x74\x03\x46\x95\x29\x62\x47\xa1\x85\x87\xec\x5a\xf1\x26\xed\x52\x62\xc3\xff\xa2\x17\xf1\xdd\xcd\x98\xf7\xa8\x46\x55\xc3\xf1\x96\x4c\x00\xed\x01\xb5\x76\x32\x43\x7b\xd4\x06\xbb\x1f\x22\x3b\xe3\xc1\xf5\x3b\xba\x11\x78\x30\x81\xef\xdf\xd8\x9c\xfb\xd9\xc1\x46\x05\x32\xdc\x10\xfe\xf3\x3e\xc3\xc7\x9e\x54\x8a\x62\xbf\x1e\x8f\x4e\x86\x1d\x20\x8d\xac\xed\x1f\xb2\xc3\xea\xe2\xfa\x95\xd9\x8d\x00\x01\xa4\x7a\x99\x8d\xfa\xbd\x6a\x71\x5d\x53\x3c\xcb\xe4\x9f\x83\xb3\x69\x6d\x96\xcb\x42\xdf\xda\x95\xd9\xdd\xae\xf2\x4c\x0f\xff\x36\xc1\x52\xe5\x76\xad\x66\xa0\xf8\xfa\x45\x2f\x5f\x5c\x6f\x06\x2a\x71\xe5\x07\xe7\x47\x87\x17\xc3\xd9\xed\x70\x00\xae\x52\xa6\xd2\x7f\x6c\x5c\xd1\x43\x95\x0c\x07\xe7\xe9\xd1\x9f\xff\xe3\xe2\xc1\xf0\x6f\xc9\x48\x25\x39\x42\x03\x56\xd5\x16\x3c\x63\xff\xb5\xd5\x5b\xfd\x83\x31\x1f\x2c\x7c\x21\x2d\x73\x4c\x52\x13\xc2\xca\x01\x98\x2d\x43\x0f\x58\xff\x14\x42\x69\x20\x2c\x95\xe2\x68\xfa\x94\x9b\xe8\x3c\x48\x79\x4e\x8e\x6a\x20\xe2\xbb\xb1\xeb\x32\x1b\xa9\x6d\x99\x93\x48\x87\xb1\xad\x98\x03\x95\x0c\xc3\x6f\xdd\xa3\x46\x7d\x2c\xec\xa1\xb8\x60\x22\x08\x8c\x2b\x2a\xe1\xb3\x71\x41\xbb\xe3\xf9\xb6\x62\x94\x17\x0b\xf9\x01\x67\xea\x90\x8a\xdc\xde\x52\x5a\x81\x9e\x9d\xa7\x70\x2c\x4f\xf0\xe7\x3a\xbd\x7e\xc9\x9e\xca\x78\x29\x08\xe8\x42\xec\x01\x2f\xbd\x93\xd2\x67\xea\x10\x21\xb7\x1e\x92\x34\xe0\xc6\x86\x39\x4e\x6b\x7b\xfe\xe5\x45\xe4\xbe\x3b\xb7\xf6\x15\x44\x31\x9f\xc3\xf0\x20\x27\x6f\x82\xe9\xe4\xaf\x13\x89\x1c\xf3\x5b\xa0\x3e\x8e\x56\x6f\x6b\x50\x90\x57\xb1\x13\x14\x76\x09\xbe\x07\x71\x27\xae\x0d\x84\xfe\x95\xf4\x03\xf0\xbb\x61\x3c\x57\xba\xb8\x51\xe9\x66\x53\x99\x6b\xb7\xcc\x1a\x7d\xbd\x53\xc7\xb9\xfc\xa9\x2b\x13\xbe\xb0\x31\x79\x29\x94\xa2\x60\x6e\x45\x02\x48\x2c\x02\xc9\xc8\x37\x23\x8f\x03\xee\xd6\x8f\xc3\x58\x3d\xbe\x73\x5d\xe5\x57\x79\xca\xde\x46\x5b\x4b\x29\x15\x6c\xba\xd6\xd0\x6d\xeb\xbf\xf1\x3d\x9f\xaa\xda\x20\x46\x78\xe5\x58\x1f\xe0\x44\xd4\xdc\x40\xce\x0d\xea\x10\xaf\x63\x98\xd1\x01\x2d\xb6\x2e\xf4\x7a\x44\xdb\x86\x5c\xfe\x6f\x6f\xa1\xb5\xdb\x5b\x75\xc2\x17\x55\x66\xe4\x5d\x41\x71\x25\xb9\xd9\xda\xe0\x9f\xae\xdc\x6c\x38\xd9\x75\x5b\x8f\x54\x66\xb6\x97\x85\xeb\x6e\x9d\x17\x90\x90\x5d\xd7\xea\x01\x70\x24\xab\xbc\x5c\x3e\x08\x4d\xfd\x6a\xb5\x47\x36\x03\x86\x10\x6a\xc2\x8f\x14\xb2\x69\xa2\xa1\x87\x4c\x95\xf3\x79\x9e\x39\x16\xcb\x89\x76\x56\x6b\x85\x9b\x30\xb5\x6a\x5b\x22\x95\x72\x0c\x4d\x81\x00\xe0\x62\x8f\xe2\xbf\xb7\xb7\x2a\x19\x3f\x4e\xa4\x7a\xe3\x69\x06\x31\x94\x40\xed\x37\x1b\xd6\xfd\xf8\xd9\xc2\x7f\x27\x58\x9f\xc9\x24\xeb\xeb\xeb\x9b\x42\x77\x4d\x22\x56\x3a\xc4\x1d\x26\x75\x3c\xe4\xde\x0f\x8d\x45\xd1\x5e\xb0\x8d\x4c\xa5\x5e\xa5\xaf\x70\x73\x89\x63\xe8\x6b\x3f\x2d\x33\x05\x91\x1f\xec\x4c\x57\x18\xb3\x01\xcb\x03\x0c\x2e\x97\x73\x60\x2a\xb5\xd1\xd5\x02\x7c\xd3\x11\xb5\x60\xa7\xbf\xb8\xd2\x18\x30\xba\x4a\x33\xa5\x4b\xb3\x5d\xae\xf8\xbe\x85\xf0\x69\x30\x4f\xbb\x96\xdc\xa1\x18\xf0\xcc\x89\x9e\xa8\x09\x25\xda\x1b\xa2\x67\x02\x97\x3d\x71\x3f\x8f\x8e\x62\x02\x30\x8c\x5c\x46\xb0\x15\x3a\xe2\xee\x9f\x53\xf1\x38\x9a\x6c\xef\x05\xf0\x72\xa1\x52\x75\x38\x9b\x1c\xcd\x54\x6d\x3e\xe8\x32\xca\x7a\x33\xe2\x40\x6a\x83\xc9\x0c\x2b\x5d\xa4\xa4\xf2\x20\x4a\x2c\xda\x47\x72\x83\x84\xe5\xc4\x91\x0e\x5e\xa0\x41\x78\x78\xa8\x4e\xd4\x50\x3d\x80\x6d\x3f\x75\xff\x6d\x39\x99\x42\x5b\x70\x25\x5d\x40\x36\x4c\x48\xc5\xca\x5f\xb3\x64\xc3\xcb\x80\x53\x5b\x55\xa6\x34\x5b\xeb\xb8\x21\x08\xb5\xdf\x96\xf1\xe3\xa6\xb1\xf8\x7b\x77\xaf\xe1\x7d\x29\x78\xa3\xc6\x45\x0a\x97\x5f\xc3\x7d\xef\x23\xb3\x4d\xd4\xc7\x81\xe2\x52\x32\x1a\x43\xc1\x05\xda\xfc\x28\x5c\x17\x76\x10\x66\x0c\xb7\xaf\x8d\xcd\x7d\x90\x76\x15\x9e\x4b\x37\xb3\xf6\x1d\x85\xa1\xac\x45\x48\x9e\x4f\x07\x83\x02\xc8\x80\x66\xdf\xde\xaa\xf3\x0b\x35\x1c\xcf\x4d\x39\x4f\x6b\x59\x80\x32\xf0\xc3\x45\x02\x3a\x3e\x9f\xbc\x86\xd2\x71\xcf\x44\xe3\x94\xa2\xfb\xd4\xfb\x13\x9c\x2a\xac\xf3\xad\xa2\x37\xf8\x1b\x82\x3b\x64\x7c\x3c\x37\x70\x4e\xe5\x2f\x08\x74\xa7\x31\x03\x61\x60\x32\xf2\x90\xf7\x5b\x49\xd2\x31\x13\x6e\xa0\xe7\x50\x28\x4a\x4d\x20\x38\x97\x30\xf1\x7e\xbb\x0c\x54\xa0\x17\xa8\x33\x8d\x33\x96\xc1\x74\x62\x76\x60\x08\xb4\x95\x53\x42\xb3\xf6\x52\x3e\xf3\xb3\xd4\xc1\x88\xd0\x74\x8d\xfa\x77\xe7\x4a\xf2\x40\xaf\x1d\x2e\xc5\x48\x7b\x31\x6b\x89\xeb\x38\xc3\x2f\x4c\xf1\x73\x90\x1c\x15\x53\x1f\xf7\x83\xe6\xaf\xce\xe7\x1f\x80\x2c\xa2\x9b\x29\x74\x3d\x8f\x35\xda\x82\xbd\xa1\x1b\xd2\xed\x7d\x57\x02\x76\xb1\xb7\x8c\xd3\xf9\x18\xd1\x34\xaf\x11\xc4\x5f\xcd\xd4\x4f\x69\xbd\x1a\xaf\xd3\x6b\xf0\x0f\xf1\x63\x47\x82\x02\x4d\x1d\x8a\xa7\xd9\x96\xae\xa9\xa3\xe8\x6b\xd4\xac\x63\xf9\xab\xf9\x2a\xcd\xe7\x6a\x5e\xa5\x76\xa5\x2e\xb7\x4b\x52\x0d\x80\x91\x57\x6d\xc1\xa5\xc4\xdd\xd9\x27\xea\x48\x0d\xd4\xf1\xf8\x31\x30\x43\x6a\xa8\x06\xf7\x4e\x1e\x3e\xfa\xe6\x6b\x24\xd5\xb5\x86\xd0\xcd\xd0\xcd\x49\x57\x1f\x02\x1b\xb5\xd1\xd5\x1c\x23\x04\x5d\xbb\xae\x36\x3e\x8f\xcf\x41\xc7\x12\x8f\x61\x27\x58\x7f\x1c\xfa\xbd\x7d\x07\x42\xb5\x4e\x44\xaf\xd9\x4a\x38\x13\xd5\xd6\x1d\x70\xea\x94\xf4\x2c\xf6\xa8\xcc\xa0\x26\xb9\x41\x18\x6b\xdc\xc7\xe7\xd1\x19\xc2\xba\x23\x31\x05\x17\x12\xc6\x9a\xdb\xfe\x16\x2f\x0e\x4e\xb8\x4f\x1d\xf3\x2e\xfd\x54\xf7\x4e\xc4\x72\x01\x85\xde\xea\x48\x30\x1d\x51\x93\xec\xa8\x4a\xc7\x13\xd2\xaa\xfa\xc2\x33\xd5\x02\x9d\x86\xaf\xb9\x66\xa7\xd8\x78\x1f\xc2\xef\xcc\xc6\x86\xac\x64\xe4\x0c\xf1\xef\x8f\xf2\x28\xd3\x8e\x32\xe0\xf0\xdc\x28\x09\xf9\x14\xd5\xbf\xd9\xd3\xf7\x45\x6a\xf3\x12\x20\x73\x54\x2b\xc9\x1c\x3b\xbc\xff\xec\x1b\x9e\x4a\x7a\x21\x8b\xf8\xe4\x8d\x0c\x57\xd5\x67\x16\xc6\xed\xf0\xe9\x5d\xc7\x89\x37\xa4\xaf\xeb\xb7\x28\xa6\x2c\x85\xcd\x31\xc5\xd8\xc0\x5e\x4f\xdc\x1c\xd3\xd6\x75\x00\x12\x8a\x86\x11\xc5\x78\xd7\x24\xaa\xd0\x54\x90\x98\x82\xeb\x15\xb6\xa1\x9b\xae\x91\x68\x89\x78\xad\xb8\xc0\x38\x9a\x37\x79\xb1\x34\xca\x71\x37\x4e\x3b\x37\x3b\x79\xfb\x63\xc7\xe2\x4d\xe2\x6f\x79\xdc\x20\x3d\x5b\x9b\x28\xdf\xf2\xd2\xd4\xe6\x45\x99\x45\x03\x6c\x9c\x54\xaf\xbb\x81\x00\xd9\xa5\xe1\x6c\xa8\x08\x55\x09\x56\xea\x5d\x5a\x82\xee\xda\x71\x06\x69\x81\x09\x93\xb0\x6b\xbe\x05\x8f\x0d\x05\x56\xed\x0f\xf9\x86\x6e\x9c\x94\x4d\x21\x9e\x20\x70\x97\xce\xf6\x91\x86\x90\x8c\xe5\xf3\xe9\xc3\xa7\x08\xc4\x49\x83\xc1\x03\x65\x10\x1c\x47\x8f\x23\xbd\x29\xd2\x1b\x8d\xe6\xd8\x22\xb5\xb5\x5a\x54\xe9\x5a\xf7\x9b\xc3\x73\x64\x82\x33\x2d\x20\x7d\x68\x4e\xf1\xe7\x1e\xf8\x91\xaf\xe9\x4f\x7e\xac\x49\xea\x4c\x75\xf0\x59\xcd\x44\x3b\x84\xd3\x42\x7d\xf4\xf7\x1a\xf2\x4d\x92\x34\xc3\x13\x37\xe7\xee\x0f\x06\xb4\x20\x36\xea\xae\x2d\x8d\xe2\xc2\x67\xae\x12\x32\x08\xdd\xb7\xfe\x1d\x3c\x4e\x60\x3d\x5a\x9d\x51\x01\x13\x89\x1a\x8f\xa1\x94\xf1\xa1\x88\x3a\xfe\x14\x2b\xe9\x46\xb3\x2f\x33\x7e\x73\x1e\x48\xfc\xc6\x2f\x76\xbd\xa4\xa1\x34\x28\x87\x87\x04\xa1\x4f\x2c\xae\x01\x2e\x0e\xc0\x2d\x9b\xd4\x37\x9f\x7f\x40\x57\x35\x68\x7f\x2a\x3a\xec\x9e\x81\x52\x67\xda\xec\x17\x3c\x1d\xc5\x77\x01\xac\x7c\xbf\xc7\x31\xa1\xa4\x27\x14\x61\xbe\x55\xc8\xdd\xeb\x99\xf3\x68\x77\x2c\x2b\x6d\x6d\x6b\x0e\xf8\x05\x00\x83\x8f\x11\x43\xae\x51\xc4\x3d\x6c\xed\xa1\xe0\xed\xe5\xea\x2d\xd2\xbc\x68\xd5\x73\x0f\xf1\x35\x33\x7a\x8d\x02\xe4\x09\xd3\x60\x59\x3b\xf6\x6f\x63\xc3\x32\xbb\x0a\xfb\x6d\x44\x91\xa7\x48\x7f\x89\x93\x1e\xa9\x95\x31\x1f\x18\x7d\x6c\x9e\xae\x75\xf1\x2c\x05\x5c\x97\xa8\x25\xc2\x66\x73\xff\xcc\xad\xfd\xc1\x98\x0f\x6a\x93\x5a\x0f\x4b\x86\xfb\x39\x2f\xa5\x94\xc2\xd9\x1e\x59\xa9\xc1\x4d\x73\x69\xd8\xce\x74\x17\xcc\x54\xe3\xf2\x28\x29\xae\xd4\x11\xf1\x02\x72\x4e\x43\xcb\xfe\xe4\xf8\xa3\xe0\xf7\xee\xd3\xaa\x4a\x6f\x06\x91\x78\xd0\x13\xed\xc3\x73\x80\xe4\x38\x45\xb6\xb6\xab\xd5\x50\x8e\x43\x14\xfb\xfc\x1d\x2c\xe1\x24\x6a\xe9\xff\x46\xd5\x3b\xb2\x4e\x12\xa3\xdd\xee\x35\x34\x09\x73\x1e\x29\x7c\x40\x5f\x29\xc7\x8d\xfe\x00\x50\xee\xfe\x7d\x95\xe0\xe4\x83\x57\x26\x3e\xf4\xfc\x39\x0e\x04\x1e\x52\x28\xbd\x9f\x85\x8e\x9e\x94\x21\x60\xd7\x2d\x78\x69\x6a\xf5\xaf\x6d\x5e\x6b\xf5\x37\x3a\x89\x23\xbc\xcb\x76\xa6\xac\x7d\x6c\x9a\x06\xa4\x1e\xe1\x18\xa5\xad\x2e\xeb\x31\xb5\x01\x79\x1c\x8e\x54\xa5\xd1\x05\xeb\x0b\x18\xec\x17\xa4\x88\xbb\x34\x57\x21\xb1\x1e\x9b\x03\x25\x3a\x73\xe2\x7a\x94\x04\xfe\xd8\x6f\xa5\x38\xef\x28\x67\x39\x69\xed\x34\x7f\x13\xed\x5b\x4a\x31\xf7\x8e\x67\x88\xf7\x59\x28\x8d\x3b\xa5\xe9\xde\x2f\xee\xa8\xce\x1d\x1a\x55\xfc\x48\x18\x55\xb4\xaa\x4f\x05\x03\xdb\x20\x76\x4f\x03\x31\x76\x52\x2c\x89\x8d\x4d\xb6\xcd\x8e\x9a\x9a\xf9\x7d\xe4\xba\x31\x19\xc2\x27\x85\x2e\xbb\x5e\xb8\x08\x49\xa2\x6f\x62\x9a\xf2\x6b\xf8\xb7\x01\x6b\xf3\x91\xe3\xb2\x80\x05\xbc\x43\x11\x80\x95\x85\xd0\xf3\xb9\x3c\x0d\x30\x8b\x5d\x87\xbc\xd7\xd2\x54\xcc\xf6\x28\x2f\x3a\x4b\x07\xe0\xb1\x30\x93\xa7\x22\x4d\xfa\x26\xa4\x48\x0f\x73\x1f\xec\x5e\x9b\x0a\x70\x9b\xe5\xec\xc7\x8f\xba\xac\x0b\x7b\xbf\x29\x66\xbb\xab\x5a\x1c\xe6\x2a\x50\x0a\x21\x76\x2f\x24\x89\x6c\xd8\x2d\x06\x31\xd3\x80\xac\x42\x83\xf0\x0b\xd5\xc9\x88\xd6\x00\xa1\x47\xde\xac\xc0\x68\x03\xa6\x99\x11\x4e\x2c\xdd\x08\x23\x65\x8a\x6c\x91\x57\x9a\x65\x31\x32\x68\x8c\x00\x56\xf8\x06\xf4\x8f\xee\xc3\xa8\x6a\x75\x4f\x9d\xc4\xe3\xf1\xc7\xd8\x3d\x8f\xa0\x4b\x7a\xab\x3c\xcb\x40\xd2\x80\x3a\x3e\x1b\xf5\xfd\xfb\x2a\xb7\x3f\xc0\x3b\x1c\x87\xc7\x72\x20\x53\x18\xdd\xfb\x88\xad\x4c\xd2\x1f\x87\x0f\x1e\x04\x1e\x80\x96\xa3\x41\x57\xff\x08\xa6\x20\x9e\xa5\x64\x71\x9d\x08\x4e\x0a\xc9\xe6\xb6\x84\x82\x59\x33\x4d\x4a\xf3\x2d\xa5\x2b\xa3\x89\x09\x54\x77\xbd\xa9\x6f\x20\x7d\xd4\x69\xa8\x15\x1e\x76\x68\x55\xa8\xff\x8d\xf6\x3d\x29\xa3\x0f\x0c\xa2\x68\x23\x86\xca\x8b\x2b\x1d\x1e\xc2\x39\x73\x0b\x74\x47\xdc\x39\xaa\x62\x6b\x74\xb4\xfc\xa0\xad\x08\x01\x47\x5a\x4c\x2c\x0a\x99\x50\xbd\xb1\x03\x1d\xde\xa8\x11\xca\x7c\x00\xad\x70\x0d\xcb\x9b\x79\xdf\xc7\x1b\xdd\x3d\x3a\x3a\x15\xe3\xa7\x65\x82\x57\xf1\x02\x8d\x1b\x9a\x87\xd6\xa4\xc6\x73\x33\xe4\x70\x69\x86\x74\x5b\xe9\x7c\xb9\xaa\x27\xbb\x3c\xab\x57\x70\x8d\x2d\x0a\xb3\x23\x96\x05\xbe\x1d\x6f\xc3\x19\x6b\xca\x21\x70\xd4\x55\x4d\xc2\x1d\x73\x7b\xab\x12\x68\x28\x69\xdf\x3b\x93\x89\xfa\x29\x0e\xa9\xe7\xe4\x08\xb6\xd4\xe9\x07\xab\x10\x99\x19\x22\x0a\xe7\xa6\xca\x40\xa2\xfc\x32\xf4\x28\xad\xeb\x2a\xbf\xdc\x22\x26\x2e\x5e\x92\x2f\x5f\x40\x04\xbe\x6b\x08\x6b\x92\x85\x17\x42\xf4\x5b\xf5\x50\xa2\xe3\xe7\xbf\x3b\x46\x0d\x6b\xf1\xa3\xff\xa2\xac\xe6\x35\xcb\xb9\x60\xa9\x62\x7b\x1b\x9c\x20\xdf\x2a\xe6\xab\xba\x29\xb4\x7f\x34\x6a\xfc\xfe\xbd\xf9\xe0\xbf\x02\xfa\x07\xe4\xeb\xcb\xad\x13\x2d\xbd\xf2\xd5\x7d\x34\x2f\x8b\xbc\xd4\x47\x97\x85\xf1\x38\xf0\x61\x71\x08\xce\x3c\xe8\xea\x4d\x49\x15\x60\x89\x00\x49\x15\xe6\xd5\x8d\x62\x95\x5e\x21\x32\x6b\x56\xaf\x26\xd8\x8a\x62\x35\x67\xe3\x76\x04\x1b\x1a\xed\x28\xea\x54\x42\x38\xed\x09\xb6\xcf\xd0\x34\xbd\x8e\x1a\x8b\xc2\xa4\xb5\x2f\x5f\x42\xe6\x5a\x81\xb2\x47\x23\x2a\xf4\x95\x2e\x42\x37\x31\x90\x3e\x1a\xee\x29\x1f\x1d\xf7\xa3\x59\x9e\x8d\xa1\x97\x9a\x47\x8c\xf8\x88\xe9\x8d\x84\xf3\x3e\x68\x44\xa0\x60\xd1\xef\x5c\x83\xaf\xb4\xce\xec\x8f\x50\x1c\x14\x48\xd6\xfe\x41\x97\xc3\x73\x1c\xb1\xd8\xe6\x88\x9a\x10\x8f\x9f\x0f\x17\xae\x28\x2f\x9d\x2f\x80\x43\x20\x8b\x5c\x24\xad\x63\x85\x3f\x8d\x59\x7b\x64\x6f\x01\x40\x0b\xdd\x8e\x37\x16\x85\xaa\x47\x3b\xc7\x7d\x08\x6f\x85\xc4\x93\xe3\xe6\x60\xed\xaa\xca\xcb\x0f\xbf\x55\xe9\x06\x06\x6c\xe5\xad\x8b\x22\x58\x8b\xde\xb4\x3e\x12\xf5\x44\xa0\xbc\x35\x36\x76\xbb\xe4\x49\x77\xc9\xff\x6a\x97\xe4\x84\xe4\x1f\x05\xb2\x30\x90\x21\xbb\x32\xbb\xc9\x2a\xcf\xf4\xa7\xa5\xa5\x4f\xc8\x39\xec\x4d\x11\x3b\x08\x78\xa0\xd5\x7d\xd2\x46\x0f\xaf\x76\x77\x77\xe3\x1f\xb7\xb7\x54\x17\x76\x02\x3e\x44\x97\x40\xf8\x4c\x78\x37\x50\x74\x65\x9f\xc1\x32\x69\xb0\xe8\xbb\xf1\x24\x82\xe9\x9e\x9b\xb2\xce\xcb\x6d\xd0\xdc\xf2\xbd\x4f\xcc\x8c\x90\xf4\x68\x73\x78\x56\x91\x0b\x7a\x83\x11\x7c\x3f\x22\xfb\xcc\xa0\x88\x0b\xdd\x3d\x12\x37\x05\xf7\x27\x04\x6a\x75\x96\x18\xa9\x7f\x7f\x14\x97\x3e\x6f\x3b\xb7\x04\xfe\x1b\x7c\xe5\x33\x9f\xc2\x2f\xc6\xf8\x44\xc2\xf3\x20\x86\x0b\x02\xcb\x83\x1b\x80\xe5\xd9\x3d\x52\xba\x4c\x2f\x0b\x6d\xd5\xd8\xd6\x66\x33\x18\x8e\xf1\xc5\x60\x08\x88\x73\x95\xbe\xd2\x95\x05\x69\x07\x51\x22\xb1\x16\x2f\x62\xfc\x45\x35\x53\x07\xf2\xdb\xcc\xb1\xe0\xcb\x08\xde\x82\x59\xa7\xb1\x1b\xed\xa0\x93\xd9\xdc\x73\x5a\x1a\xf5\xdd\x42\xd3\xcd\xea\xf7\xf2\x1d\xd5\x59\x24\x38\x0d\x5d\xa1\x90\xf7\xe7\x9d\xab\x80\x1e\x0c\xa7\x41\xd8\x03\x26\x1d\x92\xdc\xe5\xcb\x26\xe4\x10\x99\xf0\xa5\xf1\xde\x15\xf3\x4c\xbf\xc8\xc5\x32\x0c\xf6\x46\x2f\x98\x7c\xbe\xd0\x41\x3b\xb1\x43\xec\x20\xf5\x5d\x97\x0f\x8f\x3f\x1c\xbc\x6a\xbe\x5f\x53\xef\x2d\x17\x75\x77\xd6\x2e\x29\xc2\x0b\x9b\x63\x8d\x72\x8b\x1e\x84\x89\x12\xdb\x95\xa7\xab\xd5\x2c\xfb\x05\x08\x93\x7d\xc7\xce\x89\x0d\xf0\xad\x1a\x0d\xf3\x3f\x4e\x95\x23\x19\xc4\x09\xdd\xde\x8a\x67\xcc\x32\x9d\xa9\x13\xd4\x67\xc7\x42\x34\x89\xc5\x5e\x82\x89\xac\x0c\x3e\x8b\xc7\x1e\x43\x85\x88\xca\x86\x7a\x63\xc8\x7d\x08\x69\xdb\xf2\x32\xaf\x3f\xa7\x99\xd3\xfe\xc7\xbe\x34\x70\xa8\x19\x36\x75\xda\xef\x37\x9a\x44\xb7\xaf\x39\xbb\xe5\x9b\x6a\x8a\x25\x47\xfd\x9e\xfb\x98\x14\x12\x3f\xf5\xd9\x11\xb9\x98\xc0\x6c\x83\x27\x18\x9c\x31\x14\x80\x4e\xf9\x99\x90\x7b\xfd\x33\xaf\xb3\xa2\x3f\x1c\xff\x69\x77\x79\xb9\x4c\x7c\x11\xb6\x46\xcd\xb8\x03\xfe\x0d\x2f\x18\xfc\x28\x81\x76\xa2\x1b\xda\xb6\x1a\x0c\xc3\x27\x60\xd1\xc9\x93\x02\x9e\x08\xf7\x8f\xbf\xe6\xdd\x85\xd0\x3c\xdb\xaa\x13\x04\x92\xe5\x31\x3f\xcd\x1b\xd2\x73\x85\xc1\x5f\x48\x08\x16\xaf\xef\x42\x76\x7f\xa9\x6b\x84\xab\xf3\x3f\x07\x28\x7e\x10\x5c\x5d\xa3\xd9\x31\xb3\x3f\xb2\x24\xf5\xb0\xda\xc6\x56\x31\xb6\xa1\xfa\xae\xea\xd4\x6a\xb4\x6c\x7d\x76\xa7\x91\x86\x8b\xf5\x08\x26\x64\x3a\x64\x58\xc3\x58\x5c\x4c\x69\xdc\xd7\xa4\x46\x92\x2b\x7e\x01\x39\x9f\x7a\xde\x46\xdb\xdd\xf4\x83\x60\xc4\x3d\x1e\xa9\x93\x3d\xc5\xfa\x3e\x79\xa5\xb8\x08\x3a\xba\x43\x6d\x31\xad\x17\xdb\x86\x86\xe6\xb6\xca\x91\x12\x7b\x0b\x3c\x71\xa0\xf6\xa1\x78\xbc\x67\x42\x6c\xad\x37\xd1\x64\xc8\x17\x64\x33\xf0\x87\x63\xe4\x77\xed\x28\x2c\x9e\xd0\xc1\x36\x76\x87\x00\xc9\xf1\x0f\x06\xb2\xa2\x18\xf9\xde\x9d\xd2\xac\xd3\x6f\xda\x92\x3e\xf6\x3f\xb6\xe9\x04\x90\x9e\x88\x6c\x34\x0a\xc8\x2a\xf8\x49\x24\x2d\xfc\x5d\x44\xb0\x5a\xea\x88\xa4\x90\xcd\x33\xdc\xad\x6c\xd2\xf1\x37\x41\xf0\x67\x3b\xa7\xbf\xe9\x50\x1e\x90\xe2\x82\x33\xb2\x1e\x84\x92\x78\xb9\xb8\x43\xdd\x7c\xd6\x68\x83\x94\x1f\xc3\xa6\xb9\x7f\xdf\x47\x85\xfb\xc1\x64\x02\x0c\x2e\x5a\x0a\x6e\x3c\x86\xa5\x4a\xd5\xa3\x7a\x15\x83\x6b\x3a\x8a\x82\xfa\x85\x74\x5b\x1b\x27\xf5\xcd\x39\xae\x13\xad\x35\x10\x3b\x04\x88\x9c\x56\x7f\xef\xe4\x30\x30\x3e\x2c\x84\x33\xa5\xf7\x48\x24\x78\x01\x28\x0a\x78\x16\x96\x9a\xb1\x66\xc4\x9e\x96\xd0\x17\xab\xec\x76\xbe\x72\x3d\x4a\x4e\x8e\x1d\xe1\x72\xd2\x24\x54\x03\x09\x0c\x3e\xc3\xea\x6c\x54\x6d\x5c\xb7\x2a\x56\xc6\x31\x7c\x83\x93\x2a\xcd\x86\xd8\x00\x47\x37\xba\xd7\xb9\x1d\xa3\x2d\x8e\xcc\x7e\xfb\x5c\x39\xc3\x04\x8e\x08\x26\x25\x24\x31\x9c\x4c\xd4\x0b\x0a\xe3\xa9\x10\x3c\xd6\xad\xc7\x48\x00\x84\xb9\x99\x48\xdc\xbc\x61\x07\x22\xc8\xf0\xe3\xb1\x30\x06\x1e\x50\x47\x00\x93\x14\xbb\xe4\x2e\x6a\xac\x7a\xa6\x8e\xd5\x54\xda\x0b\x41\xa7\x77\xc7\x5e\x9c\x4c\xc0\xb7\x06\x0e\xb3\x3b\x6a\x1e\x96\x84\x20\x49\xd4\x11\xbc\x67\xcb\x10\xf3\xc4\x2b\x5d\x69\x7a\x45\x9b\x10\xdf\xf0\x5a\x33\xfa\x07\x0c\xcb\x95\xda\x14\x29\x49\x45\xe4\xad\xb1\x83\x26\x64\x2a\xe8\x48\xc8\x5f\x5c\x03\x1d\x69\xec\xe3\x06\x1f\xd9\x59\x28\x76\x30\x90\xb1\x18\xad\x83\x03\x5a\xa1\xf6\xd1\x09\x0b\xfc\x33\x4a\x5d\x51\x1f\xc2\x89\x0c\x4c\x5e\xb0\xf2\x34\xba\xdb\xcd\xf8\xee\xdb\x35\xf8\xb7\xa3\xd1\x87\x4a\xb8\x6e\x0e\xdb\xce\x38\x7b\xa9\xc5\x2c\x34\x12\x0b\xef\xe4\x3a\x49\xe8\x57\x79\xa9\x1e\x8e\x8f\x89\xfa\x33\x86\x86\x55\x2f\x5f\x3c\xf9\xc2\xaa\x4d\x5a\xe6\x73\x40\x6c\xca\xd0\xff\x3a\x9d\xaf\x5c\x5d\xc4\xcf\xad\x49\xdf\x58\x2e\x31\xb1\x5c\x6e\x09\xe6\x48\x67\x00\xf0\x64\x5b\xf4\x71\x6c\xe7\x95\x29\x8a\xb7\xc0\x0f\x75\xbf\xfb\x51\x2f\x6a\x24\xa3\x77\x6c\xd6\xe6\x22\x4a\x55\xb3\x78\xdc\x06\xed\xfa\xdc\xd9\xf2\x13\x25\xdd\x30\xcf\xbd\x2c\x3d\x22\x29\x79\xc4\x62\xf3\x85\x74\xce\xcc\x47\xc2\x7e\x08\xbe\x75\xd6\x7e\x2f\x0c\x44\x8b\x52\xd8\x00\x5b\xcf\xa2\x88\x73\xbb\xd1\x5a\x70\x9b\x0d\x4b\x11\xd1\x01\x28\xe4\xd5\xda\xee\x0e\xa0\xe4\xd3\xf4\x7c\xa6\x92\x4b\x63\x0a\x9d\x96\x09\xa5\x0c\x70\xd4\x93\xa1\x0e\x7d\xe6\x46\x16\x63\x59\x41\x3c\x0a\x7f\x8c\xc7\x63\x4c\x95\x3d\x50\x07\xf9\x1e\xf4\x4c\xfc\xda\x70\xcf\x5b\xcf\xed\x13\x36\x31\x4c\xc9\x18\x3c\xbe\xf1\x6a\x1e\x05\x68\x56\xe6\xfc\x80\x51\x20\xd5\xdf\x40\x2d\x75\xf9\xfd\xf5\x80\xcc\xdb\x28\x64\x8e\xf6\xcf\xcf\x29\xb8\x08\x83\x51\xc5\xcf\x30\x5b\xe6\xfe\xdd\xef\x2d\xd2\x4c\xbf\x35\xd3\xf6\x4c\xd7\x66\xcf\x6c\x93\x56\x60\x05\xb1\xb1\x37\x2c\x67\x05\xbd\x20\x22\xf5\xd2\xa1\x30\x9b\x74\x9e\xa3\x62\xf4\x38\x66\x36\xc6\x6c\xcf\x61\x8b\x88\x1a\xe2\xfd\x91\x50\x9d\x04\x3c\x8a\x49\xc8\xe7\x7b\x97\x26\x81\xb5\xbb\x78\xf5\xc2\x0a\x2e\x72\x54\xdd\x3b\x16\x6e\x30\xf4\xb3\xf5\x6f\xee\xc2\xd4\xd5\xf9\xf8\x89\x89\xf2\x01\x34\xba\xed\x54\x76\xf7\x0e\x04\xa6\x1a\xae\x33\x01\x4c\x0d\xf7\x1b\xe3\x69\xa1\xa0\xcb\x0e\x79\x69\x51\x84\x92\xd0\xf4\x1d\x7b\x1c\xfd\xe3\x8c\x34\xb1\xb6\x74\x1b\x88\x89\x53\xb9\xc9\x01\xec\x10\xce\xd0\x03\x9f\xb5\x06\xb0\x44\xbc\x9e\x9a\x36\x21\x3a\x95\x5e\x6a\x55\x18\x8a\xc3\x76\xc3\x20\xf3\x97\x70\x11\xc6\x6d\xb9\xc7\xd5\xd0\xed\x3e\x1a\x90\x08\x7f\xc1\xab\x5d\x68\xba\xd9\x27\x2b\x5f\x53\x5e\x0b\x8a\x70\x40\xfb\x04\x94\x8e\x3c\xbe\x50\xa5\x24\x95\x28\xde\x32\x14\x36\x12\xd6\xc3\xdc\xc4\x69\x51\x90\x75\x2c\xa4\x27\x3d\xf3\xa7\x07\xdd\xc7\xe5\x1c\xca\xb3\x45\x36\x19\xd9\xca\x28\x2e\x4c\xbb\xa3\xe9\x84\x87\x98\x3d\xf3\x42\xa7\xd5\xff\xc6\x5a\xb1\xcf\x18\x42\x62\x98\xcd\xff\xc6\x8e\x49\x7c\xa4\xd8\xaf\x01\x8b\x79\x23\x9b\xfb\x21\xfd\x19\x1a\x4f\x71\x6e\xfc\xa7\x4e\x3d\x84\xb3\x4f\x8a\x67\x16\x08\xc1\xd3\x95\x70\x9f\xeb\xcd\x44\xc7\xa1\xd9\xf0\x53\x26\xfa\x22\x9e\x3f\x06\xeb\xf5\xd9\x79\x42\x15\xc2\xc5\x17\x49\xa3\xa5\x28\x44\x53\x5c\x33\x1c\xfe\xe2\x3a\x19\x81\x13\xfe\x69\x23\x99\x64\x58\xae\x2e\x05\x5c\xa6\xff\xc5\xfd\xab\xc8\x19\xca\x9b\xe7\xe9\xeb\x2c\x1b\xf8\x1c\x69\xc1\x2e\x9a\x50\x8c\x59\xbe\xc6\xa8\x37\xda\xd2\xf8\x7b\xe4\x15\x4c\x2d\x15\x2c\x8b\x4c\x9e\x25\x23\x55\xaf\xb4\x6f\xba\x92\xc1\xc5\xe2\xfe\xfd\xf8\x01\xac\x9d\x40\x5b\xe4\x3d\xd1\xac\x17\x6d\x75\xc9\xde\x34\x94\xe9\x51\x4e\xf9\xcf\xef\xc0\xfd\xfb\xaa\xaa\xb6\x8c\xdb\xce\xa3\x08\x81\x90\x9f\xea\x57\x3b\x57\x48\xac\x88\xc4\x99\x1c\x47\xd1\x0f\x47\x47\xa7\xf1\x4c\x61\xa1\xd0\x33\x54\x15\xcd\x50\x77\x03\x1c\x28\x6e\x39\x71\x8f\x37\x6a\x84\x73\xee\x4a\x8a\x01\x34\x0b\x0a\x4a\x12\x9d\x16\x38\x59\xbc\x93\x82\x3b\x36\x37\x10\xb2\xe0\xa0\x47\x41\x13\x0a\xb3\xef\x01\x13\x28\x61\x0f\xa6\x47\xc1\x58\x04\x6c\x96\xa4\x35\xf0\x37\x05\x51\x62\x97\x02\xce\x38\xc0\xbf\xb3\x91\x99\x36\x22\x05\x01\x70\x94\xce\x9c\x1c\x71\xf3\x80\xee\x12\x3c\xfa\x46\x84\x12\x04\x25\x69\x0c\x6c\x77\xdb\x12\x20\x31\x7e\xfb\x46\xed\x34\xb8\xfd\xc2\xb8\xfd\xd6\xe5\x71\xdf\xde\xaa\x83\xa6\x83\x2b\xed\x7a\x2a\xc2\x84\x5f\x24\x61\xfc\x18\x2c\xcf\x8c\xb1\xfc\x0f\x82\x56\x0b\x82\xaf\x44\xbc\x4c\x03\xa2\x42\x08\x88\xf2\xba\x51\x62\x65\x90\x8a\xe6\xe5\xbc\xd8\x66\xfa\x37\xb0\x62\x7b\x96\x11\x46\x0b\x5e\x19\x75\x8d\x91\xaa\x64\x51\x9d\x62\xbf\x5a\xf9\xdf\xd0\xe1\x99\x1a\x43\xeb\xe9\x08\x57\x00\xb9\x85\xdc\xaa\x13\xca\x40\x06\xb1\xf7\xd6\xbe\x40\x57\x3f\x14\x81\x47\xa2\x11\x8c\x36\xb9\xb3\xa9\x87\x20\x02\x7c\xc8\x37\x60\x82\x56\xc0\xb4\xbb\xc6\x7e\x71\x5d\xec\xf7\xa2\x31\xcd\xa2\x21\x06\xf5\xf1\xc2\x54\xe0\x35\xa4\xbe\x55\x8f\xe0\xdf\xc3\x99\x7a\xa8\x8e\x3a\x26\xa4\x87\x6b\x3f\x0b\xbd\xf6\xa0\x6c\x30\x3d\xe7\x2a\x59\xa7\xd5\x32\x2f\x13\x75\x48\xfb\xc4\xb1\xd1\xfc\x6e\x93\x66\x19\x5c\x04\xf2\x65\x1d\x52\x2f\x12\x69\x6b\x7d\x15\xea\x8f\x99\x97\xa3\xf6\xc6\x3b\x1a\x94\x68\x80\xfd\x4b\xdd\xfb\x53\x42\x06\xf5\xfb\xc3\xae\x4c\x55\xcf\xb7\x35\x82\x6d\x10\x7e\x5d\xe0\x10\x22\x09\xc3\x49\x3d\x45\x9e\xe9\xe7\x66\x57\x4e\x69\x9b\xa0\xa4\xe1\x98\x21\x78\xf5\xeb\xc6\xbf\x00\xd1\xc3\xbf\x78\x0b\xdc\xbb\x7f\x49\x92\x8a\x7b\xed\x98\xdd\x97\xe5\x54\x09\xa6\x90\x8c\x7c\x1f\xe9\xed\xeb\x6d\x1d\xbf\x46\xa9\x86\x5f\x73\xd3\xb2\x04\xb5\xaf\x3e\xf6\x3f\x4a\xd9\x07\xd9\xf3\x76\x1c\xdb\x7f\x22\xdf\xc4\x72\x40\x70\x82\xfd\x5c\xce\x9f\xe4\xa0\xfd\x9f\x5d\x94\xe1\xe0\x19\x00\x61\xc6\x2a\x21\xe5\x8d\x10\xa5\x10\xd7\x33\x51\x67\x5d\x9c\x21\x0b\x41\xa8\xfa\x0b\xb9\xd3\x17\x10\x70\x74\xb0\x00\x34\x39\xaf\xf2\x17\x16\xb5\x3d\x92\x14\x76\xb4\x2f\xc3\x44\xfc\x23\x4d\xb1\x2b\x8d\x46\xf9\xaf\xfb\xf7\xbd\xa5\xbd\x53\x10\xf3\x75\x30\x98\xd2\x71\xe7\x41\xff\x3c\x13\xda\x17\xb3\x58\x90\x36\x89\x26\x23\x2e\x09\xce\x13\x60\x3d\x70\x73\x12\xbd\x9b\xa2\xf3\x49\x78\x10\x70\xdc\x16\xd7\xb8\x2c\x36\xcc\xa3\x7f\x74\x1e\xb7\x72\xa1\xa6\xad\x22\x5e\xb7\x4b\xd4\x2f\x4a\xff\x44\xf7\xe4\x11\xf0\x4a\x13\xcf\xc0\x4d\xe0\x5a\x3d\xfa\x3b\x30\x61\xc1\x83\xc1\xdf\xaa\xfe\xda\x95\x0f\xa3\x94\x72\xe2\x05\x34\x12\x5c\x91\x80\x79\x80\xb9\x74\x65\x4c\x91\xa1\xd5\xc6\xfb\x85\xf3\x04\xfb\x8b\xad\x25\xca\xec\xf3\xfa\xe4\xf6\xfc\x6d\x4f\x0f\x84\x5e\xbd\xa9\x42\x0f\xdd\x8c\x0c\xc8\xcd\xfb\x4d\x14\x63\x95\xc7\x69\x20\x66\x66\x53\x9f\xc6\x1a\x10\x32\x58\xfd\xbb\xdf\x2b\xf2\x52\xa7\xb1\x27\x6b\x7c\x62\x37\x2c\x37\xec\x70\x87\xee\x2b\x77\x3c\x7e\xac\x8e\x30\x88\x70\x6e\xec\x40\x6d\x1e\xc0\xdf\x3f\xbf\x54\x43\x35\x51\x0f\x4f\x1b\x5a\x18\xcf\xc0\x9e\x5f\x9c\x7a\xb1\xfe\xba\xad\x98\x07\xcd\xbd\x28\x31\xee\x8c\x7b\x84\xd0\x28\xd7\x22\x46\x46\xee\xe3\x8d\xfd\x25\xdb\x15\xd9\x1b\x05\x8b\xa8\x6f\x5b\x8c\xa0\xb7\x43\xd7\x94\x88\xdf\x73\x6a\x78\x7d\x71\x1e\x67\xc4\x17\xc0\x42\x2b\x4a\xb7\xc3\x9e\xd8\x97\x1a\x80\xbb\xd6\xe6\x2a\x38\x40\x1d\x60\x84\x05\x9c\x62\xd1\x24\x6e\x58\x68\x85\x85\x90\x06\x63\x77\x74\x14\xe1\x78\xf3\xed\x77\x10\x75\x9c\x2a\x4b\xdd\xaa\xd9\x20\x28\x72\xbf\x2b\x0c\x5a\x2c\x11\x07\x7f\x44\xe4\x56\xf4\x28\x70\xc2\x03\xa9\x2a\xa2\xcf\x53\x58\x18\x15\x77\x14\x8c\xa0\x46\xe4\x2c\x02\xda\xb8\xd5\x35\xe0\xad\x43\xb2\x8f\x78\xa1\x47\xe2\x77\x4e\x65\x28\x46\x25\xee\xa8\x7f\x39\x53\x27\x5f\x46\x6f\x48\x28\x8d\xf7\x0b\xc8\x7c\xe1\xa3\xbe\x67\xa7\x7d\xd1\x2f\xcc\x31\x10\x7f\x87\x08\x1d\x2a\x35\x0b\xb3\x9b\xaa\xaf\x8e\x8f\xe1\x6a\xb5\xf5\x14\xb0\xf9\xfb\x3d\x91\xad\x0f\x8a\x4b\x2b\xd2\xa3\xe3\x63\x56\xda\x7e\xe7\xae\xb8\x67\xa8\x8f\xff\xf6\x64\xfc\x44\xc1\xe5\x03\xf9\x0f\x11\xfb\x22\xd6\x87\x13\xe6\x4d\x04\xc0\xac\xaf\x37\x32\x01\x8e\xfb\x39\x66\xc8\x94\x28\xf2\x5c\xbc\x18\xfb\x38\xe3\x59\xc3\x3a\x1e\x9f\x67\x4e\xc4\x52\xe9\xcd\x20\x3e\x48\xa2\xda\xa2\x6c\x04\x35\x79\x41\x68\x51\x8a\x78\xe5\xe0\x34\xe4\xf3\x25\x56\x95\x31\x35\x43\xcd\x5c\x9a\xec\xe6\x76\x55\xaf\x8b\xe1\xdf\x26\x79\xa4\xe6\x33\x8b\x05\xe6\xd0\x58\x48\x2a\x1a\x62\xbb\x61\x36\xbc\xb6\x31\xde\xf3\x81\xfa\xa1\xed\x3d\x4a\xdd\xe2\xf5\x2a\x42\x87\x12\x8b\xec\x2a\x6f\x0a\x15\xd8\x99\xb1\xd5\xf5\x6b\xf8\x4b\x50\x5f\x74\x2a\xc8\x95\xf0\xc5\xf9\x48\x09\x04\x33\x33\x7f\x01\x46\x01\x37\xca\x91\xda\xe5\xe5\x48\xcd\x8b\x5c\x97\xf5\x5b\xb3\xe1\x3f\x1d\xd7\x3d\x52\x5e\xa5\xce\x7f\xc2\xe3\x7e\xaf\x77\x69\xae\x41\x6e\x00\xdd\xcd\xf1\x48\x15\x7a\x51\x4f\xd5\x31\x8a\x0e\xe4\xa7\x80\x59\x17\x29\xc3\x74\x66\xe6\xe4\xba\x00\xcc\x41\xa1\xd7\x63\xb3\x2b\x75\xf5\x9c\x00\x09\x7d\x2c\xd9\x81\x2b\x29\xe7\x4b\x32\xd2\x03\xd7\x65\xcc\x9a\x32\x76\x7f\xa2\x3f\xe2\xde\xbd\x42\xf3\xe3\x4a\xf2\x04\xb1\x8b\x38\xb4\x49\x33\x41\x0d\x76\x64\x76\x89\xbc\x73\x01\x33\x0b\x88\x67\x6c\x8e\x78\xfe\xfa\x27\x30\x49\xf4\x63\x17\xc4\x39\xe6\x68\xb2\x83\x30\xe1\xd4\xd1\xa8\xab\x97\xe6\xba\x99\xa5\x1d\x65\x24\x08\x74\x59\x7e\xf7\xec\x97\x51\xc8\x04\x7f\xfc\xff\x50\x76\xb4\xbd\x4d\xe4\xcc\xcf\xcd\xaf\x98\xee\xf3\x08\x35\x74\xbb\x29\x20\xb8\x5e\x10\x57\x51\x38\x09\x24\xde\x44\x7b\xc7\xa1\xaa\x1f\x36\x89\x93\xf8\xd8\xac\x73\xfb\x42\x1a\x41\xff\xfb\xc9\x33\x63\x7b\xbc\xd9\x52\x8e\x2f\x34\xbb\xe3\xd9\xb1\x3d\x1e\x8f\x3d\x6f\xe9\x31\x54\x39\x26\x8b\x6f\x96\x79\x49\x99\x56\xb1\xe5\x59\x91\x4f\xbf\x9c\xa9\xaa\xda\xc2\xe3\x14\xf4\xfb\x73\x78\x04\x07\xbe\x78\xb9\xfe\xb0\x34\xa5\x1a\x0e\xa2\xcb\x2c\x9c\x84\x85\x6a\xce\x4c\x8b\xb5\x1c\x5e\xe0\xc4\x7f\x54\x53\xce\x9c\xe3\x79\xd3\xdd\x72\xd1\xa4\xdf\xde\xcc\x49\xf1\x8d\xb6\x4a\xde\x42\x35\x9f\x30\xff\x15\x0e\x00\x8e\xb9\xe7\x32\xa0\x21\xb7\xa3\x92\x89\x87\xdf\xbf\x23\x4f\x76\x1e\x1d\xfb\x96\x6c\xbf\x89\x5b\xe2\xc3\xb8\xa5\x7b\x64\x5b\x06\xab\x10\xd5\x35\xc8\xd6\xf9\x42\x7d\x26\x76\xe0\xc2\x3e\x88\xcc\xc3\xf9\x36\xfc\x35\xd7\xe6\xaf\xdb\xda\x58\xb8\x90\xa5\x03\xb7\x12\xbb\x2a\x26\xe6\x3a\xb3\xa2\x1e\x0e\x41\xd0\x70\x24\x96\x1a\xe6\x76\xb0\xeb\xc6\x82\xda\xbf\x3c\x28\x7e\xfa\x48\x2c\x45\x12\x54\x41\x12\x79\x31\xf4\x6d\x30\xd8\x0b\xfc\x2d\xd5\x21\x5c\x2a\xe1\xca\x94\x76\x1d\x1c\x24\x6a\xcc\x14\x20\x09\xf1\x1b\xea\x50\x47\x6f\x74\x1e\xb5\x33\xa3\xea\x77\xa6\x79\x4d\x47\xda\xb7\x78\x34\x7e\x5d\x9e\x79\x12\xbc\x72\x80\x5d\x7f\x26\xcc\xf0\x91\x6b\x35\xc9\x1e\x3e\x5a\x5f\x98\x75\x32\x24\x2f\x4c\xf2\xfd\xa2\xc1\xf8\xb9\xc6\x96\xda\xa8\xb5\xbc\xf9\x64\x09\xd5\x58\x09\x46\x63\x8d\xa8\x6f\x9e\x72\xf8\x8e\x17\x9d\x3f\xf0\xcc\xd2\x62\x14\xd7\xa6\xd6\xf1\x21\x46\x7a\x7d\xbb\xb7\x2e\x6b\xd5\x68\x84\x7e\xf3\xbe\x11\x56\x95\x49\x41\x97\x47\x58\x04\xac\x31\xeb\x11\x92\xe3\x1c\xec\x31\x0f\x39\x65\xcc\x6c\xf4\xd4\x05\xa3\x52\xd4\x90\xff\x30\xdd\x3e\x5b\x00\x7f\xfb\x1c\xcc\xca\x99\x20\x30\x71\x79\x73\x92\x28\x04\x6b\xda\x56\x2c\xf4\x62\xdf\x4d\xca\x01\xd0\x56\xef\x1d\x6b\x31\x20\x33\xc5\x81\x07\x78\x71\x7e\x4e\x46\xd6\x9e\x11\x68\xcc\x3a\x01\x09\xc9\x8b\xa8\x07\xd4\xf6\xdc\xc3\xe6\xc5\xb4\x2d\xf2\x46\x7d\x08\xe4\x77\xfb\x9c\x4f\x6a\x53\xb4\x8d\x22\xd7\xc1\xe8\xd5\x5c\x5f\x93\x94\x12\xf6\xc1\x92\xe2\x39\xc9\x63\x21\x85\x4b\x4f\x38\xd6\xdf\x66\xca\xae\x86\xf0\x1b\x1c\x3d\x08\xd9\x1f\x28\xfc\xc8\x42\x08\x4a\xf8\x89\x6b\xeb\x97\x87\x3d\x1b\x06\x17\x7c\x74\x44\x68\x0c\xf8\xbe\x04\x22\xf5\x1c\x94\x26\xa9\x6d\xd6\x60\x2a\x62\x42\x5d\x83\x2f\xa2\x1f\x40\x6b\x07\xea\xfa\x8b\xb5\x4f\x6d\x07\x07\x21\xd9\x5e\x67\xb0\x5c\xd4\x5e\x44\xb5\x9b\x3e\x87\x9a\xdd\x72\xa9\x23\xf4\xde\x41\x67\xce\x08\xc2\xbd\xeb\xbc\x2d\x48\xc0\x45\x97\xe7\x1e\x8d\x5c\xa2\x81\x39\xc4\x5a\x0e\x38\x77\x41\xf1\x45\x67\xe5\xfe\xe0\xb0\xca\x6a\x56\x38\xac\xc6\x3e\x8c\x51\x08\xb9\xc6\xb9\x72\x32\x69\xe7\x10\x8b\xf0\x76\x36\xf6\xe3\x88\x2d\x0a\x40\x24\x61\x19\x03\x1e\x05\x7c\x19\x19\x1e\x0e\x99\x2b\x22\xeb\x8d\x6b\x82\x53\xdc\x8b\x9c\x05\x6e\x07\x54\xa2\x2f\x68\x58\x0e\x03\xb7\x49\xea\x13\x0c\x93\x45\xe7\xf3\x48\xf5\xf4\x23\x92\x21\x40\x34\x1a\x3e\x62\x7f\x67\x16\x69\x27\xb5\xeb\x52\xc2\xb8\x03\x4d\x9f\x81\x7b\xb0\xe7\x58\x6a\xc7\x65\x93\xcf\x7b\x56\xf1\x3b\xbe\x8a\x35\xf1\x48\x06\x49\x0d\xf1\xf8\x2a\x15\x45\x8e\xef\x57\x2a\x2f\xee\x03\xc9\x9c\x0f\xe8\x63\x31\xd8\xdb\x93\x3f\x9d\x43\xaa\x7c\x66\x85\x93\x28\x94\xcc\x91\xc1\x04\x51\xfb\xf6\x40\xff\xa2\xf6\x24\xd6\xc8\x99\xc3\x4b\x3e\x3c\x0b\x90\x41\x47\x7e\xe5\xf2\xf8\xca\x87\xc2\x0c\xe1\xb4\x4f\xfd\x85\x71\x44\xba\xff\x88\x0f\x71\x6a\x27\x4d\x95\x4f\x1b\x67\xdc\x07\xda\xc3\xea\x81\x0b\xa6\x56\x63\x4e\x27\xed\xed\xff\x78\x66\x27\xb0\x31\x09\x0c\x0c\xe4\xf2\x3b\x35\xca\x8f\xb0\x15\x72\x3c\x14\x27\x67\xc5\x58\x2d\x5d\xc2\x79\x3e\xcf\x2b\x0d\xd3\x9c\x42\xac\x8d\xe0\x33\x0c\xb0\xe2\x21\x2b\xb6\x56\x92\x1d\xfb\x11\x23\x05\xe6\xe8\xd6\x8d\x98\x45\x79\xff\x2e\x2e\x3f\xf2\x93\x28\x3a\x7b\xf9\xc0\x67\x43\x8d\x18\x60\x62\xaa\x19\x55\x1b\x94\xf3\x96\xdd\xa1\x71\x74\x66\x32\x85\x84\xf0\x5c\x98\x35\x5e\xcc\x47\xb4\x47\x88\xef\xd0\x46\x6e\x43\x6c\x3b\xd3\xc5\xdc\xe1\x02\x4a\x0d\x63\x04\xa7\xca\x02\x40\xc8\x5d\x10\xcd\x04\x74\x7b\xec\x55\xb8\x71\x34\xa9\x1d\xc0\x82\x18\xc3\xab\x3d\x92\xe4\x9d\x45\x2c\x6f\xc6\x57\xf9\xba\xd7\x66\x7c\xd7\x82\x8c\x4a\x66\x5a\x75\x0d\xb7\x02\x97\x89\x30\x82\xbc\x77\x0f\x0e\xf6\x6f\x59\x71\x62\xb9\x85\xad\xbd\x3b\xe6\x52\xf1\x1a\x46\xfa\x91\x28\xb4\x1b\xd3\xdb\xb3\x46\xe9\x47\x88\x43\x72\x87\xf5\xbb\x3a\x25\x4d\x77\xa2\x84\x95\xd0\xe3\x73\x2a\x98\xca\x27\x80\x95\x6a\x96\x66\x16\x9b\x66\xe0\x5b\x00\x1f\x43\x22\x4e\x1b\x89\x38\x83\xf3\x1b\x3e\xbb\x24\x91\x69\x84\xb0\x3a\xef\x11\x7f\x03\x89\xdb\xd8\xe8\xb3\xab\x88\x19\x02\x43\x84\xe5\x84\x9a\x76\x6c\x27\x78\xad\xd5\x73\xa2\xa6\x2c\xf7\xee\x9e\xa1\xab\x32\x3b\x2a\x42\x6b\xb2\x37\x76\xcf\x83\x21\x4e\x3b\x44\x8d\xf5\x56\xb2\xf5\x9f\xb7\x28\x4e\xe1\xc0\x45\xb1\x6c\x74\x69\x05\xf0\x46\x97\x21\x6a\x86\x8c\xcd\xf6\xb4\x76\x5b\xad\x56\xd1\x57\x86\x26\x67\x3d\xf7\x54\xf8\x23\x23\x55\x1b\x91\xb1\xdd\xe2\x75\x33\x41\x5e\xf6\x7b\xfb\x76\x78\x4f\x91\xf6\x31\x88\x94\xcf\x30\x14\x07\x43\x97\xd8\x6e\x0f\xee\x82\xbe\x30\x6b\xce\x07\x3a\xec\x89\x98\x8c\x29\xa5\xe4\x14\x22\xdd\x99\x1c\xfa\x74\xe7\xfe\x29\xf5\x15\x69\xbc\xf9\x4a\xd8\x8b\x3b\xd3\x22\x62\x66\xbc\x16\xd6\x81\x38\x75\x97\x3c\x63\xfe\x23\x0e\x84\xfe\x95\x2e\xb3\xf0\x05\x5f\x34\xfe\xa9\x15\xe6\x28\x13\xae\x93\x84\x93\x66\x82\xdd\x05\x6e\xc4\x02\xd2\x65\xa9\xaa\x57\x68\x96\x4e\xe9\xc7\x27\x32\x16\x2f\xf9\x19\xdb\x8e\x4d\xdb\x38\x38\x5c\x69\xf8\x9b\x2c\xad\xfd\x4b\x0d\x5e\xb1\xad\xdb\x45\x1d\xa5\x80\xe0\x63\x1f\x9a\xd4\x63\x74\x6c\x7c\x11\xad\x0e\x32\xb6\xff\x8e\x21\x41\x1a\x13\x38\xe4\x16\x5c\x9f\x7a\xcc\x96\xf8\x24\x19\x43\x82\xb4\x39\x90\xf8\x33\x3c\x4e\xbf\x5f\x37\x55\x4e\xcf\xdf\x85\x34\x31\x58\x77\xdd\xee\x8f\xf6\x78\x80\xee\x08\x73\x53\xc9\x9e\xa7\xa2\xdb\xe2\x72\xbd\xbc\x0c\x98\xe2\xf5\x4d\xe8\x7a\x32\x51\x4f\x97\xb9\xc6\x08\x44\x59\xcf\xde\x5d\x63\xa2\x27\xb3\xa4\x54\x38\x84\x32\x81\xfb\x91\x47\x28\x33\x3f\x55\x9c\x7a\xb6\xd3\xd4\xd1\x11\x6c\x61\x51\x74\x29\x3e\x39\x0d\xf6\xf7\xb1\xdb\x59\x7d\x56\xe8\xff\x22\x9c\x68\x1e\xe2\xa4\x30\x7c\x1d\x2a\xab\x28\xdf\xc6\xf3\xde\x1f\xc6\x6a\x24\x35\x98\x39\x3c\x1e\x9d\x8c\x1e\x1e\x3f\x78\xc8\xf9\x6e\x74\x51\xc0\x56\xab\x62\x16\xd4\x29\x76\x91\x27\xeb\xfc\x5b\x33\xb1\xbb\x1f\x69\x62\x29\x7a\x96\xa0\x83\xbb\xc7\xaa\xd1\x99\x25\x87\xcd\xd2\x14\x0a\x0a\xd3\xc0\x46\x71\x31\x8a\x0c\xce\x95\x82\xb5\x5d\xc4\xae\x4c\x06\x66\x5e\xd0\x35\xfc\xf1\xf1\x0d\x25\x56\xd6\xf5\xb4\xad\x6b\xab\x95\x7b\x8c\xcb\xa6\x59\xd7\xe3\xd1\x68\xa1\x9b\x65\x3b\xc1\x22\x4b\x7f\xff\x63\xbb\xe7\xfe\xb3\x18\x47\xbf\x3c\xe1\x02\x11\xe2\xca\xfc\x07\x32\x34\xa1\x5b\x29\xcf\xc6\x57\xdd\x54\x71\x56\x05\x77\xad\x80\x13\x28\xb8\x98\x7d\xe1\x9f\xd8\x23\x36\xfc\x18\x87\xdb\xe2\xde\x7a\xdb\xec\x0f\x49\xe7\x64\x92\x9e\x97\xc8\xfb\x23\x5a\x0e\x57\xf6\x83\xb4\x73\xef\x3e\x27\xf2\xe3\xe7\xec\x01\x84\x65\xa1\x74\x0d\x0b\x14\x41\xa2\xc2\x58\x5b\xce\x4d\xd5\xb4\x25\xfa\x58\x72\x6c\x11\x26\x5b\xa8\x31\x93\xe8\xff\x1e\x9d\x3c\x3a\xa1\x92\xa2\x4f\x46\x27\xb8\x42\xc5\x04\x5b\x8c\xc1\x1d\xa9\x34\xb0\x30\x56\x52\xd7\xab\xbc\x28\x60\x93\x6f\xa9\x9a\xc2\x35\xe8\x26\x8b\xe6\xc1\xe7\x3f\x65\x47\x32\x1c\x0e\xab\x76\x5c\x62\x75\x70\x53\x14\x61\x0e\x52\x3b\xe2\x7d\xcf\x7b\xda\xd2\xc0\xec\xb6\xdd\x79\xce\x6d\xe9\x6d\x77\xd6\xe9\x65\x9c\x27\x90\x09\x0f\x2b\xb8\x63\xde\xf0\xec\xd1\xe1\x0a\x30\xe4\xe6\xc5\x27\x9e\x34\x2a\x25\xd4\x62\x4a\x0c\x74\xf2\xc2\x34\xec\x5e\x09\x27\x8c\xbb\x37\x4b\x62\xa1\xa7\x5c\xec\x6e\x08\xe3\xc0\x37\xe7\x77\x12\x10\x61\x8e\x42\x6b\xfb\x70\x73\x42\x49\xe7\xb8\xea\x05\xe8\xa9\x93\x6e\xe3\x30\x0e\xe2\xbd\xd8\x94\x49\x31\x1f\xd2\xd6\x6c\x39\xfb\x7a\x6d\x6a\xc5\xa2\xc8\x39\x66\x73\x4d\x7e\x2e\xfd\xca\x15\x7a\x19\xc4\x57\xec\xfd\xbf\xbf\x6b\x23\x9b\x5e\x8c\x29\xc7\xc2\x45\xcf\xdf\xbe\x84\x95\x99\xb5\x96\x04\xef\xdf\x66\x45\x88\x7d\x81\xb5\xd4\x2b\x4a\x99\x31\x40\xce\xb7\x3f\x9b\x9c\x4b\xef\xe9\xba\x6e\x15\x97\xd8\xb1\xa0\x76\x46\x56\x6d\xd1\x68\x8c\x94\x52\x55\x4d\x29\x38\xe6\xfc\xc5\x01\xe6\xba\xc0\x60\xac\x05\xa7\x37\xb1\x4c\xbf\xc2\x31\x47\x9f\x3c\x1a\x97\x83\x61\x06\x17\x98\xf4\x1c\x6b\x28\xa2\x2c\xd5\xe5\x4c\x4f\xf3\x46\x61\x4c\xc8\x52\x6d\xc9\x20\xe2\x42\x0b\x30\x6d\x6f\x5e\x4e\x15\x09\x57\x4f\x03\xf7\xd4\x93\x32\x41\x1a\xc8\x9d\x7d\x6b\xa9\xa5\x0f\x66\xf9\x6a\x16\x06\xcf\x6e\x34\x19\x7c\x54\x0b\x5d\x37\xaa\xa2\xb8\x33\xcb\xe5\x33\x37\x4e\x88\x43\x97\x53\x8f\x9f\xcb\x09\x53\xb2\x6b\x55\xa2\xf9\x12\x07\x85\x2a\xf9\x62\x29\x63\xea\xef\x2a\xdf\xa2\xe9\x86\xbe\x8b\x98\x1c\x4b\xb7\x98\x1c\x9f\x3c\xc8\x05\x2a\xab\x95\x71\x29\x71\xc4\x10\xa6\xc0\x4e\x9f\x29\xb7\x2b\xd3\xd6\x98\xa0\xdc\x4f\x64\x9d\xc1\x73\xa6\xd8\x3e\xd4\x35\xd4\xf9\x5c\x71\xea\xfb\x95\xa9\x1b\xa8\xcc\xa4\xad\x1b\x27\x6e\x2a\xee\x6a\x66\xd1\xbc\x31\x1b\x55\xe1\x85\x34\xed\x0a\xbe\x76\xba\x4b\x28\x13\xbe\x83\xdf\xa8\xf1\x76\x61\xa6\x2a\xfd\x55\xcd\x30\x4b\x9b\xc5\x62\xbb\x4c\xaf\x53\xfc\x2a\x0f\x94\xae\xd9\x7f\xa6\xd8\xc2\x4c\x15\xfa\xab\xaa\xa8\xe6\x62\x0e\x85\xff\xae\x6f\x8b\xf4\xbc\x34\x24\x60\x29\xec\x01\x9d\x1e\x5d\x52\x7c\x5e\x03\xb5\xa1\x91\xd1\xf3\x98\x9f\x31\xf5\x6a\xcd\x97\xb0\xc5\x00\x6f\x54\x5e\x98\x72\x5e\xe8\x29\xde\x73\x60\x22\x0d\xc4\xcd\xfc\x11\x38\x35\x05\xdd\x10\xdf\x6d\x4c\xf5\x25\x1b\x48\x43\x19\x4d\x1d\x5f\x35\xb3\x56\x81\x45\x25\x02\x2f\xc5\xbf\x1c\x67\xe1\x7e\xc6\x1c\x0e\x09\x8d\x2e\xba\x68\x07\xed\x04\xec\xa9\x1a\x22\x3d\xe6\x29\xdc\x70\xa2\xc6\x9b\x61\xa8\x21\xf3\x74\xf0\x6f\x00\x00\x00\xff\xff\xfb\x84\xdb\x2b\x49\x0f\x04\x00") + +func staticJsJquery183JsBytes() ([]byte, error) { + return bindataRead( + _staticJsJquery183Js, + "static/js/jquery-1.8.3.js", + ) +} + +func staticJsJquery183Js() (*asset, error) { + bytes, err := staticJsJquery183JsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/js/jquery-1.8.3.js", size: 266057, mode: os.FileMode(436), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticTextAdjectives = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xbd\x49\xb6\xa4\xb0\xaf\x3e\x38\x67\x31\x6f\x0f\xff\xf3\x26\x35\xa9\xaa\x77\x4e\xad\x40\x18\x01\xce\x30\x36\xe9\x26\xe2\x92\xab\xaf\xa3\x4f\xb2\x21\x32\x7f\x6f\x70\x6f\x18\x77\x80\x71\xa3\xe6\x93\x44\xf3\xd2\x1c\xc7\x3a\xd1\x62\x89\x48\x05\xbf\x7c\x70\xde\x24\xb1\xf8\x52\x7c\xf0\x92\x3c\x29\xd7\x96\x91\x5c\x2e\x1f\xb7\xe9\x48\xd9\xcf\x2d\x2e\x53\xa0\x52\x27\x9a\xb3\x5f\x36\x5e\x26\xd7\xea\x74\xa6\x5a\x79\x99\x5a\x1c\xb9\x34\x97\x14\x5a\xe5\x69\xf1\x99\x5d\x9d\xfc\x71\x06\xef\x7c\x9d\x7c\x5c\x7d\xf4\x95\xa7\xe0\xdf\xd2\x6b\xe6\x40\xd5\xbf\xd9\x12\x29\x52\x40\xe3\x3c\xe3\x49\x35\xb5\x92\xc3\x83\x50\x29\xfe\xf0\x52\x2f\x6e\xd3\x7e\x6d\x39\x15\x97\x4e\xef\xa6\xcc\x8e\x4f\x74\x53\xce\x14\xb7\x6b\xaa\xbb\xcf\xa5\x5e\x53\x4c\xf1\xee\x2d\xf3\xc9\x21\xe8\x08\xf4\x3c\xb7\xf3\xe1\x4b\xca\xda\x5a\xaa\x2f\xdf\x37\xa7\x39\xb0\xd5\xd7\xe4\x5c\x2a\x1f\x3e\xb5\x82\xa4\x8f\xfa\x60\x8e\xab\x77\xd3\x16\x5a\xad\x29\x4a\xa1\xcb\x74\xb6\x70\xa7\x30\xce\x0b\x39\xb4\xdc\x32\xf3\x72\x4d\x7b\xda\x36\x5f\xf6\x29\xbd\x39\x5b\x96\xf4\x99\xc9\xd5\xc9\xa5\x88\x77\xc2\x88\xd8\x45\xa3\x30\xf9\x85\xf5\x7f\x0a\x69\xf3\xce\x0a\x33\x57\x9e\xd2\xfc\x8b\x9d\x0d\x26\x86\xb1\xc5\x85\xf0\x22\xa9\xc5\x45\xc6\x8c\x8e\x33\xf0\x24\x63\x26\x4f\xc1\x54\xae\x89\x7f\xda\xcc\x59\xaa\xd5\xdd\xbb\xd7\x14\x52\xdc\xf0\x40\xa3\xf9\x29\xcf\xee\xd7\x16\xa6\x4c\xc7\x29\x39\x99\xe2\x6b\x2a\xed\x7c\x54\xaa\xcc\x87\xdc\xa1\xa6\x9c\xa5\x3a\x85\xe9\xcd\x19\x45\xc5\x51\x76\x3c\x65\xca\x3c\x55\xbf\xed\xf2\x40\xad\xf0\x32\xcd\x54\x2b\x67\x9b\x38\xc8\x21\x27\xaf\x89\x71\x9e\x29\xbe\x90\x68\x91\x7f\xfa\x48\xe8\xb5\xbd\xe7\xb8\x7e\xb4\xfa\xae\x2a\x05\xa5\x78\x24\xcf\x33\x27\x72\x3b\xf2\x77\x8a\xcb\x35\xf9\xf8\x28\x4f\xad\xce\xe4\x5e\xd3\x49\x75\x0f\x5c\x8a\x74\xfb\x6c\x42\xce\xa5\xe3\x48\x8b\xce\x3d\x97\x8e\x33\x90\x2f\xf2\x7a\xb8\xff\xa3\x6c\xf1\x25\xcd\xc1\x6f\x18\x6f\xe7\x5a\xa6\xca\x93\x0b\xa9\xf0\x54\x5a\xd6\x4f\x26\xdf\x18\x23\x51\x73\x63\x19\x28\x9b\x17\x78\x24\x6d\x41\x1f\xba\xa6\x95\x5a\xa8\xd7\xd4\xe2\x4a\xbe\xee\xf2\x09\x3e\x7e\xc1\xc3\xb4\x52\xd3\xa1\x43\x77\x5f\x44\xfe\x4c\x2d\xda\x48\xfa\xc5\x3b\xfc\x4c\x14\x5e\x14\x7c\x64\x4d\xb0\xae\xf9\x99\x8a\x77\x53\xa1\x50\x83\x7f\xb1\xcc\x8c\x3d\x55\xce\xd6\x26\x9d\xbb\x0f\x48\xbf\x62\xfa\x04\xd6\x45\x8d\x71\x96\x44\x29\xed\xd0\x15\xb3\xb0\x0b\x94\x31\x44\x9b\x7f\x73\x9c\xce\x56\x75\x41\xcb\x93\x3d\x1a\xeb\x78\xb2\xf3\x64\x5b\xc5\x3b\x7d\x90\x70\x29\xae\x5c\x0a\xd2\x99\x5d\xda\xa2\xff\x83\x9b\xfd\x6e\xbe\x78\x74\x25\xaf\x78\x34\xdb\x28\xe8\x4d\xd9\xeb\x70\x9d\xa9\x14\xf9\x80\x6f\x9e\xce\xd0\xe2\xc2\x59\x06\xfd\xcc\xb2\xce\x58\x2a\x64\x3a\x6d\x64\x4b\xca\x8b\xd7\xe1\x7a\xf6\x9b\xd3\xc9\x95\x02\x46\x43\x53\xa4\x2b\x48\xd6\x4c\x45\x85\x99\x64\x65\xd3\xe6\x65\xe2\xa4\x3a\xed\x97\xcc\x7b\xd7\x77\x9b\x5c\x75\x26\x59\x2b\xbe\x64\x4e\xec\xd7\x99\x2c\xcb\x47\xce\x75\x2a\xbc\x70\xac\x94\xaf\xd1\xbf\xfc\x60\x28\x46\xe3\xb4\xae\x53\xe6\xea\x33\xde\x1e\x59\x73\xf6\xe5\x35\xcd\xad\xd4\x20\x6f\x36\xb7\x72\x4d\xe9\xe4\x38\x95\x53\x5e\xf5\x71\xe7\x85\xf2\x6b\x5a\x98\x96\x69\x69\x41\xf6\x87\xc0\x32\xcb\xfc\x8b\xb1\xf8\x7b\x87\x67\x4e\x5b\xb6\x21\x1b\x6d\xd7\x40\xb2\x31\x2f\x09\x9b\x54\xa0\x2a\x3f\xbf\x9b\xb7\x99\xf2\x7c\x62\x5f\xea\x84\x55\xa1\xbd\x91\xf6\x94\xb9\xf8\x52\xb1\x6c\xac\x84\x73\xb3\xf9\x91\xf2\x41\x5f\xdd\xf1\x4f\xf5\xd1\x55\x7d\xd8\xde\x77\x18\x77\x90\xc7\xa6\xfa\xb8\xec\x37\xf9\x67\xe0\x5c\x6a\xb1\x8e\x4f\x31\xde\xe6\x9f\x07\x97\x0c\x5c\xc8\xf6\xc9\xeb\x6a\x7b\xe4\x99\xaa\x6d\x54\xf6\xc6\xe4\xe4\xc0\x2a\x6d\xd6\x84\xdb\x73\x8a\xde\x4d\x0b\x6f\x1c\x39\xeb\x33\xbd\x7d\xd6\xad\x5c\x9e\x3e\x5c\x13\x8d\x0c\x5a\xe8\xec\x93\xb5\xef\x06\x72\x25\xd9\xe3\x60\x5b\x7e\xb5\x82\xec\x83\xc2\x68\xb0\x5c\x65\x6d\xd1\x59\x1d\x94\xf4\x6a\xb4\x2c\xde\x61\xc5\x05\x97\xf6\x14\xf0\x38\x27\x47\x99\x4c\x32\x97\x7b\xb1\x0b\x4c\xd1\x6a\x8f\x73\xac\x5f\x48\xea\x3f\x2c\xa3\x65\xb1\x1d\xb3\x66\xd2\x0d\x8d\x0f\x99\xa3\x61\xf2\x72\x9e\x8c\x74\xe5\xec\x28\xc8\xd4\x2d\xed\x38\xfa\xab\x94\x76\xf6\x06\x28\x99\x6b\x1e\x6b\x60\x9c\xe8\x4b\x1b\x4f\x90\xfb\x12\xbf\xd3\xb4\xf0\xef\x86\xcd\x31\x1d\x27\xe3\x13\xf8\x38\x32\x17\x5e\xbd\x9e\xfa\x3e\x3a\x3a\xed\x18\xde\x59\xe7\xc2\xb2\x73\xc6\xa8\x6f\x72\xe4\xfa\x28\x2d\xe6\x14\xf5\x95\x5c\xb2\x52\x49\xa0\xfe\x16\x1a\x5f\xd3\x96\x92\xfc\x6f\x87\xec\x95\xa7\xaf\x6e\xbf\xa6\x52\xbd\x7b\x29\x9d\xd0\x3b\x8f\x29\x6a\xa7\xb2\x6f\xc4\x14\x65\x76\x23\xdd\xa2\xb5\xa5\xa5\x1f\xb4\xa5\xcd\xa5\x52\xb4\xb7\x4c\x76\x0a\xc9\x5b\xf6\x34\x2d\x29\x47\x39\xec\x98\x96\x6b\x9a\x79\xa1\x36\xe3\xb2\x9c\xec\x2a\xb9\x20\x17\x39\x39\x5a\x24\x01\xf2\xe1\x9a\x1c\xe5\xb9\x45\x94\xb9\x1d\x87\xf6\x5b\xce\x10\x1f\x7f\x37\x59\x4c\x2e\x73\xc1\x67\xff\xe7\x37\xb9\x17\x4b\x6a\x65\xaa\x3b\xe7\x6b\x5a\xb3\x0f\xd2\xcd\x2a\xfb\x05\x76\x9b\x35\xd0\x81\x44\x20\x2f\x3f\x9f\x9c\x1a\x8e\x22\xf9\x2a\x21\x60\x69\x1d\x58\x5a\xcb\x74\x52\x64\x69\x5d\x6a\x5b\xe4\xf9\x2a\x9d\x2c\xbb\x0a\x92\x52\x5d\x12\x6d\xb5\x1d\xdd\xde\x54\x4e\xc6\x38\xb5\x68\x05\x4e\xe6\x6d\x64\x39\xf9\x26\x19\xa9\xaf\xeb\x25\x27\x5f\x6d\xfa\x3a\x79\xcb\x3c\xb9\x24\x5b\x75\xc4\x73\x2c\xbc\x56\x3b\xad\xb1\x2e\x50\x7b\x6e\xc7\x8c\xed\xd0\x47\x3e\x2b\x4e\x90\xbb\x45\x8b\x07\xbb\x9d\x22\x8e\x59\x5a\xde\x14\x2b\x6d\x38\x0b\x66\x8e\x98\x52\x14\xe4\xb0\x28\x72\x4e\xbb\xec\x0f\x69\x97\xf2\x25\x97\x5f\xd5\x0f\x1f\x85\xc4\x5b\xde\x1c\x6b\xcb\x20\xf7\x5a\x27\xdf\xb0\xed\xcb\x13\x94\x0f\x6d\x9b\x9e\x3a\xf2\xfe\x77\xdd\x42\xab\x7c\xfa\xb7\x2f\x98\x04\x32\xaf\x7b\xda\xa5\x58\xfc\x02\xba\x87\x38\xa7\x59\x86\x01\xbf\x49\xce\x99\xf4\xe3\xfb\xce\x11\xbf\x8b\xdd\x57\x4e\xa9\x3b\x28\x4e\xca\xd5\xcb\x1c\x9e\x5c\x2a\x07\x72\x4e\xc2\x9a\x0d\xd7\x54\x38\x96\x66\x64\xc5\x68\xe0\xe3\x68\x42\xd8\x0b\xe5\xf3\x1e\xbe\x56\x39\x55\x1a\x28\xab\xa9\xd2\x8b\xe5\x0b\x8e\x0a\xfe\x38\x5a\x94\x79\xed\x8f\x73\xac\x64\x99\x4a\x8d\xa3\x93\x17\xe9\x15\x69\x4b\xd1\x3a\xcf\xd5\xdb\x70\xcb\x1b\x0b\xc1\x23\x93\x83\x43\x72\x0d\x7b\x48\x96\x6f\x1a\x23\x06\xe2\x0c\xed\x38\xae\xe7\x1d\x83\x5f\x19\x84\x49\x8b\xa3\x56\x8b\x85\xc3\x2a\xbd\xe9\x67\x68\xb1\x54\x1f\xaa\xde\xdf\xe7\xc3\xc6\xad\x14\xd9\xd7\xc1\xdf\xf0\xa6\x79\xc2\xd7\xf4\x4c\xa5\x62\x6c\x3f\x94\x14\xb8\x90\xbe\xa0\x17\x5f\x0e\xdf\x4f\xb5\xb3\x2d\xde\x3a\xdd\x52\xa6\x73\xd7\xc1\x0f\x94\xb1\x0b\x84\x2d\xf5\x2c\x21\x6d\x76\x8e\x68\xb7\x53\xdc\x96\xb4\x4d\x2e\x50\x2b\x35\xf7\x3a\x2b\x53\x16\x0a\x6e\xcd\x42\xf9\xb1\x0c\xc6\x9e\x72\xf6\xab\xac\xa6\x5d\xd7\xdb\x7e\x2d\xa3\xfe\x71\x95\x9e\x3c\x65\x3e\xcb\x2e\xd5\x8e\x79\x2a\xbb\xd7\xa3\xb6\x0a\x71\x40\x7e\xe1\x57\x7f\xb2\x26\x03\xf5\xe6\x65\xfa\xe1\x98\x46\x1e\xad\x99\xfc\x20\xc0\xfa\x53\xb6\x28\x8b\xe8\xa5\x53\xf7\xf1\x4c\xb4\x0d\x02\x41\xe8\xf3\xc0\xf2\xcc\xba\x43\xeb\x29\xb2\x27\x19\x75\xe1\x36\x4a\x15\x8e\x0a\xf3\x1d\x34\x17\xd6\xd1\xd9\xb6\xd8\x97\x89\x70\x3e\xe7\x25\x44\xae\xd3\x43\xb2\xc5\x47\xf7\xb4\xf9\x8a\x35\x4b\xd2\x85\xac\x76\x2f\xd3\x04\x9b\xd1\xaf\x14\x74\x1b\x7b\x73\x16\x0e\x69\xcd\xd8\x3a\xa6\xfd\x2a\x20\x52\x65\x11\x97\xcb\xed\xbc\x70\xd0\x97\x1c\x9d\xf5\x84\xdb\x5b\x8e\x20\xd6\x7b\xc2\x3a\xcd\x5e\x8e\xae\x65\x2a\xcc\x75\xc7\x2a\xae\x3e\x1b\x1b\xd2\x1b\xc7\x24\x2b\x79\xee\x4f\xdd\x6b\x90\x70\x69\x58\xc5\xb2\x5d\x8c\x0b\x8a\x31\x81\x47\xde\x29\x97\x5d\xea\x7f\x58\x48\x8e\x20\xa4\xdf\x1a\xae\x29\x08\x3d\xa6\x4c\x05\xf2\x64\xea\x64\x5f\xf7\x43\x79\xd7\x96\x75\xe2\x70\xcb\xb6\x78\x84\x07\xa7\xc1\xb7\x9c\xd9\xeb\x45\x29\x7e\x8b\x7d\x47\xb9\xeb\x74\x66\x5b\x9e\x3a\x53\x2c\x2b\x2b\x45\xae\x64\x95\xfc\x9b\x53\x8e\xd3\x5b\x7b\x79\x7b\x39\xd8\x95\xfc\x2a\x81\xf9\x94\x7e\xa5\x6b\xdd\x41\xe7\x90\x92\x3e\xed\x9c\xb9\x73\x43\x2e\x85\x65\x5a\xfe\x2b\xfd\x17\xfd\x97\xb4\xac\x3b\xd6\xe6\xc2\x20\x5c\xa6\x25\x81\xfd\xe0\x1f\x16\xca\x69\x99\x56\x12\x36\x1b\x74\x95\x2e\x64\xe9\xe2\x68\x59\x77\xbd\x98\xa2\x3d\x49\xc1\x49\x21\xd3\x29\xe0\x01\xe9\x4c\x2e\x0b\xa3\xc2\x4e\x7f\x29\x57\x2e\x9e\xb0\x33\x8d\x74\x7f\x29\x30\x5b\xf2\x16\x9d\xa2\x1c\xb7\xa2\x70\xee\x34\xeb\xfe\x38\xb3\xe3\x85\xb2\x34\x1c\xd9\xe0\x2f\xe2\xb3\x56\xa8\xd9\x8e\x06\x61\x41\x90\x92\xbc\xa6\x9f\x83\xb7\x64\xdf\xe5\x98\xfd\x86\x2d\x95\xa3\xdf\x0e\x70\x06\x47\x0b\x42\x91\x62\xa6\x9c\x29\x5c\x85\x0f\xdd\x9c\x1c\xe7\xaa\x27\xe1\xdd\xec\x48\x31\x59\x05\xc9\xac\xca\xc6\xb4\x02\xde\x8e\xca\xe9\xc1\x89\xcb\x72\x6b\xa1\x28\xa1\x18\x7f\x37\x56\x86\x7c\x34\xd0\x1e\x35\x5d\x76\xbf\x1a\xe9\x7d\xb0\xec\x36\xf2\xbc\xc7\x48\x2a\xc7\xbf\x0a\x4f\x00\x32\x56\x9a\x80\x87\x3c\x98\x36\xce\xd3\x2c\x5c\x39\xff\xd8\xe3\xed\x94\x17\x59\xb5\xb3\x7c\x9d\x83\xa9\x08\x89\x1b\x69\x06\xe5\xe9\xa8\x5a\x8a\x22\x09\x31\x22\x5b\x3b\xd5\x9e\xa4\x48\xa5\xf6\x41\x79\x26\x65\xe1\x6a\x95\x72\xc5\xbb\xf2\x92\x13\xc6\x41\xba\xe8\xe9\xc5\x8f\xa4\xdc\x16\xed\x5f\x72\x5b\xeb\x89\xc2\x94\xb2\x36\x0f\x69\x6b\xb2\x0c\x37\xcc\x66\xc9\xb8\xa4\x4e\xb9\x62\x3f\x19\x7b\x96\x2f\xc9\x44\x46\x8f\xc2\x41\x37\xda\x51\xfb\x77\x6b\x39\xdc\xb8\xd3\xe4\xc2\x58\xbe\x07\x11\x7f\x26\x47\xf9\xc4\xd8\x5f\xb1\x27\x29\x6e\xc2\xdc\x6d\x5b\x26\xe5\x4e\x28\x6e\x98\xed\x73\x20\xf7\x02\x11\x04\xe6\x7a\x6f\xeb\x2a\x6c\xdb\x22\x0b\x59\x88\xdb\x4c\x26\x0c\x93\x63\x38\x05\xe3\x61\x3f\x99\x94\xdf\x6f\x51\x7b\xce\x2c\x07\x18\x66\x89\x50\x2d\x29\x7a\xe5\x6f\xa3\x4b\x59\xa7\xc4\x5d\xa3\xc5\x59\xce\xf3\x3c\x8d\x33\x4f\x28\x01\xb9\x8f\x8f\x23\xab\xc5\x95\x19\x64\x14\x45\x7f\x68\x61\x4f\xc5\x14\xef\x53\xd6\x32\x97\x89\xa3\xac\x3c\x39\x23\x32\x8f\xcc\x16\x47\x72\x2c\xbf\x0f\xc5\x47\xe5\x16\xef\xf4\xbf\xb7\xa2\x98\xe2\x85\x0f\x1e\xe9\xd0\xe6\x3d\x63\xf6\x31\x1d\x58\x93\x85\xdb\xd2\x73\x29\x56\x3e\x52\xae\x7c\x08\xfb\x5f\x2d\x29\xb9\x0e\x3c\x36\x92\xd9\xa7\xac\x13\xcf\x9f\x76\x2c\x65\xe6\x1f\x5f\xc0\x65\x08\xd1\xce\xbf\x1b\x2a\x0b\xdd\x03\x29\x95\x6c\x56\x68\x93\x53\x2e\x72\xf8\x5b\x62\x91\xed\x59\xce\x54\x12\xbe\x44\xd6\x3b\x61\x6b\x2a\x7c\xf8\x9e\x25\xbb\xd3\xef\x06\xb2\xb1\x72\xce\x20\x91\x65\xaa\xc6\xb2\xa7\xac\x8b\x37\x90\x30\xe1\xc7\xb9\xfb\x59\x47\xd5\x92\xa0\xd8\xb2\x3c\x3b\x3e\xc5\x9c\x84\x1f\x4f\x59\x76\x1c\x50\xb8\x35\x27\xe1\xa2\xec\x15\xec\x15\x4f\x61\xcf\x16\x3d\x05\x33\x9f\x94\xc7\x3b\xbe\x75\x4f\x68\xce\xb1\xf6\x28\x24\xa0\xfc\xae\x29\x84\xf4\xf9\x4e\x3d\xc6\x6f\xf4\x8d\x0f\xf6\xbc\x8a\xfc\x99\x3a\xd9\x10\x30\x35\x1e\x57\x67\xe6\x48\xb2\xfe\x4e\x99\xb6\x9a\x4a\xa5\x5a\x2a\xf3\x99\x29\x2e\xde\x72\xef\x8b\xcc\x1f\xca\xc8\x93\x5f\x0c\xf5\x96\x69\x61\xfd\x76\x8f\xf4\xc1\xd9\x2f\xb2\x75\xe3\x51\xfb\xc5\xf8\xc2\x6b\x4e\x60\x52\xfb\xef\x99\x79\x24\x53\xb1\x4a\x10\xeb\x39\x21\xde\x03\x6e\x25\xeb\x39\xe5\x02\x01\x65\x1c\x97\xa9\x5f\xd0\x79\x32\x85\xce\xc6\xdd\x17\x92\x8c\x0b\x0d\x51\x56\xbf\x90\x64\xf5\x7f\x8c\x05\xb8\x2f\xfe\x96\x1e\x76\x41\xe3\x5f\x72\xc5\xb4\xae\x42\xdf\x8c\x63\x5e\xf8\x58\x5e\x7d\xc5\x7e\x75\x12\xa4\x2d\x27\x67\x59\x31\x8f\x2a\x2d\xde\x95\x84\x24\x47\x95\xa5\xf1\xe4\x28\x04\xe3\x32\x82\xec\x5f\xfd\x17\xb7\x16\x5a\x29\xea\xbc\x97\x0f\xec\xdf\xa8\x29\x13\xe8\xb2\xf7\x95\x2e\xe4\x4f\x53\x24\x1d\xa7\x22\x0f\x97\x8a\xaf\x2a\xb5\xb0\x3c\x3c\x8f\xe6\xd2\x59\x19\x23\x27\x53\xfa\xcc\xa9\xd4\x2b\xc8\xe7\xd5\x14\x63\x6e\x58\x15\x39\xfe\x2c\x29\xb9\x56\x93\xf2\xec\xab\x52\x2c\xc2\x87\xdf\x57\x2e\x85\x76\x60\xdf\x90\xae\xad\xb6\x66\x8e\x84\x5f\x53\x3e\x24\x9d\x62\x04\x0f\x7d\xfa\x10\xc8\xe8\x8c\xbb\x03\x6b\xdc\xe2\x28\xa6\x3c\x27\xc8\xc9\xf5\x9e\x9a\x26\x99\xd0\x2a\x3b\xa4\xbc\x49\xd5\x7e\x01\x02\xe7\x77\xf3\xe7\x29\xfc\xb1\x0f\xbe\x52\x06\x21\xd1\xa2\x16\xca\x49\x2a\xac\xea\x10\xc7\x2c\xbc\xb2\x70\x2c\xd8\x12\x99\xce\x14\xf5\x98\xce\x47\xc2\xc1\xd0\x42\xe0\x7a\xe6\x94\xd6\xa9\x38\x0a\xbd\xab\xa4\x0f\x67\x5d\x42\x56\x90\x21\x5d\x03\xc9\x35\xe7\x56\x94\xf8\xaa\xfb\x9d\xeb\x02\x7d\x1e\x8f\x52\xf7\x94\xc7\xcd\xb4\x37\x6b\x4c\x6e\xc7\x04\x92\x9c\xe7\xc3\xc8\x03\x5c\x8f\xfb\xe3\x81\xac\x06\xce\x14\x97\x69\xad\xd7\x04\xc9\xd8\xc2\x42\x86\x2a\xf9\xc5\xe7\xc4\xa1\x75\x52\xc5\x9f\x5d\xbc\x74\xd2\xe7\x75\x49\x63\x25\x1f\x29\x8f\xde\xbc\x6b\x20\x0c\x39\x24\x9d\x8b\xca\x91\x5a\x2e\x9d\x3b\x04\xd3\xc2\xd2\x40\xfa\x26\x2c\x0f\xfe\xf9\x38\xe4\x3a\x07\x04\x75\x27\xb3\x1b\xb2\xfa\xd1\xc3\x22\x05\xf4\x52\x5d\x44\xdc\x9a\x4e\x84\x91\xf7\xac\xf8\x2b\x79\xdb\xf0\x9e\xb9\x2d\xf6\x7c\x2a\x3b\x44\x25\x90\x14\xf0\xe2\x71\x08\x1e\x33\xe5\x4c\x60\x81\xb7\xe6\x43\xbd\x26\xd4\x5a\xc9\x69\x4f\xd6\xe6\x21\x2c\xd8\xfb\xc1\xd6\x84\xa4\x29\xbb\x0a\xd0\x39\x63\x9c\x5c\x12\xc6\x8e\x8f\x73\xc7\x49\x22\x1d\xf4\x22\x99\x97\xe3\x22\x0b\x55\x62\x3a\x30\xa1\x4f\x3b\xab\x2b\xe9\xbe\x70\x9e\x25\xb5\x92\x70\x47\x90\x33\x25\xe1\xe6\xe5\x95\x30\x39\x7d\x7c\xa7\xf0\xd6\x87\xed\xb5\xe4\x8c\xde\x74\x3b\x5b\x57\xff\x63\xdb\x9a\x1e\x8c\x33\x15\xaf\x79\x5b\x68\x0f\xd9\x10\x98\x75\xe4\x43\x06\x8f\x85\xbe\xb4\x68\xdf\xb1\xe7\xbd\x55\x70\x3e\xee\xb4\xb0\x25\xd6\xcc\x5c\x2a\xa9\x5e\x4a\x0e\xd3\x51\x52\x6a\x93\x1d\x3b\xd3\xb6\x52\x51\xee\x4b\x32\xb4\x0b\xd5\x0d\x79\x93\xf4\x69\x1b\xdd\x2b\x02\x81\x44\xff\x40\x1e\xb9\xcb\x64\x46\x72\x6b\x21\xd8\xc6\xbb\x35\xca\x32\x02\x38\xf4\x75\xf4\xbb\xcc\x76\x79\x73\x06\x6d\x90\xe6\xc2\xf9\x2d\xef\x2d\xa7\x76\x49\xd0\x5a\xaa\x02\x61\x24\xe5\xa4\xeb\x3d\xd0\x5c\x4c\x71\x0a\x01\xa8\xbc\x61\x66\x3a\xae\x69\xc9\xe9\x53\x2e\x39\xcb\x37\x56\xba\xad\x0e\x11\xe9\xcc\x1f\x5f\xdd\xae\xcc\x29\x65\x5f\x94\x52\x76\x2d\xea\xaa\xf2\x51\xe6\x84\x7c\x11\x1c\xd8\x6c\x75\xb7\x90\x4a\xb9\xa6\xfd\x3a\x23\xe8\x06\xe1\x49\x8b\x30\x26\xb3\xee\xb2\xc5\xd4\x5e\xe7\x9e\x6a\xda\x38\x2a\x69\xd1\x95\x24\x42\x55\xfa\x58\xd2\xc1\xfa\xe5\xfb\xc3\xec\xe9\xe0\x00\x11\xee\xda\x8a\xd3\xd3\xff\xd1\xe6\x51\x33\x73\xe7\x4a\xf4\x5c\xfc\xab\xb8\x1f\x97\x76\x14\xde\x05\x92\xf4\x73\x33\x79\x68\x71\xd9\xab\x2a\x75\x2c\x2a\xa9\xc9\xfd\xc8\xfd\xaa\x6c\x17\xaa\xba\x00\xc9\xd3\xd3\x4a\x3e\xcf\x7e\x33\x92\x44\xaf\xa9\x2d\x5e\x67\x43\x93\x31\x2c\xd8\x43\x4a\x57\x7f\xfa\xd8\xcb\x95\xb5\x55\x79\x68\x26\xab\xe6\xc1\xc3\xf5\x9f\xa6\x23\x8a\x45\xb9\x33\xe5\xa5\xf7\xd6\xe6\x9e\x18\x35\xa8\x95\xd3\x74\x52\x33\x44\x29\xf2\xdd\x6b\x8b\x46\xeb\xde\xa5\x32\xba\xe9\xf0\x45\xf5\x54\xe9\x34\x26\x6e\x13\xc2\x3f\x4e\x5b\xd7\x03\xa2\x5a\x2f\xf4\x21\x4c\x75\x87\x7a\x4b\xc5\x90\xb2\xbd\x9b\x8e\x6c\x0c\x21\xa8\x03\x59\xd5\x4e\x28\x6a\x94\xf2\x71\xa6\x4f\xd7\xaf\xde\x8d\xa0\x31\xec\xcd\x20\x9a\xf3\xb5\x19\x6f\x03\x6d\xdc\x33\x83\x5a\x4d\x6e\xaf\xbb\xea\xb4\x29\x84\xe7\x55\xab\x89\xf5\x79\x77\x16\xba\xcd\x2e\x24\x7f\xe3\x78\xe7\xdb\x85\xe4\x1b\x4b\xd8\x6a\x0a\x89\x94\xe4\xd5\x5c\x6c\x23\x87\xbf\xeb\x94\x83\x72\x95\x33\xa5\xc9\x63\xbc\xc9\x87\x7f\x54\xba\xee\x77\xf3\x26\xe8\x50\xa5\x82\x2a\x34\x48\x97\x5d\xdd\x5d\x82\x4a\x7a\xe3\xaa\xb3\x29\xb0\x6d\x1b\x6f\x6f\x4a\xdf\x13\x0a\xcb\xec\x76\x2a\x46\x0b\xd1\x82\x63\x70\xdc\xef\x4b\x49\x4c\x1f\x7a\x31\x78\xdb\xac\xe9\x88\x19\x54\xd2\x11\x3d\xc9\x3c\x81\x38\x05\x2b\xcd\x4e\x1b\x95\xaf\x74\x25\x98\xed\x09\x58\xc0\xc2\xef\x49\xe1\x35\x95\xd0\x8e\x99\x8d\x8b\x1b\xdd\x92\x30\x11\x11\xa8\x8c\x52\xaf\x53\x86\x04\x7b\xfc\xc8\xa5\x8f\xb0\xee\x2a\x4f\xba\xb9\x35\xe1\xf4\x3a\x9d\x89\x0a\x69\x16\xe6\xd2\x24\x12\x4f\xd1\x69\x83\x02\x42\xb7\x05\xa5\x24\x5b\xec\x29\x88\x38\x8d\x8a\xa5\x60\x0b\x3d\x27\xfb\xbe\x1f\xd9\xce\x66\x52\xd1\x20\xc4\x45\xae\xe5\x25\xe8\x76\xe6\xb5\xba\xcb\x78\x37\x21\xce\xbc\x0e\xfa\xb6\x53\xa9\xe1\x9a\x76\xf2\xc2\xab\x70\xcd\x7e\xbd\x54\xfc\xd6\x4e\xd6\xa4\x70\x4f\x7e\xd5\x73\x70\x3c\x42\xe4\x03\xea\x68\x15\xbb\xd4\x74\x5f\x65\xa6\x52\x5a\xd6\x91\x2e\x8d\x8a\x1d\x8a\x9a\xe5\xd2\xb1\x9a\x9c\x5e\xb8\xe3\x91\x0f\x86\x40\xfe\x1d\xa9\x08\x25\x4c\xc6\x48\xa8\xba\xc0\x29\xff\x85\xb2\xce\x4c\x04\xd6\xb9\xaa\x60\x16\xcc\xa9\xe6\x97\xbf\x98\xa9\x96\x95\xd3\x92\x9e\x79\x81\x28\xc5\x92\x99\xfe\xa4\x3c\xee\xaa\xa2\x35\x72\xaf\x8f\xec\x29\x92\x28\x1f\x3e\xeb\xe4\xc8\xb5\xc3\x1b\xda\x43\xce\x1e\x99\x7c\xfa\x2b\xcf\x88\xda\x83\x51\xcc\xbc\x06\xfe\xd1\x4d\x79\x23\xc5\x59\x80\xb9\xc1\x11\x64\x6c\x0e\x18\x2b\xa9\x27\x29\x93\x81\xae\x49\x7b\xc2\x59\x08\x55\x35\xd3\xb2\xfa\x5c\xea\x28\xca\xac\x77\x7d\x3c\xa3\xca\xa7\x7a\x85\x39\x53\xd9\xa7\x19\x10\x00\xf9\x0c\x72\x52\xae\x24\x34\x31\x86\x92\x85\x9f\xb9\x11\x02\x33\x05\x97\xa2\xc7\xce\x73\xa7\x85\x8a\xe2\x60\x99\x96\x9c\x99\x5e\xf6\xa3\xe4\xaa\xaa\xae\x96\xe6\x5e\x92\x9c\x84\xa1\xc8\xca\x21\x91\x0d\x23\x43\x2d\x35\xb3\x09\x2c\x55\xc5\xa3\xbd\x8e\x34\x1a\xa9\x98\x7d\x4d\x01\xe4\x6f\x20\x19\xe9\x3c\x05\xba\xb0\x41\x96\x9d\xb9\x9a\xba\xe1\x59\x9d\x55\x75\x97\xe9\x75\xe1\x02\x55\x90\x90\xdb\x6d\x42\x07\x5e\xfa\x83\x92\x41\x9b\x17\x5e\xb6\x5e\x80\x9a\xad\x14\x56\xa2\x69\x24\x65\x1d\xd8\x5c\x08\x0b\xfe\x61\xf6\xc8\x49\x83\xec\x85\x4f\x1f\x4c\x37\x25\x49\x9c\x13\x81\xe6\x6c\xda\x6d\xa4\x4d\x45\xa9\x6b\xaa\xa6\x58\x5a\xb6\xae\x2f\x39\x09\xac\xaa\xc3\x0e\x3b\x2d\xe9\x13\xaf\x69\x0d\xc9\xb9\x54\x78\x5a\x5b\xd6\xf7\x69\x90\x6d\xaf\xed\x8f\x1c\x0f\xbb\x2f\xa7\x5f\xa6\x40\x38\xbc\x4e\x70\x79\x3c\xd9\xfd\x6b\x3a\x64\x05\x16\x9e\x3e\x72\x87\x4f\x4a\xe1\x9a\xe8\x63\xfa\x4d\x25\xae\x3e\xd1\xbe\x05\x61\xb5\xc5\x14\x7b\x72\x66\x6a\x0a\x24\x42\x4a\xb5\x72\x29\x46\x28\xdf\xf6\x6b\xe2\x1f\x85\x66\xb0\x50\x3a\xd9\x0e\xc6\xac\xea\xb8\x90\xde\x42\xa5\x9c\xde\xd5\x96\xb9\xfc\x6e\x20\x02\x6a\xbd\xa6\xb3\x05\xb7\x67\x5f\xdb\xa2\x5a\xda\x4c\x6f\x5f\x54\xae\xef\x40\x03\x95\x6a\x74\x55\xdb\x02\x6e\xb5\xfa\xad\xe9\x1b\x4b\xc6\x96\x53\xd5\x0e\x77\xbf\xb0\xe9\x2d\xd2\xaa\xd8\xad\x16\xed\xc6\x2d\x16\x39\xd7\xc3\x35\xcd\x1c\x02\x66\x30\x87\x70\xd9\x07\x04\x61\x2d\x33\x39\xea\x74\x84\x9e\xe1\x71\x65\x53\xab\x17\xd8\xd4\x14\xfa\x45\x93\xc2\x59\x8f\x2c\xdb\x58\x2d\x4b\x7e\x8d\x78\x58\xb8\x9c\xbe\xa2\x30\xb0\xca\x09\xa5\xd2\x5b\x71\x1b\xb3\x2a\xb4\xcf\xe4\x8b\x9e\xcf\x6f\x8e\x10\xcb\xbf\xfd\x0f\x47\x0f\xbd\xc4\xdd\xd7\xcc\xd1\x6f\x71\x7a\xf9\xb8\x04\x28\x57\xe5\xca\xc9\xf6\x97\xb5\xb8\x54\x55\x3d\xfb\x14\x27\xdd\x1f\xd2\x59\xfd\xd1\x8e\xe9\xcc\xfe\x48\x4a\xfd\xac\x3e\x76\x80\x56\xd0\xc5\x5c\x5a\x3e\xc9\x4e\xe2\x4f\x92\x66\x73\xaa\x35\x1d\x8a\x1a\x3c\xe5\x24\x3d\x48\x26\x00\x04\x94\x74\x28\x4f\x22\xfd\x64\x95\x64\x08\x0d\xf3\x81\xe4\x0d\xff\x75\x6a\xa1\xf2\xaa\x42\x4d\x2d\xd4\x3c\xc5\xb4\x71\xf0\x29\xab\x84\x17\x1d\xea\xa2\x71\x29\xe7\x01\x87\x3b\x18\x92\x27\xed\x12\x73\xd1\x3b\x3a\x20\x88\x68\x71\x24\x67\x6f\x3b\x3c\x68\x9f\xd9\x0b\x53\x37\x2d\xed\x94\x2d\xb4\xc5\xaf\xc2\xe2\x8f\x9e\xbd\x12\xf4\x05\xca\x01\xae\x4c\x15\x93\xeb\xed\x0b\x18\x2a\xc9\x56\xd6\x37\xde\x82\xcd\x19\x6c\xbd\x9c\xd3\x60\x0b\x3d\x84\x8f\x14\x54\x97\xd0\x2f\xe6\x47\xea\x14\x0e\xb5\xb2\xb2\xac\x5a\xad\x67\xfd\x6e\xb4\xe4\x51\x55\xaf\x7a\x59\x95\x83\xe0\xd0\x4f\x5a\xef\x4a\xf5\xae\x31\xfb\x23\x2d\x3a\x0a\x9a\x98\x85\x5e\xcd\xc0\xa8\x71\xe6\x64\x6c\xf8\x91\x2c\xf7\x48\x31\x49\x9d\xe6\x02\xcb\x06\x21\xd7\x7a\x91\xa5\xdb\x91\x3f\xfb\x93\x97\xfe\x3c\x4d\xd3\x26\x0a\x4f\x01\x22\x86\xc8\x5b\x4e\xfa\xdf\x2f\xd3\x67\x97\xa7\xf9\x6f\x6a\x8e\xa0\xe4\x99\x43\x8a\x32\x78\x3e\x4f\x6b\xa0\x1f\x8e\x53\x4c\x79\x81\xba\x6c\x91\x23\x0b\xdb\x72\x8b\x2c\xa7\x76\x93\x59\x96\x53\xfc\xa3\x50\x8a\x4f\x54\x34\xd4\x96\xfd\x9f\x3f\x32\x2b\x63\xab\x9a\x3d\x07\x3e\xbc\x32\xe0\x0e\x13\x2b\xb0\x7e\x89\x90\xb0\x76\xd6\x70\xcd\x41\x2a\x1e\x84\x2d\xf1\x4c\x38\xbf\x5b\xbc\x1b\x96\x4a\xde\x36\x38\x21\x7c\x2e\xfd\x41\x6e\xd7\x9d\x95\xe6\x40\xfc\xe1\xa2\x03\x51\x5d\xf6\x47\x49\x51\xb8\x2d\xef\xbc\x8c\xc6\x26\x93\x14\xaa\xfa\xc8\x4e\xd6\xd1\xad\x78\x83\x86\xcc\x56\x75\x0a\x4f\x61\xc2\x42\x99\x17\x7e\xfb\x30\xf1\x31\x83\x69\xc0\xa9\x96\x82\x90\x1b\xd7\xb4\x73\x4e\x42\x28\x72\x7e\x5f\x38\x96\x33\x93\xf2\x8e\x72\xf1\xa6\xe0\x81\xd5\xf4\x87\xbf\x4f\x75\x97\xae\xa1\x9b\xf6\x11\x65\x1d\x03\x52\xae\x49\xd1\x63\x6e\xd7\xf7\x5b\xd9\x10\x9b\x72\x76\x40\xd6\x16\x7d\x92\x82\xca\x75\x47\x41\xcd\x0d\xb2\x91\x8f\x57\xc6\x43\xdb\xb7\xd8\x7b\x68\x71\x54\x0d\x26\x32\xd1\xdf\x2a\x7b\xea\x2b\x76\x24\x71\x55\x8c\x49\xdc\x02\x84\x12\xa9\x85\x89\xe3\xc1\xf8\x06\x1c\x7b\x01\xea\xcb\xf6\x85\x56\x39\xa5\xaa\xf7\xab\x3b\xbe\x77\x1b\x15\x17\x5f\xee\x56\x5a\x47\xa8\x98\x62\xaf\x47\x05\x60\x97\x93\x95\x4c\xeb\x8f\x1d\x52\x2a\x1c\x98\xd6\x69\x4e\xa6\xbc\x9c\xd3\x0f\xa4\x18\x42\xc7\x2d\x93\x42\x1b\x3b\xb6\x26\xe0\x0d\x0b\xd3\xe6\x73\x45\x27\xd6\x28\x80\x5d\x07\x8c\x56\x58\xf2\x14\xb8\xaa\x46\x52\x25\xb7\xd5\x8e\x91\xd4\xe4\xb0\xf3\xcf\xd4\xef\x46\xc1\xcb\x21\xa7\x15\x41\x45\x4d\xf5\x03\xa8\xf0\x87\x4d\x6d\x0a\xb1\xde\xe5\xf8\xdc\x09\x08\xb1\x14\xbc\xdb\xd3\xb8\x9e\x33\x01\xa8\x59\x4e\x06\xf5\xb4\x51\x08\x32\x0d\x36\x3a\x78\x0a\x3e\x81\xbb\xad\x3a\xb7\xc3\x87\xf0\xe8\x0b\xa9\x90\xa7\x4f\x19\x97\x84\xf2\x0b\x42\x54\xf8\xea\xd7\x55\x08\x7d\xf7\xe2\x38\x39\xe9\x5c\x16\x5c\xa9\x42\x1a\xae\x24\xfb\xd3\x0a\xe6\xfb\x4c\xa1\xe6\x94\x84\xc3\x2a\x5e\x6e\xe9\xb1\xfb\x6d\xad\x0a\xd1\xd4\x54\x32\x18\x5b\x06\x14\x18\xfc\x38\x56\xcd\xad\x74\xa6\x72\xee\xd7\x8f\x37\xdd\xdd\x91\x64\xde\xd8\xc2\xfa\xc8\x9d\x2f\x79\x60\x00\x5b\x47\xfa\x0f\x84\xb3\x2e\xa7\x67\xe9\x99\xc2\xf5\xbc\x8e\x29\x3e\x2f\xe9\x48\xf9\xdc\x41\x64\xe8\x89\x2d\x3f\x78\x80\x60\x68\xe5\x40\x7f\x18\x8c\xea\x1a\x5a\xea\xf4\xd7\xec\x53\x10\x82\xbd\x5f\x2a\xdf\xef\xa4\x0b\xcd\x59\xb1\x9e\xbd\x24\xee\x56\x3e\xa0\x91\x21\x3f\x1f\xb5\x03\x1d\xa7\x54\x56\x55\xe0\xb3\xe7\x73\x4f\xe5\xdc\x47\x0f\xa5\x45\xa9\xa7\x1b\x26\x36\xba\xff\xe3\x64\xdd\x47\xa8\x46\xce\x1d\x73\xcd\xb6\x5a\x02\x0e\x59\x5e\xed\xbf\xfd\x71\x30\xe6\x9c\xcb\x7c\xb6\xe2\x5a\xa0\x8c\xe6\xd8\x42\x34\x01\x1e\x87\xf2\x2b\x7c\x27\xfc\x31\x2d\xad\xbc\x2e\x21\xcb\x94\xa5\xc6\xc0\x60\x88\x20\xb9\x93\x87\xa8\x1c\x59\xe9\xd1\xb2\x63\x7b\x3e\x5a\x7e\x41\x38\x0a\x8e\xda\x32\x35\x01\xe4\xaf\xe5\xec\x54\x4d\x04\xd9\xdb\xa5\x84\x17\xc4\xaf\xc2\x10\xfc\xb2\x75\xf1\xd0\xe3\xc2\x46\x9c\xb6\xc0\x74\xc8\x4f\xfa\xc8\x7f\xa5\x12\x3a\xdc\x8e\x0e\x9d\x31\xf4\x47\x27\x97\xb0\xa7\x10\x14\xe5\x45\x89\x68\x8c\x8b\xbc\x1a\x94\x83\x90\x12\x65\x3f\x3e\x4a\xcb\x7e\x99\x62\x72\xd5\x07\x35\x99\x28\x32\x1b\xe5\xb5\xac\x5d\xf1\xe1\xcd\x79\xaa\x1f\x1f\x6d\xb4\x5a\x08\x8a\xa8\x95\x4f\x10\x5a\x81\x22\x36\xad\x55\xc6\x51\x11\xdb\x96\x38\x33\xff\x6a\x0b\x58\x94\x1d\x4c\x2d\xf0\x3a\xbf\x48\x2a\x38\xec\x1a\x18\x8f\x4c\xce\x97\x3a\x15\xa8\x2f\x55\x3c\xd7\x9b\xcd\x39\x91\xec\x5e\xd5\xa0\xa1\xc9\x54\xee\xf2\x92\x33\x4e\xfa\xa4\x3b\x34\xa6\xdb\x09\x72\x39\xb3\xc2\xb1\x9a\xab\x03\x72\x7d\x5f\xcf\x39\x29\xf4\xcb\x12\xff\xcb\xf5\xa2\x62\xec\xd5\x43\xb2\xb9\x53\x30\x2e\xdb\x8a\x4b\x0a\x5e\x11\x62\xc2\xd0\xb7\xd3\x7a\x96\xf5\x1b\x64\xc8\x8a\xe2\xd3\xf8\x87\xf3\x06\xf2\x42\xa8\x40\x4b\xae\xb2\x47\xe5\xa8\x36\x0e\xb2\x61\x0a\xe1\xd0\xb2\x51\xdc\xe9\xb3\x65\x3b\x51\x7a\xa6\x9c\x52\x4b\x6e\xcb\xa6\xea\x4e\x15\x63\xcb\x71\x87\x12\x00\xa1\x65\x57\x62\x55\xf2\xba\x17\x2d\xe4\x0b\xba\x0d\xec\x95\x5f\xba\xc5\xdf\x73\x8a\x72\xe6\x45\xa0\x49\xf5\xda\xf4\x2e\x92\xd0\x5d\x3a\x0e\xa0\x26\x2a\xc8\x2f\x66\x66\xcf\x72\x74\xfa\x4a\x41\x11\x23\xf7\x56\xfe\xc4\x50\xf9\xb8\xc8\x32\x6f\xbd\x16\x04\xf7\xa1\x03\xf9\x54\x63\xf7\xe6\x3b\x29\x5f\xde\x91\x03\x35\xa6\x98\x09\xf7\x92\xcd\x38\x27\xe1\x4c\x37\x23\x7e\xb7\xdc\xd6\x75\xfa\x25\xa7\x1c\xe0\x4e\x94\xb1\x5d\x66\x6a\x4e\xa5\x25\x2a\x05\xe5\x06\xa2\xee\x21\x77\xd4\x49\x2c\xf4\x7f\x90\x7d\x41\x55\x6f\xc7\x69\x42\x58\xe0\xac\x4d\x18\xf6\x55\xa3\x45\xdd\x03\x7c\x7c\xd4\xf6\x71\xe1\xca\x59\xf6\x38\xd4\xa2\x70\x4c\x67\x80\x1d\x42\xe1\x5a\x03\x68\x03\xdb\x5f\x4b\x4d\xf9\xb8\x0c\x3b\x21\x2c\x7e\xfa\x08\x41\x85\x35\x83\xe5\x9a\x30\x55\x40\x33\xa3\xcc\xed\xe9\x3c\x85\x87\xcb\x55\x8e\x10\x21\xac\x8a\x1c\x91\xe1\xea\x12\x52\x39\xa1\x0e\xd9\x2d\x4d\x97\xf3\xbc\x1a\x30\x62\x83\x61\xae\x98\x61\x53\xe6\x92\x5a\x76\xac\x04\x50\xaf\xd4\xfa\xf3\x9f\xe3\xd5\xcf\x2e\x93\x56\xa6\x25\xf2\x16\xd8\x56\x91\x65\x39\xca\x8a\x97\x33\xe8\x8f\x9a\x7d\xa8\xd8\x4d\x26\xb3\x72\x71\x95\x7c\xc0\x39\x15\x5b\x55\x74\x40\x6f\x77\x76\x45\x14\xd4\xa7\xb5\x83\x8c\x85\xb7\x05\x09\xbf\x27\x80\x75\x6f\x7d\x9a\xa3\xd2\x48\x56\xe0\xb9\xd3\x1f\x39\x80\x77\x36\x59\x88\x3c\x70\x33\xf9\xcc\xba\xee\x04\x32\x27\x47\xff\x56\xbc\xc8\xe9\x8b\x1b\xe9\x3c\x0c\x93\x76\xce\x73\xcf\xa6\x58\xf7\x74\xee\xb4\x61\xfc\xc9\x8d\xfa\xc0\xbc\xf4\x82\x02\x8d\xf0\xf7\x05\xb0\x34\xe9\x18\x37\xf3\xb1\xe0\x55\xac\xdf\xb3\xa7\x8e\x2b\x1f\xec\x46\xeb\x3d\x85\xf4\x47\xe8\x57\x49\x58\x2f\x72\x2f\x45\x25\x4f\xa4\xe9\xfe\x04\xdc\x3f\xb0\x25\x1d\x01\xa6\xc1\x71\x13\x92\x64\x99\x36\xa5\x4c\x02\x9d\xde\xf0\x5f\x25\x98\x6c\xc8\xaa\x92\xa3\x4a\x58\x60\x0a\x6e\xb2\x24\x0c\x3c\xbe\x8a\x1a\xe8\x84\x4c\x0a\xb9\x70\x1c\x0b\x38\x18\xfe\x39\x5b\xde\xfa\x44\xeb\xb9\xc2\x0e\x8f\x7c\xe0\x0e\x80\x4d\x9f\xe5\xab\x77\x1c\x82\xcd\x00\xea\xc5\x14\x9b\x8d\x6c\x0b\xc3\x78\xe1\x4e\x3b\x6a\x85\xba\x59\x4a\xae\x7e\xd8\xc3\xa9\x2d\x84\x4a\x49\x53\x1e\x8f\x5b\x54\x88\xb8\x34\xa7\xb6\x18\x79\x97\xe7\x87\x36\xcd\xc7\x0e\xca\x3f\x92\x36\xee\x49\x08\x54\x9c\x97\xbd\xcb\x30\xb1\xe5\x4c\x26\x4c\x96\x55\x18\x5b\x55\xc6\x5a\xc8\xa7\xf1\x40\x63\x92\x39\xda\xf8\x9a\x56\x9a\x65\xa4\x65\x2f\xc6\x16\xdf\x55\x6e\x3a\xc9\xad\xea\x63\x6a\xee\x72\x28\xe0\x98\x73\x1c\x02\x26\x3e\x84\x10\xf6\xc5\xc3\x9b\x13\x52\xe0\x78\x47\x15\x79\x82\x51\xbd\x2b\x85\x1f\xfa\x61\xd9\x8e\x28\xd7\x43\x11\x2c\x8f\x2b\x53\x71\x3c\x4b\x4f\x5b\x03\x29\xcb\x52\x8d\x29\x5a\x86\xeb\x78\x90\xc3\x2f\x65\xf7\xe7\x34\x43\x3c\x93\x65\x4f\xf7\x6b\xb2\x89\x20\x87\xbb\xfe\xe0\x15\xb4\x5c\x4b\x21\x72\x88\xd3\xe1\x97\x25\xa8\x38\xb9\xf3\xc9\x00\x44\xec\x38\x9f\x9d\xcf\xae\x1d\x2b\x77\x9b\xb9\x55\xcd\x7a\x38\x4a\x81\x0a\xd2\xd1\xe9\xda\x36\xbb\x61\xee\x76\x4a\xeb\x6a\x2f\xfb\xc8\x74\x32\x3b\x5c\x1a\x65\xfc\x5d\xc9\x7a\xd1\x4a\xa3\x2c\x72\xcb\xe9\x48\x35\xe5\xfe\xd2\x8a\x60\xf9\xee\x38\xe2\x50\xa7\x6e\xf4\xf5\x6f\xc5\xfe\x88\xba\xf3\x2d\x6c\x76\x9e\x72\xd4\x95\x7e\x38\xdc\xa0\x48\x39\x26\xac\xc6\xd8\x2c\x85\xeb\x8d\xb6\x42\x2d\x8f\x8e\xb9\x63\x2b\x97\xd4\x66\x90\x1b\x5b\x4e\xa7\xca\xf7\x1f\xf5\x47\x7a\x69\x0a\xb0\xba\xf7\x77\x08\xfe\x31\x0f\xdc\x4b\x52\x5d\x6d\x00\xb6\x70\xb5\x4a\xfd\x86\xca\xf8\x19\xa0\x75\x4d\x99\x53\x5e\x3a\xe7\x3a\x1e\x74\xa7\xe8\x2e\xb9\x43\x35\x5d\x8c\x94\xa8\xc8\xd8\x52\x7a\x76\x68\xda\x91\xd9\x68\x2c\xfa\x91\xc3\xe8\x4c\x9b\xf8\xc8\x6f\xaf\xe3\xb3\x92\xda\xdc\x70\x68\x4e\x73\x22\x3b\x2e\x85\xf2\x35\x8d\x4a\x67\xe6\x37\xc7\x3e\xa0\xcf\x2b\x79\x30\x23\x8e\xd5\x86\xc8\x34\xae\x55\xd5\xcb\x3b\xbb\x17\x67\x03\x5a\xa7\x6c\x16\x93\x39\xa3\x74\x0d\xcd\x2f\xf6\xff\x97\xef\xc2\xb5\x17\x05\xf6\x4b\x37\xb3\x3d\xd2\xec\xa1\x25\x7b\x73\xd6\x8d\xe1\x0d\x68\xa5\x7e\xd9\xfb\xe6\x9a\x34\xe0\x70\x5c\x3d\x40\x28\x86\x15\xb0\x67\x49\xc7\xd1\x75\xbc\xa1\x72\x87\xfb\xc4\xb7\x8c\x8a\x9d\xb7\x77\x15\x1f\x9f\x45\x2d\xde\x4d\xee\xd4\x33\xd7\x47\xd7\x34\xb5\x42\xa1\x72\xa4\xa5\x7f\x93\x16\x1f\x17\x3a\x48\xf8\xd0\x0e\x08\xf4\x0f\x03\x07\xaf\xd6\x2c\x56\x36\x0c\xb2\xd4\xf0\xe7\xdf\x4c\xa9\x4b\x6a\x17\x19\x74\x23\x18\x45\x3a\x10\xcb\xc4\x26\xe7\x3c\x29\xd3\xb9\x67\x45\x2a\x64\x7e\x7b\xb3\x89\xb2\x76\x72\x16\x98\x48\xd0\xf4\xb3\x42\x9f\x2f\xcd\x59\x4a\xeb\x77\xa1\xe9\xa3\xbd\xe5\xf4\xdb\x2d\x1c\x4d\x0a\xc9\x3f\x3d\x4f\x81\xe1\x09\x9f\xe2\x4d\x59\xf5\x31\xbd\xd0\x2f\x7c\xa8\x3d\xdc\x54\xe8\xe0\xc9\x97\x74\x30\xf6\x32\x5f\x84\xc0\x95\x84\x69\x95\xa3\x90\x8e\x9a\x1c\x9f\x67\x7c\x28\xb7\x13\x54\x50\x06\x63\x5f\x3c\x6d\x31\x59\xb2\x00\xa4\x8d\x73\x86\x5d\x83\xae\x08\x0f\xf0\x6c\x20\x97\x1b\xf8\xa1\x87\xf1\x06\x60\x66\x9a\x08\xa3\xd1\x06\x02\xac\x29\x7e\x8f\x69\x51\x20\x85\x99\x0e\xdf\xf2\x75\xad\xec\xef\xa7\xeb\x06\xc7\x77\x3a\x7d\x74\x75\xeb\xaf\xdb\xa9\x60\x4f\x0a\x7e\x86\x02\x44\x36\x0c\x54\x47\xf6\x75\x82\x92\x50\x1d\xb3\xa1\xdc\x71\x27\xdd\x73\x76\xe6\x6c\xfa\x8d\xc3\x34\x1e\x87\x2f\xfb\x34\x07\x5f\x77\x9e\xe6\x96\x60\x1e\x8a\x7a\x42\xcd\xfa\x13\xc0\x3d\x86\x51\x8d\x32\xaa\x8d\xa7\x92\x8e\x59\xce\x95\x3d\xd0\x71\xa9\x4a\x82\x9e\x17\x6e\x4f\x71\xc9\x1e\x9a\xf4\x47\xfa\x48\x31\xc9\x99\xe1\xdd\x24\x9f\x4e\x53\xc8\xdc\xb3\x29\xd5\x21\x09\x19\x57\x77\x8a\x70\x43\x3a\xb8\xee\x57\xa9\x13\xb5\xb9\xe5\x38\x51\xcb\x90\xe5\xd2\x3b\x39\x5a\xd2\x44\x7f\x64\x30\x66\xf6\x1b\x0b\x47\xcd\xfa\xb4\x42\xaf\x43\x90\xa8\x22\x58\x93\xc0\xce\xc2\x8a\x38\x82\x99\x8f\xa3\x4c\x07\x07\xd0\x9f\x40\x51\xeb\x97\xc8\xdc\x84\x38\xde\xb9\xd4\xd8\xe4\xd0\x96\xc1\x80\xdc\x5e\xce\x11\x43\xd1\x34\x19\xec\x6c\xf6\x06\x6b\x2b\xae\x9b\xcf\xc7\x69\xa7\x3f\x1c\xa6\x3d\x45\xbe\xa6\x5f\xb4\xf0\xf4\xda\xe9\xe5\xa7\x20\x64\xdf\xc2\x79\x3a\x48\xf6\x66\x9a\x0e\x82\x14\xea\xa0\x06\x52\x07\x36\xb4\x6e\xe7\x3c\x25\x58\x12\xa4\x2c\x6b\x60\x3a\x99\xa0\x3e\xf1\xf1\x25\x1f\xfd\xc4\x3e\xb7\x4c\xa0\x0a\x20\xd3\xac\xf2\x23\xeb\x63\x63\xa1\x73\xcf\xdd\x67\x9e\x4a\x94\xf7\x2c\x29\x67\x0e\xc2\xce\x44\x58\xdd\xd2\x67\xaa\x14\xe5\x0f\x7a\x97\x0a\x2c\xb8\x90\x60\x95\x3e\xf1\x9a\x5a\xa8\x99\x0c\x46\x0c\xd5\xff\xf4\x16\x86\x29\xc8\xc8\xbc\x7d\xc7\x1f\x5e\x1c\x20\xd1\x78\x7c\x25\x75\xd2\x00\xd9\x8e\xf4\xfb\x50\xf0\xed\x14\x5e\x17\x86\xd5\x25\x0a\x13\xcf\x29\xca\x28\x5d\xd3\xde\x74\x47\x39\x99\xc0\x7b\xab\x62\x66\xf7\x55\xa7\x25\xb9\x97\x49\x92\x28\xcc\x5d\xc0\x24\x7b\x87\x09\xa8\x2a\xc7\x02\xa5\xe8\xc8\x83\x7c\x03\x32\xfc\x21\xc9\xef\xb2\xed\x99\x84\x8b\xd3\x32\xed\x5a\xe9\x40\x85\xbb\xa7\xbf\xe6\xe2\x91\x6a\xe0\xeb\xaf\x29\x99\x93\x8c\x5b\xf6\x77\x8e\x9c\xed\x7a\x9b\x3e\x12\xb6\x1e\x72\x3a\xa0\xdc\xeb\xa7\xf3\x9d\xaa\x98\xb6\x8b\x3e\x1f\xa0\x57\x2a\xc1\xeb\x22\xba\xfb\xa0\x02\x7e\xf1\x29\x9e\x3b\x07\x18\xeb\x69\x5e\x54\xf6\xec\x43\x98\xde\x7e\x36\xf3\x8c\x90\xb2\x49\x28\x77\x86\x5a\xc1\xc0\x6d\x99\x66\x0c\x90\xec\xbc\xd5\x2b\xe9\xaa\x32\xa4\x93\x02\x4c\x99\x21\xcb\xe5\x15\x24\xef\x07\x7a\x0d\x1d\xfe\xf1\xac\x2a\xad\x5d\x03\x95\x5d\x48\x6d\x5f\xbe\x95\x9e\xf7\xbd\xfb\xee\x87\x9e\x55\x52\x69\x37\x09\xf2\x6d\xe5\x5e\x1c\xa6\x33\x7d\xc0\x15\xab\x7d\x38\x65\x9d\x38\x63\x74\x17\x4f\xba\xbd\x3b\x5f\x8e\x14\x2b\x45\x96\x24\x85\x13\xd3\x35\x53\xcf\xc4\xf1\x61\xd9\x6e\xc7\x76\x4d\xf1\x4e\x85\xcb\xd2\xa6\xe9\xfc\xbb\x8a\x9d\x6a\x5f\xf5\xfd\xdb\xab\xc0\xd6\x70\x17\x8b\x66\x4d\x7b\x3b\xc8\xa4\xb4\xa3\xca\x4c\x79\x56\x26\x4e\x53\xc6\xb6\x06\x5f\x55\xa6\x7d\x66\x7f\xe8\x21\xe1\x02\x15\x15\xef\xdc\xa9\xc8\xc9\x2e\xd0\xeb\xc8\x3f\xd2\xc2\x39\x4e\x67\x3a\x95\x95\x40\x81\x92\x71\x54\x79\x33\xc0\xd4\x96\x53\x3b\xf5\xd0\xb8\x2b\x08\x13\x79\x57\x79\xb6\xec\x74\xa7\x07\x02\xa3\xc8\x64\x56\x74\x93\xcb\xac\x96\x18\xde\xe0\x72\x8f\x56\x70\xa3\xd0\x2f\x62\x8a\x77\x35\xd8\xa6\x18\x6e\xab\x27\x5d\x6e\x0b\xdf\x56\xb3\x64\xa2\x0a\x49\x85\xcb\x10\x18\xfe\x38\xc8\xb0\x98\x27\x06\x5d\xb6\x26\x97\x1b\x14\x5e\x2d\x96\xe4\xbb\xc2\x56\xd5\xd9\x1f\x15\xe9\xa9\x68\xe5\xff\xb4\x4d\xfa\x9e\x79\xc9\xb4\xa9\xce\x84\xd7\xd4\x34\xb1\x65\x7f\x0c\xc3\x96\xb9\x6d\x9b\xec\xd9\xf3\x87\xe7\xf9\x9a\x56\x36\x4b\xbf\xd5\x87\xfa\xd4\xa8\x6d\x19\x67\x66\xc0\xf6\x3b\x9e\xec\x68\xee\x75\x4d\x99\x6a\xbd\xa6\xe2\x60\x03\x5a\x8e\xb6\x6c\xd7\x54\x54\xb3\x53\x52\x82\xff\x8b\xfe\x6e\x30\xad\x83\xd1\xaf\x3d\xaf\x59\xbe\xc7\xea\x0b\x9f\x3a\xa3\xe5\x05\x66\xfa\x40\x37\x47\xe5\xdc\xd5\xdc\x4a\xc6\x6c\xb9\xa6\xc0\x1f\xa0\x9b\x4d\x54\xed\xa8\xde\x7e\x54\x14\xb5\x8d\xf6\xc2\xeb\xa7\x01\x90\xac\x30\x03\x7f\x64\x69\xd5\x9d\x02\x85\xe9\x95\x8a\x1c\x26\xf6\x8c\x52\x73\xe4\xd4\xd4\x06\x3a\x55\x18\x3f\x95\xd7\x06\x7f\x9c\x10\x8f\x1e\xbe\x54\x7a\x19\x22\xed\xed\x17\xeb\x43\x36\x4f\x85\x64\xc8\x5c\x6a\xa0\x0b\xd2\x5c\x9c\x1c\xbe\x5a\xfe\xd4\x5e\xec\x97\xfa\xf6\x08\xfe\xb7\x90\xee\x58\xa7\x26\xab\x96\xee\x52\x53\xb1\xfb\x9a\x13\x28\xd2\x74\x12\xb6\x11\x29\xb8\xa6\x35\x6d\xaa\xc0\xd2\xc2\x2d\x98\xa8\x10\xdb\x89\x42\xd3\x0f\x2f\x27\x4b\xe1\xc3\x5b\x53\x15\xee\x62\x34\xec\x3e\x48\xf7\x7e\x99\x72\xe7\xe8\xf1\xac\xf7\x43\xe8\xdb\x60\xbd\x2f\x81\x67\x33\x08\xc6\x85\xce\x2f\x3c\x4b\xaf\xbd\xd0\x1f\xfd\x0f\x15\xae\xbc\x96\xeb\x58\x77\xb8\x1d\x98\x02\xc7\xee\x1e\xc0\x72\x5a\x2c\xa7\x22\x4d\x7a\xce\x4c\xe1\xb8\x1e\x35\x14\x54\x48\xa5\xc2\xc1\x03\x24\x16\xa5\x66\xe6\xfa\xf1\x05\x72\x36\xf9\x30\x14\x8b\x9e\xd6\x73\x48\xee\x35\x5e\x26\x2d\x8b\xec\x9d\x0b\x4e\xc4\x8d\x9a\x02\xe8\x43\x3b\x4e\xc9\x8e\xbe\x7e\x3c\xb4\x90\x1f\xa6\x97\x54\x77\x2f\x74\xba\xf0\x4f\xcd\x29\x27\xf8\x49\x30\x97\x15\x77\x69\xe0\x77\x2f\x5b\xd5\xa4\x41\xb9\x33\x32\x4c\xb1\xfc\xae\x94\xcd\x19\x4c\xae\x32\xaf\xec\x57\x11\x6a\x4d\xf3\x52\xab\x01\x08\xba\x28\x63\x4e\xcb\x2f\x52\x07\x4f\x4c\x79\xbe\xa6\x0f\xe5\x03\xd3\x78\x74\x0d\xdc\xfe\x4f\xcd\x7c\x98\xb3\x08\x6b\x70\x25\x90\x4e\x2a\xb7\x1c\xb9\xc2\x85\xe3\xf7\xec\xd6\xdf\x80\x9b\xfe\xa8\x09\x17\xf8\xe0\x6e\x15\x09\xe1\x8a\xd2\xb2\x1c\xdf\x1c\x94\x55\xff\xd5\x7e\x2a\x9d\xa9\x80\x68\x2f\x10\x02\xdf\xed\xd5\xd6\x00\xf6\xa4\x7f\xbd\x71\xe6\x03\x78\x90\x16\xcc\x96\xc7\x9e\xeb\x71\xf3\x39\x81\x9c\xc4\xd6\xf1\xb5\xf5\xba\xf4\xe7\x12\xce\x40\xc6\xcb\xa0\x69\xd0\x6e\xeb\x13\xcb\xaa\xc2\x76\x32\x92\x2e\x24\x00\x82\xe9\x3c\x49\xe1\x68\x94\x33\x5d\xaa\x9b\x64\x1c\xef\x8e\x64\x7a\x15\x13\xf2\x97\xa2\xe8\x00\x97\x8c\xd8\x28\xb5\x1d\x48\x7c\x54\xe3\xac\x9c\x64\xf7\x76\xb1\x29\x7f\xb1\xd3\x0c\xc6\x2e\xbd\x39\xf7\xa2\x93\x2b\xa4\x36\x38\x26\x9a\xd7\x9f\x7c\xaa\xb4\xb2\xea\xb2\xa8\xed\x87\x97\xa4\xea\xa3\xbb\x65\x53\xf3\x17\x61\xe9\xb8\x74\x89\x16\x56\x1c\xde\x05\xc6\x9d\xb0\x4b\x31\xc4\x04\xde\x6c\x53\x45\x47\xad\x49\xa7\xb0\xd6\x56\xa0\x1a\xff\xe8\x57\x92\xf5\x1e\xe5\x90\x29\x95\xf2\x8b\x73\x81\x33\x99\xf3\xec\xd6\x4f\x36\x44\xc5\x56\xaf\x10\x88\xb6\x8e\x29\xb3\x5a\x5c\xe9\x4e\x25\xab\x19\x3d\x03\xca\x51\x38\x73\x1c\xbb\xcf\x9c\x1b\xb6\xe6\x35\x6d\xa6\x87\x47\x6d\xcc\x04\xa1\x32\x77\xa6\xf7\x35\x1d\x9e\xca\x41\x61\x2a\x47\xd2\xa3\x86\x8a\x4a\xa4\xa8\xe8\xb2\xf5\x66\x66\x27\x14\x75\xf5\x07\x4f\x85\x09\x38\x45\x1f\x61\x75\xe7\xbb\xb9\x18\xf4\xba\xfa\xd1\x7a\x9b\xb4\xae\x9a\x18\xb2\xc3\xc2\x74\x0c\xad\xc6\x90\x27\xda\xce\xb5\xb6\x3f\x7f\x2e\xa8\x65\xe8\x54\x01\xc8\x9a\x82\xc2\x5b\xc1\xb9\xab\x98\x44\x0d\x8f\x46\x95\x98\xe2\xa3\xd0\x65\xe1\x0a\xf4\x33\xf5\xe4\x43\xe5\x23\xc7\x6d\x3a\x94\xa8\x81\xad\xfc\xa6\x13\xb6\x2b\x82\xfe\x28\xea\xc1\xbd\x16\xe0\x5c\x7c\xb9\x01\xf2\x40\x67\x9b\x71\xfa\x6a\xe7\x86\x50\x01\xf0\x50\x76\x72\x3e\xa0\x02\x2b\x6a\x2f\xa8\xce\x4b\x50\x4d\x38\xeb\x36\x07\xef\x3a\x31\xc6\xb9\x42\xb0\x00\x11\xe5\xa2\x6b\xf5\x68\x61\xb3\x09\x3a\x36\x81\xb9\x65\x19\xcb\xdf\xad\x83\xbf\x64\x52\x28\x94\x42\xfa\x2b\xaa\xd6\xbd\xd3\x96\xea\x82\xab\xc7\x55\xe6\x33\x01\x82\x40\xce\xc1\x97\xc7\x36\xc5\x34\xe4\x68\x5a\x6a\xcd\x46\xd5\xff\x90\xdb\x35\x57\x73\x37\xec\xed\xe9\x94\x75\x4b\xc0\x95\x7d\x93\x67\xbd\x71\x69\xb8\xe1\xb9\x99\x55\x85\xf0\xc1\xa3\xd7\x96\x55\xad\x4f\xc7\xa1\x72\x8f\xad\xf3\x5f\x3e\x3a\x8e\x8b\x27\x93\x8e\x3f\x3a\x58\x7d\x66\x3d\x48\xe1\x77\x45\x93\x31\xc5\xbb\x17\xfe\x39\x43\x2a\x2a\x56\xad\xe9\x7e\xa0\x3b\x3f\xd8\x56\x62\x6c\x8c\xdf\xa2\xc9\x86\xc2\x90\x56\x01\xc7\xa7\xb2\xee\x23\xa9\xb2\x28\xa7\xa4\x67\xdf\x9d\xe5\x32\x1d\xa7\xd6\x5a\xef\xe1\xfa\x73\xa9\x3c\x03\x86\x20\x40\xaf\xa6\xa4\x58\x0c\xc8\xca\x47\xcd\x99\x46\x4b\x5d\x20\x39\x77\x5d\xc1\xe1\xcb\x10\xc3\xa1\x2f\x9c\x38\xdf\xb7\x41\xda\x84\xb5\x77\x3e\x7d\x14\x63\xbc\xf8\x02\x3f\x4d\xf6\x01\x0e\x8e\xc5\x3c\xa7\x25\xfe\xa9\xe6\xb3\xe2\x2e\x50\x39\x68\x82\x1f\x96\x64\x66\x16\x5f\xcd\x16\x5f\xfe\xf7\xf2\x7f\x5b\x3f\xae\xfe\x2a\x0c\xdf\x17\xff\xf4\x8b\x5e\xb3\xf9\x39\xe9\x49\x15\x8f\x71\x76\x42\x98\xc2\x94\x7e\x24\x2b\xbb\x5d\xbd\xd3\xe8\x4c\xe9\x8d\x61\xc5\x92\x56\xaf\x0e\x6d\x46\xf6\xf3\x02\xbd\x66\x2e\xe3\x8c\x33\xe7\x44\xf7\x91\x77\xc0\x77\x09\x0e\x28\xeb\x7d\x5c\x63\x1a\xc4\x89\xde\x9c\x69\x93\xb9\x76\x24\xa7\x92\x5f\x49\x42\x02\x9c\xcd\x28\x5a\xfd\x5d\x05\xc5\x2f\xe7\x94\xaa\xec\xfe\x14\x17\xf9\x4e\xfa\x3c\x29\x4e\xf0\x5f\x04\x1e\x87\x20\x21\x6b\x50\x44\xb6\xf8\x49\x7a\x08\xe1\xf2\xe1\x9b\xae\xbb\xd3\xca\xbc\x35\x15\xe3\x69\x15\xd9\xab\x4c\x59\xf1\x53\x33\xa9\x27\x9f\x7c\x4d\x69\x59\x9e\x82\xc2\x2f\x97\x77\x1e\x68\xdd\x87\xaf\x14\x4b\x7b\x75\x90\x25\xa4\xb0\x2d\xcc\x14\xb8\xe7\x07\x7f\xf6\xa4\xe6\xa2\xa5\xbd\x0d\x84\xcd\xf8\xd8\xd8\x09\x1f\x0a\xfa\xc9\x2f\x3e\x95\x2b\xda\x60\x7d\x69\xee\xa1\x23\xeb\x4a\x5a\x1f\x37\x53\x48\x49\x57\xdd\x52\x89\x22\xbb\xa5\x43\x72\xe6\x59\xc8\xb6\x86\xb3\xd9\xed\xe0\x7a\x46\x6d\x5b\x24\xbd\x29\x26\x1b\xff\x9c\xa4\x33\x9f\x7f\xce\xee\x36\x65\xe3\x62\xc6\x8a\x6a\xdc\x52\x2a\x80\x99\x23\xa1\xbb\xb6\x1c\x43\x94\xf3\xd8\x4d\xde\x9c\x67\x9d\x31\x96\x4a\x27\x0f\xe0\x57\x6a\xd5\xac\x04\xad\x50\xbf\xf2\xfd\x16\x73\xa0\xf8\x32\xea\x6b\x61\x5a\x4e\x8a\x5d\x42\x2f\x75\x96\x34\xf9\xf8\x78\xc4\xa3\x1d\x6a\xc2\x14\x53\x8b\x66\xd9\x05\xc2\xd0\x55\x61\x95\x2f\xbe\x1e\x0a\x25\xb8\x17\x3a\xd5\x70\xe1\x54\x83\x89\xc2\x59\x7d\x4c\x41\xaa\x01\x14\x9e\x49\x38\xe0\xed\x02\x70\x30\xaf\x8e\x11\xbf\xfa\x51\xcd\xde\x50\x19\x7c\x5f\x3c\xd6\xfe\x41\xd5\x2c\x47\x29\xa4\x68\xcf\x86\x85\x82\x15\x6d\xc0\xf5\x96\x65\x40\xe1\xdb\x52\x68\xae\x3e\x58\x2d\x7e\x57\xdf\x29\x2f\xbd\x0c\x25\xba\xf1\xbb\x14\x37\x8e\xe6\xfe\x68\xcb\xdd\xbd\x46\xf7\xdc\x60\xcf\xa7\x75\xe1\x75\xaa\x3b\x4e\x72\x81\x14\xbe\xee\xe0\xcd\x65\xf1\x6a\xfd\x8f\x57\x1d\x3d\x8e\xa6\x5f\xfd\x1c\xbe\x38\x3f\x06\xdb\x2a\x1c\x23\xf7\xab\xee\xed\x74\x4d\x4f\xa1\xe1\x17\xef\x93\xf2\xeb\x20\x35\x75\xd0\x16\x5a\x6d\x65\xb3\x5d\xf1\xf1\xae\x2c\xeb\xfd\xae\xfe\x74\xe4\x76\xa7\x9f\xc0\x97\xfb\x35\xf9\x50\x84\xfd\x61\xf8\x2f\xdd\xaf\xee\x8a\x5f\x5e\xf4\x60\x37\x9e\x0c\x20\xd3\xbe\x2a\x9a\x2b\x4e\x35\x6e\xc9\x6a\x6a\x09\xec\x84\xb2\x12\x5a\xb9\x57\x90\x74\xee\xd6\x5c\xfd\x42\x91\x78\xcf\x92\xcf\x9e\x64\x48\x62\xf5\x99\x41\x3e\x6e\xb2\xb0\x82\x17\x7e\x06\xc7\x22\xf6\x00\x30\xce\xd4\x01\xe1\x24\xbb\x0e\x58\xac\xb7\x2f\x9a\xb5\x66\xda\x4c\xeb\xbc\x53\x58\xf1\x4f\xd8\x1a\xed\x1e\x59\xd8\xa2\xc1\x36\x9e\xc3\x4f\xe6\x9d\xb7\x86\x44\x86\xac\x5a\xd8\xe1\x8e\x8b\x1a\x41\x22\xf5\x4e\xcf\xdf\x42\x2e\x1b\x7f\xd0\xab\xa8\x57\xbf\xfa\xf0\x10\x84\x61\x3d\x8d\x1e\xa3\x10\x40\x34\xc2\xeb\x9a\x0a\x93\xac\xc1\xd2\x1d\xeb\xec\x64\x9e\x08\xd5\x83\x4c\x4a\x42\x15\x52\x86\x64\xa6\xc5\x3e\x70\xb8\x87\x61\xbf\xf0\x5a\x91\x3d\xd8\x52\xe0\x59\xe4\x8c\x68\x8b\x1f\xbe\x02\x5f\x0c\xb0\x75\x8b\xf7\xdd\x74\xf4\xbb\x6b\x2a\xe7\xeb\x05\x1f\x35\x60\x97\x1f\xc9\xdc\xd3\xe5\xc0\x74\xa8\x70\x34\xe2\x2e\x17\xd2\x29\x2f\x3d\x05\xca\x1b\x03\x79\x32\xb7\x02\xc7\xb5\xb8\xa3\xcc\xf9\x54\xf9\x38\xa1\x5a\x28\x6e\x4f\x29\xa0\xa7\x52\xa9\xb2\xa6\xda\xc9\x79\x6a\xc7\x9c\x39\x04\xea\xb3\xf1\x7e\xa6\xe0\x0f\xdf\x9f\x14\x1c\x12\x80\x4d\xfe\x38\x59\x76\x89\xf9\xe9\x73\x01\xb5\x92\x6c\xa2\x6b\x68\xba\x91\x2d\xbe\x8c\x86\xdd\x06\xfc\xd6\x9b\x24\x03\x44\x6b\xad\x39\xcd\x66\x89\xbe\x2a\x12\xca\xa4\xdb\xb9\x8d\x09\xbc\x77\x23\xbf\xbf\x1c\xdc\xde\x05\x2b\xd5\x3d\x1d\x8f\x9d\xf0\x51\x06\x51\xf0\xed\xbf\xa8\xc5\x67\xe5\xe3\xe4\xc8\x35\x0f\x28\x97\x53\xa4\x02\xcc\x27\x13\x8c\x40\x54\xce\x93\xa2\x23\x2c\x53\xae\x34\xe3\xdc\x9b\x7d\xcf\x9c\x5b\x2e\xe6\x96\xa1\x9d\xba\x31\x34\x95\xb0\x2e\xc6\x08\x04\x8a\xa9\xd7\xce\xd0\x70\xcb\x4b\x1e\xb3\x9c\xce\x26\x52\x78\xf3\x8f\x76\x29\x89\xcd\xcf\x33\x44\xbe\xd6\x50\xf2\xda\x31\x1b\x4c\x04\xde\x91\x63\x55\xfd\xc4\xdc\xa2\xcc\x2e\x75\x66\x0c\x7f\x97\x10\xf4\xf9\xb8\x05\xd6\xdc\xc2\xf5\x66\x9c\x94\xe3\x57\x72\xee\xc6\x3f\x2a\x03\xd5\x19\x29\xfd\x34\x27\xc7\x91\xca\x9a\xd2\x4d\x40\x67\x20\x48\xba\x95\x22\xfc\xe3\x90\x75\x57\x5c\x77\x71\x6c\x6c\x17\xdc\x13\x50\x2e\x3c\x95\x33\x90\x59\x14\x40\xc6\x0a\x2f\xbf\xa6\x86\xee\x2f\x04\xfa\x84\x7e\x64\x05\xb1\xeb\x39\x74\x17\x45\xa7\x06\x6a\xe6\xe1\xcd\x7e\x76\xc3\x6e\x3f\x2c\xd6\x71\x78\x58\xe5\x39\x50\xe1\xae\x91\x34\xfc\xd8\xc2\x9b\x10\x85\x42\xdc\x0c\xc4\x48\x8a\xce\x43\xd8\xb2\x27\xd3\xce\xce\xd9\xf3\xaa\xdb\x79\xec\x0c\x85\x2f\xe7\xe4\xb2\xda\xa7\x72\x08\x1e\x89\xd3\x57\xf9\x04\x1c\x64\xe3\x3c\x77\x03\xbd\xfb\x9f\x31\xae\x46\x66\x9c\x81\x61\xd2\x6a\x2f\x63\x7e\x24\x0c\x18\xa2\x38\xc9\x47\x3e\xff\x6e\xfe\x0d\x68\xcd\x03\x63\x58\x79\x8a\xbe\x78\xd0\x13\x70\x4f\xfa\xd8\xf6\x84\x5f\x0f\xab\xef\x80\x8b\xaf\x1a\xe6\x31\x12\xa4\x44\x9b\x1f\x57\xca\x81\x92\x3a\x0a\x34\x5e\xf4\xf6\xf4\x26\x8f\x63\xc5\x4e\xa5\xf4\xcd\xd0\x31\x30\x2f\xe0\x64\x8e\x25\xad\x4e\xf7\x3b\x68\x80\x94\x6e\x9f\xd9\x93\x5e\xd9\x3f\x45\x9d\x13\x5c\x05\xc2\x19\xe0\x25\xbb\x4a\xbf\x72\x29\x2e\x7e\xf8\x01\x87\xfc\x70\x35\x67\xb6\x0f\x04\xca\xed\x16\xf6\x54\x97\xc5\xea\x61\xf1\xcc\xe9\xed\xcb\xa0\x1f\x46\x47\x73\x68\xb1\x42\x68\x84\x09\xbc\xa6\x3c\x0c\xf0\x9f\x57\x96\x5e\xee\xec\xc5\x80\x65\x4a\xf3\xf2\xe1\xfb\xa5\x9a\xfa\x3d\x0a\x21\x8d\x8b\xaa\x1c\x79\xfa\x41\x54\x2a\x52\x98\x4d\x15\xfa\x9c\x90\xba\xc4\xf4\xd1\x4b\x60\x42\x87\xd5\xc8\xe8\x23\xa7\x0f\xd0\xe2\x4d\xc5\x4c\xbf\xe8\x50\x47\x27\x39\x45\x3b\x35\xad\xc6\x4d\x25\x0d\xdf\x18\x4f\xd2\xe9\xcb\x6f\x9f\x52\x66\x3a\xdb\x7d\x74\x8a\x04\xba\x61\xc7\x98\x7d\xa3\xc2\xff\x42\xc4\xf5\x6c\x75\x12\x02\xf7\xe8\xdf\xbe\x7a\x7c\x7c\xb6\x50\x26\xc8\xa5\xf8\xab\xc5\x3e\x4e\xc3\x69\x8a\x4b\x31\xde\x7e\x28\x47\x0d\x88\x64\x3a\x00\x30\x00\x1d\xdd\xab\x57\x60\x49\x50\x7f\x90\x1d\x6a\xda\xa5\xdf\x67\xc8\x7a\xfa\x1d\x47\xc7\xfd\x66\x0a\x57\x31\x39\xef\x72\xdf\x73\xb5\x81\x17\x76\x4e\x56\x9a\x4e\xe1\x06\xcf\x89\x1d\x2d\x8d\x81\xed\x9d\x9c\x26\x5a\x57\xf0\xf6\xf0\xe6\x21\xf7\x4b\xea\xfa\xf3\xe7\x0c\x69\xf9\xdb\xf1\x48\xef\xd3\xa5\xf8\xbb\xd9\x49\x33\x33\xa9\x74\xa0\xb4\x79\x69\xf7\x37\x1c\x15\xe0\x86\x74\x78\x42\x5c\xd2\xe1\x3b\x50\xc8\xbc\xd2\x23\xfd\x96\x6f\x6a\xdf\x79\x98\xc7\x63\xc6\xde\xc6\xf2\xdd\x19\xda\x9d\x09\x19\x3c\x2c\x66\x13\x84\x8b\x31\x99\x88\x67\x98\xd6\x7f\xb9\x47\xd3\x1e\xad\x76\x69\xf3\xb3\xa3\x58\xd8\xe9\xa6\x3f\x50\x64\xef\x64\x08\xba\x51\xb4\xf0\xb3\xe2\x99\xd3\x4a\xf0\xa2\x9b\x3d\xc3\x5e\x5e\x18\x29\x4b\xa2\x62\x7e\x77\x9e\xcc\xab\xea\x61\x05\x0e\x7a\xf7\x8b\x2d\x28\xc0\x0b\xbe\xaa\x76\x6b\x00\xfb\xd5\xdd\x3c\x72\xea\xf9\x4f\xaf\xe0\x06\x45\xff\x03\x4d\x46\x58\x29\x03\x7b\x9e\x62\x31\xe7\x69\xf7\xfe\x08\x8b\x77\x35\x3c\xc7\x61\x11\x6e\x48\x91\x3a\xdb\x78\xb4\x7a\xac\x8e\x72\x42\xb3\xa7\x8b\x3b\xe5\x63\x48\xf0\x46\x27\xd2\xee\xf4\xae\xa9\xad\xe4\xa6\x36\x70\x2e\x5f\xea\x0c\xc5\x90\x4d\x07\x41\xf8\x28\xac\x6b\xf7\x22\xa3\x77\xec\x2d\xbb\xca\x4c\x6e\xcd\x39\x1a\x07\xf4\xbc\x52\x4c\xd2\xd6\xba\x14\x72\x1c\x7e\xbe\xbb\xf8\x34\x07\xc1\xa3\xe9\x57\x75\xd8\x4d\xe0\x8d\x2a\xd3\x62\xbe\x6a\x56\xf2\xe1\x7e\x16\xd3\x66\x84\xc2\xd3\xea\x85\x7d\x9a\x86\xb1\x05\x16\x65\x66\xfd\x40\x18\x87\xbf\x52\x3e\xde\xb0\xd0\x87\x91\x86\x02\xc2\x25\xd5\x14\xfb\x74\x67\x53\x8c\x7e\xf7\x61\xb0\xec\x45\xa5\x69\x70\xd1\x78\x41\x86\xee\x40\xce\xbb\xc9\xe5\xa6\x3c\xe6\x42\x87\x3a\x99\xe1\xac\xb2\x46\x59\x1d\xa9\xfb\xd2\xc9\xf4\xd6\xd2\x8f\xac\x6b\x35\x16\x8c\xf5\x46\xd5\x06\x1a\x36\x31\x05\x9a\xeb\x72\xb4\x4d\xcf\xbf\x5e\x4d\xf6\xdb\xee\xd3\x77\xf1\x65\xcb\x30\x1a\x80\x18\xab\x76\x80\x20\x78\x35\x03\x68\x85\xc0\x37\x38\x63\xee\xdb\xc0\x6e\x6a\x52\x8c\xea\xa8\xbe\xf0\xa1\x9e\x85\xbf\x2e\x14\xb8\x42\x79\xeb\x1b\x07\x95\xd2\xbd\x79\xb4\x48\xb1\x7c\x6e\xb8\xa1\x85\xef\xd0\x6e\x35\x1d\x98\x5e\x1d\xdb\x09\xf1\xcf\x98\xc3\xd9\xcc\xc8\x4f\xf9\x2c\x38\x4c\x84\x10\xec\x85\xec\x9a\x9a\x5b\x14\xe1\x32\x84\x19\x31\xeb\x18\xaf\x1b\x28\x3c\x06\x01\xfa\x9b\x16\xf3\xdd\xa3\xf2\x22\x75\x4f\x69\x5b\xad\x8f\x4d\xc1\xc7\x54\x06\x7e\xd2\x1e\x64\x49\x9b\x99\xb8\x74\xe3\x09\x8b\x21\x51\x5a\x87\xbe\xd8\xc8\x5b\x27\x8b\x2f\x66\x7b\xf3\xdc\xf3\x1f\xa5\xcf\x1b\x6a\xf2\x7e\x0a\x35\xfc\x2a\x77\xfe\xd3\x96\x07\x07\x4f\x0a\xb6\x56\x1f\x37\xf7\xa7\xda\x40\xca\x8e\xac\x46\x47\x3b\xe5\xa8\xe4\x7d\x9a\x8b\x26\x32\x6f\xfe\x56\x55\xdd\x5d\x51\xa4\xec\x84\x58\xe4\x9c\xd5\x35\x66\xe6\x9b\x27\x37\x29\x50\x32\xef\x08\x23\x14\x09\xfc\x9c\x5c\xcf\xb8\x23\x2d\x3e\x1f\xe5\xe3\x43\x7f\x60\xa0\x56\xe1\xe4\xcd\xe6\x86\x4d\x53\x6f\xe3\x71\x36\x05\x84\x07\xd9\xd2\xc7\xb3\xf5\x56\xd8\xda\x1e\xd3\xb3\xc5\xd1\x44\x3a\x04\x7b\x6b\xf1\x06\xe0\xd0\x02\x9e\x96\x9e\x77\xe8\x20\xc7\x16\xbf\xeb\xeb\x71\x52\x1f\x74\xe2\xdb\x54\xdb\xea\xf9\x7c\xa5\x77\xca\x4f\x1c\xac\x16\x76\xc9\xb9\x66\x19\x5d\xa7\x7e\xfd\x10\x96\xa7\xd4\x74\x40\xaf\x9c\xf2\xd1\x02\x01\x2b\x95\x96\xcd\x76\xde\xbb\xc9\x9c\x76\x3e\x3c\xc5\xc7\x94\xfc\x2a\x2f\xf2\x3e\x6c\xe6\xe0\xf5\x3a\x07\xde\x7a\xd4\x78\xd2\x24\xb3\xff\x23\x6f\x6f\x26\xa0\xb6\xc5\xcb\x11\xa2\x6f\x39\xae\xba\xc9\x38\x14\xd9\xfd\xea\xab\x57\xc8\xbe\xee\xf8\x37\xff\xb1\xc0\x4e\x32\x13\x94\x3d\x2b\x2b\x54\x4e\xee\x18\x40\xbf\x75\xd6\x6a\xf1\xbd\x6c\xce\x14\xd5\x36\x5a\xda\x2a\xf1\xaf\x79\xd7\xed\x1b\xf0\xf6\x98\xa7\x45\x6a\x70\xb6\x5f\xd3\x41\xe7\xf0\xc8\x27\x05\x0a\xb2\xa3\x70\x74\x57\x0f\xbd\xba\x21\xd3\xcd\x27\xce\xd2\x0f\x1e\xc6\x41\x59\xbb\x96\x65\xd4\x69\x51\x36\x15\x73\x65\xe3\x52\x82\x43\x14\x75\x8b\x42\x79\x66\xd7\xa0\xbb\xf5\x1a\x35\x80\xbc\xda\xce\xda\x75\xcb\xba\xf6\x22\x4f\x2b\xc4\x0e\xe1\x4a\x31\x4a\x25\x18\x23\xb4\x43\xb5\xce\x52\x7e\xca\x52\x03\xbc\x91\x80\x69\x84\x43\x3d\x86\x5f\x44\x39\xcd\x40\x5b\x4b\x11\x98\xd9\x4f\x97\xf1\xdb\xf3\xb4\xd8\xcb\x5c\x4a\x27\x0f\x0a\x33\x04\x9a\x53\xd7\x2d\x5e\x51\xc6\xb9\xcb\xeb\x9e\xd5\xb0\x8b\xf4\x5f\x74\x82\x94\xb9\xa8\x3c\xd5\x7a\x47\x61\x38\xff\x93\x89\xa1\xbc\x43\x5c\x99\xec\x55\xe0\xa4\x1d\x3c\x30\x3f\x23\xd3\x77\x52\xb1\xf7\xfd\x4c\xeb\x23\x99\x23\xe7\xa7\xc4\x55\x2e\x10\x27\x27\x56\x7f\xee\x21\x6d\xdd\x10\x4f\x1d\xf5\xd3\x10\xaf\x18\x3f\xb1\xa5\xb4\xc0\x8e\x71\x8b\x80\xf7\xf7\x13\xe4\xae\x3d\xc2\x42\xe8\x01\xf2\xb8\x22\xce\x2a\x1a\x51\x3b\x58\xe0\x4f\x60\xf2\x21\x8c\x29\xb4\x94\xe7\x7e\x29\x3a\x6d\x24\xfc\x31\x0a\x3d\x8c\xd8\x55\x35\x99\x16\x6f\x46\xc4\x39\x9a\x53\x50\xcd\x92\x1f\xd5\xb9\x27\x73\xf3\x08\xb0\x8d\x21\xa6\x30\x37\xc7\x95\x4b\xf9\xb4\xa9\x2e\xad\xae\xde\x6d\xe6\xbb\x63\x0c\xaf\xd5\x52\xe6\xf6\x84\x45\xdd\x54\x4e\x9f\xbd\x71\xa2\x70\xb6\x71\x07\x3c\x1a\xa7\x93\x7e\x1b\x29\xe3\x9c\x93\x72\xc8\x2b\x85\x60\x06\x67\x4a\x1c\x29\x30\xf3\x23\xcc\x9c\xfe\xef\xa8\x1b\x6d\x0a\xf6\x02\x1e\x69\xe0\x19\xf2\x01\x22\x85\xcd\x53\x07\xe4\x8d\xca\x42\x4d\xca\x8c\xb7\x1e\xbc\x0e\x98\xfa\x06\xe9\xec\x43\xea\xde\x4f\x17\xe6\x5b\x50\x36\x2a\x4b\x17\x0f\xea\xb4\x1f\x53\x76\x6c\x3c\xe4\x8f\x55\xe6\xab\x01\x5a\xb0\x88\x61\xaf\x7a\x9c\x2f\xa0\x4a\xe4\xe3\xcb\x8e\xfa\x8b\xf3\xeb\x03\x0f\xc3\x2e\x29\xc3\x16\xe8\xc7\x38\x3a\xa1\x09\xd4\xca\xab\xee\xb0\xff\x33\xaf\x6c\xa7\xca\xb3\x6e\x56\x78\xe4\x2d\x9e\x72\xde\x19\xa1\x6b\x7e\xee\x79\x5a\x79\xaa\x3b\x82\x79\x98\x29\xe3\xbf\x05\x46\x53\xb4\x5c\x0d\x49\xee\xdf\x14\xf2\xa0\x07\x7a\x3e\xcd\x58\x62\x73\x6e\x0a\x3a\x25\xc5\x3e\xc1\x6a\x85\x3b\x2f\x8b\x11\x60\x0b\xe2\x00\xee\xa4\x37\xf7\x87\x95\xcd\x0a\xed\xfb\xea\xbb\xc5\x93\x72\xf0\xd4\xe5\xc1\x0a\xfa\x6c\x0a\xf6\xb4\x2b\x0d\x90\x61\x30\x70\xa5\x8b\x29\x3a\xb8\x0e\x5a\x2d\xaa\x8d\x07\xe1\xaa\x85\x17\x03\x58\xdb\xe2\xa8\x0e\x0b\xd2\xee\x62\x10\xe4\x83\x7f\xc1\x7f\x50\xe6\xe1\x98\x0a\x61\x6e\xb4\x94\x4a\xed\x3e\x02\x57\x9a\x55\x64\x88\x49\x32\xf7\xa3\x3e\xeb\xa6\x28\x2d\x7a\x54\x37\x6b\x0b\xd3\xb6\x91\xdd\x84\x49\x2d\x72\x12\x19\x17\x30\x4a\x16\x5f\x66\x0e\x9e\xdf\x7a\x14\x78\x95\x31\xc0\x03\xa5\xd9\x9b\x15\x73\x7a\x04\x7b\x00\xd3\xbc\xa9\x31\x62\xaf\x5d\xcc\x93\x52\x71\x34\x34\xf4\xbd\xec\x57\x5b\xba\xb6\x01\x61\xc3\x56\x1f\x0d\x48\x11\x1f\x45\xa3\xba\x6c\x68\xa4\x8e\x08\x1f\x91\x50\x0c\x98\x3a\x9e\x6e\xd4\x56\xc7\xaf\x00\xb2\x77\x57\x44\x3a\xb1\xe0\x4c\x61\xd4\xfa\xa7\x21\xf8\xf1\x71\xf5\xac\xec\x72\x02\x39\x88\xdf\x0a\x34\x0b\xbb\x56\x8a\x6e\x65\x5f\xa5\x5d\xc0\xa3\x9e\x45\x84\x08\xbb\x4c\x26\x64\xf6\xd6\xa7\x2a\x54\x6f\x6d\x82\x74\x92\xd3\xa5\x64\x5b\xaf\xf7\x5d\xff\x2e\x68\xb1\x77\x91\x9b\x2a\xf2\xfb\x33\x9e\xfe\x9d\x6a\x7f\xee\x5e\xf6\x70\x35\xd1\xe2\xd7\xa5\x6b\x33\x14\xbd\x49\xf1\xf9\x73\xfa\x31\xe9\xf7\xac\xa4\xc2\x6d\x56\xa3\x20\x4a\xa1\x50\x15\xf5\x67\x29\xfc\x04\xfc\xa8\x43\x31\xd9\xde\xac\x0c\x1b\xa0\x54\xb6\x04\x7c\x0c\x08\x0b\x96\xbc\x4a\xd4\xb1\xcc\x4d\x18\x0f\x6f\x45\x07\x47\x13\x09\xc1\x7c\xf2\x99\xf1\x4c\xbb\x56\xd5\xb0\x5a\x4f\x13\xaf\x90\xb4\xbc\x9a\xd5\xf4\xe9\x19\x72\xbf\xc2\x6f\x95\x64\xc3\x4d\x45\x8b\xd2\x0c\xfa\x0f\xad\x08\xd7\xca\x5a\x53\x4a\xb4\x5c\xfe\x76\xfe\xc4\xa9\xec\x46\x5c\x84\x7e\x08\x69\xa5\x9e\xef\x5a\x36\x89\xda\x1d\x9d\x2d\xa6\xa2\x4e\x6c\xee\xc2\x9e\x32\xd7\x02\x6c\xf6\x57\x68\xa5\xc0\xcf\x96\xb3\x59\xc6\x02\x7f\xb0\xa6\x54\xd5\xc8\x32\xf4\xc8\x7d\xd1\x14\x41\xf0\xbe\xe3\xda\x81\x58\x8f\x23\x50\xc6\x94\x5c\xef\x23\x45\x75\xc2\x5e\xd3\x39\x26\xaf\x15\x01\xe1\xa6\xd1\xd6\x7c\x01\x5d\x99\x5a\x55\x1d\x74\x9a\x4b\x1a\x76\xbb\xea\xdc\x04\x87\x62\x31\xd1\x3b\xf6\x6f\x3a\x22\xfe\xa9\xb4\x2b\x28\x5f\x74\xbb\x0c\xe5\xa8\x2e\x32\x96\xe1\xbf\xf3\x2b\xc7\xc0\xf4\xbd\x9d\x6b\xb9\xb3\x60\x99\xce\x3b\xc3\xdc\xb0\x41\xb3\x3f\x1d\xb4\xb0\x5a\x1e\xcc\x60\x2b\x70\x2d\x89\x22\x9f\x47\x46\x19\x26\xe2\x7b\x3a\x58\x8b\xd2\xc1\xe5\x6c\x30\x88\x44\x68\x18\xb8\xe2\x84\xe0\x19\xdf\x0b\x1a\x8f\x41\xf9\xf3\x23\x65\xa3\xad\x56\xba\x5a\xcd\x7e\x66\x6f\x09\x75\x0b\xda\x2f\xd2\xd1\x93\x34\xba\xf5\xe6\x0f\xd9\x32\x00\x49\x73\xbe\xdb\x81\x5b\xad\x08\xbe\x78\xf6\x37\x37\x6e\xa9\xc5\x37\x08\x21\x63\x92\xc7\xc5\x7c\xa7\x43\xfd\x3b\x74\x7d\xcc\x17\xb4\x1d\xdc\x80\x6a\x2f\x5b\xae\x53\xf6\x1d\xd5\xd8\x9b\x09\xd9\xe5\xea\xb4\x50\xc7\x9b\xf5\xd4\xb0\xd8\xbb\x13\x4c\x2b\xfe\x69\x84\x1f\xdb\xb0\xd5\x62\x56\x35\x6a\x98\x19\x40\xf0\xff\x5f\x29\x84\xeb\x93\xd2\x82\x02\xd3\x7d\xa5\x59\x26\x8f\xd0\x90\x1b\xa0\x1e\x6a\x6f\xeb\x4b\x4f\xd8\x29\xa5\xf2\x18\x79\xe7\xe3\xac\xea\x4a\xea\xab\x9a\x05\xf9\xd9\xb9\x74\x90\xd6\xa3\x82\xe6\xc2\x99\x0c\xf4\x5a\xfe\x8e\xe4\x68\x47\xa3\x30\xfb\x69\x1b\xe6\xbe\xe6\x32\x3d\x04\x86\x93\xe8\xa8\xc0\x8e\xee\xc8\x5a\x12\x1a\xce\xf1\xcc\x69\x04\x73\x1c\xcd\xfe\x8d\x04\xa9\x95\x17\xb6\xe0\x15\x85\x17\xa5\x33\x47\xce\xa2\xb1\xe3\xd4\xc4\x33\xa4\x4f\x07\xed\x3d\xf2\x81\x61\xa6\x59\x05\x5b\x0f\x38\xab\x3c\x82\x6a\x12\x76\x34\x95\x75\xb5\x98\x2d\xad\x1a\xca\x65\xe6\xf5\xd2\xf6\x0a\x31\xfd\xa7\x89\x82\x4d\x16\x5e\x99\x4a\x17\x1c\xde\x17\x4d\xd8\xd8\x95\x7d\x97\x42\xad\x6c\xf1\x2f\x14\xbc\xd2\xe6\x5f\xad\x7b\x05\x18\x85\x35\xfb\x76\x9c\xbb\x42\x12\x66\xc9\x83\x57\x15\x1b\x87\xd5\x2b\x13\x71\xab\xa2\xfe\x8a\xaf\x24\xf4\x40\x70\xbe\x8e\xf0\x30\xe6\xc5\xe6\xb0\x10\x40\x81\x8e\x19\x27\x86\x41\xc2\x3a\xcc\x7b\x35\x93\xa8\x9e\x32\xb3\x6b\x7b\xf0\x0c\x51\x81\x46\x37\x19\x39\x66\x74\x19\x68\xf3\x34\x24\x16\xbd\x6e\x12\xfa\x58\x41\x71\xfe\xd0\x2d\x74\x1d\x4e\x30\xee\xf4\x9d\x3a\xd2\x32\xfc\xaa\xdf\xb9\xff\xd8\x7e\xdf\x53\xd7\xec\x44\xbf\x0c\xc4\xd3\xd7\xec\x8e\x6c\x14\x5a\x87\xb8\xd5\x8a\x60\x1b\xf2\xfc\xbb\x2f\x63\xa1\xf5\xf4\x82\xe0\x5e\x30\x9c\x4d\x19\xe6\x5f\xa7\x99\x6e\xc2\x9f\xd1\x35\x6d\xa1\x1d\x53\x48\x51\x08\x44\xd6\x87\xe5\x9f\x16\x30\x84\x5b\xa0\x45\xbd\xac\xed\x7e\xdb\xe5\xe3\x06\x7f\xf0\xd4\xce\xe0\x57\x7d\x13\x5b\xb6\x0b\xf9\x58\xaf\x49\x9d\x9b\x19\xf8\xc3\x1b\x79\x38\x2a\x99\x51\x96\x02\x8a\xa6\xdc\x00\xc5\x06\x9c\x57\xe3\x8d\x96\xda\x32\x80\xd1\x6c\x02\xcf\x39\xfb\x5a\x41\xc7\xb6\x63\x16\x9e\x73\x97\x57\x18\xfd\xad\xb9\x73\x83\x72\x2a\xcb\xa2\xbd\xc0\xdf\xf1\x90\x97\x3e\x6a\xec\xd8\xfb\x14\x81\xba\xf0\x61\x42\x73\xfe\xf1\x9b\x9a\x0a\xf0\x72\x09\x23\x66\x4b\x52\xb6\x73\x7c\xf8\x5e\xb1\xdb\x5b\x30\x95\x4b\x0f\x46\x5d\x25\x2d\xf2\x0f\xb9\x1e\x8a\xa2\xb3\xf9\xb4\xfc\x6a\x16\x96\xc4\x05\x82\xf7\xe3\xc7\x5e\x75\x93\x8f\xc3\xf2\x55\xf8\xe0\x45\x5d\x62\x16\x66\x15\xcc\x3c\x3a\x11\x96\xa2\x1f\x8f\xc2\xc7\x29\xdb\xad\x28\xa0\xae\xea\x14\x9a\x39\x21\x1a\xe5\x69\xeb\xe3\x81\x72\x04\xff\xad\x5e\xb0\xcd\xf9\x1a\x2c\xae\x4c\x6e\xf3\x64\x48\xfe\xb9\x7a\x86\x91\x31\x53\x31\x95\x4c\x0e\x11\x5e\x66\xc5\x0d\x92\x0d\xd9\xb8\xe9\xd7\x0d\xe5\xad\x93\x59\xea\x52\x76\x3b\x85\xa9\x0a\x79\xd9\xcb\x2d\xf2\x45\xbe\x6e\xbc\x8e\xa3\xb3\x07\xbb\x55\x15\x4a\x7f\xdb\x3b\x50\x86\xbe\x3a\xbc\xaa\x63\x3e\x76\x31\x38\x54\xe6\x1d\xe0\xcd\xa7\x5f\xd8\xbb\xbe\x98\x9f\x75\x60\xa3\x66\xf4\x03\xc7\xa1\xfa\x90\x3d\x1a\xe9\xce\xcf\xf4\x93\xaf\xd7\xf9\x96\xc5\xfb\x5b\x5a\xda\xb7\xe7\x98\x7a\x20\xd7\x53\x5d\xb8\x98\xe2\xcb\x6f\xc6\x68\x18\xb0\xd7\x04\x97\x86\x3b\xe8\x09\x43\xce\x8d\x4e\x46\x1a\xd5\x35\x9e\xf8\xbf\x8a\x12\xb5\x58\xed\x5d\x86\xdb\x0f\x83\x6c\x32\xb5\xd3\x8b\x0b\xbf\x3d\x0d\xc7\xd0\x56\xab\x3b\x42\x78\x06\xee\x52\x90\xd3\xad\x5b\x9f\xc9\x28\xf9\x9d\xc3\x69\x60\xb8\x2a\xeb\xbb\x57\x18\x1e\x6d\xd4\x5f\xee\x49\x99\x8a\x9d\x39\x3a\x23\xcb\x75\x58\xd4\x1f\x6c\xaa\x86\xba\x18\xed\xa9\x55\xca\x2f\x73\x91\x1e\x2d\x12\xd6\x9d\xd4\x95\xfd\xa1\xab\x3b\x50\x18\xde\xa4\x9e\x3e\xa5\x2c\x34\x43\xe8\xa1\x96\x9f\x8a\xff\xe7\xcd\x1e\x98\x01\xc4\x84\xa4\xa8\x3b\x93\x09\xa2\x63\x8a\x23\xdf\x3c\x90\x16\x8a\x5f\x3d\xb4\x38\x7b\x00\xfe\xe1\x3f\x56\x29\x04\xb3\x60\xec\x39\xb7\x91\xbe\x4c\xd1\xb3\x3b\x9a\xb9\x2f\x9e\x05\x2d\x2e\xdf\x25\xbe\xab\x6a\xde\x86\x4a\x93\x03\xc4\xa0\x09\x16\x44\xce\x62\x47\x9e\x98\x38\x63\x92\xf6\x96\x42\x3a\x5b\x45\xa8\xca\xd2\xa5\xf4\x8b\x2a\xca\x40\x93\x1b\x88\xbe\x7b\x38\x33\x29\x2a\x1f\xc9\x60\x72\x58\xb6\x90\xb0\x22\xd0\x1c\x14\x80\x77\x90\x3b\x39\xa3\x14\xc7\xe3\x92\xca\x54\x6d\xa3\x85\x08\xb5\x22\xae\xcb\x27\x33\x48\x03\xec\x19\x70\x3d\x64\xea\xd9\x3b\xaf\xc3\xce\x2b\x77\x0f\xde\x7d\x49\x9a\x7e\x0f\xa4\xd0\x9c\x86\xc9\x84\xbd\xcd\x00\x6a\x3d\xaa\xb5\xf8\x2c\xfc\x72\xc7\x45\xc5\x26\x77\x27\x5d\x2c\x05\x8f\x72\xa3\xaf\x47\x83\x6f\xa8\x4d\x8b\xdf\x1d\xc0\xfd\xc8\xe2\x5d\xfd\xbe\x93\x9c\x4c\xf0\xf6\xf1\xdd\xfa\x99\x76\xd7\xa1\xea\xf5\x67\x66\x26\xc7\x87\x62\x8c\x61\x3a\xa6\x4c\xd1\x61\x04\xc4\x01\xcd\xaf\x2e\x5f\x2b\x9d\xdb\x82\xb3\xe9\x2d\x5b\xd4\x06\xd2\x1f\x28\x72\xfd\x85\x6b\x85\x1f\x8b\xe3\x55\xe4\x3b\xa1\x48\x53\x9c\x7b\x96\x86\xf9\xf2\x3d\xc8\xdc\x48\x3d\xd4\xc1\xb6\x6d\x7c\x67\x2c\xfc\x77\x86\x5f\x57\xef\x5a\xa8\x8f\xd8\x7e\x94\x97\xa6\x4e\xf3\xbb\x2f\xf5\x75\x0d\xa6\x96\x75\xfb\xf5\x75\x94\xbb\xda\x7d\x70\xb9\xa6\xb6\xa4\x10\x6b\x65\x84\x88\x31\x62\xa1\xb0\x72\xc0\x95\x10\x15\x22\xe5\x78\x4d\x35\xa7\x26\xcc\x60\x3a\x78\xaa\xaa\x26\x7f\xb3\x0c\x3f\x4c\x31\x0c\xe2\x65\x00\x4f\x28\x2f\xf8\x8e\xdc\x7c\x76\x46\x11\x0e\x8d\xbd\x69\x71\x53\xaa\xbb\xc6\xd6\xf3\x1a\x8c\xeb\x0c\x72\x7e\x6a\x7a\x51\xb9\xb7\x46\xe0\xce\x55\x7d\x6a\x3f\x16\x46\x8b\x77\x8d\x85\x0f\x26\xd5\x9a\x92\x45\xd6\x03\xe6\xb2\x74\xc8\x30\xec\xf6\x1f\xd7\xe7\xd3\xa0\x01\xd3\xeb\xbe\x5c\xbc\x4b\xf5\x0a\xbc\xa8\x13\x3c\xb8\x13\x78\x66\x2c\x3e\x28\x2d\x43\xa5\xf8\x65\x04\x34\xfc\xa4\xfc\x52\xd3\xc8\xcd\xca\x17\x96\xed\xd8\x55\x88\x4f\x9f\xd1\x5c\x16\x1f\xa0\xd0\x73\xad\x4e\x10\xd7\x5e\x66\x9e\x2f\xef\xa4\x45\xdd\x89\xf1\x03\x72\x18\x99\x9e\x5e\x13\x9e\xde\x12\x0e\x40\xe0\xef\xeb\x33\x85\xeb\x79\xfd\x48\x21\x9a\xc8\x7f\xec\x64\xf1\x67\xb8\x1d\x78\xe0\x38\x11\x76\x54\x43\xfd\x3d\x0a\x15\x40\xe1\x95\x52\x41\x2c\x16\x8d\x33\x42\x0e\x31\x15\x2c\xa4\x88\x09\x48\xd3\x5a\xff\xd2\x82\x20\x9e\x68\xbd\xe3\x1c\xc0\x0e\xbd\xa6\x73\xc8\xf2\xbb\xff\xff\xe7\x01\x5a\x77\xf5\x48\x27\xa7\x8f\x6a\x00\xca\x0b\x41\x14\x16\x8b\x45\x07\x85\x5b\xe9\x01\x7f\x99\x7a\x94\xfe\x5e\xbd\xeb\x0e\xef\xac\x39\xb4\x75\x35\x84\xda\x9c\x1b\xa2\xb9\x21\x50\xe8\x69\x71\x99\x4c\x23\xd9\x4e\x0d\xdb\x70\xdf\x3a\x18\x52\x70\x26\xf7\xea\xa1\xb8\x7c\x76\x4d\x41\x90\xea\x6b\xcb\xe2\x0f\x83\xc7\xec\x4f\x38\xc0\x2f\xc2\xae\x17\xc2\x73\x86\xab\x5b\x6a\x54\x21\x3c\xb5\x22\x6e\x73\x47\x65\x70\xfe\xcc\x00\x24\x5a\xc9\x23\x92\x1d\x5c\x7c\x7a\xb5\x44\x42\x59\xbf\x1c\x4f\x6b\x19\xcb\x00\xa8\xa8\xdd\x32\x5c\xff\xb1\xfa\x0b\x34\x55\xb6\x15\xa6\xb9\xb6\xc2\x86\x9b\x06\x9e\x77\x19\xd2\x5b\xe6\x6a\xe0\x16\x24\x67\xbf\xf5\xa7\xf7\xc7\x99\xdb\x32\x30\x38\xde\xb6\x5a\xab\xdc\x2f\x35\x2a\x8d\x02\x67\xca\xc7\x82\x98\x3c\xe5\xc2\x16\xd1\x8e\x7b\x80\xa9\xc5\x9b\xb0\xf7\xf9\xf8\x7f\x09\x92\xd9\x99\x07\x3d\xe0\xc6\x0b\x87\x61\x34\xf0\x57\xcf\x7f\x3d\x8c\xa1\x66\xcb\x9e\xaa\xea\x43\x7b\xc0\x66\x04\x80\xbe\x01\x72\x67\x52\x77\x26\xf0\xf6\x0c\xaa\x28\xa6\xf8\xc8\xd7\xa8\x17\x96\x1c\x84\x29\x38\xe4\x51\xf0\xa8\x7e\x07\x7d\xe1\x9f\xb3\xab\x8a\xd4\x21\xd6\x77\xbf\x6b\x4e\x7f\x58\x8d\x2f\x15\x3c\xf5\x03\x9f\xf6\x76\x3d\x7c\xb9\x33\x60\x03\xe6\x79\xbe\xd0\xa6\x7c\xea\x60\x70\xdd\xee\x35\x80\x7a\xb7\xe9\x37\x28\xed\xb0\xec\xef\x3c\xfb\x2b\xf6\x58\xd8\x1d\x83\x24\x8b\x84\xcd\x8b\xec\x2c\xad\xaf\x6e\x52\xbb\xf8\xc3\x7c\x30\xbf\x19\x24\x4b\xd7\x7b\xdf\xe0\x62\x5b\x90\xd8\x9e\x87\x23\xa8\x67\x66\x37\xff\x92\xbd\x2b\xf8\xba\x0f\x71\x35\xbe\xdb\x80\x4d\x2b\xe2\x70\x36\xe7\x06\xef\x3e\x9a\x03\x75\xd9\xd3\x03\x9e\xa8\x03\x0a\x3a\xb2\x03\xaa\x7a\x0f\x7d\xea\xda\x4e\xdb\xeb\xfa\xa8\x08\x46\x74\x97\x5c\x33\xd4\x88\xb1\x08\xce\xb0\x24\x03\x23\xff\xa8\x22\x74\xfd\x28\x01\x1a\xc5\x02\x26\x7c\x73\x64\x08\x6f\xa4\x64\xbf\xb9\x1d\x95\xf3\xf2\x2d\x5b\x61\x9e\xd2\x39\x0c\x9a\x4a\x9b\x7b\x54\x70\xd2\x10\xe9\x2a\xb9\x39\x98\x5f\xf2\xe5\x14\xf1\x76\xa3\x5e\x84\xa2\xf3\xd0\xd1\xa6\x1a\xbc\xba\x83\x4f\x08\x3a\xaa\x98\xc1\x80\x18\x15\xf8\xed\x51\xce\x7b\x13\xed\x04\x87\x98\xb3\x08\x6c\x5d\xf9\x08\x7b\x2f\xe1\xb0\x62\xf7\xe8\x9e\x55\x1a\xd8\xc3\x75\x61\x5f\x7f\x73\x66\xbf\x45\x3d\x50\x7c\xca\xd3\x53\xa8\x64\x08\xcf\x11\x45\x8e\xa7\xc2\xc2\x1e\x10\x04\x07\x8b\x50\x4c\xfd\xfe\x8a\xcb\xc7\xc7\xcb\x64\x2e\x7b\x38\xa4\x71\x01\xcb\x37\x52\x51\xef\x4e\x1a\xbe\x7d\x14\xb6\xf8\x2c\x26\xd7\xe5\xa6\x3d\x55\x77\xa6\xaa\x71\xbc\x77\xcc\x29\x8d\xa8\xb5\xab\x46\x9c\x80\x52\x79\xd4\x59\xb2\x8f\xaf\xa1\x8a\xeb\x69\x1f\x6b\xfa\x31\x53\x97\x99\x9c\xdb\x29\xc2\x5d\xf9\x34\xc3\xbd\xd6\xcc\x45\xbd\xc9\x2b\xe0\x70\xf6\x26\x36\x5a\x40\x3a\xaa\x38\x27\xcd\xf2\xca\x78\x79\x1f\x79\xce\xfe\xf6\x71\x64\x07\x50\x50\x30\x3d\x2f\x5b\x77\xcd\x56\x76\xca\x27\x44\x42\x48\xa9\x5b\xab\x82\xc5\xae\x02\x4e\x28\x51\x64\xe0\x5e\xcc\xf1\xb1\x7c\xcd\xb4\x42\xcf\xdf\xbf\x3a\x51\x05\x9b\x6b\x1a\x7f\x69\x6d\x61\x6b\xe6\xd5\xb7\x50\xa8\xfa\x44\x0b\x93\x8a\xa2\xe0\xf1\x0f\x61\x40\xbc\x05\x27\xf9\x3b\x47\x23\x7f\xcf\xa9\x29\xaa\x64\xce\xcc\x7f\xae\x69\x6e\xf3\x1c\xec\x07\xd9\x2d\x6b\x02\xb5\x61\xb3\x8b\x1b\x51\xf6\xcb\x34\xa7\x37\x76\xa1\x4c\xb3\x89\x49\xf7\x76\x2c\xb9\x1d\x4f\xc7\xd6\xcb\x15\xe9\x50\xc7\x6d\xb6\x06\xb2\x06\xe6\x66\x60\x2d\xe0\x1e\xf2\xcc\x09\xd1\xf5\xcd\xae\x96\xd5\xfb\x7c\xe9\x66\x6e\x2d\xf6\x4e\x46\xc0\x21\x99\x01\x98\x83\x1a\xa3\x9a\xe2\x4f\x77\x16\x0a\x53\x41\xc5\xec\x62\xa2\xa3\xbc\x45\xfd\xcd\xea\x36\x11\xed\x20\xae\x6e\x79\x04\x9b\x24\xd5\x9a\xa8\x17\x2c\x9a\x87\x1c\xb3\xc7\x7c\x02\x1e\x06\x32\x18\xb7\xb3\x7a\xa1\x25\xfc\x97\x16\xb2\x1b\xa0\x25\x1c\x2b\x65\x36\x4e\x64\xc4\xdb\x05\xdf\x96\xb5\x95\xa4\xd3\xf4\x61\x36\xcf\x9f\x2a\x21\x78\xab\x6b\xf1\x03\x91\x75\xb0\x0e\xcd\xe5\x51\x20\x78\xe2\x3a\x53\xa9\xbb\x7a\x43\xb0\x47\xcc\x6e\x27\xa0\x74\x3f\xa6\x2c\xe0\x63\xce\x97\xba\xe2\x8b\xce\x9f\xde\x02\x01\x3b\x8b\xca\xf5\xdd\x6d\xa5\xbc\xe0\x08\x46\x67\xff\x6f\x58\xfa\xd3\xa0\xda\xff\xad\x7e\x8f\xfe\x1f\xfe\x48\x85\xa8\x21\x11\xbb\xf7\x2c\xcb\xd9\x53\x54\x25\x19\x98\x08\x33\xeb\xbe\x8d\x8c\xcc\x5d\x2c\x29\x37\xc2\x54\x20\x18\xb4\xf0\x0b\x4c\xdd\xc3\xf7\x77\x22\xf6\x5f\xf8\x2e\x91\xb4\x10\xf7\xd3\x87\x4b\xc5\x3f\x6d\x2d\x29\xa9\xab\xbf\xe1\xea\x19\x68\x24\xe9\xd1\x48\x6a\x25\xa7\xb8\x7d\x59\x7d\x76\x93\x04\x3c\x05\x85\x51\xa7\x08\x2d\xd4\x2f\x0e\xbf\xf4\x64\x4c\xf9\xce\xef\xad\x91\xd9\x2f\xd0\x72\x3c\xbc\xab\x09\xb1\x02\x34\xc0\xf9\xce\xe6\xba\x7c\x64\x1e\xc2\x83\xf5\x0a\x75\x0f\xe0\x77\x0c\x26\xf0\xf2\x86\x1e\x81\x8b\xd9\x1e\xa3\xe7\x24\xa1\x4c\x26\x19\x7a\x8d\xe2\x38\x4a\x78\x69\xba\xb3\xbd\xa2\x06\x18\x1b\xbe\xae\x0a\x23\xfc\x2c\x9b\xd6\x75\x54\xf4\x9b\x7c\x31\x21\x88\x7b\x02\x3b\xfa\x28\x6f\x51\x2d\xdf\xcc\x9e\xac\x01\x1f\x13\x9b\x39\x9b\xf0\x71\x24\x6f\xb0\x16\x52\xe6\x47\xd6\xdd\x39\x26\x4b\xea\x8c\x95\x8f\x77\x0b\x75\x4b\x01\xcd\x28\xaf\x38\x6a\xee\xb6\xfe\x90\xc5\x6f\x82\xe2\x7e\xb4\x3e\xad\x49\xab\xf0\x9d\xb6\xcb\x9e\x1a\xf8\xda\xa4\x98\x49\xa3\xd0\x76\x6e\x1a\xba\x3b\x95\x5e\xab\x85\x62\xdc\x6c\x8f\x0a\xd8\x23\xa7\xff\xcf\x97\xeb\xb4\x05\xad\x4d\xb4\x13\x73\x45\xe2\x7c\x57\xe3\xc8\x62\x61\x61\xdb\x0d\x8f\xf4\x78\xda\xf8\x57\xbe\x57\x9a\x7c\x6e\xc5\x47\xb6\x88\x5f\x72\x78\xc2\x0f\x9d\x90\x8c\x4b\x0f\xc9\x5f\x33\xd3\x11\x4c\xe1\x72\xb7\x6c\xb1\x57\x27\x04\x53\x53\x97\xe3\x73\x6e\x06\xc3\x30\xbf\xa0\x23\x18\xec\xea\xf3\x81\x7a\xbe\x9b\xe6\x05\xf8\xd6\x92\x94\x72\x24\x7a\x76\xa0\x2b\x0d\x33\x6c\x26\x01\x6c\x00\x6e\x1c\x00\xd7\xe4\x76\xfe\x5c\x3d\x53\x63\x43\xc2\xea\x48\xa9\x59\xaf\x7b\x33\x02\xca\x81\x56\x6e\xf3\x8c\xd0\x06\xa7\x10\x36\xea\x11\xa2\x66\xae\x6e\xef\xbf\xe6\xb2\xaa\xb8\xd4\x6f\xe4\x63\x4f\xe1\xdb\x9b\x16\x2a\x68\xf0\x79\xed\x07\xdb\x6f\xa7\xde\x91\x80\x35\x66\x4c\x88\x24\xed\x63\x17\x15\xf7\x64\x1c\xd4\x54\x84\xef\x7d\xd7\x43\xde\x0e\x49\xa3\x9e\xee\xd6\xc4\xa2\xef\x5a\x69\x3a\xbb\x09\x7d\x6f\xb8\x0a\x2d\x72\x23\x6e\x0f\xea\x71\xa2\xd2\x1c\xfc\xa6\x49\xec\x3f\xac\x66\xb0\x2d\x94\xae\x77\x50\x0b\x61\x33\x01\x34\x41\x1d\x67\xee\xc1\xca\x38\xf0\x06\x65\x03\xc5\xa5\x4b\x3d\x42\xfb\x81\xf3\x59\x7e\x04\x35\x83\x98\x20\xfb\xfa\xe7\x9a\x4a\x92\xc7\xc4\xa8\x69\xdb\x8d\x9a\xdb\x47\x2c\x56\x0e\x86\x42\x9b\x3b\x47\x72\x0b\x34\x39\x56\x0f\x04\xbd\xb4\x0c\xd3\x69\xe2\x6e\xa5\x87\x46\x43\xb8\xd3\x20\x93\xe7\x7c\x5d\xfc\x2d\x1c\xb5\xde\xe0\x03\x42\xd1\xbc\xba\x02\x14\x1b\xdc\x85\x36\x0f\x6c\x9a\x39\x5f\x55\x80\x6f\x50\xf5\x54\xb8\x32\xd4\x1a\x69\x51\xc4\xc6\xdd\x5b\x49\x2d\xa8\xa0\xe2\xce\x43\x90\xc8\x0b\x64\x97\x57\x4b\x7a\x39\x4d\x76\x1f\x52\x49\xb2\x77\x02\xfb\x18\xd8\xec\x53\x4b\x4d\x20\x28\x85\x52\xc1\x76\xc3\xc7\xe9\x95\x2c\x34\xe7\xc2\x83\x67\xc3\xbe\xef\xd5\x71\x02\x67\x6f\x90\xa7\xaf\x0b\xd9\x3c\xef\x0e\xea\xce\x09\x91\x95\xe5\xbd\xe7\x32\x22\xd6\xba\x14\x85\x64\x69\x3a\x41\xed\xb1\x0f\xae\x34\x30\x99\xff\xa9\xe5\x44\x8e\x16\x60\xc7\xe1\x35\x96\xce\x33\x78\xf3\x22\x1d\x0b\x48\x03\xe9\x1e\xa8\x28\x0a\xca\x79\xad\x99\x39\x80\x00\xe1\xe3\x0c\x10\x4e\x77\xe3\xaa\x1d\x11\x94\xfa\x1e\x2b\xe3\x67\x15\x84\x55\xb2\x8f\x80\xe8\x16\x5a\xd0\x3f\xe8\x7d\x61\x10\x63\xf5\xd9\xd7\x14\x22\xac\x81\x87\x21\xbd\x2e\xce\x96\xd7\x8d\x46\x36\x7b\x8d\xb9\x9b\xbc\x7a\x08\x54\x60\xc9\xca\xd1\xa5\x96\xa9\x6f\xba\x29\xdb\x52\x52\xcf\x07\xd1\xe8\x3c\x73\x24\x9f\x29\xa8\x37\x32\x03\xfe\x69\x33\xc4\x14\x52\x30\xc4\x91\x86\xf3\xf0\x35\x37\x55\x45\xe9\x4b\x3e\x6f\xa3\xe8\x1c\x8d\x95\x9e\x95\xf2\x75\x41\xdd\x61\x8d\x20\xd6\x47\xca\xb5\x1b\xa3\xfd\xd3\xc0\xdc\x5b\xc1\xa5\x5e\xef\x21\xe0\x7c\xb8\x1d\x57\x8d\x82\xaf\xf6\x72\xaa\x77\x3b\x5b\xfe\xb9\x93\x71\x49\x1b\x29\x99\xf6\xd3\x53\x88\x77\x6b\x99\xff\xa9\x5c\x32\x85\x18\x46\x4f\x96\x88\x0b\x8c\xbe\x0f\x6c\x98\x8e\x3a\x60\x88\x7f\x46\x36\xba\xd2\xc0\xb9\xd2\x95\xa5\x06\xa8\x7a\x4c\x44\x0b\x00\x4b\xb1\x5e\x83\xf8\x86\xee\x9c\xaa\xdf\x14\x8c\x5c\x33\xab\x95\xc7\xbb\x6b\x77\x03\xcb\x72\x96\x27\x31\x37\x7b\xea\x6d\x37\x74\x4f\x9d\x0c\xbd\x31\x24\x14\x36\x3f\x1e\xd7\xfc\x33\x7c\x2d\xc1\x08\xab\xf3\x76\x8f\x7c\x98\xfa\x99\xe6\x96\xc2\xb9\xd3\x34\x73\x25\xf5\xd8\x79\xa8\x7f\x97\xc2\xb0\xf6\x40\xf8\xd9\xb0\x38\xaa\xc3\xe7\x51\xd7\xf8\x0e\x50\xd7\x13\x14\xd6\xd3\xc9\xe0\xd0\xff\xf9\xea\xfa\x02\x85\x01\x85\x49\x86\xc4\xca\x0d\x9c\xc1\x66\x82\x02\x8e\xbb\x52\xcc\x00\x5a\xce\x88\xa3\xc3\x3f\xb4\x6d\x6c\x02\x5c\x84\xda\xc3\x3a\x36\xb8\x7d\xe6\x05\xe2\x76\xe0\x57\x7a\xbf\xb3\xaa\x28\x20\x49\x6e\xa0\xc4\x7b\x0a\x98\x23\x0d\x5e\xe3\x35\xfc\x89\x6b\x88\x05\xd4\xf5\x46\x92\x38\xcc\xb5\x4f\x37\x13\x2a\x7b\xf6\x8a\x2a\x06\xf9\xa6\xe7\x7f\xbe\xd3\x6c\xae\x9f\xb0\x32\x97\xbe\xb1\x3f\x73\x11\xdf\x71\xd7\x37\x84\xd6\xdf\x97\xc1\x96\x29\x59\x1a\x2b\x94\xd8\x91\x5b\x56\x59\xfb\x57\xc5\x12\xd2\x47\xb5\xfc\x1c\xeb\xde\x8a\xd7\xd3\xdd\xc2\x26\xd1\xdb\x2f\x93\xcb\xf4\xe7\x9a\xf8\x0d\x5f\xef\x98\x8b\x9b\xc5\xc2\xc5\x11\xf0\x6c\x86\xce\xef\x4b\x98\x58\xee\x14\xd6\xee\x37\x05\x47\x92\xc6\x06\xe9\x4e\x49\x34\x70\x9e\xdd\x29\xbd\xb9\xaa\x4a\xb2\x54\x0a\x9b\xa2\xc6\xb8\x78\xc4\x6a\x1b\x8d\x39\x56\xe5\xc1\xf8\xf4\xfa\x2b\xc7\x9e\xda\x8d\x6b\x0c\x81\x1e\x8f\x45\x0b\x86\x15\xb8\xda\x96\x77\xef\x83\x92\xee\x42\x3c\xe1\xab\x27\x5f\x80\x38\x87\xfa\xb4\xc0\xc5\xb6\xa6\x1e\x2e\xd2\x65\xd1\x22\xda\xa1\xaf\x45\x43\xd9\xb5\xa8\x37\xa1\x78\xd7\x3c\xe0\x5c\xb8\xbb\x3b\x79\x3c\x17\x22\xe3\x92\xc5\x32\x40\x3b\xf3\x7a\x6b\x99\x66\xf7\x3d\xae\x1f\x16\xc5\xc2\x31\xa8\x5f\x7d\x5d\x85\xa3\x4e\x20\x38\xeb\x1f\x0e\xdc\xd5\xaa\xbc\x27\x2d\xf3\xb6\xa9\xd7\x49\x2d\x9f\xd3\xc8\xf2\x6f\xbd\xdf\x5d\x71\x60\x13\xfe\x55\x0b\x7c\x41\x05\x58\xe3\xa5\x28\xf5\xa2\x21\xf8\x79\x5d\x7b\xa0\x77\xa8\xe7\xba\x92\x51\x48\xb0\xdb\x77\xff\xa3\xa1\xc2\xe2\x2c\xfb\xe7\x6c\x06\x65\x91\x8b\x47\x73\x2e\xc2\x7e\xcb\xec\x94\x83\xb8\x15\x70\xf3\xf0\x64\x4c\x73\xb7\x11\x3a\x2e\x40\xc2\x6d\x3b\xd5\xea\xac\xc6\xf9\xa0\x73\x0a\x90\x84\x16\x35\xbf\x07\x41\x87\x46\x1f\x4e\xbf\x2b\x9d\x7f\x99\x75\xbc\x7d\x06\xc4\xf4\xed\x2d\x64\xc3\xe8\x4c\x9d\x72\xe8\x96\x44\x4b\x71\xbe\xfa\x11\xf7\xa4\xb3\xaa\x4f\x62\xf2\x9b\xb4\x1c\xd8\x63\x19\x4a\x25\x6d\x68\x39\xfc\x6d\xb2\xc8\xc7\xd9\xb5\xc1\x2a\x89\xd4\xd0\x7b\xe1\xba\x55\x6c\x5c\x95\x8a\x6a\xb1\xa7\x14\x32\xd6\x95\x7e\x70\xd3\x69\x6b\x31\x20\x04\x4d\xf7\x10\xf0\xac\x65\x3b\x96\x9e\xd8\x37\x18\xf0\x2a\xc3\x42\x46\xc1\xdd\x3e\xa8\x25\x47\xa0\x11\x92\x15\x98\x2f\x50\xd4\x6c\x41\xd8\x7d\x44\x94\xaa\x7e\xce\x3f\x2a\x73\x3b\x77\x3e\x2c\x60\xc0\x55\xee\x0b\xc4\xa9\xca\x77\x02\x6b\x73\x78\xc4\x42\x55\x2d\x96\x35\x0a\x34\xb4\xfc\xb3\x70\xb3\x6b\x68\x65\x9f\x7e\x09\x6f\x88\xdd\x31\xf0\x9b\xc3\x54\x73\x63\x93\x96\x41\x6c\x8b\x20\x8e\xb7\xdd\xdb\x2f\x02\x71\x11\xda\x71\x62\x34\xdd\x7e\x4d\x59\xf3\x60\xb5\x40\x21\xb0\xed\x09\x69\x81\x18\x2e\xab\x2b\x7a\x97\xa2\x5f\x3b\x32\xde\x99\xee\x11\xde\x7e\x11\x3d\x12\x00\xa9\xae\x08\xd2\xa9\x1e\xa6\x43\xbe\x16\x48\x5c\xc5\xae\x0a\xd5\x3d\x9d\x7b\xaa\xa9\x3b\xcd\x18\x60\x2c\xaf\x10\xab\x2f\xc7\xa7\x42\x39\xe2\x29\x34\x1e\xda\x33\x40\x86\x23\xc3\x08\x7c\xc7\xcd\xc0\x01\xd2\x8d\x5d\x7a\x60\x08\x9b\x56\x23\x82\xc3\xda\xd7\x18\x1c\x09\x77\x8d\xc7\xdb\x77\x49\x0f\x82\xfd\xde\x2d\xbf\xc2\x74\xf0\x8f\x33\x4c\xe4\xef\x26\x5b\x73\x79\xf9\x5a\xd5\x6e\xe4\x2e\x82\xb1\xf4\xa5\x75\xe1\xba\x24\x34\x0d\x05\xbc\xa5\xcd\x8e\x94\xd5\x90\xe6\x4f\xf9\x2e\x8e\x14\x6b\x23\x0b\xc3\x30\x01\x55\xcf\xdf\x0a\x07\xed\x23\x61\x0c\x87\x55\xc7\xaf\xff\x0e\x2d\xc9\x06\x07\x07\x7b\x88\x49\xa4\x09\x0d\x43\xbf\x05\x3a\x74\xe4\x77\x3c\xac\x2c\xe0\x60\x2d\xaa\x77\x1a\xe8\xcf\x6e\xd0\x1d\x16\xa6\x08\x73\x68\x10\x1e\xe5\x04\xed\x5e\xe9\xc0\xa0\xb4\x60\xe8\x31\x6c\x9d\x6f\x25\x50\x00\x7e\x6a\xda\xa7\x4d\xd3\x81\x67\x7a\xb4\x70\x6e\x44\x5a\x4a\xc7\xa1\xbe\x2c\x61\x57\xb9\xf0\xd1\x2f\x1e\x2a\x37\x80\xca\x91\x9b\xf9\x4b\x15\x67\x72\x12\xdd\x8d\xcf\xc0\x1d\xb5\xf5\x2c\x10\x62\xe0\x63\xc7\x48\xb7\x63\xb7\x72\x8b\x6b\xd5\xd3\x81\xd7\x0a\xb7\x51\xdd\xad\x8a\xca\x94\x4e\xa5\x61\x87\xa7\x80\xdb\x95\xa5\x65\x21\x72\x01\x62\xe4\xe7\x8c\x90\xbe\xb2\x91\xcb\xba\x7e\x93\x51\x43\x76\x1d\x94\x90\x2d\x2d\xbf\x4d\x9e\xfc\xa3\x7a\x2f\xf3\x4b\x75\x1a\xa2\x33\x1a\x36\x0f\x42\x7b\xb6\x82\x9b\x1e\xed\xc8\xd4\x1b\xb0\x2c\xe9\xbb\x4d\x8b\x3b\x94\x01\xed\x2c\x5c\x4d\x86\xa3\x8e\x30\xde\xd0\x8d\xc3\x60\x29\x9d\x0a\x3d\xd4\x20\x7c\xf9\xe4\x3a\xd3\xa6\x07\x92\x55\xf7\x91\x96\xb7\x2f\x7f\xeb\x0e\x75\x68\x74\xd6\x93\xcb\xf2\x85\xf9\xf1\x6c\x56\x0b\x49\x33\xf7\x84\x97\x07\x19\xd8\x33\xc3\xf9\xaf\xdb\x99\x4e\x85\x8a\x9c\x1c\xe3\x35\x15\xff\xa3\x89\xce\xee\x3a\x5d\x27\xba\x27\x08\x59\x65\x4c\xa6\x06\xa2\x55\x5f\xc5\xfa\xa8\xbd\xf6\x1a\x78\xd1\x00\x81\x99\x3e\x98\xae\x00\x05\x28\x98\xa7\xb7\x6d\x71\xb4\xe6\x1f\x9d\xcd\x3e\xbe\x29\x78\x59\x72\xb9\x0b\x66\xf0\x1e\x28\xd4\x22\x21\xdf\xed\xe4\x96\x24\x0d\x0c\xd1\xa3\xa0\x3b\x0b\x92\xed\x74\xc1\xf2\x0e\xea\xde\x71\x44\x19\x44\xaf\x81\x86\xcf\x10\xef\x7c\xbd\x31\xe8\x0f\xef\x40\xe6\x71\x70\xea\xfb\xa5\x82\x02\x7d\x9d\x8a\x37\xaa\xca\x6a\x74\xe7\x23\xba\x1d\x74\x3e\x5a\xef\xa3\x99\xab\xe2\xbe\xe5\x11\x60\x07\xd3\x9d\x19\x9a\xec\xc5\x65\x3f\x9b\x1e\xb9\xe3\x3e\x15\x74\x7b\x03\x6d\x9f\x2d\x9e\x28\x6b\x03\x39\x1a\xba\xab\x7b\xfd\x41\xba\x21\x5b\x17\x81\xd5\xe1\x1f\x68\xbc\x06\x91\xd3\x2f\x5a\xcc\x2c\x7b\x87\x82\x82\xa1\x7b\xa4\xec\xd2\x74\x86\xa6\xc8\x32\xff\xe7\x8f\xec\x1f\x69\x5a\x11\x72\x43\x1d\x50\xfb\xaa\x50\x2c\x04\x63\x33\xf7\xce\xfd\xf8\xc4\x8a\xd4\xc7\xe5\xcc\x4f\x5f\x44\x1d\x39\x1c\xe8\xf1\x3d\x86\x1f\xca\x2f\x17\x18\x78\xc6\x67\x06\xe8\x32\x21\x8f\x53\xab\xea\x96\x1c\xc2\x7a\x0d\x73\x0d\x3a\x09\x81\xde\xbb\x47\xe6\x67\xf8\x6b\x2f\x2c\x36\xe4\x24\xa3\xad\xa6\x20\xf7\xef\x3d\x15\xaa\x1c\x82\x06\x16\xd3\xae\x50\xec\x61\xe9\x28\xb5\x40\x8a\xfe\xf5\x18\x3e\x9a\x3f\xe8\xe5\xd3\x05\xd0\xbd\x99\xf4\x61\xa1\x19\xd0\x48\x9e\xca\xee\x7c\x3f\xb9\x3e\xea\x92\xf0\x83\x6c\x18\xa0\xf1\x65\x7a\xbd\x74\x8e\x6b\xc0\x89\x03\x75\x71\xcc\x48\x6a\x24\xf3\xd4\x82\xa6\x64\x13\x32\xa7\x86\x97\x41\xb3\xb0\xe7\x66\x2c\xf9\xda\x57\xa7\x50\xdd\xfa\x11\xf6\x14\xb9\x54\xd0\x1e\x86\x6c\xf1\xf1\x2e\x5d\xc9\xd7\x5d\xad\x23\xf3\xd1\xa9\x9c\x91\x49\x67\x02\xc8\x6a\x3a\x5b\x04\x33\x86\x0a\xa3\xf8\x59\x73\x81\xab\x75\x88\x08\x60\x3d\x07\x8b\x0f\x85\x52\x27\x15\x05\x07\x35\x50\xe3\x0d\x73\x48\x6b\xa1\xbd\xc1\x61\x4b\x53\xf3\xfa\xa3\x55\x75\x1a\x94\x79\x96\x41\x37\x2b\x86\xcc\xe6\x12\xc5\x38\x02\x75\xf5\xc0\xea\x3a\xa3\x19\xb4\x14\xef\x04\x3f\xfa\x3e\x8e\xaa\x6b\x4a\x41\xc1\xeb\xc2\x22\x58\x78\xaf\xee\xda\x9d\xdc\xef\x46\xde\x84\x5d\x30\xae\x90\xbd\x50\xde\xcc\x2a\x08\xb3\x12\x37\x55\x41\x8f\xaa\x3d\x13\x47\x82\x11\x1f\xdd\xc4\x8c\x65\xc3\x04\xaf\xa0\xae\x71\x11\x68\x35\x01\x0d\x61\x91\x00\xc0\xf5\x4d\xda\x59\xff\xf9\xb0\x47\x14\x6c\xbb\x6b\xf7\x95\xfb\xe6\x7c\x2d\x70\xe1\x5f\xf6\xce\x1f\x09\x01\x03\xd7\x3a\x29\x4c\x0b\x21\x10\xd4\x6a\x76\xb6\x5b\x4e\xe9\x7d\x4d\x3e\x4e\x47\x5a\xa6\xf2\xa1\xf8\x9a\x6a\xe6\xb8\x14\x56\xfd\x30\x2e\xe0\x31\xee\xd1\xa1\xbc\xc5\xef\xa6\x36\x49\xb0\x14\xd3\x00\x0f\x50\x5a\xca\x94\x3e\x33\xef\x08\xfc\x06\xa1\xea\x15\x34\x12\x0c\x44\xba\xde\xed\x5e\xf1\xf0\xd7\x54\x22\xfd\xf9\x73\xa1\x86\x59\x34\x69\x4f\x54\x60\xde\xcd\xc1\x24\x23\x14\x80\x00\x02\xa5\x8b\xe0\xc9\x4a\xcd\xdb\x9e\xbc\x06\xe6\x3a\xed\x2d\x2b\x1e\xf1\x86\x43\x79\xf5\x8a\x63\xbe\xd2\x0e\xae\x8c\x07\x52\x8a\x31\xd3\x89\xd8\x12\xf2\x5f\x63\x35\x7c\x34\xb4\xfa\xc7\xcb\xfb\x16\xd9\xa3\x17\x6f\xbc\x45\x90\xcf\x55\x42\xdb\x36\x78\x41\xc2\xf3\xc9\x74\xcd\xc9\x7e\xb9\xd6\x34\x11\x30\x14\x3e\x26\xc0\xaa\xaa\xfd\xf8\x52\xfc\x91\xa6\xb7\x7f\x0b\xcd\x86\x7e\x69\xa1\xcd\xf7\xfa\x8c\x68\xed\x49\x63\xb6\x6b\xdd\x40\x79\xd3\xff\x3b\x3a\x46\xca\xca\x10\x48\x06\xbb\x2f\xdc\x29\xc0\xea\x48\xd8\x2b\xf3\x92\xb7\xa7\x54\xae\x6e\x21\x22\xc7\x97\xc6\x87\x84\x1b\x5f\xf0\xf0\x9c\xa3\x77\x2f\xae\xf6\x49\x7b\xc3\x47\xf2\xaf\xfc\x3a\xd1\x0c\xa4\x86\x0e\xbf\x69\x6c\xdc\xde\xe6\xf9\x9a\xe6\xf6\x93\x0e\x58\xf6\x6b\x2c\x96\x05\xfc\xcc\x4a\x4a\x8c\xaf\x81\xcb\x7e\xc9\x1c\x2b\x08\x7b\x59\x11\x3c\xd7\x47\x0d\x21\xfa\x03\xad\x51\xbc\xa6\xad\x87\x11\x86\xeb\xdf\x4c\x1f\x0d\x7c\x9c\x61\x26\x52\x3f\x7e\xdb\xae\xa9\x38\x92\x25\x9d\x3e\x00\xb3\x38\x61\x95\xae\x87\xec\xaa\x04\xb5\x73\x29\xa7\x3a\x10\x51\x47\x07\x1f\x5f\xd4\x29\xe4\x0a\xdb\x70\x5a\xfc\x99\x0a\x23\xa2\x32\x02\x71\x6b\xa0\x98\xd2\x64\x34\xc0\x60\xae\x1a\xdd\x3f\xa6\x28\xef\x6d\x7e\x80\x5f\x00\x3a\x55\x8b\xfe\x16\xae\xfe\x63\xd4\x49\xb0\xea\x9a\x80\xb8\x33\x4c\x3d\x28\xe0\x23\x3c\xe0\xed\xf9\xf2\xcb\x0d\xa6\x21\xff\xad\x4e\x77\xbf\xb2\xa6\x60\x02\x2e\xa9\xdc\x73\xd5\x3b\xdb\xb3\x1e\xd8\xb4\x2e\x88\x6d\x61\x53\x5a\xe4\xd9\xe2\x48\x51\xb9\x80\xde\x78\xf1\xe5\x6e\xf5\x00\xc3\x49\x9d\x55\xb8\x16\x8d\x2b\xb8\x02\x16\x47\xb0\x3c\xb2\xec\x51\xae\x63\x6a\x36\x76\x6b\x47\xb5\x0b\xb5\x88\xad\x3f\x34\x35\x65\x44\xc2\x32\xec\xb2\x43\x90\xee\x1b\x75\xb2\x42\x18\x75\xeb\x90\x87\x33\x49\xf8\xbc\xa3\xda\x59\xfc\x9d\xce\x13\x76\x60\x77\x8d\x0e\x76\x86\x86\xd5\x8c\x76\x56\x61\x43\xcd\x83\xa2\xc1\xf9\x56\x76\xc2\xba\x6a\x89\xff\xa3\x04\x96\xcc\xb6\x6e\xbd\x6f\x6c\x82\x5e\x9a\xc1\x75\xaf\x8d\x88\x92\xc6\x34\x0c\x1f\xb4\xf0\x6d\xd2\x4e\xa9\xd6\xcb\x1e\x1e\x6a\x4f\x43\x4c\xb6\xa8\xf5\xa2\x46\x4d\x1c\x55\x7b\x54\x0d\x4c\xb8\x38\x12\xf6\xc1\x7b\x2d\xf8\x43\x49\x6d\xdb\x61\xd8\x0c\xd7\x00\x66\xf0\x38\xda\xb5\x88\x32\x33\x5f\x53\xad\xe2\xf2\xc5\x83\xc1\x52\xca\x42\x33\x74\xd7\xb2\x3e\x3e\x1b\x7c\x5b\x95\x76\xa7\x4f\xdf\x0c\x9b\xd5\xaf\xea\x99\x74\xb4\x4f\xa7\x3e\xf4\xcc\x9b\x8f\xe6\x87\x80\xda\x06\x6d\x96\x50\x59\x50\xac\xc3\x50\xaa\x52\x56\x06\x36\xa4\x62\xd6\xd1\x2e\x34\x0c\x52\x27\xf3\xf1\xa1\x54\x14\x9b\xdd\xce\xf5\x3a\x55\x5e\x06\xa5\xaf\xd7\xa0\xb5\x52\x3c\xa7\x1c\x35\xf4\xd4\x41\xf1\x69\x27\xc8\x87\xe7\xfc\xf8\xf5\x87\x9c\x7d\x88\x68\x1f\x15\x9e\x16\x85\xf9\x6a\xc1\x98\x18\xf5\x97\x65\xa7\x85\xc6\xb0\x33\xbf\xc9\xbf\x1a\x1a\x9c\x1c\x47\xe5\x92\xce\x3d\x1d\x29\x43\x36\x37\xd6\xbe\x6c\xe0\xcf\x5a\xa3\x40\x5f\x44\x21\x6f\xd3\x2a\x9b\xb7\x12\xe0\x3d\xb9\xaa\xbb\xfc\x8e\xd3\x78\x5e\xae\xbe\x8e\xc0\xe1\x6a\x4d\xa3\xdf\x5c\xb2\xd7\x35\x78\xf3\x52\xa2\x1c\xd4\x34\xc3\x73\x93\xcb\xfe\x54\xe7\x86\x39\xa5\x97\x1a\x8d\x2b\x9b\xb8\x4c\x1b\x20\x73\x80\x61\x97\x93\xde\xe6\x42\x0b\xcc\xc7\x41\x5e\x03\xa6\xea\x81\x7b\x76\x5f\x88\x46\xec\x7d\x52\xae\xf0\x9f\x2c\x15\x4a\x9b\x11\x2f\x0d\x91\xbc\x3a\x35\x18\xa8\x0e\xe7\x90\xd7\xad\xd8\x9f\x3b\x69\x15\x3c\xa2\x0e\xda\x4f\x39\x7d\x8c\x43\x53\xa4\xe2\x69\x98\x6a\x1a\x1c\xc0\x6f\x5e\x03\xc2\x68\x6a\x14\x58\xf3\xc8\x5b\xaa\x7e\x30\x0d\x56\x48\x8b\x1a\xfd\xad\x49\x46\x16\xcb\xd5\x67\xc4\x5e\xeb\x1e\xd4\x81\x38\xf6\xdd\xa7\x71\xbf\xb8\x3c\x07\xcc\xbf\xbf\x6f\x1b\x53\xd4\x04\x82\xad\xda\x3e\x3a\x62\xdc\x3e\xe5\x5c\x1d\x89\xb0\xfa\xd0\x77\x73\xa0\x5b\x29\x00\xef\xda\x91\x88\xa3\x9b\xc7\x53\x3b\x3a\xce\x2b\xa4\x9a\xd3\x09\xce\x3f\xd7\x7d\x5c\x50\xa4\x91\x3c\xce\xdd\xf7\x0b\xd7\xe0\xfc\xa4\x65\xfd\xd0\xbe\x9c\x1a\x6c\x65\x99\x14\xf6\x50\xe1\xb3\xe2\x7d\xdd\x2e\x71\x5a\xb4\xda\x00\x37\x6b\xa0\xe1\xa4\x9b\x35\xec\xa0\xe5\x4a\xbd\xd3\x9f\x09\xd1\xc2\x13\x50\xe8\xba\x13\x14\x61\x29\xac\x3e\xd2\xd0\x2f\xe3\x1f\x58\x1a\x5a\xab\x9e\x13\xfa\x5f\xa3\x44\xa5\xcc\x30\xef\xef\xc0\xf8\xe9\xf6\x20\x8a\x48\xb1\x90\x54\x27\x78\x49\x92\xba\x7e\x8b\x38\x99\x0c\x93\x11\xbc\xca\x6a\xba\x2c\x09\x63\x6e\xbb\xeb\x61\xd1\x58\x1e\xa1\x02\x5b\xef\x53\xe3\xc5\x9a\x0d\x60\xab\xc9\xed\x75\x57\xef\x13\xe9\x40\x10\x03\x68\x71\x36\xc4\x0b\xbd\xe3\x9e\xc4\xe1\x08\x51\x9f\x43\x83\xa6\x0d\x8e\xee\xab\xed\x84\xf8\x03\xfe\x7c\xe6\xf7\x84\xba\x9f\x4b\xad\xf0\xc7\xaf\x1c\xae\x69\x6f\x45\x96\x25\xf0\x92\xa3\xf6\x9d\x24\x7b\xfb\x8d\x6b\xe7\x7b\x0f\x28\xaa\xe7\x8e\x15\x1a\x25\x7b\xd7\x64\xdf\x15\xa4\x58\x25\x55\x2f\x0f\x7f\x3d\x6f\x1f\x17\xdf\xf1\xee\x77\x29\xa2\x35\x6f\x00\xfe\xc0\xbd\x10\x22\x66\xc3\xa5\xce\x23\xa9\x10\x27\x04\x79\x4c\xba\x71\x8d\x18\xb8\xb2\x20\xac\xa1\xec\xde\x6e\xc7\xd1\x6b\x3d\xa9\xa5\xcf\x9a\xc2\x0b\x90\xbd\x67\x77\x56\x45\x85\xcf\xf9\xd9\x48\x88\x9a\xdf\xad\xc7\x0f\x11\x6e\xe5\x14\x2e\x21\x40\x49\x1b\x48\x48\x36\x58\x3d\x5b\xc3\x16\x47\x12\xa1\xa7\xf2\xa4\xa2\xfc\xe9\x79\xd4\x0f\x4a\x00\x99\x9a\x84\x11\x40\x40\xc0\xbf\x27\x5d\xd0\xb5\x18\xc1\x76\x47\xc3\x32\x43\xc9\x75\x1a\xff\x81\xb0\x1f\x4b\xfa\xe0\xec\x5a\x38\x7e\x53\x1b\x59\x49\x7d\x83\xe6\xd3\x06\x8e\x92\xba\x87\xa8\xb4\xa4\xdc\x65\xf3\x42\x4c\x82\xea\x39\x5a\x79\x5d\xd3\x41\x41\x4a\xd5\xcd\x68\xd8\x84\x92\xaa\xb2\xc1\xc1\x9f\xea\x46\x07\x5b\xf0\x29\xef\xa6\xe8\xd7\xf5\xfa\xea\x2b\x33\x43\x94\x59\x52\xcb\x53\xef\x46\x78\x55\x0b\xdf\x9a\x79\x49\xa0\xbe\xa1\xd9\xe7\x05\x75\x74\x05\x4b\xc6\x9d\x82\xe9\x60\xcf\x81\x54\x5f\xdd\xb2\xaa\x80\x4d\x21\x91\x73\x97\xf1\xab\x67\x81\x47\x4a\xed\xec\xc0\x76\x6c\x0c\x36\xdf\x4c\x6d\xe4\xea\x8a\xd0\x5b\xaa\xc6\x1f\x0e\xb5\x1e\x15\x2a\x9d\x8f\x40\xd7\x7d\x96\xa3\xbb\xe1\xbc\xf7\x11\x80\x40\xc1\x68\xf2\x78\x4f\xd3\xd4\x61\x32\x41\x08\x9d\x6d\x60\x0b\x3e\x28\x76\x11\x2b\x36\x33\xf8\x6e\x7c\xb8\x73\x36\x77\x56\xb9\x63\x4e\x77\x12\x7a\xc8\x70\xfb\x23\x64\x66\x8b\x7a\xbf\x45\x4d\x42\x15\x7d\x1a\x55\x40\x09\xbf\x49\x6f\xc0\xa1\x84\x51\x31\x9b\xd3\xfb\xc9\x4e\x04\x6a\x53\xf0\x1a\xe7\x55\x89\x63\xe9\x4d\xfe\x81\x56\xb1\xde\x3b\xee\x1e\x58\xfc\x3d\xe9\xe1\x33\x42\xe1\x9c\x99\xdf\x26\x09\x1f\xfe\x3a\xe3\x28\x4d\xce\x51\x37\x36\x16\x16\x47\x23\x6f\x3a\xe1\x3e\xbb\x41\x87\x86\x4c\x48\x55\x76\xff\x04\x33\x77\xc2\xc9\x65\xc1\xd2\x96\xae\x0b\xcf\xcb\x1d\x2b\x33\xf8\xe3\x9c\x8e\x14\x96\x4b\xc8\x61\x27\x1c\x71\x12\xca\x72\xf8\xce\x33\x5f\x78\xf2\x63\xc0\x11\xbd\x33\x50\x93\xe6\x4d\xff\xb6\x35\x05\xd9\xef\x28\xaa\x3f\x34\xf5\x50\xef\x12\x40\xbe\x4e\xa3\xe0\x77\x67\x81\x08\x8f\xf3\x07\xe2\x44\x07\xd5\xd8\xa9\x10\xbb\x42\xa1\xaa\x5d\xe0\x4b\x31\x4b\xc2\xee\x51\xa8\x17\xfc\x23\xc2\xd7\x51\xa1\xd0\x57\x46\xd1\x80\x94\x52\x01\xfc\x66\xf6\x8c\x5d\x97\xd6\x55\xcf\xea\x1e\xad\xef\x38\x29\xde\x51\x94\x32\x2d\xac\x5e\xc4\xea\xee\x2d\x2e\x55\x94\x49\x35\x27\x44\x2e\x4e\x16\x0f\x69\xf4\x67\x30\x32\x38\x7e\x5b\xb4\xec\x51\x7f\x54\xdb\x53\x51\x7c\x63\xcf\x78\x74\x61\x96\x3c\x88\x7f\x39\x03\x7b\x31\x6d\x81\x9c\x5a\x01\x78\x67\x0e\x95\xbd\x93\x9d\x90\x95\x3d\xaf\x3b\x7d\x7a\x44\xcd\x3f\x08\xff\x3d\x82\x0d\x95\x00\xeb\x4a\xab\xb1\xe6\xa6\x0e\x60\x67\x8b\x66\x23\x9d\x55\xaf\x90\x4f\xe6\xee\xc6\xc5\xcc\x6d\xcc\x2e\x3a\x05\x98\xea\x49\xef\xd6\x9a\xe6\x94\x2d\x22\x0a\xe5\xd3\x9c\xb6\x05\x8b\xa9\x07\xb0\x3e\x16\xe9\x34\x67\x7f\xc0\x43\xef\x0e\x6f\x12\x21\xa9\x95\xe2\xa6\x36\xef\xe6\x05\x7f\xcd\xd4\x84\x02\xd9\xa0\x74\x5b\x0c\x33\xeb\xa3\x19\x15\x29\x36\x2a\xbd\x39\x6b\xaa\x3b\xc2\x29\xb5\xad\xeb\xe3\xd7\x22\x9b\xaa\x30\x1d\xd1\x56\x73\x8f\x11\xb4\xa9\x10\x49\x26\x83\xc6\xc7\x54\x4a\xe5\x4d\x4e\xd5\x3c\xfd\x47\xf1\x48\xc9\xc3\x69\x91\x8a\xfa\xd1\xd5\x53\xdf\xd4\x4b\xc6\xca\xcb\x77\xf0\xa8\x05\xce\x24\x54\x90\x0f\x9c\xb1\xc1\x0d\x6f\xcf\xc8\x4d\xd8\x44\xb3\xf3\x11\x5a\xfe\xae\x14\xbb\x2f\x65\xd4\x73\xa9\x40\x14\x33\xba\xc1\x62\x37\x5f\xbf\xed\x94\x53\xe2\x59\x42\x87\x2f\x05\x2b\xf7\xd1\x63\xca\x1b\x45\xd5\xd8\x6e\x0a\xea\x67\x19\x48\x59\xa6\xa6\x3d\xb6\x04\xff\x6e\x4a\xe3\x43\xe1\xa1\xe6\x49\x94\x0f\xc4\xb7\xde\x39\x1c\xa0\x16\x53\xab\xab\x05\x85\xc9\x7c\x42\xeb\x01\x6d\xac\x0a\xef\x64\x7d\xc2\xa7\x7f\x07\x8b\x68\x87\x37\xe7\xdf\xd5\x3b\x37\xf3\xfe\x64\xed\xd7\x4c\x87\xcd\x5f\x24\xd6\x96\x8d\xb1\xbd\x81\xb4\xa5\x6a\x94\xc4\x77\x0a\xa6\xda\xbb\x6b\xad\xca\xcc\x4a\x96\x72\xcf\x8d\x83\x5d\xf7\x04\x28\x53\x76\xaa\x78\x3f\x38\x0f\x2c\x2f\x08\x18\x2d\xe9\x26\x42\xdd\xe4\x8c\xf2\x97\x5f\x79\xcb\xe8\xa6\x68\x4a\x03\xe2\xca\x3b\x13\x5d\xc9\x34\xa5\x10\x26\x84\x4f\x50\x87\xbd\x9d\xcc\xff\xf8\x85\xcb\x99\x99\x96\xfb\x76\x6a\xfd\x39\xe0\x1b\x9d\xe9\x56\xf7\x1e\x98\x54\xff\x31\xa9\xdb\x61\x4e\x88\x0e\xa3\x81\xc7\x46\x97\x32\x8f\x46\xba\x83\xe2\x57\x5e\xd4\xd7\x7a\x72\x36\xb9\x1e\xa1\x6a\xf4\x41\xcd\xf3\xac\x52\x3f\x77\xba\xb7\x6c\xd1\xab\x63\x44\x18\x18\xeb\x86\xac\x6e\xa3\xfa\x15\xfa\x36\xc8\xd8\xd3\x24\xaf\xb4\xb9\xe5\x99\x22\x8a\xbe\x02\xcd\x7d\x5d\x68\x6c\x02\xae\x4a\x26\xe8\x98\xb6\x28\xc7\x75\xac\xf6\xb6\xbd\x58\x1e\x4f\x1d\x71\x9e\x57\xee\x22\xa5\x5e\xb1\xca\x96\x6d\x7e\xd8\xd1\x0f\x28\x29\x8e\xfc\x56\xca\x67\xf6\xdb\x64\x96\x6e\xb0\xdc\x5c\x71\x50\x54\x48\x01\x67\xde\x36\xd8\xa6\x98\x8a\x73\x67\x86\xad\x5f\x97\x46\xf0\xea\x35\x24\x71\x6e\xcb\xa6\xa4\x36\x45\xf9\x2e\xc5\x77\x92\xf6\xbe\xa5\x97\xc9\x3e\x6a\xca\xec\xb1\x92\x8d\x63\x93\xb3\x88\x5a\xdd\x41\x39\x00\x97\xa7\x1d\xcb\xc1\xdc\xe3\x69\xb0\x87\x49\x1c\x26\xbb\x2c\xed\x19\x21\x52\xd2\x06\xec\xc5\xdd\xf8\x90\x4d\x35\xdd\x8a\xb3\xd3\x47\xb7\xcf\xec\x5e\xd3\x59\xb8\x2d\x69\x2a\x57\x34\x08\xce\xc6\x03\x34\xfa\x3f\x35\x05\x3e\x08\x7e\xcf\x82\x1f\xd9\xff\x9d\x54\xec\x4b\x71\xaa\x40\x81\xe9\xc6\xda\x93\x5b\x00\x32\xd3\xf6\xd3\x2d\x24\xf9\x91\x93\xa8\x45\x2b\x12\x1e\xa3\x66\x5b\x40\x3d\x6b\x34\x33\x5f\x92\x3d\xe6\x3d\x23\xe2\x72\xb7\xdb\x8c\x40\x0d\x5f\x70\x54\x04\x90\x6f\x1d\x1e\xf6\x08\x2e\x38\x20\x97\x42\xd4\x0e\xe4\x8e\xee\xba\x53\xfd\x2d\xe9\x00\xca\x3f\xf9\xaa\x42\xe1\x28\xba\x44\x4d\xd6\xaa\x2f\x2b\x99\x90\x09\xb6\xa3\x90\xe4\xce\x18\x5c\x61\xa3\x7b\x84\x04\xcc\x9d\x85\x81\xfa\x04\xfd\xce\x84\x28\xf8\x20\x88\xf6\x74\xea\x21\xb2\xa7\x0c\xdf\xbf\xc2\x3b\xf8\x10\xbe\xa2\x8b\x1d\xbc\xf8\xe4\x64\x8f\xc1\xd1\x26\x34\x83\x21\x95\xce\x94\x20\x77\xaa\xf5\x32\x9b\x06\xf3\x61\x38\x15\x68\x15\xcc\x7f\xa6\x85\x6a\x1a\xd2\xd9\x87\x20\x05\xaf\x68\xf0\x46\xbc\x9e\x79\x0e\x55\x9f\x00\xfc\xf6\xe1\xf1\x32\x98\x37\xe6\x1c\x40\x9d\x11\xbf\xcd\x2b\x3d\x40\xbe\xe5\x1c\x60\xb8\xb7\x87\xee\x85\x0e\x73\x3c\xf3\x5b\xbd\x91\x53\xcd\x34\x1b\x98\x6a\x46\xd0\xfc\x0b\xb8\x5e\x8a\x2f\x9d\xcd\x6e\x4f\x01\x8b\xd5\xed\x2d\xab\xfa\x26\x13\xe2\xb9\xbb\x4c\x70\xb7\x9d\xc1\xba\xc0\x13\x7d\xd9\x2d\xe6\xff\x33\xe0\xc9\xde\x56\x2c\xc2\xc3\x17\x8a\x75\xcf\x88\x48\x7b\xf8\x92\xb6\x2b\xaa\x3d\x09\xdc\x2e\x97\x3d\xb3\xca\xf4\x23\x9d\x30\x28\xe9\x1e\x50\x0a\x84\x1d\x32\x81\x36\xec\x1e\x99\xd4\x88\xa5\xdb\x31\x98\xb7\xed\x8d\xe0\xfd\x56\x8a\x3d\x24\x45\x05\xce\x29\xba\x5c\x78\xa3\xcf\xcb\x1a\x2b\x91\x20\x44\x0e\xc0\xee\x49\xc8\x0e\x34\x83\x0e\xce\x7a\x45\xfc\x4b\x55\x55\x8e\xb2\x31\x06\x77\x37\x5b\x26\xb8\xbf\x91\xdf\xbe\x1d\x97\x06\x86\xd1\x1c\xda\xc2\xcd\xe5\x35\xf1\x61\x3e\xc0\xef\x18\xab\x6b\x0b\x66\xf7\xaa\x36\x35\xbd\x2f\x55\x46\x58\x18\xeb\x52\xd5\xe7\x9c\x3a\xc7\x85\x9b\x02\x73\x20\xc7\x19\xc2\x65\x3d\x3d\x50\xcd\x1e\xed\xe8\x08\x2f\x3c\xfa\xb8\xba\xbd\x22\x6f\xd9\x5c\xf9\x7d\x99\xd7\x6f\x2a\x27\x1b\x85\x08\xba\x7c\x17\x0b\x6b\x0c\xda\xc9\xeb\xef\x99\xc2\xa5\xa9\x9a\x2d\x4b\xc5\xf2\xdd\x47\xe4\x2c\x9f\x40\x49\x4f\xec\x07\x5b\x0a\x32\x2c\x41\xd6\x8c\xae\x03\xad\x1f\xd2\x5b\x61\xb5\x77\x44\x57\x65\xaf\xf5\x21\xee\x34\x16\xa8\x09\xf9\x3c\x42\x28\x66\xd5\xe8\xd5\x76\x08\x0f\x2d\xdc\xa2\x70\xe2\x70\x11\xb0\x93\x61\xec\x3f\xb0\x10\x39\xb9\x9a\xdb\xbf\xc3\xef\x6a\xef\xc9\x6a\xc6\x3a\xa4\x7f\x90\x8b\xce\xb9\xa9\x78\x1f\x87\xc3\x88\x30\xf8\x08\xe0\x57\x6b\x8a\x17\x9c\x9a\xa8\x3c\x76\xe1\xa3\x05\x75\xfa\x96\x3e\xf1\x9a\xd6\x40\xce\x41\x66\x99\x9c\x53\x65\xd8\xb8\xc5\x01\x62\x1d\xee\xfd\x3b\x79\x9b\xd6\x6a\x93\x5d\x8e\xa8\x37\x87\x37\x57\x7d\x53\x47\x61\xb8\x10\xb5\xa7\xc5\x23\x1e\x0c\xdc\x08\xea\xbc\x19\x1f\x5f\xb2\xd7\xdc\xc1\x5c\x27\x05\xd2\x00\x80\x59\x6f\xf0\x15\x2f\x72\x0d\x50\x09\x4a\x7e\xcf\xa2\xe0\xd2\x0e\x18\xfa\x02\xe5\x4a\xbe\x71\x70\xb0\xa5\x82\xc7\x6d\x19\xbd\x0f\x57\xf5\xb3\xd4\xeb\xef\x94\x7b\xe4\x6a\x8b\x59\x23\x39\xca\x43\x74\xbf\x18\xcb\xc3\xdc\x8c\x03\x77\x48\xac\xa3\xd0\x8e\x68\x9e\x43\x1c\x55\xd2\x78\x4d\x80\xc2\x36\x85\x85\x0f\x6b\xbc\x11\x32\x44\x77\xe2\x62\x3a\xc9\xc3\x17\xb7\x7b\x7e\x2b\x4c\x5b\xf9\xa1\x4a\xf3\x0c\xd3\xbc\x1b\xae\x8c\x78\x9d\x58\x67\x96\x69\xc6\x32\xe5\x3a\xce\xdd\xac\x5b\x1f\xd5\x1f\xb1\xb4\xd4\x53\x78\x07\xc2\x28\xf3\x12\x0c\xb6\x20\xa7\xae\xac\xdf\xee\xe8\xed\xf0\x2e\xa7\x19\x32\x2d\xba\xd5\x18\x0f\x23\xa6\xd6\xcd\x15\x73\x53\xcb\x34\x6c\xf5\x87\x46\x4e\x84\x9d\xa3\x51\xf4\x10\x01\x1f\x29\xb0\x11\x86\x90\xdf\x99\xdf\x34\xd7\x86\xd9\x63\x8b\xf7\xd3\xa8\xd4\x1f\x84\xcc\x55\xd3\x49\x75\x37\x58\xb1\x8f\x77\xd8\x4c\xdc\x0a\xa2\xbd\xde\xf4\xb2\xdb\xcb\x9e\x95\x37\x45\x85\x66\xbe\x2d\x2b\xcf\x54\xea\x5f\x96\x99\x2a\xbd\x1e\x49\x39\xd0\xfb\x08\xf4\x74\xef\x1b\x78\x58\x63\x42\x61\x12\xae\x2b\x14\xd2\x09\x0a\xdc\xa3\x3a\xda\x8f\xbc\xba\x62\xa4\x73\x9b\x3d\xb4\x74\x08\x5a\x89\x5d\xfc\x7e\x60\x8a\x5b\xbe\x26\xca\x75\x57\x57\x20\x54\xea\xae\x52\x37\x3d\x0c\x79\x9e\xaf\xe9\x6c\xeb\x2a\x1b\x51\x4a\x0b\x3c\x7a\xb8\xfb\x3c\xa3\x3c\xb7\xe8\x20\x37\xa7\x3e\x11\x4b\x77\x4c\x1e\x66\xc3\x80\x39\x99\xdd\x72\xba\x5d\x35\x1d\xbc\x91\x06\xf9\xdd\xaf\x25\x0f\xf3\x25\x80\x40\xe5\x7c\xa6\xaa\x86\x00\xc1\x8c\xd4\x12\x81\x20\xd9\xe4\x49\xd5\x84\x06\xc0\xa6\xc3\x54\x1c\xd8\x90\xd5\xd8\x64\xcb\xaa\xda\xfd\x45\x4d\x36\x72\x70\x2e\x87\x90\xbf\x0a\x53\x88\xe6\xea\xe3\xab\x55\x51\xd4\x58\x81\x15\x51\x34\x7f\x1a\x2e\x15\x06\x5e\xa1\x7b\x12\xcb\x97\x99\xb3\x61\x78\xdf\x2c\x27\x23\x1d\x73\x4e\x45\x65\xbe\x81\x8b\xb9\x37\x52\x83\x7b\xfd\x01\x3e\xce\x17\x4f\x3a\x11\xd2\x7b\xb8\x41\x02\x2f\x18\x5a\x24\x18\xa5\xd7\x1d\xe6\xd5\xb9\xee\x90\x6a\x59\x4a\xad\xb0\xa5\x50\x76\xcd\xa3\xc5\x85\xe0\x52\x76\xd6\x76\x23\x16\xe6\xe2\xe1\x63\x16\xe4\x47\x29\xfe\x30\x69\x9e\x2a\xd9\xe1\xdb\xcb\x04\x08\x3e\x3e\xaa\xae\x81\xaa\xee\xa6\x7a\xfc\xc1\x3d\xca\x28\x6d\x71\xb4\xb2\x88\x23\xe6\xcd\x7f\xf6\x8e\xcf\x9d\x42\x07\xd6\x9a\x27\x3d\x52\x61\x06\xdd\x85\x33\x5b\x0b\xfb\xc1\x8c\x5b\x86\xbc\x62\xe1\x58\x78\x5a\x52\xdb\x76\xe9\x7b\xad\xd7\x74\x74\x2b\xc2\x14\x17\xc3\x2f\x69\xec\x60\xf9\x0f\xd1\x64\x9d\xc8\x0b\x43\xd3\xd2\x45\x0a\xd4\x01\xb5\xa8\xbf\x4a\x85\xa0\x56\x17\x89\x2c\x20\x8a\x11\x4f\x59\x32\xd4\x4c\x0c\xf3\x1f\x1c\x97\x79\xad\x34\x73\xe3\x87\xab\x90\xde\xb1\xf6\xb6\xa6\x14\x6e\xe3\xe4\x9d\x72\xd9\xbf\xee\xf3\x4c\x83\x5d\xc2\x35\x88\x8e\xff\xad\xda\xce\xac\x03\xe6\x28\x3f\x5c\x0e\x4b\x36\x28\xb1\x48\xea\xd3\xe1\x69\xf0\x5a\xc8\x44\x15\xdd\x75\x8e\xd5\xd9\x39\x9c\xd8\x40\xef\x68\xbb\xe6\x76\xf3\x4d\xe6\x47\xab\x74\xeb\x59\x48\x53\xbe\x2f\xcc\x40\xd6\xbc\x89\x05\xa5\xe3\x0a\xbd\xd5\xd5\x81\xfa\x5b\x53\x97\x8e\x23\xaa\x95\x9c\x09\xde\x4c\xff\x14\x0a\x6e\xe4\x87\x3d\x89\x42\x41\xef\x67\xe9\x92\x62\x3b\x7c\xd4\x73\xf4\x42\xae\x5e\x61\xfa\x73\x6d\x3d\xa9\xf9\xc2\xf7\x41\x2c\x5d\x8a\x6a\xa5\x16\x5f\x34\xec\xa6\x9c\x2a\xe9\x18\x15\x9e\xe9\x47\x94\x32\x63\x55\xf0\xdf\xaa\x80\x95\x96\xb4\xdc\x0c\xf3\x16\x9e\x1e\x9e\x17\x85\x7f\x9a\x8a\x9e\x54\xbd\x27\xb5\x2d\x6f\x6e\xd5\xed\xd3\x46\x08\xae\x9f\x38\x03\x4c\x16\xb8\xcc\x88\x68\x02\x7e\x1f\x5a\x28\x2c\xe9\x4d\xd1\x32\x48\x5b\x7b\xa4\xdf\x6c\x75\xfc\x4c\x8b\x45\xe2\xf4\x56\x61\xf7\x9c\x35\x6a\x52\xa7\x7b\xc1\xb7\x64\xac\x16\xf5\x9a\xad\x3c\xff\x57\x45\x10\x96\x4b\x77\x82\x42\xa1\xfa\xda\x96\x1e\xe2\xef\x18\x9e\x61\x0f\x8d\x88\xa5\x54\x6f\x03\x42\x0d\x00\x2c\xb9\x0c\xe9\x53\x84\x00\x81\xbf\x5b\x78\xe4\xaa\xdd\x40\x8e\x03\xbf\x55\x7b\x21\xad\x2c\x33\x98\x2b\x73\xf8\x07\x18\x6e\x2a\xa2\xfa\x45\x5c\x18\xa1\x73\x61\x23\xed\x5e\xd8\x16\x84\x39\x31\xe7\x6a\x16\x76\xda\x31\xe4\xf0\x40\x60\xac\x2a\x39\x5b\x43\x52\xc9\x19\x5e\xa3\x77\x6a\xc2\x22\x10\xf0\x95\x51\xc8\xb9\xff\x28\xf2\x20\xa9\xa0\x41\xdf\x66\xc6\xe9\xb1\x70\x87\x0a\xc3\xcc\xee\xee\x95\x63\xf2\x8b\x46\x39\x32\xb4\x17\x85\x9a\x3a\x61\x54\x39\xa6\xac\xb4\x49\xad\x69\x3a\x81\x13\x2c\xb0\x42\x98\x8a\x53\xd8\x60\x49\xa7\x9c\x23\xf6\xeb\x63\x9a\xb4\x95\xfe\x07\xf6\x4c\x7a\x9c\x29\xfb\x9a\xa2\x90\x69\xa5\x87\x0b\x45\x52\xc7\x42\x96\x9a\x1f\x1e\x55\x95\x8b\x53\xc1\xe5\xe1\x0f\x05\x54\xe7\x54\x55\xe3\x31\xec\x23\x62\x8a\x77\x2b\x76\x7b\x52\xb1\x95\xa5\x60\xdc\x58\x0c\x0a\x92\xd4\x15\xd4\x19\x28\x0a\x15\x7a\x42\x0f\x13\x59\x92\xf2\x73\x00\x9f\xad\x93\x24\xa4\x4f\xe8\xde\xe2\x27\x38\xde\x02\x8d\x94\x1e\x8b\xc2\x2e\xa8\xd5\x91\xff\xa8\xa2\xc9\xe1\x09\xbe\x57\x8e\x64\xa9\x4d\x31\x12\x7b\xc7\x43\xc4\x02\x79\x80\x5e\xee\xfe\x34\xa9\x00\x20\xb1\x32\xa3\x94\xa9\x59\x7c\xb1\x3c\x3a\x66\xaf\xae\x1f\x71\x9a\x6c\xcd\x9b\x19\x93\x63\x95\xaa\x4b\xca\x40\x48\x20\x2b\x85\x39\xcf\x8c\x60\x27\x99\x8a\xa3\xa0\xa0\x38\x0d\xd6\x51\x73\x53\xca\xce\x7a\x7f\x73\x67\x42\x01\xa5\xd5\x32\x04\x97\x71\xe6\xa7\x26\x76\xa4\x57\xdb\x5a\xa9\xc2\x66\x65\x56\x5f\x70\xe5\x2e\x34\x95\xa7\xcc\x3f\xec\x86\x3b\x09\xb9\x84\x70\x8f\xd1\x79\xe0\x46\x2e\x63\x2f\xd2\xc9\x46\xe7\x42\xdb\x2d\x07\x6f\x97\x8d\x7c\xeb\x4f\xb9\x9c\xe4\xcd\xe3\x7c\xc1\x61\x08\x0c\x46\x0e\x40\xe7\xb4\xda\xec\xc8\x78\xf8\xaf\x2d\x29\x34\x25\x24\x61\xf3\x66\x81\xb5\xfe\xd8\xe4\xf9\x27\xf3\x2b\xe7\x3f\x34\xba\x43\x33\x78\x0d\x3e\xf2\x57\x83\x34\x22\xed\x6a\xe8\xfe\xdb\x50\xa9\x5f\x2c\xac\x11\xf1\xa6\x3d\x65\xff\x27\x59\xd8\x92\x54\xca\xc7\x17\x03\xb7\xa8\x35\x57\x24\x20\x93\xc7\x36\x77\x86\x76\xcc\x53\x3b\x15\xd6\xd5\xce\xdc\x03\x10\xa9\x2b\x0e\xaa\x3e\xc8\x99\x06\xf7\x43\x70\x1e\xa9\x96\x9c\xa7\x99\xc4\x17\x32\x7f\x15\x7e\xd1\x38\xef\xe5\xc5\x1f\x05\xc7\xdf\x10\x79\xa0\x30\x37\xc8\x6b\xc1\x1a\x40\xa1\x2a\x8b\xaf\x14\x1c\x75\x16\x96\x6e\xc4\xa4\x94\x72\xcd\x18\xe0\x0f\x1e\x91\x92\x34\xf6\xc4\xac\xcf\xeb\x38\xf7\x58\x7c\x0d\xd6\xf8\xd3\x22\xa7\x66\x54\xb3\xb6\x69\x6f\x1a\x4f\xec\xcc\xa9\x37\x3c\x73\x02\x51\x87\xf5\x79\xdf\x51\x1d\xce\x8f\xeb\xff\x9f\xb2\x7f\xe9\x91\x96\xe7\xa2\x05\xc1\x39\xff\xaa\x4f\xb7\x74\x5a\x3d\xec\xa3\x2a\xa9\x86\x06\x1c\xe0\x37\x8d\xcd\xeb\x4b\x44\xf2\xfc\xfa\xd2\x5e\x6b\x6f\x43\x3c\xdf\x57\x25\xd5\x20\x13\x63\x6c\x73\x09\xb0\xf7\x75\x2d\x73\x65\xd8\x76\x53\xea\xc7\x7f\x34\x96\x78\x34\x44\x6a\x4d\xc5\x7b\x54\x9b\xcc\x5f\x83\xf0\xd0\x51\xd8\xd9\x73\x3d\xd5\x32\x86\x20\x07\x59\x53\x47\x0d\x7c\x40\x5b\x5e\x5f\x22\x01\x80\x4a\x41\xfd\x6e\x22\x0a\xd7\x8f\x3f\xdb\xb3\xff\xc7\xc7\x91\x18\xf8\xa8\xb6\x3e\x6e\x1b\x90\x8c\x5f\x18\x95\xf0\xd1\x15\x25\x07\x93\x4b\xcc\xe7\x99\x93\xc6\x57\x0e\x3f\xe3\xa1\x96\xb6\x87\x0b\xb0\x4d\xb3\x63\xe6\xd1\x1d\xaa\xbc\xb8\xe8\x45\x94\x21\xf7\x12\xca\xaa\xff\xc6\x5c\xc2\xe3\x48\x46\xea\xce\xf4\x02\x8c\x53\x9b\x5e\xc1\x17\xc8\xb4\x7a\xcd\x5e\x23\x4d\x18\x5e\x0b\x2a\x0d\xfd\x09\x80\x08\x8c\x67\x1c\xfe\xfc\x89\x4c\x68\x8a\x4d\x66\xdb\x8f\x8f\x7a\x15\x96\x3a\xdc\x68\xe3\x6c\x45\xd9\x46\x68\x63\x84\x77\xd8\xf1\x7f\x44\xf4\x53\x61\x7c\x59\xf4\xee\xc7\x3c\xa0\xf4\x34\xbf\x90\x2e\xc8\x2b\x2d\x08\x09\x2a\xb9\x52\xa5\xa3\x7c\x5b\xbc\x34\xf1\x26\x92\xb1\x8c\xeb\xdc\xc3\x9b\xc8\xf1\x7a\xe1\x6f\x86\xda\xd4\x7e\x1c\x52\xef\x40\x43\x21\x4b\x60\x6f\xfd\x00\xf2\x4f\x48\x0d\xde\x81\x2e\x97\x2e\x8f\xf7\x7e\x28\xc8\x3c\x22\x2f\xb6\xde\x13\x2e\x5f\xe1\x3f\x34\xca\x01\x91\x5c\x0c\x5c\x53\x43\x64\x26\x01\x1b\x8a\x86\xa1\x74\xab\x35\x23\x0b\x60\xd7\x80\x18\x6c\x45\x8a\x62\x21\x21\x74\xe8\x3f\x06\x84\xd6\xa9\x32\x32\x0e\xea\x14\xc6\x86\xb0\x49\xb3\xa8\x4a\xd7\x0d\xbd\x3b\xe2\xea\x00\xa1\xcf\x22\xfe\x7b\xeb\x8e\x57\x7e\x76\xba\xc4\x38\x33\xd7\xa6\x30\x43\x43\xc5\x4d\x9f\xa1\x91\x89\x6d\xef\x9a\x50\x38\xbb\xa4\x3f\xfc\xdc\x5f\xaf\x2c\x2f\xf6\x3e\xb9\xa3\x2b\x02\x50\x8e\x11\x0a\xe3\xcb\x95\x05\xaf\xc1\xff\x0c\x71\x96\xf9\x4d\x4e\x1f\xa2\x6a\xc9\xff\xe8\xec\xfa\x13\x98\xcd\x02\x50\xe0\x05\x38\x44\x35\xba\x53\x3e\x95\x1f\x91\x1d\xb7\xc0\xca\x8f\x63\x8c\xfc\x27\xb4\x76\xf1\x5a\x18\x7f\x92\x67\x5f\x6a\x18\xfe\xbc\x24\x07\xa1\xd3\xd3\x19\xfb\x72\x87\x12\xf6\x7b\xf5\xf2\x43\x0a\x44\x5f\xe6\xe7\x5f\x08\xf1\x07\x92\x09\x11\x3f\x76\x84\x1c\xf2\x7f\xe9\xf0\xfc\x58\x0b\x59\x61\xa1\xa1\x88\x76\x43\x6d\xf6\x45\x0b\xf8\x83\x1e\x84\x11\x02\x51\x66\x9c\x97\xe1\x48\xba\x2d\x0d\x44\xcf\x25\x6f\x49\x43\x85\xd5\xf7\x66\x21\x7e\xcf\x01\xbd\x02\xc1\x3e\xe8\xf2\x7a\xfa\x1a\x55\x94\xd4\x7b\x5c\xd2\x0f\x8f\x91\xc3\xa1\xa1\xb9\x90\xbf\x7d\x27\xe6\x92\x43\xa6\x9b\x4b\xb9\xd2\x89\x07\xb8\xf0\x15\xa6\x89\x07\x9c\xc3\x7a\xd5\x87\x63\x78\xbd\xaa\x62\xa0\xf6\x34\x86\x60\xd0\x1c\x14\xac\x1b\x1b\x03\x44\xc7\x5d\x61\x60\x1d\x70\x09\x80\x94\x03\xc6\xfd\x54\x19\x71\x22\xfa\xe8\xc3\x6f\xf4\x8d\xbb\xbc\x15\x91\xc9\xb6\xe2\xde\x88\x9b\x95\x35\xc3\xd2\x3d\x0e\xef\xaa\x86\xbc\x1b\x80\x34\xa9\x72\x37\xbb\x32\xbd\x20\x2e\xc4\x1a\xde\xf2\xe0\x1d\x7c\x85\x75\x55\xa4\xc0\x5b\xa1\x26\xae\xe2\x03\xcb\xcb\x1d\x0e\x8a\x9d\x2b\xb6\xfe\xbb\xda\xf0\x8a\x6b\xd2\x27\xc3\xdc\x56\xa7\xb3\xe1\x80\x8b\xbc\x13\xcc\x40\x10\xaa\x5a\x8c\x23\x52\xe0\x2c\xc2\x34\x56\x7a\xdc\x61\xc8\x55\xcd\xaa\xc0\x55\x0d\x1b\x38\x41\xf7\x6e\xc0\xc2\xb8\x1d\xbb\x22\xde\x5b\xa5\x28\xd2\x2c\xff\x92\x1a\xc2\xea\x9b\x25\x8b\x3e\x59\xa1\xd5\xa1\x99\x32\x1d\x72\x8f\x6e\x21\x7d\x51\x3e\x82\x44\x10\x58\x33\x22\x57\xdc\xa0\xe4\x22\x1a\xd7\x45\xa3\xab\x46\x2b\x59\xb3\x44\x23\xe8\x33\x83\xa4\x14\x9a\x17\xc7\x60\x04\x53\xaa\x9c\x51\x79\xc7\x6c\xfb\x5f\x2b\xbd\x5d\x04\xdc\x3a\x4d\x56\x73\x16\xa9\x38\xf7\xc6\xc2\x40\x5f\x09\x69\x2e\xc6\xd8\x8b\x92\x34\x61\x8d\x89\x42\xa7\x48\x85\x69\x55\x11\x62\x0d\xf5\x3e\xf4\x2a\xce\xb8\x30\x0d\x4f\xe0\x06\x56\x84\xe7\x0d\x10\x1f\xbd\x11\x1e\x64\xd4\x04\x8d\x55\x33\x86\x07\x05\xf9\x52\xa9\x73\x0a\x98\x4a\x35\x7f\x22\xa4\x33\xf7\xf2\x35\x0e\x6e\x03\x66\xab\x97\x3a\x91\x90\xb3\xe4\x90\xa5\x37\x6c\xcf\xfe\xab\xc4\x50\x7a\xa3\x96\xb8\x0b\x5f\x84\x10\x96\x81\xb1\xfa\xc5\x19\x0e\x72\xd5\xe0\x34\x7f\x86\x45\x44\xf3\x44\x1d\xdd\xaf\x6a\x81\x6e\xfe\x50\x7e\x12\x59\xce\xef\x31\x4e\xc4\xa9\x0d\xc1\xd6\xaa\x11\xb1\x82\x10\x98\xee\x8d\xb3\x52\x2e\xe4\xc8\x09\xd3\x66\xf1\xa9\xa7\x85\xfc\x0f\xf4\x40\x3e\xec\x4b\xf7\x8b\x73\x57\x32\xea\x40\x84\xa1\xbb\x9d\x9e\xf1\xbb\x97\xbe\xf0\xdf\x1d\xd5\xce\x4c\x7b\x6a\xa3\x04\x02\x9e\xe6\xcd\xbc\xae\x70\x4f\xda\x5d\x8c\xc6\xca\xa7\xd3\xd3\xc8\x40\x7d\x51\x10\x60\xe0\xae\xac\x41\xff\x5f\xb7\xca\xd3\xfa\x5f\xed\xda\x82\xad\xa0\xd4\x03\x6e\x13\x0f\x72\xa1\x99\xe2\xee\x81\x29\x8f\x85\x21\xf9\x4f\xbd\x10\xfe\xea\xa2\x5d\xf5\xdd\x47\x8e\xd2\x0e\x9f\x32\x81\x66\xac\x90\x0c\x0b\x9b\xcd\x01\xb6\x53\x80\x37\x89\xf3\x78\x83\x3e\x80\xf8\x3d\xb0\x0e\x77\x7f\x0e\xe0\xc4\xef\xb5\xe5\x2c\xe1\x7d\x8d\xb3\x03\x52\xaa\x53\x27\xba\xf1\x13\xcd\x7f\x32\xae\xaa\x27\x3b\x19\xd2\xfb\x61\x8e\xd2\x68\x45\x27\xcf\x7b\x53\x80\x25\x44\xd9\x19\x50\xf2\x30\x41\xdd\xc7\xef\xea\x90\x76\x37\x23\x02\x65\xc9\x31\xab\x99\xc9\x11\x6b\x36\x2f\x4b\x3f\x03\x96\xdd\x7c\x32\x0c\xef\x54\x7d\x1e\x25\x6a\x9e\xab\x2f\x77\xbd\x5c\x96\x0d\xe8\x66\x87\x04\x17\xd8\x34\x1e\x2d\xc6\xb0\x3d\xd9\xc0\x4a\x7a\x84\x0c\x0c\x60\x13\x85\xb4\xfb\xa2\xc2\xb8\x4b\x8b\x27\x63\x82\xe6\x33\x12\x12\x9a\xbe\x8c\x33\xc7\xcb\xbc\x1a\xe8\xc2\xdf\xd8\xf3\x95\x7a\x0c\xb2\xfc\xdb\xb1\xe8\x21\x16\x2d\x05\xcd\xc8\x42\x2c\x12\xc3\x5c\x52\x2f\x4d\x53\x53\xf6\xc0\x3b\xa8\x47\xd6\x68\x25\xdc\x57\xf8\xfb\xbe\x20\x17\x5e\x78\xfc\xe7\xc8\xbe\x11\xd9\x44\x77\x02\xd0\xdb\x4c\x30\xb8\x77\x42\xfa\x87\x01\x8f\xa1\xfe\xa3\xa1\x4e\xfe\x8d\xa9\x1f\xea\x66\x2f\x40\x28\xe0\x9e\x25\xc7\xb3\x87\x12\xc0\x19\x6d\xe1\xee\x0a\xe3\xa2\x3e\x9a\xdb\x33\x5e\x19\x42\x3c\x20\xc0\xeb\xdf\xce\x20\xae\x39\xba\x43\x1d\xd4\xb2\x52\x5c\xac\xd0\x2c\x0e\x48\xa8\x5a\x4f\x54\x37\x43\x81\xa1\x9c\xbb\xfa\x18\x12\x97\x63\xcb\x28\x3f\x7b\xba\xf3\xaf\xe1\x10\x04\x4a\x53\xca\xf3\xf8\xb0\xac\x36\x3c\x4c\xa7\x8b\x48\x8f\xfc\x16\xbf\x09\x80\xd6\xb0\x32\x69\x65\xcd\x4b\x2b\x21\x89\x90\xa2\x5f\x12\xac\x46\x2c\x11\x4d\xf1\x97\x44\x93\xfc\xba\x11\x94\xce\xa5\x08\x2e\x42\xaf\x76\x26\x8d\x90\x21\x44\xac\x5b\xf6\xeb\xf1\xd5\x70\x44\xbd\x8e\x9e\x46\x71\x60\x57\x69\xfd\x73\x57\x86\xdf\xd4\xd9\xe3\xab\x15\xc9\x51\xe7\x10\x15\x7a\x38\x8c\x4f\x8e\x56\x69\xe1\x49\xc0\x36\xb8\xf5\x89\x23\x0e\xf0\x54\x80\x14\xe1\xe5\xa2\x8a\xf5\x18\xfd\x06\x84\x12\x7d\x65\xf6\xeb\xaa\x09\x64\x4a\x78\xbc\x32\x7d\x4a\xe9\xc4\xf0\xa6\x8f\xbe\x73\xa4\x1a\xef\x22\x83\x12\x9f\xf6\x63\x70\x35\x6a\xd8\xdc\xb3\x7e\xc9\xc7\xac\x2e\xae\xe3\xd4\x37\x49\xbe\x93\x98\x0d\x89\x75\x59\x62\x97\x5a\xe6\xab\x8d\xf6\xcc\xa0\x19\xef\x1e\x2f\x42\x41\x42\xe6\xe1\xee\xcc\x07\xd3\x06\x8c\x15\x1d\x86\x6d\xfd\x51\x89\x2e\x47\xf8\xfe\xaf\x01\x06\x8c\xe7\x77\x77\x69\x13\x65\x3d\xa7\xd5\x79\xdb\xe7\x92\x3f\xd3\x80\x82\x2d\xfe\x65\x40\x9b\x04\xfb\xcf\xe7\x1e\x46\x56\x85\x3e\xa9\xd1\x3f\xe6\x0f\xba\x1f\x61\xa4\xb5\x21\xab\x9f\x8b\x29\x68\xd3\x1c\xe8\x87\x5d\x48\x97\x85\x2c\x58\xa2\x0a\x33\x85\x0d\x87\x58\x24\xda\x25\xa4\x1b\x9f\xe5\xc6\x95\xeb\xe9\x39\x2c\x06\xfb\x3a\x59\xb0\xf9\xe1\xb1\x5b\x63\x2f\x26\x3b\xd9\xcf\x51\x95\x7f\xcb\x5b\x5c\x3e\x8f\xea\x9d\x73\x00\xfe\xf4\x37\x14\xf1\xe2\x7a\x35\xbc\xf0\x67\x6b\x0a\x47\x8c\xd8\xdf\x2d\x87\x6c\x54\x2a\x7b\x15\xbf\x08\xb7\x89\x28\xaf\x1e\x19\xe2\xd5\x19\x85\x96\xd7\x04\xbf\xdd\xdf\x1f\x89\xa6\x20\xa3\x75\x8c\xe4\xe7\x80\xf9\xc4\xc5\xcd\xd7\xb0\x4c\x94\x69\xe4\xf8\xc7\xbb\x9f\xfb\xcb\x2a\xd0\xa3\x3c\x9e\x4b\x71\x8f\x1d\xe3\x57\xfd\xaf\xa4\xab\x6e\x08\x87\x73\x74\x4c\x60\x35\x84\xfc\xb5\xc7\x68\xdf\xa7\xa9\x01\x73\xcd\x65\xe6\x77\xde\xc8\x1f\xc4\x58\x5a\xea\xbd\x80\x7e\xd8\xba\x89\x09\x23\xc1\xed\x39\xc4\x9c\x6d\x46\x0b\x67\x58\xa7\xe4\xca\x02\x6f\xca\xe9\x41\x76\x04\x87\xca\x70\xfe\x9d\xbd\xad\xf9\x63\xe8\x23\xad\xb8\xc3\x92\x1f\x29\xae\x80\x24\xe8\x51\x07\xf7\xc3\x16\xee\xf4\xc3\xfb\x50\x5d\xf6\xac\xdf\xc4\x03\x13\x42\x91\x2a\x88\x1f\x01\x9c\x0e\xec\x6b\xd2\x94\x52\xff\x3c\xb1\xbf\x98\x44\x35\xb2\x98\x70\x01\xf4\x3f\x61\x4a\x01\x5a\xbe\x02\x6c\x3c\xf6\x82\x52\xaa\xd5\xe7\x0e\xcc\x4c\x68\x67\x47\x6c\xa7\xdd\x25\x9a\x15\xe6\xf0\xec\xac\x54\x70\x69\x29\xd9\xf1\x13\x09\x8c\x7e\x2c\xe3\x73\x29\xfd\xaf\xd6\x28\x91\x64\x40\x21\x4b\xde\x7e\x9a\xbd\x6f\xc8\x27\x24\xdb\x57\x9e\xed\xc0\x3f\x8a\x5f\x8f\x2b\x63\xd6\x83\x66\x98\x42\x5e\xd9\x3b\xa8\x89\x10\xff\x08\xf6\xa7\x4d\xfd\x75\xff\xf6\xf1\x28\xf4\xb4\x23\x82\x4e\xee\x88\x75\xef\x1c\x17\x47\x89\x43\x41\xea\x1e\x66\xc2\x91\x5a\x32\x0e\x62\xd2\x19\x68\x76\x80\xbe\xd4\xcf\x23\x85\xc3\x29\x20\x94\x5b\x28\x1c\x97\x92\x67\x0a\x7f\xfe\x17\x76\x16\xc5\xe0\xf0\xc9\x7f\xb8\x62\xce\xea\xff\xfc\xda\x21\x39\x42\xd0\x6f\xe9\x1d\xda\x28\x70\x8d\x04\xd2\x81\x7a\x3b\x9f\x65\x79\xd6\xda\xba\x27\xd7\x06\xee\x6c\x28\x98\x12\x4c\x8e\x21\x11\x13\xc5\x20\x1e\x41\xe2\xf1\xaa\xa4\x1d\xd6\xec\x63\x48\x66\x3d\x3d\x7a\x8c\xda\x50\x33\xad\x8a\x6a\x74\x59\x0c\x95\x50\x6b\x9d\xcf\xd1\xca\x88\x3b\x93\x7f\xf0\x74\x57\xb7\xaa\xc9\xb5\x7e\xbc\x6f\xd3\x9a\x23\x2c\x38\x70\x44\x5b\xc0\xd2\x01\x00\xdb\x3d\xc7\x6b\x32\x20\x23\x9a\x9e\x9e\x16\xa8\x7f\xf2\xc5\x54\x08\x07\xa0\x2b\xbc\x20\xff\x60\x9d\xac\xf2\xec\x3f\xf4\x6e\x98\x25\x63\xf6\xc5\x3b\xa8\xd6\xb4\xf7\xd2\xd6\x32\xc0\x22\x73\xa4\x2d\xcd\xe3\x9b\x5d\xa6\xad\x68\xdc\x51\x04\x6b\x23\xcc\x14\x7d\xeb\x33\xa7\xad\x23\xf7\x92\x64\x7c\xb9\x9b\x4f\xf6\xb3\xdf\x64\x35\xfd\x27\x5f\x18\x63\x51\x0b\xbe\x12\x7f\x8a\x1e\x28\x7f\xff\xe4\x4b\x53\x2c\x12\xf9\x3c\x8f\x50\x06\x36\x79\x3d\xe8\x4f\xfa\xa7\x87\xe5\x9a\x80\x34\x57\x11\x3e\x27\x15\x9a\xa6\xa9\xc9\x6b\xff\x74\x60\x7c\x60\x11\x19\x89\xc4\xfa\x6e\x31\x6e\x1b\xb1\x44\x41\x49\xfb\x7b\x42\x07\xb7\x0c\x18\xc5\x4f\xc9\x69\xa3\x83\xa9\xa8\xbe\x00\x7e\x2d\xc4\x10\xb1\x06\xd9\xf8\xcc\x85\xc3\x62\xc2\xb4\x9f\x1f\x60\xd2\xfc\x78\xde\x07\x0c\xf6\x00\x05\x45\xf0\x15\x4b\x90\x38\x2d\xd6\x15\x29\x68\x68\x67\x0f\xba\x27\xf4\x32\x52\x0a\x46\x2f\x88\x94\xcc\x2b\x95\x83\xf1\x82\x7a\xa5\xa2\xf6\x28\xc2\x6e\xb6\x28\x49\xa0\xd4\xa6\x67\x04\xb2\x99\xea\x08\x62\xed\xc9\x3e\x02\xab\x47\x99\x99\xc7\xa3\x5d\x76\xa7\x88\xed\x3d\xcd\x9e\x75\xc3\x6e\xa7\xb4\x35\x75\xc9\x6f\xd3\x14\xee\x61\x31\xdb\xd4\x86\xf0\x5d\x8b\x9b\xb4\x25\x49\xe4\x54\x34\x79\x34\x3a\x42\x7d\xec\x3d\x19\x96\x8c\xcf\xcc\xa8\x23\x37\x2c\x91\x40\xd7\xd4\x74\x07\x2b\xf1\xe5\xd3\x2a\x2d\x3a\x5a\xcf\x0e\x07\x4f\x6a\x5e\xbc\x53\x4e\x71\x14\xe5\x3b\x78\xbd\xea\x9e\x0b\xed\x0c\xd5\x3b\x90\xb5\xe8\x31\x78\x0d\xed\x1c\x5a\x44\x5c\xd3\xe4\x8e\x13\x01\x3b\xad\x28\xfa\xfc\x1c\xb6\x4d\xbe\x93\x40\x3b\xef\x9c\xfb\xeb\x45\xd3\x59\x96\x4f\xb8\xc7\x9f\x6b\x5a\xdc\x69\xa1\xb3\x39\xe6\x5a\x21\x8d\xf8\x73\x00\x7f\xa6\x5c\x0e\x1e\x85\x7d\xd3\x47\x0f\xba\x62\xc4\x8a\x9f\xb0\xd1\x99\x54\xbf\x85\x8d\x88\x39\xb4\x32\xd2\xee\xb8\xf7\x4d\x54\xa8\x08\x2f\xcb\xde\x8f\x9c\xe0\xc9\x3d\xdc\x52\x72\x5d\x18\x68\x2c\xe5\x11\xaa\x33\xb6\x50\x45\xf4\x4b\x1d\x2e\x66\xac\xb5\x7f\xbc\x26\x23\xc9\x4d\x9f\xb1\x1f\xb0\x77\x14\xcd\x49\x3d\x7d\x99\x5a\x68\x78\x56\x96\xa9\x82\x2d\x47\xf8\xec\x0a\x36\x57\x0f\x17\xe3\xe4\x1a\xed\xe3\x7d\xd6\xd2\x2c\xf3\xf1\x81\x29\xe6\x9a\xd6\x90\x7e\xae\x69\xfd\xb8\xf2\x22\x7e\xfe\x2b\xa4\x69\x93\x87\x5b\xf7\x01\xac\x50\x41\xf3\x84\x88\xda\x32\x21\xc4\xd0\x6e\x2c\xe0\xc6\x42\x0a\x24\x06\x39\x42\xea\x75\xe9\xd4\xd5\xae\x1b\x07\xe5\x60\x66\x20\xb6\xcc\x8a\x90\x77\x4e\x6e\x13\x4f\xd2\x17\x1b\x3c\xba\x0f\xbf\x31\x2d\x44\xf7\x21\xbe\xbf\x4d\x06\x9a\xce\x29\x3f\x03\xe8\x83\xa5\x29\xab\x22\x42\x0e\xd6\xe2\x5e\x04\x84\x96\x69\x29\xe7\x3f\xf4\xdf\x45\x7f\x4d\xcd\x82\xa1\x58\x90\x26\xea\x12\x2e\x0c\x27\x90\x11\x08\xb4\x24\x4b\x1b\x4b\x35\xf5\x8d\x8c\x78\xec\xb5\xb8\x1e\x7f\x10\x9a\x1b\x12\x81\x42\xac\x26\x22\xc4\x8d\x6f\xad\x15\xa3\xf7\x88\xfb\x16\x99\xec\x23\x53\x8a\xfc\x23\x42\xc8\x89\x7d\x62\xd9\x83\x84\x32\xa0\x80\x0c\x1a\xde\x7b\x71\xfa\x51\xcb\x44\xdd\xa9\x6f\x46\x76\x70\x08\x0c\x57\xf7\x23\xf2\x1a\x41\xb8\xe4\xb7\x87\xfe\x0c\x57\xa1\x28\x73\x7f\xfe\x28\x85\x67\x71\xe3\x44\x24\x8b\xc4\x58\x20\x97\x81\x14\x38\x70\x28\x06\x9a\xfe\x11\xaa\x25\xc2\x9c\x9e\x42\xff\xb8\x2a\xe9\x31\x2b\x09\x56\xd2\xfc\x57\x8e\x43\xc3\x32\x3c\x95\x20\xaf\x3e\x77\x8d\xd3\xb4\x1d\x63\x49\xb7\x9d\x39\x30\x2a\xc2\xc9\x42\xb9\x31\xe5\xf3\x2b\x3d\x9f\x06\xf2\xca\x17\x65\x5c\xe8\x81\x58\x55\xc7\x18\xa1\xee\xbf\xef\x42\x11\xbd\x02\xc3\x4a\xfc\x03\x2d\xf6\x45\xd4\x18\x4e\xaf\xf6\x9e\xf9\xb3\xe5\x52\x76\x44\x74\xbb\xe6\xb4\x78\x46\xd7\x2e\x2d\xa3\x49\x15\x7d\x38\x51\x60\xf6\xfd\xb9\xc7\xf8\x93\xbe\xec\x8a\x29\x83\x8d\xd3\x1d\x6e\x9f\x47\xe4\x5f\xbc\xa0\xed\x9d\x25\xcf\x6a\xa1\x33\x30\x08\x36\xc2\xb5\x96\x97\x22\x53\x20\x80\xc7\x24\xf1\xd1\x07\x69\x70\xf7\x00\xbe\x76\x4d\xd5\x78\xfb\x12\x18\xd7\x58\x68\x6f\x9f\x15\x4c\xe3\x24\xaf\x03\x40\x2c\x10\x16\xbb\xed\xba\x8b\x47\x82\x0a\x0d\x0b\x64\xa6\x98\x4c\x2b\x45\xf4\x8e\x02\xa0\x40\xab\x7e\x30\xcf\xdb\xc4\xdd\xa1\x71\x1c\x9c\xb0\x43\xf2\x04\x7b\x2d\x41\xcb\xe7\xa3\xdc\xd3\x80\x9a\x16\x1d\x44\x8b\x38\x28\xd3\xb9\x16\x52\x4e\x5a\x8a\xaa\xfe\x73\x1b\x83\xae\x4a\x5a\x30\x68\xd9\x07\xf7\xf2\x2b\x6c\x16\xeb\xcc\xf0\x1a\x62\x0b\xff\xaa\xca\x4a\x4e\x83\x5c\x0c\x91\x2a\xa7\x0b\xb1\x44\x99\x54\x9d\x57\xf2\xcb\x9a\x01\x12\x36\x1c\xd3\x83\x7a\x46\xc4\x7f\x91\x61\x08\x23\x3c\x80\x05\xe2\x68\x30\x0a\x8f\x3a\xb9\x88\x73\x77\x33\x41\xec\x8b\xff\xef\xac\x36\x5f\x3b\x51\x31\x14\x42\x04\xa8\x86\x5f\x72\x59\xef\x4c\x66\xad\x06\x23\x87\x1e\x61\x66\x7b\x54\x52\x7b\x98\x45\x55\x40\xb1\xba\x61\x2e\xd5\x68\x57\x79\x4b\xf4\x41\x6a\x31\x66\xce\xa6\x61\xf0\x15\x2a\xe5\x42\x4f\x7a\x88\xf9\xae\x6b\x47\xdb\xe3\xc2\x7f\x4d\x79\x5d\x2c\xff\x8f\x89\x78\xfa\xe0\x2c\x99\xb1\x5e\xb5\x21\x0f\x10\xa4\xdc\x5a\x38\xf7\xab\x41\x9f\x05\x76\x39\x35\x5b\x4b\x6c\x3c\x3d\xa2\x22\x44\x39\x59\xb4\x43\xb2\xad\xb6\xdd\x22\x7c\x46\x9b\xeb\x22\xc5\x31\x7f\x2c\xbf\x35\xd6\x87\xf8\x59\x0d\xa9\x81\x30\x33\x37\xb3\x46\x52\xbc\xd1\x42\xf4\x4c\x5e\xf5\x06\xf4\xb7\xe9\xed\xf0\x9d\x59\x83\x4b\x7c\x2d\x14\x39\x02\xc6\x9f\xc5\xac\x4d\x21\x5a\x43\x37\xd7\x5e\xd6\x2f\x57\xa2\x52\x73\xf7\x70\xf3\x7e\xaf\xf4\x4b\x69\x9a\xa6\x94\x06\xf8\x4c\x3d\x8b\xfb\xc4\xeb\x01\x47\xd3\xd3\xfd\xc6\x86\x14\xa6\x23\xac\x61\x3a\xdc\x6f\x98\x98\x17\x27\xff\xf5\x62\x01\xea\x9b\xd3\x46\x07\x14\x0b\xab\x9e\x92\xc1\xcb\xf2\x19\xc9\x4f\x97\x67\xb4\x3e\x73\xbc\xea\x15\xa3\x9b\x81\x8b\xa7\x44\x37\xe0\xd9\x77\xf3\x5c\x60\x49\x21\xf3\x44\xf5\xd3\xd2\x0b\x58\x44\xe4\x30\x13\xa4\xfa\x3c\xd5\x06\xd8\x35\x40\x35\x2d\xf0\xe4\xb4\x22\x0b\xa2\xbc\xbb\x19\x96\x1c\xc6\x13\xcd\xe1\xf0\xea\xbe\x01\x2e\x03\xe8\x17\x2e\x1c\x5a\xbb\xb1\xbb\xac\x1a\xdb\xd6\x0b\x0e\x20\x91\x1a\x85\x9c\x20\xdb\x61\x8b\x70\x4d\xbc\x64\x69\x1b\xf1\x3b\x47\x4e\x6d\x47\x5b\x40\xff\xf3\xe6\x7c\xf1\x09\x4e\xd7\x8f\xf7\x3f\xa8\xba\xbc\xe3\xd0\xff\x79\x8f\x73\x81\xbb\x39\x8e\x8c\x62\x4f\x65\xea\x6e\xfd\x2c\xfa\xb4\xb5\x1d\x31\x59\xee\x37\xdc\xb3\xd6\xd7\x05\xde\x71\x5b\x28\x4d\x31\xac\xfc\xac\x56\xcb\x0e\xc7\x9a\xb4\x6d\xd7\xf4\x8a\x17\x42\x09\x55\xc0\xd8\xf3\x0f\x90\x31\x19\xf5\xc4\xa7\x5f\x7f\x42\xe2\xe1\x77\x18\x09\x41\x69\xe0\x45\x70\x6e\x06\x7c\x01\x7b\xd5\xe6\x4d\x53\x78\xb6\xcb\xa7\x4f\xf2\xca\x34\x59\xd8\xa3\x0b\xeb\x04\x8d\x10\xf6\x2b\xb9\xbd\x7f\xbb\x23\x71\x16\x9c\xe4\x04\xee\x81\x49\xee\x05\x07\xa5\xcc\x33\xd4\x39\x30\xc6\xd2\x4b\x35\xa2\x6e\x6a\xb4\x54\x5d\x35\xf3\x4a\x34\xa1\xcc\x89\xab\x2e\xfd\x59\x51\x5d\x7c\x3b\xb5\xf7\x73\x24\x20\x4e\xe1\xbd\xf9\x64\xb9\xc2\xbe\x32\x2c\x20\x5a\x5e\xac\x2b\x21\x83\x5e\xeb\x45\xfb\x1d\x1c\x21\x75\x67\x68\x93\xf2\x8e\xb3\x98\x91\x10\x4c\xc4\x7e\xa4\x1d\x81\xd8\x0f\x48\xea\x23\x7b\xb6\x21\x23\xb0\x72\xdd\x23\x8f\x4f\xfe\x4c\x47\x2f\x07\x7d\xb3\x2c\x01\xc6\x05\x84\x88\x99\x8e\xde\xad\xf4\x83\xae\x86\x33\xba\x04\xe3\x6a\x09\xcb\x3e\xe5\x92\x9b\x3c\x1f\x86\xa9\x03\x40\x8f\x01\x4e\x21\x4d\xa7\x43\xba\xac\x4b\x19\xff\x35\x90\xf6\x95\x0b\xe0\x8e\x4a\x43\x04\x39\x8b\x7a\x6c\xe4\x8c\xe1\xea\x63\x7e\x2b\xe4\x93\x45\x56\x6a\x56\xe6\xd2\xd7\x55\xf3\x52\x76\x4b\xa4\x9b\xf3\x31\xf8\xc9\xad\xa3\xbc\x2c\x72\x9b\x3f\xe6\xef\x67\x05\x0b\x63\x75\xf8\xd1\x1f\x03\x0e\x9c\xf5\x60\xc0\xc7\x8a\x18\xe3\xd9\xb3\x7a\xd9\x45\xa2\x20\x85\xce\x5b\x93\xf0\xb5\x03\x09\x94\xd5\x7e\x21\x8f\xdc\xd7\xd3\x18\x54\xd4\x27\xe6\xd7\xe9\x9f\x00\x30\x8d\x31\x3d\x47\x82\xfe\xc9\x69\xb0\x1d\xf4\x4b\x0d\x01\x15\x4d\x03\x2b\x08\x17\xd8\x14\x98\x85\xf0\x27\x9c\xda\x92\x23\x7e\x40\x58\x73\x74\x4d\xc1\x5b\xdf\x0a\x08\x28\x05\x78\xfa\x31\x7d\x96\xa1\xda\xff\x66\x33\xea\xea\xf9\x11\xaf\x34\x2e\x6a\x20\xc0\xf4\x54\xf2\x41\x6d\x0f\x21\xdc\x8b\x08\x91\xfa\xb6\x20\x18\x08\x15\x8b\x3b\xe1\xd9\x23\xbc\x8f\x3b\x61\x4e\x42\xc6\x73\x6e\x53\x95\x39\x68\x0d\xa7\x59\x28\xd8\x68\x07\x43\x39\x89\xa3\x6e\x82\x51\xb7\x22\x39\x4a\x36\x87\xdb\x92\xd7\x94\xed\x62\xbc\xa1\x48\xee\xb2\x03\xa3\xb0\xf9\x81\x99\x0f\x09\x78\x1c\x00\xd1\xd7\x68\xfd\x4f\x2e\xd3\xec\x61\x51\xa2\x30\xc7\xaa\xff\xa7\x65\x51\xb4\x34\xc3\x41\x01\x81\xef\xa0\x90\x9b\x4d\xf5\xaf\x7e\xaa\x0f\x5a\xc9\x95\x87\x92\x78\xb8\x64\xf3\x80\xbc\x74\xcc\x9b\x50\x54\x33\x10\xbf\xea\x3b\x5b\xe8\x77\xaa\xcd\x7b\x4b\x55\x7e\x74\x0d\x69\xcd\xca\x6b\xb7\xec\x7e\xe1\xab\x7c\xb8\x04\xff\x2e\xb7\xfe\xf5\xf2\xca\xe8\xf1\x91\x5f\x15\x41\xe4\x0e\xcd\xf8\x6c\x77\x08\x28\xe7\x2e\xfa\xa9\x88\x67\xc1\x9d\x08\x7c\xc4\x71\xdd\x9c\xa1\xd2\xdb\x22\x3d\xd6\x62\xa9\xc3\x23\x25\x61\xbb\x12\xea\x2d\x88\x0f\xf1\x8d\xe7\x5e\xf2\x1a\x9a\x06\x57\x14\x6d\xca\xac\xf9\xbf\x1a\xf4\x24\x23\xc9\x95\x53\xd4\xd5\xc2\x19\xa2\xa2\xa2\x69\x80\x0e\x48\x19\x43\xfd\x41\xca\x3e\x9c\x36\x75\xe1\xf6\x70\xf5\x47\xbb\x96\x1f\xe5\x85\xbb\xdb\xaa\x22\xd7\x93\x95\x0e\xc7\xf8\xb4\x7f\x32\x84\xea\x03\x5f\x55\x51\xdc\x59\x1b\xa7\x90\x48\xed\x4d\xc6\xc0\xc3\x70\x19\x7b\xfa\x00\x9d\x76\x25\x1d\x30\x7d\xf4\x8c\xf2\x92\x6e\xed\xd9\xf6\x70\xf2\x73\x43\x13\x43\x5a\x88\x3e\xf9\x84\x9f\x01\x3f\x8c\x1c\x23\x50\xb4\xd7\x83\x61\xf5\x54\x94\xf0\x7b\xc5\x0b\x8a\x44\x96\x02\x2b\xa8\x4a\xd9\xc1\x3d\x5f\xab\xd7\x5f\x95\xc3\xf6\x34\x06\xbe\x4f\x3f\xaa\x92\x07\x3c\xb6\x71\xd2\x3c\xdd\x9f\x6b\x07\x62\xbb\xa8\x97\xbc\x8b\x9b\xba\x26\xaf\xbc\x29\x0a\x32\xa5\x43\x93\x7e\xc4\x8a\x29\x3b\x2a\x34\xcf\xc9\xcd\x31\xe7\x83\x60\x38\x9a\x08\x35\x9e\xb9\xbd\xb9\x30\xfc\x01\xf9\x88\xe8\x90\x18\x8b\x43\xe4\xc1\x8c\xf5\x64\x3f\xdd\x33\xa7\xc5\xe8\xca\x9b\x69\x92\x67\x9f\xb5\x21\x76\x4e\xa9\xbd\xab\xb0\x0f\x63\xcb\x1d\x6c\x63\xa7\xb0\x90\x56\xcd\xe4\x2d\xe1\xfc\xef\x17\x30\xbb\xf9\x52\xc4\xe4\x08\xc8\x03\xb4\x04\x5c\x89\x76\x25\x21\xf3\x09\x63\x8e\x4f\xf2\xd6\x6d\x03\x85\x1f\xcc\x73\x28\x28\xc4\xc0\xbd\x33\x80\xf6\x09\xc6\xf4\x40\xde\x07\x4e\x20\x75\x1b\xbd\x1e\x11\x79\x01\xfd\xd6\xa5\xce\x93\x3b\xca\xc9\xd2\x5c\x56\x99\xf0\xf1\x9b\x6e\x66\xb6\x30\xf0\x38\x11\x7c\x98\x48\x21\xfa\xa9\x59\x93\x5d\xbb\xac\x62\x3a\x7b\x11\x75\x58\x0f\xa4\x41\xd7\x88\x28\xd0\xef\x19\x6e\xf8\x6c\x93\x48\xf7\xa9\xfa\x67\x70\x61\x38\x1e\x3b\x6e\xbe\xea\x41\x80\x09\xe4\xa0\x60\x3e\xb2\xd3\xea\xa7\xec\x97\xdd\x11\x97\xc4\xf5\x96\x8d\x65\x9a\x95\x56\xa8\x8f\xca\x3f\x8a\x05\xdd\x4f\xcc\xed\x77\xf7\x7b\x4f\x61\xfd\x1e\x1d\x40\x5b\x4d\x2f\x5c\x41\xf4\xe0\xe2\x52\xd6\x0c\xd4\xd4\x48\x93\xb4\xf6\xb8\xf8\xc6\xf5\x08\x2f\xcb\xdd\xa9\xf5\x84\x27\x23\x5b\xbd\x6a\x65\x89\x63\x81\x75\xaa\x98\x73\x7b\x74\x92\xb3\x19\xab\x5e\x0c\xff\xf6\xb0\x4e\x22\x5e\xda\xc4\xad\x2d\x6c\x7b\xee\x21\x8e\x8c\xe8\xc7\x61\x1f\x35\x88\x48\xc3\x4a\x5e\x9d\xb9\xef\x47\x8e\xcd\xa7\x69\xa0\x51\x69\x43\x05\xa5\x82\xc6\xaa\x3d\x06\x78\x02\x0a\x4c\xa5\xea\x8d\x39\x45\xa0\xcf\x63\x0a\x04\x8f\xb4\xb0\x41\xbc\x81\x61\x80\x6c\x68\xee\x2e\x1e\x21\xae\x26\x38\xaa\xbf\x59\x9d\xe1\xd5\x0f\x7f\xb5\x41\xa8\x94\xde\x68\xd5\x58\x89\xf9\x9b\x9a\x05\x59\xa4\xda\x0f\xfa\xd1\xfc\xf9\xe0\xc7\xf4\xbf\x0d\x2f\xf5\x2b\xf8\xb2\xf8\xe1\x0c\x0f\xb7\x63\x1c\x56\x63\x91\x26\x4b\x56\x51\x9c\x99\xe8\x48\xb4\x22\xf2\x88\x02\x7c\x00\x3b\x5c\x21\xd7\x9a\x7c\x96\x2f\x91\x0d\x76\x12\x86\x39\x32\xb2\xbd\x03\x61\x6a\xee\xc1\x6f\x13\xf7\xe0\x17\xbc\x09\x21\x17\x5f\x08\x53\x35\x17\x62\x61\x18\x5a\x11\x69\x27\x46\x18\x96\x76\x84\xca\xa1\x7d\x0e\x22\x51\x5d\x37\x4b\x6c\xa2\x88\x50\x9a\xe2\x2e\xce\xcc\x12\x61\x04\x9e\xee\x2c\xe1\x1d\x40\x67\x8e\xc2\xf7\xb1\x31\xa2\x16\x94\x8f\x29\xc7\x35\x90\x32\xd9\x15\x5d\x1b\x46\xcb\x9e\xee\xc3\x47\x68\x61\x53\x14\xf7\x68\xda\x1f\x14\x16\xb9\x5c\x51\xd9\x55\xf8\x7b\x34\x24\x52\xff\x8c\xd4\xa8\x39\xaf\x23\x03\xea\x11\xfb\xcc\x10\x03\xe2\xd8\xdc\x45\x7b\x53\x1e\xc7\x0d\x7f\xbb\xf6\x34\xbb\x9f\xef\x0e\x73\xa1\x74\x79\x64\x7c\x98\x2e\x94\x39\x97\x24\x32\xf0\xdc\x23\xd3\x61\x14\x94\xf0\x70\xc9\xf7\xb7\xca\x42\xcf\xef\x3d\x23\x89\xe4\x50\xd1\xff\xf4\x85\x7d\x95\x56\x61\xb9\x90\xa9\x68\x70\xd3\xdb\x35\x95\xdc\x34\x99\xa3\x7a\xc7\xb3\x91\xfe\x28\x3a\x65\xfa\x40\x80\x21\xd3\x59\x64\x99\x63\x9b\x70\xe8\x35\x4a\xe1\x6d\xa0\xc1\x7a\xf6\xda\xc2\xeb\x75\xc7\xe4\x5a\x83\xe6\x7e\x7c\x46\x0c\xd9\x38\x54\xbc\x1d\xb4\x20\x8a\x59\x99\x40\x4c\xea\x0d\xe5\x6e\xd3\x7c\xea\x45\x2d\x77\x90\xd2\x1c\x3c\x1e\x06\xbe\xa7\xc4\x12\xe0\x1e\x03\xc6\xc9\x38\xd0\x07\x74\xe5\x1c\xd0\x79\x9a\x4b\x4e\x7f\x3c\xb0\x40\x6c\x38\x24\x0f\xc6\x37\x3c\x2b\x29\x5d\x9c\x56\xf5\x44\x2c\xe4\xc0\xc6\x23\x47\xe3\x0c\xb7\xa4\x87\x8c\x44\x99\x2c\xee\x44\xc0\x67\x45\x8e\xf9\x31\x99\xd8\x20\xcc\xf7\x77\x90\xb7\xf4\x7c\x83\x44\xfb\xd1\xdc\xe6\x1b\x27\xbf\xf8\x26\x93\x78\x6f\x8a\x86\x1f\x40\xcf\x11\x5e\x0c\xfb\x7d\x5a\x6c\x65\x75\x0c\xa2\xe8\x67\xd1\xcf\xf1\x43\xd9\x30\x73\xa2\x19\xeb\xc9\xf6\xe8\x7f\x17\x8d\x27\xf0\xbf\xb9\xcc\x81\x7c\x80\xf2\x4b\x50\x32\x22\x6f\x13\x66\xa9\xef\xad\x9c\xe3\x05\xe8\x17\x57\x7e\x78\xad\xc9\xd8\xda\x48\xa3\x9e\x7c\x9e\x7a\x04\x4c\x2e\x0e\x72\xa3\x6f\x0c\x6a\x64\xa9\x98\x7d\x8c\xfd\x00\x12\x84\x17\xd1\xe6\x7f\x47\xb0\xb7\x4c\x02\x7a\x07\x4b\xbe\x14\x0c\xcc\x36\x75\x77\x87\x7f\x39\x10\x01\x1d\x76\x9f\x49\x0f\xea\x7e\xf1\x4d\x03\x02\x47\x8b\x11\xf2\x2f\x62\xcb\xc7\x8f\x20\x22\x4e\xb8\x40\x47\xa6\xd1\xe2\x46\xe3\x1c\x47\x15\x3d\xf9\x6f\xbc\xce\x23\xaf\x1a\x6c\x2a\x3a\xbb\x3a\x81\xee\x4a\xa4\xb1\x1d\x19\xba\xcf\x00\xd4\xb0\x3c\x3c\xbe\x30\x5f\x8a\xc0\x1a\xec\x80\x34\xf2\x9c\x6f\x44\x4c\x08\xcb\xfd\x7a\xb1\x5c\xaf\xa4\xa5\xd3\x59\xdd\x1a\xac\x0f\x88\x56\x08\x2e\xb2\xe7\xc3\x8a\x52\xbb\x6a\x24\xeb\xa3\x4a\x49\x5b\x8f\x4c\x2d\x46\xbb\xab\x92\x83\xa8\x57\x36\x98\x83\x16\xa4\xce\x9a\xe2\xf8\x35\xae\x39\x86\xb4\x75\x2c\xf2\xb1\x05\xdb\x99\x47\x09\xad\x63\x6e\x13\xfd\x01\x6c\x9a\x53\x56\x52\x48\x39\x3c\xf8\x21\x8d\x29\x72\xb6\x02\xc6\xb4\x72\x4e\xca\xe7\x88\xb7\xc9\x76\xfe\xfb\x58\xe0\xde\x95\x0f\xae\x36\xf3\x5a\x91\x8e\x17\x4b\x08\x41\xde\x14\x0b\x4c\xe1\x46\xe5\xa5\xa1\x5b\x61\x76\x84\x7d\x5c\x43\x1d\xd0\x4f\x75\x29\xf9\xc5\xa0\x64\xb2\x2f\x89\xbc\x27\xdb\x07\x99\xcc\x70\x30\x3d\x72\x5b\xbf\x12\x5d\x0f\x07\xca\x89\x98\x8b\x27\x25\x3d\x7e\x55\xa0\x8d\x1c\x27\xc0\x14\x5f\xfe\x33\x1d\x7d\x61\x82\x1d\x0a\x0c\x51\x91\x52\x4f\x0d\xd6\x0b\x2e\x1c\xf4\xf7\x02\x14\x9e\xa2\x59\xae\x4d\x94\x76\x4c\x03\x45\xd4\x9f\x8f\x7a\x5a\x79\x48\xf6\xeb\x10\x85\xee\x9c\x33\xdc\x76\x83\x9b\xd1\xc9\xda\x07\xf7\xd7\x3a\x28\xe4\x56\x0f\xa1\x02\x94\xc7\x5c\x21\x97\x46\xc2\xd7\xb5\x84\x37\x84\xb0\xfb\xd8\x1d\x0f\x48\x8a\x64\x2b\x2a\x9e\xe3\x1c\x50\x86\xe5\x78\x14\xd1\x5f\x1b\x1c\xb0\x30\x29\xe1\x29\x77\x0e\xb5\x1b\xd1\x5e\x84\xf8\x0c\x45\xa5\x86\x91\xe7\x03\xe0\x9b\x4d\xd6\x21\x23\xd7\xd1\x1e\x3d\xdd\x7d\xc6\x20\x39\xb7\xc9\xed\xb9\x54\x3f\x65\xcb\xe8\x80\x48\x4e\x46\x67\xf7\xd9\xbd\x8f\x13\xb5\x34\xf7\x8a\xae\x20\x54\x84\x86\x15\x2e\x82\x32\x11\x28\x09\xfd\xb6\x01\x24\x6c\x56\x26\x5f\xbc\x94\xca\x87\xa1\xf2\xd4\xec\x17\x17\x09\x72\xff\x7b\x8b\xad\x21\x79\x11\xdb\xc2\x48\x4c\x1d\x92\x92\x5e\x26\x22\xb7\xc8\x00\x88\x9f\xf8\xc3\xa7\xfc\x49\xb2\x70\xdf\xfa\xf0\x63\x87\xd4\x28\xc0\x95\x45\x2c\x03\xa2\x33\x19\x9e\xf2\xa8\xd0\x20\xc0\xbb\xe2\x93\x4b\x5c\x3f\x61\xf5\x37\xb0\xa3\x15\x42\x6d\x16\x48\xa8\x47\xb6\x98\xe7\x3b\xba\xf0\x6e\x85\x4f\x34\xdd\x48\x64\x67\x71\x63\x8f\x66\x90\xa6\x02\x74\x71\x2c\x9a\xb7\x77\x04\xb8\x5b\x85\xc9\xaa\xb6\x8f\x88\x62\x5a\xe8\x44\x88\x7c\xd1\x9d\x0d\x19\x6d\xa3\x27\x39\x69\x96\xa8\x9a\x0b\xcb\xca\x24\xa1\x45\x16\x18\x2c\xe2\x48\x9b\x48\x8f\xcc\xed\x15\xb0\xbc\x10\x74\xfe\x4c\x2f\xf9\xa1\x6c\x7d\xfd\x01\x79\x7d\x99\x4e\xe5\x4d\xb2\xab\x18\x24\xd4\x9a\x07\xa2\xae\xea\xf3\x74\xc5\xe2\x86\x95\x46\x29\xae\x25\xb4\xc5\x02\x2b\x96\x5d\x5f\xce\xc3\x15\xd1\xc7\x49\x04\x74\x93\xab\x27\xbf\x0c\xab\x63\xba\x21\xea\x9b\x3c\xd6\x03\xaa\x21\x7e\x41\x83\xb5\x01\xa7\x39\x7e\x6d\x6b\x49\x0c\x37\x2c\x38\x83\x04\x62\x29\xf9\x43\xa3\xb9\xdc\x36\x80\xd2\x43\x7a\xe8\xd2\x37\xb5\xe6\x4d\x56\x94\xbc\xc8\x03\x58\xf6\x07\xbd\x6b\x48\x96\x7f\x9d\xbc\x87\x17\x6b\x8e\x22\x23\x93\x42\xf5\xd1\x03\xb2\xc4\x33\x38\xeb\x49\x12\x4b\x4e\x9c\xe4\x9b\x86\x0c\x7c\x63\x9a\x26\xdf\x89\x15\xe2\xe6\xce\x64\xd2\xe3\xec\x91\xd1\xb5\x9e\x9c\xec\x24\x91\x6d\xbd\xcc\x24\xaf\xce\xcb\x9e\xd3\x5a\x82\x5b\xa6\x9d\x5c\xb7\x22\x62\xc9\x94\x2a\x4f\x0c\x28\x42\xb2\x1e\x8c\x9d\x04\xc0\xad\xb1\x9b\xe7\xea\xab\x8e\x0b\xc8\x2a\xf3\xe6\x9d\x7b\x9e\x65\x95\xac\xd7\xb2\xe7\xaa\x2a\x7a\x5d\xf6\xf0\x27\x23\xd3\x65\x5c\x6a\xcb\x1b\xc1\x40\x52\x58\x34\x0a\xfc\x94\x59\x17\x7a\x0d\xf2\x41\x19\x0c\xb1\x15\xa4\x0d\x9a\xb5\x3e\x85\x35\x2c\x94\x0f\xa5\xf8\xea\x1b\x53\x91\x28\x0f\x6f\xc9\xf2\x03\x7e\x89\x41\x8d\x40\x19\xb3\x62\x87\x8d\xed\x10\xd9\x60\xa8\x87\xac\x82\x4a\x94\x97\x82\xcb\x55\x18\x86\x25\x97\x9c\xe0\x1c\x05\xfd\x8a\xfc\x0c\x3f\x21\xc9\x5c\x25\xab\x7d\x59\x76\xa7\x0b\x94\x8f\x97\x28\x41\x40\x6a\x2a\x60\x38\x8b\xf9\x83\x35\x81\x67\x22\x4e\xbe\x9d\x5d\xe5\x48\x93\x4b\xf1\xee\x40\x5e\xe3\xa4\x81\x17\xd2\x80\x8b\xdb\x75\xaa\x8f\xd4\x7a\xcd\x4a\x81\xe6\xe4\xb7\x89\x26\xc2\xaf\x05\x31\x4a\xce\xda\xcf\xc5\x2d\xfb\x45\xb0\x1b\x44\xe7\x1b\x92\x18\x98\xc9\xe4\xb6\x7f\x10\xc1\x54\xbb\x0d\xcc\x4f\x92\xe5\x9b\xbe\x75\x9c\x75\x08\xbf\xc0\xc1\xc0\xcf\x4e\x82\x68\x55\x80\x41\x11\xad\x65\x44\x86\x3d\x77\xf0\x8e\x14\xf7\x28\xf2\xf5\x18\xef\x8c\xec\x8d\x97\xc6\xd6\x89\xe7\x15\xa5\x5c\xda\xce\xff\xcc\xfa\x43\x11\x13\xf5\x7f\x94\x48\xd5\xc7\x1d\x18\x72\xd3\x73\x67\xb4\x73\x95\xdc\x7f\xd8\xfb\xf8\x47\x43\xee\x58\x43\xd9\xfb\x10\x8d\xaf\xb7\x9d\xff\x79\x0d\x28\x7a\x82\x8d\xff\x55\xe2\x35\x70\xc7\x3d\x4b\x8f\x46\xee\x39\x2e\x44\x8a\x51\xba\x5b\x8d\xb3\xdb\xcd\x4d\x73\x46\x7c\x69\xf5\x67\x2b\xba\x52\xe8\x39\x91\x57\x08\xaa\x60\x5f\xc2\x6a\xd8\xd5\xd6\x2d\x76\x3f\xfd\x6f\x29\xe4\x34\xfd\x1f\x2e\xfd\x78\x7f\x77\xfb\x7f\xe7\x44\x2c\x61\x23\xd0\xa1\x13\x54\xfe\xab\xe5\x8e\x18\xfa\x4c\x80\x7d\x64\xb9\x42\xb0\x2b\x7e\x73\x08\xa3\x40\x3e\x9c\x52\xef\xc6\x9c\xa9\xa6\xcb\x3c\x51\xde\xc6\x5d\xb2\xf8\xf0\x7e\x0e\x74\x57\x55\x72\x12\xc9\x97\xca\x28\xa7\x71\xaa\xaf\x98\xcd\x31\x9c\xb1\x8d\xc3\xb0\xbf\x30\x45\xc0\x5b\xcf\x62\xd6\xb5\x9b\x18\x34\xe5\x5f\x45\x5d\xa5\x71\xee\x91\xd4\x08\x04\x4b\x83\x75\x4b\x99\x50\xe3\x52\xfa\x55\x08\x5b\x23\x79\x5d\xfe\xed\x41\xad\xbb\x4b\x66\x32\x22\x66\x9d\x4e\x94\xf6\x35\xd4\xd1\x96\x68\x3c\xe5\x9a\x5e\x08\xd5\xc6\xb2\x58\x32\x7e\xc8\xe2\x97\x8e\x49\xee\x0e\x83\x97\xfb\xb2\x72\x06\x3e\x0b\x53\x6b\x94\xf9\x0d\xb3\x0f\x8d\xc2\x6f\x5f\x2c\x23\xbd\xf6\xd1\x72\x1c\x3e\x8b\x47\xac\x9a\x3e\x2b\x3b\xae\x2b\x0e\x3c\x8d\x3b\x91\x3c\x45\xe3\x9b\x15\xa8\x8d\x85\x11\xe2\xc4\x30\x63\x9a\x80\xee\x9e\x3d\x8d\xbe\x56\xf9\x05\x19\x96\xe7\x37\x15\x2e\x59\xcd\xf1\xb8\x7e\x83\xce\xfe\x23\x7d\x8c\x20\x1b\x64\x27\x74\xa9\x6a\x43\x39\xcb\x5b\x8d\x43\xa3\x37\xa8\x09\x68\xc1\xc8\xf3\x48\xa0\x9c\x5d\x29\x61\xd1\x70\x1a\x62\x8e\xcb\x84\x81\xf7\xc1\xad\x5a\x23\x8f\x6b\x65\x5a\x24\x93\xa1\x6a\xcb\x30\x67\x03\xb7\xf3\x02\x3c\xd2\x31\xab\x9f\xff\x31\x38\x17\x56\xa2\x55\x33\xb1\xda\xaf\x9a\x6c\x9d\x11\xe9\x32\x12\x22\xe7\x5e\x2f\x83\xc8\x7f\xe4\x49\x92\x1f\x02\x0b\xf5\x23\x77\x72\x14\x0b\x53\xf3\x68\xfa\xca\xaf\x97\x4e\x90\x6e\xde\x73\xc1\x3d\x8b\x98\x93\x7c\x9c\x96\xe2\xfd\x79\x41\x69\xea\x4c\x66\xd9\xf6\xdc\x11\x01\xba\x87\x95\x1c\xc3\xfc\x6d\xd5\x25\x40\x12\xb4\xa5\x84\xe3\x92\x37\x44\x03\x5a\x43\xba\x4f\x72\xbf\xd8\xd5\xbd\x29\x79\x68\xe1\xc9\x51\xf2\xbc\x28\x4b\xe7\xb8\xeb\x58\xe2\x94\xf0\x68\x99\x5a\xe0\xfb\x27\x97\xee\x6a\x75\x50\x34\x95\x35\x4f\x6d\xb0\xc5\x75\x85\x8c\x79\x76\x73\xa1\x2c\x05\xfc\x43\xa9\x85\xda\x67\x0d\x7b\x96\xbd\x86\x58\x29\x69\x8d\x7e\x38\x1d\xd1\x6a\x94\xa1\xec\xbe\x80\x9e\xee\xa3\xee\x94\x35\xc5\x37\x5d\xf2\xac\xc1\xa3\x3a\xbf\x4c\xf6\xed\x6d\xcf\x65\x40\xd4\x71\x99\xe1\x06\xd2\x6d\xf5\x47\x18\x8d\x71\x0e\x16\xd7\xd2\x8f\x9d\x59\xbc\xda\xa9\x27\x1d\x8b\xa9\x7b\x86\x9d\x47\xd3\xf5\x2b\x20\xf3\xf3\x31\xd2\x5d\xf9\x18\xf5\xc9\x91\xe4\x53\x2b\x6a\x50\x05\xb1\xa7\x06\x8d\x1a\x67\xb3\x75\x31\x04\x0a\x4e\x74\x8f\xfe\x37\x38\x85\x45\xff\x0f\xf6\xb1\xe7\x5e\x72\xfa\xa3\xd6\x26\x62\x88\x7c\xa1\xd8\x46\x84\x09\xfb\x35\xc4\xfe\x0e\x84\x47\x01\x8c\xbd\xeb\x71\x9d\xf6\x8c\x98\xbd\x03\x44\x46\x41\x23\x8a\x5a\x10\x71\x58\xbd\x7d\xf4\x68\x83\x34\x4a\x99\xda\x14\x94\x2a\xf9\x8f\x52\x81\xec\x19\xa9\xd2\x10\x90\x92\xff\xbc\x74\x41\x7f\x7b\xc8\x06\x6f\x9f\xba\xdc\x1c\xe2\x44\xfc\x3b\xc7\x6e\x5a\x5d\x61\x94\x67\xed\xa9\x04\x40\xbb\x36\x8b\xb2\xef\x15\xf6\xf9\xb2\x85\x34\x5d\xb9\xcb\xfb\x11\x95\xc8\x44\xff\x51\x1d\x64\x66\xb8\x4b\x20\x16\xf4\xa9\xf9\x44\xbe\x87\xd5\x95\x1f\xd8\x9f\xd6\xbc\x2a\x2c\x84\x47\xb6\x44\xaf\xb6\x22\x26\xb7\x59\xeb\xbc\x88\xec\x6a\x3b\xf4\xee\x65\x95\xe6\xaa\xff\xbd\x1b\xbe\x11\xc1\x27\x5f\x28\x2f\xea\xe1\x1e\x0c\xe9\x25\x0f\x16\xec\xcc\xb7\x9f\x10\x4a\x89\x07\xce\xfd\x16\x08\x57\xad\x24\x76\x6a\xab\xb0\xc7\x86\xa4\x04\x9f\xa6\xb3\x9f\x27\xba\x33\x5c\x83\xe7\x91\xfd\x2b\x2b\xce\x58\x86\x5d\x31\x71\x35\xcd\xaf\x17\x21\x72\x47\x45\x42\x5d\x56\x3a\xe4\xd7\x8b\xdb\xd3\xa7\xc9\xfd\xe3\xca\x54\xf7\xde\xb8\x2b\xff\xf8\x7e\x63\x36\x95\xe5\xf8\x72\x54\x90\x10\x6c\x75\xcf\xc8\x6b\x71\xa2\x60\x8f\x66\x29\x27\x63\x18\xe4\xc0\x9b\x83\x27\xd4\xfd\xf1\xff\x39\x44\x48\x3f\xc1\x38\xde\x34\xa9\xe9\xdf\x6e\xe1\x59\x27\xac\x96\xd1\x40\x3e\x75\x7f\x84\xb2\xfb\x64\xc3\xb8\x8a\x45\x7f\xf6\x35\x78\xe8\xb7\xf9\x97\x41\x30\x15\xb6\xc5\x69\x89\xae\xed\x85\xa5\x4c\x4c\x00\x57\x16\xa8\xd4\x23\x8f\xf7\xe5\x45\xb0\x97\x1f\x24\x24\x5d\x48\x86\xb3\xa6\xf6\x52\xb2\x11\x5b\x8c\xd3\xee\xd7\xe9\xbc\x8c\x1b\x79\xa3\x3d\xbd\x48\xa1\xde\x2c\x36\x41\x0b\x4a\x1a\x0e\xaa\x32\x9a\xa3\x58\x81\x5e\x3a\x98\x42\xf7\x62\x59\x57\x23\x88\x7f\x99\x14\xcf\x47\x3a\x8e\x1b\xe3\xbc\xaa\x51\xf2\x3d\xc6\x0b\x48\xbf\x56\x8f\xe0\xca\xb7\x4f\x78\xff\xa5\xda\x70\x6c\xee\x72\xd6\xe5\x5f\xe6\xa7\x18\x16\x4d\x36\xb3\x5a\x6c\x43\xf3\x93\xa8\x55\x05\x21\x21\xf9\x6c\xe1\x50\x9c\xad\x1e\x95\x1e\xd8\xfb\xc2\xdc\xa9\xb4\x81\x49\xe1\xf4\x80\x89\x65\x2b\xef\x88\x33\xef\x69\x40\x94\xf9\x09\x86\xc2\xb9\x2f\xcb\xbd\x71\x33\x2a\xe5\xa6\x71\xf3\xb3\x95\xe8\xb4\xc6\xc2\x68\xc5\x39\x03\x9e\x8b\x06\xd4\x79\x86\x9f\xdd\x75\xd8\x73\xd1\x44\xfd\x87\x7e\xe9\x46\x98\x33\x32\x00\x6d\x14\x5c\xc4\x36\x5c\xbf\x6d\xcf\xab\xc6\xaf\xd6\xbb\x5e\xd1\x7b\x96\xdd\x65\xea\xb3\xc5\x1d\x73\x54\x4f\xea\xe8\x22\x1f\x47\x5f\x7e\x1e\xe3\x0d\x0b\x0b\x66\xfd\xad\xf3\x82\x34\x3d\x7c\x2a\xfe\x6e\xd9\xd3\xb3\xfc\x0c\xad\xe8\x86\x3c\xd1\xd3\x57\x6e\xb9\x71\xd2\xe8\x57\x39\x76\xdc\x31\x87\xad\x53\x9e\xa2\x1e\x89\x2f\xdd\x1c\x12\xa6\x77\xce\x2e\xb9\x5e\xc1\x0e\xe0\x44\x48\x55\xc7\xb4\x2a\xab\xdc\x9c\xd1\x2d\xfe\xa6\xa3\x7e\x3a\x4d\xbe\xbd\x1c\x73\x4e\x7f\x90\xd9\xba\x28\x53\xd1\xe3\x70\x28\x22\x29\xa6\xc6\xa4\xd8\x73\xf7\x29\x1f\xc8\x8a\x78\x8d\x34\x36\x26\x06\xe5\xe4\x39\xb1\x0d\xd3\xd0\x79\x95\xac\x54\x24\x64\xcc\x2a\xe0\x0f\xa1\xfc\x0b\x73\xee\xe9\xb1\x18\x7e\x90\xca\xfb\xc9\x05\xb3\x87\x81\x71\x87\x74\xc3\x72\x5b\xcd\x48\xc0\x4f\x39\xdd\xf4\x1b\x77\xcb\xdb\xc7\xf4\x30\x94\x89\x3e\x51\x90\xf4\xa1\x66\x6f\xe4\x04\xb1\x64\xbf\x30\x02\x43\xf1\xc0\xa0\x16\x8d\x7a\x2d\x5f\x2c\xaa\x01\xe6\x08\x55\x9b\xe6\x12\x34\xf7\x0b\xbc\x6a\xde\xc8\xdb\x46\xf8\x96\x41\x19\xe7\x83\x49\x31\x47\xd0\x79\xe7\xee\x39\x02\x09\xe5\x2d\xc3\x5a\xc8\x63\x4c\xee\x0e\x1b\xa6\xd8\x35\x1c\x22\x10\x91\x95\xc8\x18\xc7\x83\x26\xfa\xd0\xbf\x2e\x6f\xbc\xf5\xe3\x50\xf8\x29\x49\x7b\x4e\x13\xab\x42\xfc\xd5\xd6\x4f\x4f\x4b\xcb\xa0\x6e\x15\xf1\x17\xeb\x3e\x57\xf9\xcd\x48\x54\x45\xf6\x7c\x0f\xd8\x96\x97\xd2\xaf\x11\x7f\xe9\x6d\x70\xe8\x63\x14\x79\x2d\xe1\x6a\x3c\xc2\x2a\x2f\x67\x0c\x1a\x6b\x14\x01\x36\x08\x76\x18\x20\x29\xae\xf9\x17\xb2\xc9\xee\x81\x5c\x8e\x24\xfa\x04\x33\xa6\x2a\x67\x7a\x17\xc3\x68\x09\xfe\x99\x30\xd2\xf0\x89\x32\xac\x4f\x52\xc7\x5b\x03\x0d\x6e\x03\xf6\x07\x09\x89\x61\x81\xd3\x89\xef\x2f\xdc\xea\x63\xfc\xff\xbf\x0d\x92\x7b\x03\xdf\xbf\x8b\x72\xf7\x4b\xb6\x8a\x8a\xaf\x46\x8e\x58\x0e\x0a\x1d\xb5\x5d\x14\x19\x98\x78\xfe\xde\x37\x14\x4a\x34\x46\x02\xd7\x64\xfa\xaf\x2b\x08\x24\xe0\x9a\x49\xea\xfa\x91\x59\xe0\xe9\x36\x48\x19\xba\xc6\x12\x33\xfc\xe4\x60\xf8\x90\x37\xcf\xcd\x98\xae\x56\x93\x2c\x57\x30\x7f\x1c\xfd\xf5\x8a\xd4\xc3\x43\x2b\x61\xc1\x7b\x7f\x46\xa7\x80\x17\x72\x5a\xd2\x6d\x56\xef\xe2\x17\xd0\x8a\xbc\xbe\x24\x2f\x0b\xcb\x8f\x06\xe5\x37\x5c\x1d\x51\x32\x48\xf1\xe5\xa2\xc8\x99\x3f\xc6\xce\x75\x6a\x80\x68\x7e\x71\xc9\xa5\x4a\x07\xa1\x41\x79\x68\x72\x50\x86\x36\x06\xd5\xb1\xa5\x6c\x18\xfa\xea\xdd\xeb\x9a\xe6\xf0\xca\x11\xe6\xd6\x39\x7f\x40\x68\x9d\x07\x8b\xa2\x1d\x91\x2d\x41\x41\xc3\x9b\x59\x57\xee\xa5\x1b\x2c\xe9\xe7\x70\x5f\xf7\x34\x86\xc3\x51\xf2\xa8\xee\x57\x8c\x04\x71\xb0\x83\x75\x71\xe0\x1d\xd7\x60\xf7\x39\x44\x37\xb3\x97\x6d\x35\x2f\x8e\x89\xf5\xdf\xb7\x2e\x9a\x5c\xa0\x8c\x6a\x54\x14\xda\x6a\xf9\xa9\xcd\x85\x62\x4c\x30\x11\x74\x3a\x48\xa2\xac\x7e\x29\xbe\x21\xcd\x87\xba\x98\xfd\xa6\x7a\x80\x04\xc6\xc5\x25\xef\x34\x80\x47\x25\x87\x53\x26\xa2\xc5\x0d\xa6\x6b\x9f\xaa\x46\x87\xb2\xdc\x34\xc8\xc7\x63\xe6\x3e\x73\x6d\xe8\x51\xff\xed\xf2\x9b\xf5\x84\xbd\xb9\x2f\x3f\x75\xf7\xec\x15\x03\xd0\x24\x44\x5b\xec\x6d\xe4\x0f\x30\xed\xd5\x46\x3c\x5d\x48\x84\x06\xdf\x89\x46\xa1\x20\x45\x2c\x20\x7b\x9e\x11\x7d\xcb\x8e\x9f\xe2\xcc\x9a\x5a\x1c\xda\xb2\x5f\x53\xb1\xe4\x4b\x99\xa3\x9a\x26\x85\xf7\x43\xc1\x52\x15\x89\xc3\xfc\x09\x83\x5b\xbb\xaa\xd9\x07\xef\xdc\xc7\xa9\xfa\x63\xcd\x66\xde\x0f\xa3\x6f\x64\x89\x64\x63\x3b\x5c\x72\xdf\xbe\xda\xcb\xab\x89\x2a\x80\xe8\x78\x05\x90\x39\xe9\xac\x5e\xbd\x28\xd8\x33\x66\x71\x37\xa8\x59\x30\x8d\x8d\xc6\xb2\x73\x9a\xf7\x9b\x62\x30\xc6\x56\x59\xeb\x2e\x93\xe5\xc3\x6a\xad\x3c\xc8\x11\x65\x9d\x90\x6f\x10\x1e\x50\x17\x4f\x0b\x4b\x81\xed\x95\x71\x73\xa3\xda\xa0\x0b\x4f\x57\x5c\x8c\x3e\x2a\x12\x9b\xee\x3c\x92\xc4\x38\x71\xbd\x95\xc9\x26\xcf\x20\x22\x9c\xe6\xe0\x80\xfa\xe5\x40\xc8\x52\xc0\x10\x84\xfc\x0b\xb9\x4b\x63\xbf\x1b\xc3\x7d\xf3\xd6\xa8\x6d\x16\xb3\x27\xdb\x72\xee\x3a\x5d\x59\xd5\x32\xe1\x7f\x97\x5e\xb5\x74\xd2\x6e\xc5\x10\x67\xb9\xef\xd1\x4a\xb9\xf8\x43\xba\x9b\x4b\x59\x3b\xdc\x95\xb2\x40\x9a\xf9\xeb\xbb\xb1\x6a\xfb\x7c\xb6\x85\x3e\xb9\x17\x31\xa8\x56\xf0\x3c\x41\x5a\x3c\x35\x80\x4a\x6e\x9a\x86\x22\xad\x50\x50\x1b\xc5\x2a\x01\x0a\x3c\x9d\x1b\x70\xb7\xdd\x42\xcf\xb3\x3c\x38\xdf\x9a\xd7\x67\x34\x76\x81\xee\x0b\x53\xbf\x7b\x07\x46\xf0\x3d\x58\xaf\x6b\x2f\xcc\x5c\xd6\xcc\x77\xc4\x0a\xd9\xaf\x5a\x4d\x30\xff\x6a\xd5\xd3\x3d\x12\xb2\x05\x47\x9f\xc7\x85\xba\x59\xe6\xd0\x09\x79\x10\xed\x26\x7f\x7a\x69\xae\x67\xec\x15\xb2\xd6\x27\xc4\xd5\xba\xf1\xab\x8a\xae\x69\x18\x21\xaf\x80\xf6\x01\x40\xe9\xb9\x2d\x0f\xb5\x79\xbe\x90\xf6\xb2\xec\xe1\xed\x62\x21\xdc\x6a\x84\x03\xb0\x7d\xf6\x40\x4e\xe3\x03\xc8\xe9\x8a\x22\x89\xd4\x4b\x3c\x10\xb5\x1b\xc2\xdd\x73\x16\x3f\x5a\xb4\x5d\xd4\xa4\xd8\xc2\x91\x49\x40\x0a\xc1\x92\x28\x95\x0f\xb7\x5a\x48\xe0\xe1\x33\x68\x40\x77\x9e\x03\x91\x44\xaf\xe1\xf0\x65\x53\xd0\x91\x5f\x19\x0c\x4a\xf2\xee\x2c\x1b\x4c\x09\x5c\xad\x82\xaf\x88\x7e\xfb\x5a\x14\xa9\xcf\x29\x89\xbf\xe5\xb9\x72\xb5\xd3\xa9\x47\x91\x58\xf4\xf0\x35\x6a\x34\xde\xd4\x8e\x1f\xdf\xd5\x1c\x01\xa4\x1a\x59\x3b\xfe\x07\xbd\xf4\xe9\x4c\xe2\x50\xec\x21\x9f\x56\x66\xd4\xbc\x72\x81\xd2\x94\xb6\xa9\xc9\xcf\xe9\x60\x99\x34\x80\x54\xf9\xb5\xd8\x13\xa0\x37\xc6\x1c\x6d\x3d\x90\x37\x6a\x6e\x2a\x2b\x63\x3a\x95\xa5\x5e\x59\xe5\x8e\x47\xa3\xe3\xd1\xe8\x78\x36\x3a\x11\x44\xae\xaa\xc9\x63\x07\xf9\x5f\xfa\x78\x96\x1f\x58\x5a\xc0\x40\xa9\x65\x69\xab\x45\x26\x6e\x9d\x8e\xa6\x7e\xa7\xf1\x1c\xd8\xc5\xe5\x40\xab\x5a\x76\xd7\xdf\x61\x44\xe4\xde\x07\x4e\xaf\xb1\x23\xbb\x8b\xcb\x95\xd3\x14\x8a\xd7\xe8\x95\x99\x80\x4d\xfa\x45\x92\x5b\x91\xdb\xda\xd8\xcf\xa6\x59\x1b\xe3\xd9\x83\xc1\x8e\x80\xdb\xce\xe5\xb8\xac\x99\xce\xb7\x29\xb4\x61\xcb\x17\x99\xc6\x6a\x82\xda\xe4\xf5\xb8\x4d\xcc\xe0\x5c\xed\x8d\xef\x27\xd1\xa6\x00\xbd\xff\x38\x8e\xd0\x68\xaa\x3c\xf4\x64\xe0\xdc\x7d\x6e\x44\x98\x85\x87\xdf\x16\xd7\x47\xb7\x39\x92\x23\xfc\xee\xf3\x5c\x0c\xfe\x2f\x70\x49\x5f\xb2\xda\xfc\xb5\x7c\x68\x3a\xeb\x37\x2c\xae\x4d\x9c\x70\x33\xfc\xb7\x25\x46\xb4\xce\x1b\xeb\x36\x3d\x4f\x02\xa6\xef\x43\x79\x89\xf4\xf2\xf4\x6c\x2f\xbf\xb4\xaf\x2c\x77\x0d\xed\x3d\x4e\x30\x37\x80\xd8\xc1\x97\xa2\xd0\xc2\x2f\xd7\xa3\x52\x5a\x1b\x78\x41\x58\x41\x37\x28\xff\x09\x53\xb9\x5e\x8c\x2b\x0c\x7c\x00\x30\x86\xe0\x64\xb1\xdb\xf9\xba\x05\x21\x99\xd3\xf6\x45\xb0\x7b\xaf\xc0\xc4\xa6\xc7\x6b\xa4\xd2\xed\x17\x1d\x8d\x83\x05\x50\xd2\x01\x7b\x22\xbc\x99\xcb\x73\xc8\xab\x1f\x9c\x19\xab\x5f\xdc\xe5\xc6\x73\xb3\x46\xeb\x88\x6c\x57\xb6\xe5\xa0\x8f\x43\x11\x82\xdd\x1c\x68\xa9\xde\x14\x44\x52\x23\xaf\x81\xa9\x31\x7e\x7d\x0c\x69\x3d\x68\x8a\xf1\xe7\x2e\xb3\x9c\x8b\xe0\x5b\x47\x24\x9a\x7f\xbb\x64\xe6\x44\xa0\xc0\x86\x6a\xa0\x25\xe1\x98\xea\x1e\x4e\xc6\x70\x0c\xf6\x1e\x7a\xc6\x08\x13\xa3\xaa\xf2\xe9\x8b\xb1\x99\x2c\x6e\xa5\xe5\x64\xf5\x4b\x58\x61\x40\x28\x1e\x78\x50\x94\x1e\x01\x53\x6a\xef\xcf\x0d\x3d\x28\xcf\x6a\xb4\xba\x2f\xfb\x51\x99\x72\x7a\xec\x15\xff\xce\x8b\x0e\x53\x97\x90\x56\x2d\x8f\x06\x18\x50\x9b\xe8\x5c\x21\xc3\x5a\xa0\x2b\x9f\x8d\xed\xc9\x7c\x17\x40\xd9\xd7\xd3\xa1\x9a\x9e\xae\x92\x80\xc5\xb7\x24\x29\x6d\x2e\x45\xa5\x7e\x07\x17\x93\xbd\xac\xf7\xe8\xe9\xd1\xfa\xfb\x54\x56\x7e\xfb\x07\x4a\x2c\xbe\x53\xab\x7e\x14\x67\x23\x3a\x7f\x30\x80\xc1\x40\xca\x5c\x30\xb8\x94\xe8\x11\x11\x21\x9e\x94\xdc\x9d\x10\x8b\x58\xc6\x3c\xc3\x55\x29\xa2\x17\xbf\x98\x94\x57\xbc\x91\x4a\x9e\x25\x03\xe9\x52\x4f\x7c\x46\x24\xc8\xcd\x8e\x1a\xdd\xe1\x9b\xdb\x4a\x9e\x33\xbf\x1d\x80\x18\xaa\xee\x4f\x1b\x15\x2e\x5c\x3b\xf5\x64\xdd\x86\x27\x51\xde\xcb\x77\x00\xa5\xe1\x5d\xa4\xc5\x4e\xa4\x5a\x6d\xa6\x6c\xb7\x08\x5a\x7b\xba\x29\x45\x1e\x1a\x3e\x49\x5f\x6a\x77\x0a\xba\xe5\x7e\xa9\x95\x6f\x9c\x58\x8f\xd3\x13\x91\x7c\x8b\x61\x86\xc6\xad\x2d\xdd\x7a\xe4\x44\xb0\x48\xd8\xab\xbb\x46\xee\x9f\x3e\xf9\x36\xbe\xb0\x7b\x87\x14\x4f\xf2\xfc\x75\xf2\xce\x83\x31\xf0\xae\xe4\xcf\xe9\xf5\x7d\x6b\xfa\xab\x9c\xbe\xd0\xfb\x58\x06\xc7\x07\x1a\xbe\x35\x98\x09\x81\x20\x31\x17\x72\xe6\x17\xef\xaa\x27\xc6\x89\x2c\xe8\x2c\x29\xfa\x89\x97\x2f\x09\x68\xf9\xdd\x60\x50\x72\x4f\xab\xb6\x11\x8d\x93\x5c\x25\x47\x1e\x3b\x08\x26\xb5\x9d\xea\x22\xb2\x2f\xcb\x31\xb9\xbb\x45\x4f\x20\x9e\x9e\x89\x0e\xb3\x0c\x4a\x0e\x06\x4b\xa8\x69\x78\x77\x31\xf6\x25\x0c\xb4\x55\x39\xe6\x57\x64\xbc\xca\x6f\xf1\x6c\x3a\xa2\xa6\x9c\xe5\x02\xad\x81\x89\x62\x0c\x71\xb9\x7f\x38\x69\xa8\xbc\x2b\x08\xe4\xd1\xc1\x8f\x3b\x06\x6e\x20\x34\x32\xe0\xf3\x3b\x8e\xe3\x71\x29\x23\xd2\x03\xc1\xa6\xbb\xe7\x12\x2f\x37\x7f\xef\x28\x68\xe2\x3b\x5b\x94\x5c\x86\x6c\x54\xdc\x45\x93\x72\x38\xd8\x64\x53\x84\xfe\xaa\x11\xc1\x05\xb0\x2b\xfc\x01\xad\xb4\xec\xbd\x2c\x3b\xa1\x93\x58\x8e\x17\xc6\xee\x1a\x8b\xf7\x72\xa1\xed\x98\x69\xac\x8b\x1b\x57\xb2\x23\x62\x28\x4d\xd1\x9d\x55\xdd\x17\xf7\xba\x1b\x1d\x27\x26\x59\xd6\x5d\x55\x85\xa6\xa9\x68\x1e\x8e\x71\x7c\x93\x29\xd8\xf2\x21\xb8\x48\x21\x13\x05\x29\xd7\xf0\x4d\x30\x99\x70\x8e\x99\x32\xe9\x5c\x90\x28\x25\x9a\x77\x89\xcc\x1b\xa6\x37\xc5\x9d\x88\x78\x5d\x49\xad\x6f\x46\xe4\x57\xc4\x13\x7f\x15\x4f\xe6\x7d\x1a\x13\x0f\x57\x60\xe6\x39\x72\x28\xb7\x4b\x0e\x34\xdd\x21\x22\xc6\xf0\x04\xf0\x69\x38\xef\x94\xc5\x1a\xa9\x37\xd7\x53\x39\xc7\x01\x8c\xfa\xc3\x02\x1a\x36\x5f\xab\x8f\x51\xa9\x1e\xa8\x43\xe3\x6e\x06\x8e\xb5\x28\xda\x1a\x21\xbc\xca\x27\x5b\xae\xe9\xe5\xdd\xcd\x1e\x93\xd5\x21\xe1\xc1\xf8\x75\x63\x7d\xc4\xa9\x82\x0f\x6c\x6a\x2e\x44\x04\x8f\xbc\x5d\x0a\x31\x3a\xd1\x5a\x96\x6b\x32\x1e\x9c\xd9\x95\x0c\x6d\xb5\x57\x19\xdd\xd7\x7a\x89\xa6\x2a\xb7\x0e\x7e\x49\x59\x04\xb5\xf4\x33\xdd\x27\xf1\xc7\xec\x88\x53\x2c\xc3\x21\x48\xe3\x36\x44\x47\xb7\x90\x6c\x70\x2a\x79\xc9\x4b\xa6\xe7\x5c\x69\x1b\x23\x1d\x35\x14\xfd\xde\x0a\xb1\xe7\x31\xdd\xdb\x21\x07\xca\x0a\xdd\x00\x5c\xef\x00\x44\x31\x4d\xf3\x7d\x0d\x6a\x74\x60\x49\x91\x9e\xcf\xe8\x34\x21\xcb\x95\x8d\x34\xbe\x98\xfa\xf0\xe6\xf4\xb1\xea\x0c\x64\x1a\x0b\x88\x9b\xbd\xb3\x28\x13\x26\x9e\xf9\xf4\x4f\xbe\xf4\x4d\xd3\xc8\x38\x93\x8f\xe4\x1a\xb5\x9b\x5b\x40\xa2\xac\x6c\x13\x6b\xee\x45\x9e\x9e\x23\xf1\xdb\x31\xbb\x52\x8c\xaa\x85\x58\x6d\xfc\x9f\xdb\x24\xcb\x41\x58\x94\xb7\x12\xbc\x15\x64\x63\x43\x9c\xe4\x17\xcf\x2c\x79\x60\x71\x46\xf8\x1e\x60\x7e\x5e\x76\x32\xa4\xca\x0c\x44\x12\xf0\x6d\x00\x20\x89\x76\x6d\xad\x53\x02\x02\x82\xff\x75\xf5\xf4\x83\x9e\x71\xa3\xcd\xf2\x65\x01\x98\xf4\xef\x7b\x8d\x0f\x64\xf2\xfb\x11\x34\xe5\xd9\x42\x43\xf5\x54\x83\x30\xe2\xe5\x66\x06\x99\x93\x77\x1a\xa7\xbf\x18\x53\x8c\x1d\x45\x7f\x25\x4e\xa1\x5e\x92\x1a\xc1\x99\x88\xd5\x34\x8c\x90\x57\x86\xc5\x47\x31\xa0\xdd\xe2\x52\xdb\x41\x40\xb2\x74\x7d\x3d\x09\xb7\xf6\xea\x35\x60\xfe\x4e\x01\x3c\xcb\x27\x3f\xa4\xf3\x2a\xee\x00\x29\x18\x1e\x20\x61\x0a\x4e\x00\x0a\x60\x43\x93\xa4\x8c\x4e\x2c\xa1\xd8\xf1\xdb\x89\x2e\x91\xe7\xd6\x65\x65\xcb\xd1\x04\x58\xf2\x04\x9a\x05\xac\xa7\x71\xa8\xb8\x0f\xf1\x1e\x27\xf2\x4b\x2a\x15\x47\x8e\x41\x29\x13\x34\x36\xa9\xba\x4d\x93\xb1\xc2\x61\x47\x61\x6e\xd1\xe3\x5a\x87\x29\xf8\xed\x4b\xd2\xf9\x1e\x6b\xe9\x38\x24\xab\xca\xd8\x71\x77\x91\x98\xaa\x9c\x22\x6b\xf5\x75\x58\x36\xee\x7a\x62\x8c\x17\x83\xb4\x65\x54\x90\x7b\x67\xe8\x58\xf2\xf2\xb5\xdc\x8b\x21\x15\x59\xe3\xb3\x64\x58\xb6\x26\x62\x0c\x8b\x88\xf0\x7a\x05\x83\x83\xff\xe2\xfc\x1b\x84\xde\x5f\x54\x40\xb2\xa2\xfb\x52\x99\xc4\x0c\x7b\x18\xb7\x10\x61\xde\xc1\x7f\xd4\x16\x42\x5c\xfb\x07\x29\xb8\x9e\x0e\xe9\xf7\xd3\x7f\xd6\xff\xdf\xd7\xe8\xb7\xbe\xd0\x8a\xaa\x3a\x82\x5e\x39\x8a\xad\x39\x95\xc8\x19\x4e\x0e\xc1\xe8\x25\xef\x22\x96\x16\x59\x89\x06\x07\xf4\x31\x06\x1c\x6c\x5e\x32\x57\x00\x8c\x9b\x2e\x5c\x24\x8a\x39\xf0\xea\xea\xa3\x86\x64\x0f\xb4\x2b\x16\x11\x63\xae\x65\x19\x90\x85\x74\xbb\x96\x45\x71\x09\x24\xa7\xfa\xbb\xd9\x99\x3f\x5c\x8a\x5d\x3c\x48\x5a\xb9\x64\x5f\x16\xc3\x8e\x56\x51\x4e\x0f\x1d\x86\x5b\x60\x9d\x6d\xd4\xe2\x09\x01\xe2\x69\xfe\xc5\xa0\x54\xfc\xbc\xc7\xbd\x19\xd5\xd8\xc7\xbb\x1f\x1e\xf6\xca\x07\x7f\x63\x2a\x59\x75\x48\x24\x7f\xf8\xcf\x88\x1e\x3b\x2d\x4c\x23\xdb\x00\x24\xbe\x9b\xc3\xff\x76\x87\xf7\xdf\xbb\xee\x2e\x22\xa1\x0f\x6e\x14\x46\x90\xa9\x5f\x52\xe9\x16\x94\x80\x02\x00\xd3\xb2\x38\x54\xaf\x01\x63\xd6\xad\x27\xeb\xd8\x93\x1e\x3c\x23\x32\xff\x9b\x05\x8f\xe9\xfe\x8b\xcc\xb0\x3d\xe9\x81\x85\xd9\x3a\x3a\xc8\x7f\xd9\xd1\x5f\xd7\x3e\x12\x14\xec\x55\x40\x48\x7d\x34\x66\xe2\x07\xbb\x0c\x44\x9f\x41\xff\x3b\x0a\x22\xdc\x84\x61\x28\x09\xa0\x6b\x66\x5f\xd3\x12\xef\xd7\x2c\xca\xba\xfb\xe7\x9a\x0e\x5f\xf7\xbe\x6d\x5e\xee\xfe\x37\xd3\x60\xf3\x38\x53\x4f\x9f\xe0\xe3\x4a\xdd\x05\xe6\x64\xef\x60\xb7\xf7\xf8\x57\xcf\x9e\x26\xa0\x07\x72\x8e\x7e\x82\x23\x22\x1c\x1c\xfc\x52\xe0\x65\x41\x6f\x83\xc2\x92\x7d\xa5\xcf\x1f\xf4\x8d\xc5\x37\xc6\x9f\xce\x6e\x21\x5d\x7c\x38\x66\xbf\x30\xa3\x93\xa8\x49\x4b\xf1\x8d\x31\x71\xab\x8f\xf0\xc4\x82\xaa\x56\xb5\xd9\x57\x96\xb5\xdd\x40\x31\xfc\x7b\xa0\x7f\x3d\x1b\xb9\xe8\x8d\xed\xfa\x2c\x41\xe9\xe6\x4d\x11\x87\xd9\x6d\x8c\xf1\x25\x09\x38\x39\xd2\x76\x99\x96\xdb\xdf\x52\x42\x18\x41\xfa\xb0\x9a\x31\x99\x15\x72\xdc\x2d\xb8\xe0\xd3\x3d\x79\xc5\xcf\xe8\x2d\xec\x22\xf2\xf1\x2c\x79\x31\x22\x4a\xb7\x5e\x93\x3a\xe3\xfa\xc9\xd3\x71\x5c\xf9\x0c\x96\x12\x10\xba\x8d\xb9\xfb\xb9\x6f\x96\x57\x91\x4d\xd3\xea\x9e\x36\xd8\x5d\xc4\xbb\x7c\xa4\x30\xda\xcc\xdc\x7c\x10\x0e\xd0\x4a\xee\x9a\x66\x5a\x3a\x62\x5a\x61\x4a\x70\x1a\xf1\x1a\x5d\x4f\x0d\xac\xea\xc7\x4c\x1a\xdd\x9e\xbe\x5a\xfc\xdb\x83\x6f\xf4\xf9\x27\xc5\xbd\x66\xc8\xbf\x48\x4b\x31\x93\xc7\xe0\x66\xf1\xa9\x3e\x8d\x86\xd5\x57\x79\x34\x7e\x75\xc8\x79\xc6\xbd\x8e\x83\x4a\xbc\xa8\xb9\x8b\xf2\x81\x1c\x27\x94\xa9\x12\x0e\xc7\x1f\x11\xf8\x33\x74\xb2\x4f\xaf\x50\x6a\x83\xeb\x7a\xb8\xa1\x87\x39\xbf\x3c\x30\x5a\xee\xd8\x17\xd7\x7f\xe1\x3f\xbf\x9e\x1e\x16\x51\x94\x31\xde\x33\x06\xae\xb9\xb4\xce\xf0\x93\x16\xd6\x3c\xc2\x6b\x5b\x88\xa1\x5d\x8f\x70\xfb\xd9\x55\x20\x8d\x56\x17\x27\xaf\x34\xb9\x22\x4b\xf7\xb4\x3a\x5d\x86\x37\x11\xd9\x4a\xce\xad\x4e\xc5\x31\xec\x24\xa4\x81\x23\x9f\x6f\x6b\x05\x0c\xdb\x8c\x6e\x38\x7d\x21\x9a\x64\x7c\xdc\x8c\xa9\xed\x4b\x54\xec\x8f\x25\x32\x98\xe6\x06\x2f\xcb\xe9\x35\x58\xa4\xbf\x76\x42\xaa\xea\x01\x4a\x67\x9f\xa3\x02\xd3\x22\x7e\x90\x7c\x29\x10\x16\xf4\x04\xda\x22\xdd\xd1\x4a\x3e\xb1\x01\x0f\xf4\xe4\x7f\xcd\xbe\x71\x97\x5c\xcc\x88\x5b\x4a\xbe\x98\x33\xbc\xfa\x38\x70\xce\xad\xd9\x40\xde\xd5\xef\x28\xbc\x43\x44\xc8\x17\x24\x3b\x24\x7e\x28\xf7\xc9\x7d\x68\xf5\x27\x85\x7a\x1c\x00\xcd\xd7\xf4\x20\xac\x27\x28\xb4\xa5\x41\x6b\xd4\xb2\x07\xa9\x39\x70\xab\xa0\xdc\x5b\x63\x02\x88\xd6\x0a\x9d\x07\x1f\xd6\x38\xc4\x49\x6b\xc8\x27\x86\x30\xe9\x7f\xcf\x98\x6d\x95\x2a\x9e\x1d\x68\xc8\x25\x86\xca\xac\x04\x63\x8f\x23\x21\x0d\x44\x0c\x1c\x31\x2e\xc1\xb3\xe4\xd7\x48\xc3\x81\x99\x6d\x11\x85\x49\xd3\x72\x78\x90\x2a\xec\x57\x4b\x27\xca\x7e\x2f\x53\x74\xd7\xf7\x10\xfd\xbf\xb6\x93\x97\x43\xea\x07\x73\x63\xfa\x51\xa1\xad\x4d\x9b\xba\x7d\xe5\xb5\x42\x0a\x4a\xec\xcb\xe0\xb8\x7f\x74\xc2\xfc\xcf\xe4\x51\x57\xb6\x60\x21\x18\x47\x1f\xcf\x68\x80\x34\x00\xe6\x41\xa7\x4c\xc4\x92\xc1\xba\xab\x51\xbb\x16\x1f\xbe\x86\xe8\x5b\x73\xa9\x29\xbd\xb4\xea\x51\x31\x67\xc3\x36\xc3\x82\x7a\x96\xbc\x25\xd7\x10\xd7\x90\xcf\x50\xdb\x7e\xef\x2f\xbb\xb9\x95\x1f\x51\x61\x63\x59\x61\x21\x18\x53\x02\x1d\x1e\xc5\xdf\x0d\x9b\x7b\x6b\x0a\xac\x6f\x32\x80\x5b\x61\x55\x52\x4a\x36\x85\x31\x48\x6a\x21\x7b\x84\x9d\xdd\x43\x3c\x46\x3b\x4b\x4e\xb9\x27\x5d\x84\x4b\x36\xe9\xe0\xab\xfa\xc4\xda\x3d\xcd\x5e\xf3\x2d\xd5\x24\x3b\xb6\x86\x14\xbe\xbb\xe8\xe2\xf4\x93\x2b\xdd\x6d\x0a\xf2\x0c\xb5\xf2\xc4\xd7\xa4\xc9\xde\x0c\x2e\x91\x5a\x4e\x13\x6e\xed\xc7\x6c\xe0\x9f\x67\x5e\x5c\xbc\x4e\xf8\x65\xa2\x0b\xe5\xcd\x09\xfc\xff\xe3\x23\x32\xed\x41\x80\xc8\x15\xf1\xa5\xba\xa0\x2c\x49\xbd\x80\xc9\x49\x57\xce\xf1\x16\xe8\x09\xf8\x1e\x2a\x53\xd3\xfd\x92\x8c\xb6\xe7\x83\xca\xc0\x90\x5c\xe9\xf2\xc3\x33\x1e\xc7\x4e\x44\x85\xd1\xc5\x5f\x75\x41\xe4\x82\xa9\x38\xda\x73\x2f\x5b\x74\x85\x96\x37\x8d\xb5\x38\xb2\x91\x57\xfa\x88\xac\x80\xd4\x37\xfa\x7d\xd8\xec\x03\xb3\x8f\xf6\xc1\x55\xeb\x39\x40\x5c\xe3\xef\x68\x8e\x31\x82\x36\xc1\x07\x7e\x5b\x6b\x99\xfa\x61\xa6\xc4\xa5\xd7\x96\x57\x84\x78\x2b\xb7\x80\x5c\xcd\xa3\x27\x16\xd6\xf2\x76\xcf\x1b\x23\xdc\x3b\xf3\xe4\xc7\x33\xbc\x3b\xe4\x8e\xc0\xc2\xbc\xa9\x65\xe0\x60\x74\x05\xfe\x8c\x3a\x3f\x3b\x7a\x7b\x99\x12\xa7\x7a\xf7\xaa\x1f\x2b\x14\x5c\x40\x1e\xe8\xc5\xf4\x75\x68\xf0\x7b\x3f\x18\x8b\x00\x47\xc9\xe1\xfd\xcf\xa4\x04\x73\x5f\x31\xea\x6f\x59\x0b\x16\x1a\x87\x68\x17\x2a\x96\xeb\x3f\x48\xea\x46\x1d\x7c\x13\xf4\x4a\x2b\xa7\xe3\xcb\x95\xea\xbd\xba\x38\x11\x35\x26\x42\xf0\x2d\x2a\xa9\xc1\x6f\xf4\x23\x84\x64\xdb\x4b\x78\x19\xc2\xfb\x5f\xad\xa5\x6d\xd6\x97\xca\x6d\x36\xbf\x2e\x32\x0f\x78\x06\xaf\x99\xf6\x10\xd2\xe2\xd3\x8a\xc5\x5b\xa6\x78\xf5\xb6\x3d\xba\x23\x62\x0f\x0f\x95\x7c\x67\x11\xc1\x1e\x7c\xaf\x3b\x6f\x23\x94\xa5\x1f\x78\x1f\x15\x85\x9a\xd2\x85\x5d\xae\xb6\x53\x47\xa1\x76\x0a\xe9\x6e\x5a\x9c\xcc\xa9\x30\xe7\x72\xa6\x3e\xce\x66\x71\xbb\x3d\x8d\x03\xb3\xdf\x83\x0a\x12\xb3\x12\x0e\x00\x89\x1f\x26\x15\xf2\x3a\xf1\x91\xdf\x45\x9d\x0c\xf4\xb8\xae\x3e\x64\x98\x53\x73\xbc\xfe\x57\x57\xa6\x3c\x05\xdf\x44\x88\xc2\x1d\xca\x8f\xf1\x60\xab\x38\x7b\xf1\xa0\x02\x3c\xfd\x1a\xb6\xe2\x15\x97\x73\x26\xfc\x34\x56\xb8\xb0\x4c\xfb\x35\x97\xa0\xcb\x29\x5b\x83\xc1\xef\x38\x9c\x06\x44\x28\x73\xd2\x81\xfa\xd5\xbf\x10\x91\x83\x1d\xf7\x0b\x2b\xf1\xed\x27\x4c\xd4\x12\x54\x01\x51\xab\x29\xf0\x6a\x92\xb9\x1b\x65\xc4\x9e\x14\x2e\x40\xd5\x22\xa3\x51\x42\x8e\x43\x73\x87\xc6\xce\x32\x27\x80\x3f\xc3\x00\x19\x53\x40\x0f\xed\xa1\x08\xd7\x96\x2d\x71\xf7\x65\xfa\xa9\x3c\x5c\x7d\x8d\xbf\x8e\xfe\x75\xa2\x07\x22\xd6\x2c\xef\x94\xaf\x95\x56\x1d\xd6\x33\xac\x6c\x95\xd7\x77\x5a\x7d\xed\x11\x0f\xfb\xdf\xee\xa2\x7d\x35\x77\xf9\xdf\xee\x48\xc7\x0a\x4b\xeb\x1a\xea\x12\x4e\xe2\x37\xaf\x85\xda\xa1\x2c\x5f\x5e\xbf\x50\x84\x83\xd0\x26\x5b\x44\x48\xb8\x01\x88\xad\xd7\x3d\xf2\x50\x20\x5c\x9c\x76\xbf\x6e\x04\xb0\x0e\xed\xaf\x0b\x58\x5c\xf3\x1b\xe2\x33\xf4\x67\xc9\x39\x4e\xb9\x37\x9a\x9e\xd0\x4e\x5f\x0f\x60\x6d\xfe\xdb\x99\xb1\xa3\x64\x43\x0b\xbc\x0a\x6b\xcf\x56\x04\x3e\x43\x58\xb4\x9d\x86\xef\xbc\x5d\xec\xf8\x7d\x34\x0c\xcd\x1c\x54\xe6\x9a\x83\xa0\x26\x8b\x50\xb9\xce\x5d\xb1\x24\x54\x92\xc8\x7d\xa6\x99\xef\xdf\x1e\x08\x58\xfa\x0a\x75\x87\xba\xd8\x37\xf3\xfe\x7d\x8f\x77\xf3\xc5\xae\xdf\x36\x15\xa6\x79\x39\x75\x14\x52\x1d\x49\x39\xe8\x0f\x56\x89\xa2\x0c\xf4\x80\x6b\x6a\xe1\x6c\xd9\xe3\x30\x38\xd9\xc8\xc8\x3a\xf7\x3f\x7f\x20\x43\x6f\x0a\x11\x16\x9d\xa6\x30\x44\xd8\xfa\xaf\x49\x59\xfd\x8b\x5b\x7e\x7c\x93\x2f\xcc\x8b\x96\xd6\x7c\x69\xea\xa4\xfa\x04\x46\x52\x0e\x4a\xd2\xcf\xae\x18\x0c\xb2\x08\x40\x04\x8a\xfd\x98\x29\x90\x0e\xd8\x04\x5e\xec\x9d\x92\xd8\xa1\x8d\x69\x50\x3a\x0f\xae\xa1\x1a\x2d\x4e\x95\x9f\x2d\xca\x55\xa4\x35\x1f\x93\x2f\x1b\x34\xd7\xdd\x9d\xbb\xfb\x83\x2c\xd4\x96\x61\xc1\xe7\x32\xad\xcd\xf8\xf6\x42\x56\x71\x83\x17\x6c\x67\xec\xc4\xea\x8f\x4b\xf3\xbe\xff\xa8\xdb\xd9\xb8\xb3\xca\x8d\x56\x17\xca\xe8\xc9\x28\x06\x1e\x33\x44\xb8\xf2\x40\x3b\xf0\xa5\x1a\x84\x80\x92\x3f\xcb\xe9\xbc\x4c\x40\x40\x8f\x5e\x18\xba\xa5\x85\x2f\x3a\xb7\x1e\x9b\xd5\xcb\x06\xe9\xbf\xc9\x2a\xbc\x3a\xbe\xb0\x21\x72\x15\x31\xdc\xf2\x6f\x58\x35\xaa\x01\xac\xda\x59\xeb\x11\x2a\x68\xb2\xb6\x31\xed\xa4\x51\x10\x61\x82\x99\xdc\xd5\xdc\xe1\xa2\x77\xbf\x42\xb3\x89\x1c\xa8\x7e\x1f\x67\x84\x3d\x3c\x9e\xdc\xa9\xf4\x9b\x38\x8c\x24\x5e\xc7\x69\x5e\x37\x77\xc2\xa6\x05\x48\xa9\x94\x8c\xb4\x33\x92\xd5\xf9\xf4\x0e\x1a\xa0\xf5\x72\x33\x5d\x1b\x73\x51\x38\xb1\x61\xf3\xfe\x2f\xee\x0e\xf3\x10\x3a\x63\x44\x30\x54\x80\x60\xf1\xa5\x38\x8f\xca\x88\x80\x45\xb5\x53\x0f\xbf\x28\x2e\x82\xd3\xda\xee\x52\xcb\x07\xfb\x18\x6e\xa0\xec\xa8\x0b\xcd\x95\x55\x25\x11\x03\x5a\x8d\xe1\xcd\x64\xdb\x12\xa8\xb5\xbe\x43\x69\x7d\xdc\x20\xfb\x2d\x7b\xc0\x5c\x41\x22\x43\x5e\xd6\x7d\x0b\x3f\xee\xf5\xe3\x44\xed\xd7\xf3\xbb\x7a\x38\xce\x53\x8f\x17\x8e\x89\x0b\x44\x1a\xdc\xbd\x8b\x4d\x3e\x2d\x9f\xee\xdf\xf3\x6e\xd8\x49\xad\x6d\x30\xe3\x5f\x51\x84\x03\xb6\xb0\xa7\xb5\x23\xe2\x21\x9c\x05\x93\xcd\x3c\x10\xf8\x5b\x79\x80\xf1\x97\xe2\x07\x9d\xac\xd4\x2d\x83\xe9\x4e\x7b\xaa\xbe\xf7\xdc\xa3\xc6\x66\x03\x3f\xf7\x8c\xea\x29\x55\xda\x39\x8b\x27\x5b\x15\x31\xde\xb8\x54\xf5\xb6\x4f\x22\xd1\xb5\x4b\x66\xc7\x9c\x00\x04\x6a\xc6\x35\xa2\xee\x0d\x54\x13\xb7\x5e\xfc\xdd\x10\xd6\x85\xbc\xb5\xb7\x2f\x36\x2a\x82\xe1\x99\x4b\xbd\xc1\x5e\xba\x4c\xc6\xa4\x33\xe7\x0c\xfd\x6f\xc9\x22\xb1\x4d\x4b\x71\x80\x20\xfe\x4c\x25\xcf\xbd\xb6\xe1\x70\xb8\xcf\x77\x01\xbd\xc7\xce\x37\x8c\x53\x84\xa6\x3c\xc2\xad\xd9\xe8\x81\x81\xc1\xd1\x0c\x94\xaf\xa7\x77\x07\x75\xd7\x9f\xc7\x9d\xdf\xd7\xd8\x8a\x37\xfc\x1c\x43\xd2\x51\x31\x60\xee\x85\x49\x7c\x80\x23\xef\xc4\xf9\x67\x0c\xb9\xcc\x8e\xec\x56\xdc\x67\xb2\x90\x60\x6e\xed\xc8\xec\xd2\x8a\x68\xb5\x15\xf2\xfe\x3a\xa8\x42\x47\x57\x22\x79\xeb\x47\xbf\x7a\x7f\x58\x2c\x41\x31\x8b\x3b\x93\x2f\xad\x51\x28\xcf\x63\x00\xed\x86\xf9\x5b\x29\x43\xef\x0c\x84\x47\xed\xd2\xab\x06\xa7\x5a\x80\x59\xd7\xc0\x5d\x5e\xc2\x36\x8c\x34\xbe\xa8\x4b\x6d\x30\x19\x60\x20\x3b\x3e\x68\x1e\xbe\xea\x1e\x3b\x16\xe3\xa4\x58\x4b\x23\xb3\x14\x36\x2b\x04\x0e\x05\x4d\x3b\x82\x4f\x0b\xf6\xf8\x3b\x32\xca\xd5\xeb\x38\xe4\xee\x96\xdb\x0d\x3a\x74\x4c\xae\x1f\x4c\xa4\x25\xaa\xa2\x75\xbb\x07\xb8\x73\x93\x9e\x79\x4a\x34\x90\xde\x30\x76\xb6\x03\x6a\xb5\xf1\x88\xad\x8c\x50\xdf\x51\x69\xd3\xf1\xa9\x56\x9b\x03\x01\xd7\x61\xac\x44\xe3\xc0\xc3\x84\xf2\x65\x4f\x91\x62\xd3\xd9\xa0\x99\x61\x02\xdf\xe5\xa8\x3f\xcb\x23\xa0\x7b\x94\x8b\xd2\x84\xf2\x5e\xee\x32\x91\x85\xcb\x7e\x1d\xc4\x4e\xbc\x47\x75\x55\x26\x22\xfc\xba\x7a\xd8\x9e\x73\x05\x9c\x2a\x17\x35\x54\x9c\x39\x5e\x86\x70\x77\xfa\x12\xb0\x72\x2f\xd7\x02\xbb\x5b\x5d\x00\xae\xcc\x48\x99\x8e\x10\xd4\xd5\x85\x78\x29\xa8\xff\x45\x20\x7f\x5a\xe4\xb4\x08\xb2\x80\x0b\xe0\xe9\xd6\xc8\xa5\xd4\xd5\xc7\xa7\xc5\x39\x28\x11\x80\xbc\xbf\x2c\x91\x30\xe0\x02\xfa\x14\x4b\xd2\xfe\x51\x56\xfa\xdf\x23\xac\x7a\x26\x37\x2e\x37\xe5\xa4\x57\x9c\x72\x7a\x5e\xb4\xbd\x0d\x77\xec\xdb\xe3\x05\x89\x6a\x43\x27\xf2\x8e\x23\x4d\xb8\xfb\x09\x09\xcf\x52\xa3\xf2\xcd\x66\x8d\x83\x3f\x21\xad\xf6\xa2\xc7\x5b\x50\xd7\x74\xd7\xe7\x88\x51\x79\x1a\x32\x47\x5d\x80\x1b\x04\x65\xc9\x6b\x84\xf7\x73\x52\x47\xb9\x9e\xd9\xa2\x33\x6d\xa4\x23\x54\x2b\x3e\xe2\xe0\x55\x0d\xb3\x37\x3a\x7a\x04\x8f\xa8\x57\x06\x4e\x7b\xc6\xc9\xc9\xcf\x49\x0c\x29\xc6\xa2\xb0\x1d\x34\xad\x3a\x98\x1a\x07\xef\xe3\xa3\xff\x91\x33\xa1\x75\xa1\xce\xab\x52\xed\x87\x06\x0b\x5c\x59\x1c\x73\x47\x02\x9b\x67\xf1\xf0\x6a\x59\x40\x3d\xe0\x13\xef\xcf\x62\x1c\x22\x41\xb2\x1a\xe8\x07\x9f\xb0\x57\x12\xd8\xb0\x92\xcf\x23\x90\x5d\x1e\xe8\x8d\xb4\xec\xf6\x01\x08\xc7\xaf\xe5\x7b\x10\x37\x57\x80\x53\x7e\xa7\x63\x6d\x3e\x73\xfe\x98\xf6\xe0\x09\xbc\x73\x96\xdc\xf2\x5d\x8f\xd7\xd1\xfa\x3e\x47\x7d\xab\x8e\xa0\x32\x92\x3f\xe6\x48\x91\xfe\xef\xd3\xd3\xc4\xda\xf9\x91\xca\x47\xe9\x0f\x5a\x32\x82\x4d\xdd\x50\x27\x2c\x1c\xf1\xe4\x6b\x02\x54\x13\xeb\x25\xaa\x14\xc9\xa7\xbf\xf6\x10\xd4\xdc\x97\x1d\x31\x8a\xc7\xf5\x88\x1e\x73\xcb\x28\xad\x16\x0e\xe8\x2a\x49\x85\x28\xdd\xe5\x7a\x3e\xac\xb9\xc3\x54\xc4\xf4\x1d\xf8\x79\x16\x8d\x1e\x54\x88\xdf\x3f\x76\x81\x39\xbe\xc7\xaf\xf6\x6c\x96\xc1\xf8\xa2\x1c\x2a\x1a\xcf\x59\x8c\xd9\xcf\xc5\x9c\x5f\xd3\x1a\x5e\x2f\xcd\x67\xd3\xdc\x14\x80\x31\xb2\xc9\x28\xcc\x74\x2a\xc9\x66\x5c\xe0\x40\x70\xd1\x83\x0c\x74\x1b\xb1\x9a\x63\x07\xc6\xa4\xfc\xf1\xa6\xba\xe4\xd8\x41\xfb\x03\x65\x61\xa0\xb2\xac\x5e\x63\x3d\xa6\x57\x28\xc7\xf4\xca\xbd\x68\xea\x51\x3d\x5d\x69\x2e\xc9\x54\x10\x3f\x6a\xb8\x57\x8a\x73\xc5\x75\x81\xcb\xb7\x8c\xa1\x47\x68\x20\x3d\xc1\x32\xdc\x90\xdd\xdf\x0e\x73\x0c\x9f\xc3\x39\x02\xa4\xbd\x81\x7e\xd7\xb1\x72\x9c\x8f\xa0\xeb\x67\x5b\x2d\xc3\x8a\x66\x53\xc2\x9e\x53\x26\x38\x30\xde\x91\xd1\xc0\xa5\x14\xf6\xa0\x90\xb1\x8a\xe3\xd9\x48\xf1\x9e\x53\xeb\x87\x8f\x1a\xde\x56\x42\x55\x2f\xbb\x45\x60\xd0\x38\xd4\x93\x9d\x83\x3a\x8b\x4c\x35\x77\xf0\x80\xe5\x81\x50\x1e\x64\xf1\x50\xa1\x36\x06\x73\xc0\xd5\xa6\x4c\xb8\xa1\x3c\x07\xc0\xf4\x50\x3c\x9c\x18\x3f\x1a\x59\x8d\x5f\xf6\x39\x32\x66\xb4\x30\xee\x3b\x1b\x4a\x47\xfd\x18\xdb\xeb\xa3\x5a\xc6\x73\x8b\x4e\xdf\xd5\xec\x0f\x74\x1a\x01\x74\xc7\x19\xf2\xc6\xe3\xf0\x8d\x95\x2a\x17\x03\x7c\x40\x18\xab\xc3\xb6\xbf\xa2\xd2\x7b\xcf\x25\xac\x94\xcc\xe6\xde\x9a\x82\x56\xec\x4e\x91\x7e\x1f\xd0\xa1\x6a\x80\xd3\x8c\x2c\xfd\x72\xbe\xc0\x45\xf9\xa1\x9a\x51\x16\x3e\xa7\xa7\x49\x95\xfc\xaf\x8c\x07\x42\x18\xad\xdc\x0c\x8c\x21\x61\x08\x2b\x54\x9c\xbb\xfc\x92\x32\x86\x11\xc6\x3f\xee\x4c\x07\x13\xb9\x77\x09\xe7\x43\x5c\xb8\x8f\xdd\x81\xa6\xd2\xc7\xca\xc5\x8f\x64\xa1\xc5\xa5\x85\xd1\x75\xd3\x52\x42\xad\x24\xbe\x79\x15\xdf\x9a\x45\x73\xdf\x0b\x18\x82\xd6\x0e\x0f\x5b\x5f\xf2\xf2\x7b\xff\x10\xc8\x4e\x4e\x3a\x86\x14\xa1\x53\xa4\xe3\x38\x8a\xf8\x61\xd9\xe8\x3e\x32\x28\xb8\x8f\x80\x38\x7c\x19\xc8\x6a\x69\xfc\x7c\xb4\xf1\x48\x28\xaa\xd5\x5a\xc8\x2f\xba\xec\x19\xf1\xf8\xd2\xdb\x44\x74\x3d\x46\x06\x67\xfc\x68\x6f\x5f\x66\xa6\xae\x68\xf0\xd2\x62\x28\x0f\x18\x80\x44\x83\xa2\x52\xfc\x23\x82\x4f\x00\x89\xd1\x9b\xb3\x1d\x04\xa4\x16\xd2\x0f\xaa\x81\x10\x49\x89\xe9\x31\xa8\x4b\x7a\x1d\x70\x31\x81\xb6\x06\x87\xe1\xa6\x36\x92\x94\x0f\x5f\x1f\xfb\x5c\x35\x66\x1d\x59\x4d\xd1\xd5\x73\xf7\x80\x66\x75\x1f\xaf\xb7\xf8\x0e\x9c\x15\x97\xd2\x57\xb5\xaf\x14\xbf\xf6\x5f\x8a\xa1\x1c\xac\x17\x35\x76\xd4\x5e\x17\x75\xe9\x17\x84\x0f\x44\x4d\x95\xb1\x71\xdc\xc7\x11\x5e\xc4\x95\xdc\xf9\xa6\xde\x55\x1f\x35\xc3\x2b\x30\x3b\x36\x8f\x0b\x79\xe0\x9f\xa8\xc6\xfa\x17\x28\x0a\xb2\xc2\xe1\x01\x90\xc3\x54\x07\xa4\x8a\xe1\x79\xf7\xe1\xb6\xbb\xf4\x63\xfe\xae\x57\xa0\x7a\x57\x76\x6f\x86\x86\x39\x1f\x33\xf5\xec\x57\x64\x5e\xad\x3f\xce\x5e\x10\x7c\xfa\xca\xc5\x83\xb0\xfa\xdb\x33\x9f\x01\xd8\xa9\x71\x5f\xc4\x6c\x6b\x57\xb4\xfc\x9d\xc7\xd8\x30\xe3\xd6\x13\x06\xcb\xb2\x5f\x6d\x3f\x50\xfd\xff\x5a\x19\x9e\xe1\xd4\x97\xb0\x3a\x73\x75\xfd\xe3\xfe\xfc\x91\xef\x31\x12\x75\x14\x24\x01\x7e\x9d\xfe\x97\x3b\x21\x05\x03\x27\x9f\xe8\xd3\x57\x5a\xf2\x49\xb4\xf0\xbd\xe4\x79\xd6\xc9\xea\x3e\x89\x2b\xb6\x83\x37\xda\xca\x3d\x8d\x51\x0b\x83\xf5\x96\x4c\x50\xcd\x12\x66\x7e\x0a\x81\xd4\x7e\x70\xfa\xba\x17\x23\x87\xa6\x25\x1f\x2f\x43\xe2\x3e\x73\x56\xb2\x61\xd0\x39\x85\xd6\x41\xaf\x98\x94\x43\x17\x1d\xd1\x46\xde\xe5\x5e\x94\xea\x17\xd5\xab\x8f\xfd\x57\x14\x73\x24\xb4\x73\x20\xbf\x6d\xc8\x66\xab\x11\xc8\x9a\x18\x08\xc1\xbc\x36\x20\x10\xfa\xb1\x80\x5b\x69\x76\xe9\x07\x99\x2c\x18\x14\xd6\xda\x82\xbc\x39\xd9\x28\x9b\x1b\x7c\x2b\xb2\x19\xfb\x71\x54\x28\x32\x2d\x68\x2d\x35\x7b\x33\xfa\x57\x13\x1d\x24\x50\x98\x77\xc7\x1c\xd0\x00\x76\x39\x04\x92\x21\xcd\x44\x3f\xe5\x9c\x6e\xef\x55\x8e\x2b\x28\x25\x68\x34\x33\xcc\x9e\x6d\x6f\xa4\xbf\x40\x41\xc7\x97\x7f\x60\x27\xc3\xb6\x4d\xa4\xca\x8f\x04\xe5\x29\x13\x13\xcf\x44\x5b\x66\xb4\xa3\xa5\xc5\x13\x55\xaf\xb9\xc2\xc4\x96\x31\x14\x11\xff\x00\xdf\x95\x8b\xac\xd2\xb0\x03\xc8\x3b\xa2\x44\x99\x0b\xf2\x01\x73\x49\x17\xfe\xeb\xef\x20\x63\xfb\xb6\xe3\x35\xb1\x4c\xfb\xb4\xfa\x23\xa9\x9f\xbb\x82\xe4\x4b\xe9\xee\x6e\xa4\x63\x44\x94\x22\xb4\x1f\xc6\x3c\xab\xae\x74\xae\xa9\x61\x64\xf6\xfe\x75\xc1\x10\x66\xff\x41\x29\x4e\x24\x38\x17\x60\x56\x2b\xfe\x0c\x30\xa1\x24\x90\xee\xf2\xb5\x63\x6c\x0a\x34\x91\x65\x01\xf0\x6a\x3f\x7a\xa4\x26\x08\x81\x27\xc8\x2b\x91\x69\xd8\x49\xbd\xe9\xbb\x9a\xc8\xc2\x87\xc1\xc0\x34\x47\x99\xea\xdf\xee\x56\x52\x24\x62\x5f\xd3\xbc\xf1\x83\x28\x80\x8d\x83\x94\x84\x68\xd6\x94\x54\xb3\x3f\x77\x58\xec\x81\x01\x2f\xe7\x9d\xf3\xe7\x55\xb2\xbc\xfd\xc5\x00\xf0\xae\x85\xa8\xb0\x57\x14\x71\xd2\x10\x53\x16\xbd\x4e\x10\x96\xf9\x18\xc3\x59\xa5\x15\xa0\x22\xe7\x2c\x3d\x48\xfc\x46\x6d\x7f\xca\x32\xd3\xab\x61\xaa\x28\x70\xbb\x96\xd8\xf4\x54\x0a\xcc\xd8\x0f\xbd\x3d\x50\x86\x35\x2f\x4b\xe9\xd4\x8f\xb9\xc8\xd2\x49\xd2\xd0\xa4\x76\x09\xe2\x4b\x00\xc3\x40\xce\x3d\x87\xa5\xd7\x13\xcf\xb1\x9e\x88\x0a\xff\xb7\x07\x6b\x1c\xaa\x68\x6c\xd0\x8f\x96\x66\x95\xad\x84\x47\x51\x7b\xf7\x64\xa5\x3c\x33\xc9\xb7\x10\x60\xa0\x10\xc4\x76\x2b\xc4\x7c\x7a\x58\xd0\x16\x07\x64\xcf\x45\xe4\x17\x7e\x4c\x98\xc1\xd5\x9b\xb4\xe7\x39\x39\xda\xa1\xca\x0c\xd6\x06\x23\xa3\x96\x5d\xda\xbe\x18\x08\x5d\x80\xd5\x20\xff\xf9\xde\xf6\xda\xcc\x4b\xbd\x8a\x70\x80\xd9\x0f\x84\xea\xca\x97\xee\xd7\xe9\x7f\x28\x9d\x1c\xd1\x6f\x68\x1e\x63\x4c\x04\x65\x2a\xd0\xaf\x97\xfc\x12\x25\xb4\x3a\x51\x69\xe8\xd2\xf7\x0c\x06\xd5\x60\xb8\x7a\x86\x72\x23\x10\xbf\x43\xa6\xba\x91\x8c\x33\xf9\x99\x7b\x81\xf5\x74\xc5\x60\xc0\xde\x9d\x73\x1e\x67\x88\x8e\xca\x1d\x72\x91\x45\xd2\xaa\x6e\xb5\xbc\xd9\x9a\x97\x5d\xe9\x28\xdc\xcb\xcb\x1a\xb0\x29\xed\x40\xf1\xee\x27\xf9\xe5\x07\xd3\xfd\x72\x3d\x34\x07\xfa\x2c\xa8\x15\xd7\xb0\x2a\x6a\x7b\x31\x92\x89\xd3\x15\x98\xc1\x5b\x01\x9e\x31\xbd\x2c\x32\x78\xee\x8d\x89\x87\xd5\x45\xb5\x10\x95\x1f\xdf\xfe\x2e\xf6\x64\xc7\x95\x13\xaa\xfd\xe7\x4e\x75\xc7\xc3\x88\xb3\xe4\xc3\x6c\x4b\x37\x13\xd2\x03\x3c\xfe\x66\xd2\xcf\x09\x8b\x56\x3e\x09\x59\x6f\xd9\xe4\x70\xa1\x69\x18\x46\xad\xb9\x34\xcb\x3e\xb8\x43\x0a\x18\x91\xb7\x06\xa7\xda\xf1\x1a\x2c\x99\x1f\x09\xeb\x78\x30\x78\xaa\x69\x69\x3c\x88\x34\x7e\xd9\xde\xf0\x4d\x20\x3c\x71\x71\x7a\xe3\x6d\x6d\x7a\x1b\x08\x5f\x74\x61\x7d\x5e\x27\x92\xb5\x9f\x17\xf8\x77\x4d\xf2\x9f\x7b\xdc\xff\x52\x90\xe6\x80\x12\x30\x3e\x5d\x1a\x6e\xc0\x2a\xab\x9a\xd1\xab\x1b\x34\xc5\x00\x6d\xfe\x36\xb4\xfc\xdb\x5d\x0d\x53\xbd\x8e\xd3\xe9\xd3\x01\x2c\x0b\xc7\xab\x78\xb5\xfa\x22\xd7\x9d\xb0\xe3\x8e\xbe\xfc\x4c\xb3\x8b\xc7\x35\xcd\xa2\x77\x00\x01\x5d\x0d\xa5\x3c\x53\x71\xcb\xcf\x6c\x1a\x4b\x01\xe8\xc8\xcb\x5f\xd3\xee\x67\x7f\xee\x4c\x2b\x8e\x3d\x29\xbb\x9c\x01\x21\xbb\x14\x96\x31\x4d\x25\x99\x55\x98\xd6\x24\x57\x35\x72\x9c\x6e\xa0\x63\x1b\xa8\x22\xcf\x40\xa4\x19\x04\x9c\xb8\x66\xd0\x05\x76\x80\xcc\x29\xea\x67\xa8\x6a\xae\x92\x83\xd5\x40\x3e\x65\x16\x21\x78\x96\x83\x38\xad\x38\x21\xb9\x14\xfa\xe5\x2a\x50\x14\xf4\x5c\x9c\x86\xab\x63\x10\x12\xdf\x63\xeb\xcf\x51\x55\x6b\x73\xab\xff\xb7\xd3\x09\x6e\xeb\x38\xa4\x1a\x6a\xaf\xa7\x5b\x18\x36\xa8\xc9\x21\x6c\x62\x17\xa6\x43\xac\xa1\xba\x93\x99\x45\xc0\x13\x02\x23\x01\xc0\xe4\xa0\x58\xfa\x53\x3f\x93\x45\xbf\x24\x47\x43\x9d\x7e\x5e\x56\x5b\x45\xab\x80\xd0\xe3\x44\x0a\x04\xcf\x7a\xce\x00\xc1\xf0\xa5\xaf\xa1\xb1\xb5\x35\x02\xd4\x5b\x49\x77\x66\x0d\xbe\x6c\xc0\x13\x90\xb1\xc7\x2f\x7b\x1a\xc9\x66\xd2\x73\x1c\x22\x77\xdc\xa3\xa2\x2e\xa5\x9f\x74\x97\xdd\xd3\x98\x74\x19\xd5\x32\x77\xb2\x3d\x0f\x7d\xef\xdb\x9e\x4a\x75\x23\xab\xfd\x06\xca\x63\x8d\x86\x3b\xea\x51\x2d\x7c\x8a\xd3\xb8\x70\x2b\x55\xef\x54\x7b\x47\x23\x2d\xbb\x50\x46\xed\x5d\x46\xfc\x8e\x63\xb2\x58\xdd\x07\x71\xfd\xea\xca\xcf\xf4\xea\x45\x5d\x88\xc8\x8a\xd5\x8d\xa6\x70\xb7\x3c\x90\x7c\x14\x44\x26\x79\x92\x81\x2a\xfd\x10\x07\x55\xdf\xb6\xff\x65\x82\xa9\xa5\x50\x68\x0b\x2a\xc8\x6f\x2d\x85\xb4\x5a\x2c\x57\x95\x35\x94\x78\x8a\x9e\x3e\xc1\x36\x22\x13\xef\x63\x7e\xe9\x87\x37\x2c\xae\xc2\xec\x3c\x69\xf1\x57\x9f\xfe\x77\x45\xf5\x0b\xa2\x4a\x92\x16\xa0\x33\xa5\x5f\x03\x8e\xad\x94\xe5\xf5\xa0\xed\xc2\x26\x54\xbf\xfa\x21\xb7\xd6\xc8\x2c\xb7\x0e\xaa\x06\x7f\xf7\xac\x0d\xde\xda\x66\x28\x4c\xac\x7d\x89\x38\xc1\x9f\xf5\x51\x54\x1e\xc1\x9e\x56\xc6\xaa\xf2\x9c\xd8\x5a\x30\xbd\xd6\x69\x49\xc3\xed\x47\xa4\x69\x8c\xc4\x79\x78\xa0\x11\xdf\x0b\x5a\xd3\x8c\x24\x79\x1f\xac\x07\x08\xa3\x68\xa3\xa8\x3e\xbe\xf0\x9d\x6c\xb9\x99\xca\x65\x75\x75\x27\x04\x44\xf5\x00\x8f\xf4\x71\xf5\xc6\x46\x29\xb7\xef\x2d\x38\xa9\x68\xac\x82\x82\x4c\x12\x9a\x05\x18\x92\xbe\x00\x18\xc0\x1e\xbe\x5c\x27\x08\x13\xd3\xea\xe2\x91\xe5\x78\xf8\x22\xd2\xea\xe9\xd9\xfc\xc6\x14\x48\xa3\xe8\x92\xaf\x63\x85\x8b\xde\x9f\x0f\xac\x1f\x64\xaa\x42\x36\x2b\x79\xf3\x10\x2d\xfc\xef\x12\x06\x9b\x91\x96\x8a\x43\x1c\xb8\xf5\x4a\x79\x09\x66\x3c\x7d\x38\xea\x9f\xc3\xba\xf5\xe9\xc4\xbf\x8f\x38\x98\x18\x76\xe0\x01\x67\xac\x94\x76\xe4\xd9\x7f\x71\x86\x02\x65\x96\x85\xc7\xfd\xd4\xdc\xa3\x7e\xf9\x68\xff\x87\x59\x68\xcf\xbd\xd4\x8f\xd9\x40\x8d\xb2\x72\x01\x39\xdb\x79\x46\x55\x36\x1f\xbd\x86\x45\xa2\xac\xeb\x4a\xa5\x65\x10\x9b\xea\x75\x89\x77\xa7\x2b\x6d\x72\x15\xc2\xdf\x4d\xbc\xaa\xf6\x2e\x88\x00\xff\xc8\xb4\x8c\x42\x17\x59\x20\xd4\x6c\xd2\x0c\x33\x91\x5c\x32\xfe\xca\xf6\x08\xff\x66\xd6\x1b\xe5\x0e\xe5\xb6\xbc\xa1\x0a\x97\x5c\xc3\x36\x84\xb7\x44\x8a\xb0\xfd\xda\x82\x27\x72\xcc\xa8\xeb\x69\xd4\x56\x7f\x92\x93\xa0\xaa\xab\x97\x11\x55\x77\xdc\x94\x46\x98\x75\xa5\x55\x23\x91\x2d\x72\x9e\x5b\xf1\xaf\xf1\xa3\xc9\x28\x58\x1a\x80\x13\xac\x83\xea\x76\x06\x72\x61\x58\xa0\x2d\x20\x5c\xa9\xaa\xed\x6a\x0c\x8c\xb4\x1f\x5a\xa5\x36\x5f\x0e\x98\x42\x35\xec\x4c\xf6\x31\xe1\xca\x18\xb4\xda\x8c\x08\xb1\x81\x62\x48\xf7\x0b\xa2\xc0\x60\xa6\x74\xf3\x6d\x7d\x79\x5c\x11\x0c\xd4\x1b\x7f\x2a\x4e\x2f\x58\xaa\x90\x34\xee\x34\xee\xd3\x8e\x20\x6c\xe2\x19\xe2\x9c\x67\xfd\xa0\x72\x0c\xeb\xf4\x2a\xe1\x4d\x8a\x03\x17\x8a\xc6\x51\xbc\x22\xf3\xaa\x5e\x31\x9c\x27\x70\xb3\x56\x18\x7f\x65\x9a\x6a\x25\xbc\x35\xa5\xe9\x62\x7c\x67\x6c\x04\xda\x7c\x07\xe0\x72\x92\x46\xc3\xc9\x4c\xfb\x13\x5a\x53\xce\xcf\xbc\xe8\xd4\x6f\xfd\x18\x60\x0f\xcd\x8d\x60\x1a\xa3\xe2\x99\x22\x64\x10\x17\x5f\xe9\x3e\xcf\x06\x21\x8d\xd4\x22\x78\x57\xc9\x6f\x5a\xbc\xc2\xe9\xd1\x40\xaa\x71\x9d\x9e\x69\x2e\x33\x62\x4f\x63\x5e\x0c\x9a\x31\xe5\xc3\xad\xd0\xcb\xac\x12\x60\xc2\x68\xec\xd4\xb4\xe1\x0b\xbd\x46\x48\x2f\x26\xa9\xe2\x06\x93\xa0\x32\xcc\x20\xed\xc1\x35\x02\x3c\x36\x40\x38\x26\x51\xb7\xb3\x85\x90\xda\xd0\xe8\x37\xa8\x67\xc6\xce\x38\xdf\x48\xdf\x43\x4c\x9a\xa5\x81\x7e\xf9\x34\x58\xe4\x3c\x8c\x45\x87\xf9\x3a\xfa\x45\xdd\xd7\x3e\xa2\xd7\x54\x2c\xf8\xbd\x86\x51\xd0\xf5\x96\x3d\xb9\x31\x96\xfc\x6f\xf7\xad\x51\x0c\x42\x0d\xe0\xfb\xf7\x8c\xf4\x75\x46\x40\xfe\xd3\xc3\x72\x4d\xd1\xd5\x25\x10\xaa\x20\x7a\xd3\x75\xa2\xe7\xdb\x14\xfb\x6c\xb9\x4a\xb9\x6c\x81\x82\x20\xdf\xc3\x5f\x64\xb0\x95\x34\x88\x90\x9f\x01\xb0\xc5\xf5\xb4\xec\xf2\x00\x7e\xf5\xe2\x7f\xb1\xa3\xd3\xdd\xaf\x05\xc6\xd8\x40\x4a\xcf\xfb\xa4\xea\xb5\xae\xc6\xf2\xeb\x6c\xbb\xb9\x03\x8f\xa8\xd6\x70\xe2\xce\x8d\x55\xf6\xed\x37\xb0\xcc\x89\xbc\x5a\x94\x6b\x50\x03\x1d\x7a\x9b\xea\xe9\x34\xbc\x73\x1c\x96\x35\x0c\x68\x50\x60\x00\xab\xc1\xc9\x04\xf1\xdc\x03\xc3\x3a\xa9\xb5\xac\x78\xe6\x78\x59\xd9\x8d\xda\x35\x58\xa9\xee\xee\xf4\xc0\x95\xad\xf9\xb8\xb0\x00\x84\xf3\xda\x44\x6e\xf9\xff\xf5\x94\x19\x7c\x74\xe4\x15\xd9\xbe\x08\x4a\xef\x15\x4e\x0f\xeb\xe8\x96\x92\x41\xa3\x02\x2b\x65\x4f\x20\xa5\xef\xf3\x2b\x67\xbe\x32\x1a\xf1\xf1\x93\xf2\x3c\xcb\xeb\xb6\x6a\x1e\xcd\xda\xc9\x58\x8f\x61\xc0\xac\x99\x0b\xab\x44\x0d\x56\x5c\x50\xf2\xc0\xb3\x82\x29\x93\x1c\x0d\xd2\x01\x2c\x56\xf0\x79\x15\x40\x24\xc2\x6c\xd3\xcc\x72\x24\x2f\x7a\x52\xb0\x32\xf7\xb6\x34\x77\x42\xde\xc8\xab\xb0\x5f\x51\x5b\x42\x3e\xaa\x8d\x97\xb2\x32\x2b\x1e\x07\x06\x0e\xed\x0d\x91\xaa\xf7\xbd\x42\xe0\x20\xdc\xe0\x91\x93\xae\x2c\x38\x58\xe8\xf9\x89\x06\x27\x3f\x50\x45\x3a\x8b\xec\xfb\xf6\x09\xe8\xc0\x16\x72\xf5\xac\x22\x8e\x73\xeb\x04\xb0\xdc\xb2\x83\xb4\x76\xf4\x2a\x0b\x5f\xc8\x18\xc0\x3b\x45\xc1\xd5\x52\x25\x86\x03\xb2\xf4\xe1\x1f\x72\xeb\x14\x4a\x4e\x28\x9c\x79\x35\xde\x27\x6b\x56\xf7\xbc\x98\xbf\xf3\x2e\xd7\x3d\xc3\x13\x0a\x3f\x4c\xc9\x09\xfb\x08\x78\x42\xa9\x42\x18\x02\x82\x42\x38\x8d\xbc\x92\x7d\x5c\xf1\x60\xc8\xaa\x8d\x73\x2c\xae\x24\x2a\x32\xac\x96\x92\x77\xa5\x6a\x28\xf7\xeb\x2e\xc2\x54\x86\x44\x48\xd0\x40\x33\x27\xb2\xee\x25\xa4\xfb\x02\xc7\x8e\x75\xd2\x58\x7a\x46\x58\xe2\xbf\x82\x69\xaf\xaf\x1c\xd7\x69\x75\x7f\xfe\x60\xf2\xc1\x97\x06\x8c\xd0\x65\xf2\x97\x37\x6f\x40\xd3\xaa\x26\x82\x16\x8b\xb2\xda\xeb\x9c\x84\x19\x02\x29\xb8\xb3\x39\xdc\x7a\xd2\xe3\x5f\x4c\xbf\xf9\xf0\xa9\x31\x31\x32\x03\x50\x0c\xb4\x54\x75\xa7\x86\xc1\x94\x01\x88\x9d\xcf\x7c\xb6\xe8\xca\x06\xa3\x79\xd7\x8a\x94\x9b\x57\x3d\x07\x38\x08\x34\x2d\x9f\x23\x4d\x28\x97\xa6\xa7\xf9\x26\x1a\x7e\xc5\x70\x00\x6d\x15\xf0\x5b\x4b\x50\xe7\xa8\xac\x8f\xcf\x0c\xa2\x67\x17\xd1\x4b\x9e\x64\xec\x21\xd2\x0f\x61\x9e\x3e\xbd\x53\xab\x25\x54\x85\x5b\x34\x7e\x7c\xe9\xca\x8d\xee\xce\xdb\x97\xd7\x57\x0d\x22\xe1\xb6\x03\x19\x52\xe4\x5b\x58\x58\x57\x11\xc4\xd4\xa6\x0a\xeb\x28\x32\xf3\x93\x82\x06\xec\xca\xea\x15\x5d\x5a\x3c\x8d\x8b\x08\xbe\x28\x53\xbc\x0a\xe9\xa5\x3c\x6c\xf7\x0a\x0a\x90\xe7\x47\xcb\x3c\xc7\x2c\x0a\xf8\x9c\x91\x74\x97\xcb\x6c\x17\xc5\x8a\xd3\x25\x59\xb8\x01\x63\x16\x1b\xb7\xc5\xc0\x4d\x8b\xb7\xd8\x23\xb7\x85\x86\xa3\xf5\x74\x8d\xfd\x65\x9d\x9c\x15\x4b\x94\xa6\xea\x10\xe5\x77\xf1\xd3\xcc\xfb\x9f\x03\xb2\x25\x59\x0a\xc9\xea\x50\x0a\xaf\x00\x66\x8d\x17\x7c\x05\xff\xf4\x8d\x8f\x63\x8c\x15\xd2\x12\xb8\xf4\x03\x2f\xc1\xc5\x83\x17\x2b\x5b\xf4\x3d\x49\xdd\x74\x7a\x3c\x50\x1b\xfe\x31\xb8\x16\x45\xc1\x9c\xfe\xed\x21\xfd\xdb\x07\x66\xab\xe8\x0b\xb2\xb5\xac\xcd\x56\x06\xd6\x6b\x2b\x76\x13\xad\x8c\x8b\x1e\x45\x0c\xac\xbf\x37\x37\xbf\xdc\x9a\xa2\xe5\x92\x8b\xd7\x1f\xfd\x20\x29\x1d\x2c\x1a\x4e\xc4\xd6\x8f\x06\xff\xe3\xfa\xe3\xc0\x14\x07\x1c\xa1\xa4\x0c\xbe\x5f\x3d\x68\x31\x1b\x0f\x65\x75\x5e\xc4\xd9\xff\x99\x0b\x0c\xc8\x58\x57\xa3\x5b\xa8\x1e\x36\x46\xfb\x4e\xd1\xcd\x57\x09\x4a\x33\xc8\x60\x31\x47\xf2\x4f\x0d\x88\xc6\x75\x00\x9f\x97\xe0\xfb\x35\x88\x38\xc2\x97\x13\xa0\x97\xf2\x66\x69\xa6\xec\xe6\x53\xa7\xf1\xd7\x5a\x21\xb1\x31\x50\x42\x9c\x3b\x23\xd9\x69\x7b\x33\xcf\xf8\xcb\xc5\xea\xa7\x97\xe7\x4c\xb0\x05\xe4\x44\x81\x59\xac\x18\x18\xc4\xc0\x34\xa9\x41\x0d\xea\x67\x84\x95\x0f\x4b\xc0\xdf\x95\x0b\x3c\x95\x2e\x4e\x7f\x7c\xc9\x30\x94\xb6\x4f\x9e\xda\x8e\xd8\x85\xdc\xcb\xf4\x82\x3e\x10\x7e\x61\xc5\x4c\x93\xc7\xc7\x0d\x4b\x57\x93\xdd\x88\xda\xf6\xf1\xf1\xed\x91\x70\x4b\x22\xc8\xdc\xb5\x10\x5e\xd8\xd6\xf0\xcb\x2d\x80\xb9\xbc\x0d\x24\x05\x19\x0b\x85\xf6\xf1\xa9\x31\x6b\xb7\x31\x52\xee\x42\xff\x0b\xbd\x2f\xed\x7b\xb1\xe7\xc5\x7e\xd7\xb4\x77\x06\x9f\x21\xbf\xd0\x25\x86\xbb\x86\x9c\xe4\x8b\xf9\xda\xca\xdb\xf7\x5d\xf8\xa3\xdb\xfc\x7c\x04\xf2\xaf\xed\x4c\x4f\xd6\xcc\x5d\x26\x12\xf3\xa6\x76\x5c\xd2\x8e\x4b\xda\xf5\x92\x76\x5e\xd2\x2e\x97\xd4\x40\x0b\x21\x55\x51\x8f\xc9\xb3\x91\x1e\xf6\x70\x64\x08\x7d\x3c\x3a\x1a\x4b\xfa\x88\xc6\xa8\xfe\x1e\x99\x45\x7b\x50\x6d\x37\xc2\x4d\x8e\x9e\x5a\xf0\x36\x3e\x4a\xb0\x2a\x7a\x1d\x1c\x05\x19\x9b\x05\x02\xa3\x79\x1b\x19\x25\x0c\x8c\x92\x3e\x4c\x8c\xc6\xc7\xd9\x76\x7b\xa0\x6d\xb7\x47\x29\x87\xcb\x28\xc2\xdb\xf5\xd8\x53\xdc\x23\xec\xe1\x6e\x90\xf3\xce\x69\xdd\x8a\xf5\xb1\xb2\xde\xeb\x2a\x42\x30\xdd\x9f\x0b\x96\x6a\xa4\x22\x8f\xb7\xb5\x27\xea\xb9\xc1\xe2\xde\xed\x6b\x03\xa5\xb9\xdf\x38\xfd\x6d\x9e\x07\x67\x02\xe4\xaf\x48\xcd\xf8\x7b\xd3\xf1\x8d\x1e\x0e\x18\xd4\x2b\xe7\xa9\x72\x4d\xad\x78\x86\xf4\x84\x9e\xd4\x85\x27\x2d\xbf\x4b\x36\xa9\xe1\x2e\x51\x59\xfd\xaf\x15\x4e\x16\xf2\xc2\x6d\xca\x09\xdb\xe6\x13\x05\x02\x9e\xff\x19\x69\x1a\x5d\x82\xb7\x80\x22\x19\x54\x61\xfc\x2a\xa7\x4f\xe9\xc2\x5b\xc2\x92\xfc\x40\x2c\x49\xa3\x49\x5d\x15\xf8\x48\x59\x2d\x8f\x51\x99\x70\x78\x6c\xec\x32\x1c\xf8\x87\x21\xe0\xdf\x4a\xd5\xea\xcf\x46\xfd\x94\xa9\xd2\x87\xae\x9a\xe6\x48\x69\xd3\xe1\x5d\x9a\x94\x0b\x80\x44\x58\x4a\xb0\xdd\xd3\x18\x72\xc4\xac\x03\x52\x7a\xee\xf4\x04\x62\x0b\x2b\x5b\xe9\xeb\x03\x3b\x45\x33\x1d\x07\xe3\x67\xf5\x47\xb0\xa1\x10\xeb\xfc\xf6\x65\xbe\xf3\x97\x30\x6d\x23\x08\xfe\xe5\x4a\x48\x0a\x38\x2e\x0a\xa7\x46\x2e\x9f\xb1\xd7\xfd\x52\xa8\x53\x24\xb1\x31\x22\x6a\xed\x95\x4e\xda\x57\xcc\x9d\x3a\xa6\xf6\x2a\xd3\x99\x3f\xa4\xa0\x20\x09\xad\x0a\x2a\xf2\xb6\x1d\xf9\xe7\xa2\xb5\x9f\x70\x41\x87\x26\x36\x1f\xf9\x47\x0d\xce\x94\x3a\xaf\xa7\x96\x27\x02\x4d\x0b\xcb\x8f\x1c\xe4\x7f\x92\x26\x45\x04\x72\xa3\x87\xee\xb7\xdd\xf3\x52\xc6\x30\x52\xfe\x09\xab\xd5\xe9\xb0\xaa\x7a\x3f\x76\xea\x91\x65\x52\x5a\x80\x84\xa7\xd8\x9d\xb2\x82\x44\x57\xeb\x85\x60\x48\x5e\x5e\x63\xb2\x48\x82\x0e\x11\xdf\xde\x72\x05\xdc\x5c\x14\xe3\x2f\x2a\x0f\x26\xa1\xba\xe5\x76\x99\xd2\x36\x77\x86\x43\xcd\xfd\x38\xaf\x69\xd9\x69\x20\xd7\x10\x77\x8b\xd2\x58\x8a\x03\x5a\xd9\x52\x3a\x5e\xa1\x3d\x1f\xcc\x7c\x08\xc7\x6c\x2b\xa4\x3f\xc3\x9a\xd5\xf7\x7d\x50\x9b\xe2\x05\x9d\x64\xaa\x29\x79\xf9\xb9\x68\x9e\x41\x6e\x94\x5c\x1f\x5c\xe3\x7d\x83\x32\xe6\xd2\x7a\x3a\x3c\x9c\xba\x38\xd1\xd7\xea\xce\x93\x36\xf9\xd2\x0a\xb5\xa3\xd2\x17\x34\xe6\x63\xe1\x3d\xbe\x7a\x29\xf0\xb4\x2e\x22\x07\x0c\xe9\x30\x97\xd2\xc9\xa6\x56\xba\x42\xb7\x8c\x96\xda\x5f\x95\xda\xe2\x4f\xa0\x47\x84\xd4\x29\x82\xad\x26\x8b\x25\xc5\x8b\xe3\x89\x66\x02\x3f\x60\xc6\xa9\xb0\x87\xf8\x69\x61\x68\xb3\xfc\x42\xc9\xb6\x7d\xc4\x97\x9d\xfc\xb2\xd8\x89\xde\x3e\x1e\xf4\x9a\x98\x4f\x2b\x2c\x5e\x61\x79\x92\x08\xd4\x54\xa8\xb8\x68\xb2\x2f\x12\xb1\x13\x83\x65\x0e\x69\x5b\x7a\x5a\x58\x61\x57\x21\x5b\x0e\x5c\xcf\x90\xd0\x26\xbc\xe8\x03\xd1\x42\xcd\x10\xc8\x97\x1e\xe9\xf9\xc3\xdc\x49\xfb\x18\x24\x9e\x01\x44\x88\xf9\xc9\xb7\x5d\x2d\x8d\xec\x46\x7c\x08\xd8\xdf\xb4\x42\xb7\xa8\x27\x62\xa6\x21\x2f\xd1\xde\xf9\x6d\xfd\x54\x7c\x89\x9a\xf9\xf1\xb6\x8c\x06\x40\x40\x19\xb3\xd3\x7f\xeb\x57\x73\xcc\xcf\x4b\xd5\xb3\xf6\xf4\xa8\xc3\x17\x3e\xf6\x1e\x45\xb9\x28\x4b\xc4\x78\x56\x3b\x5f\xcf\xd0\x08\x71\x82\x34\x2f\xc6\x14\x57\x84\x9a\x8d\x4f\x6a\x2e\xd9\xad\x31\xe7\x43\x29\x8b\xa9\xf8\xad\x4f\x78\xa1\xca\xe4\xc2\x7b\x47\x37\x6a\xb9\xf1\x4a\x87\x97\x74\x0a\xd9\x21\xd8\x3d\x23\x28\xef\xaa\x1a\xbd\x7f\x8f\xad\xc6\x1f\xa9\x5a\xb5\xc8\xa4\x79\x97\x68\x3e\xc6\x13\x1a\xc9\x55\xe9\x4d\x9b\x24\x42\x87\x34\x79\x65\x3c\xab\x31\xd0\xe3\xf7\xfb\x7a\x22\x55\x56\x29\x58\xaa\xbe\x94\x4e\x90\x80\x64\xbe\x3c\xd1\xae\x29\x82\x9c\xd8\x59\x02\xc9\x92\x13\x0d\xe1\x4b\x4e\x1b\x1d\x5a\x6b\xd1\xd9\x1d\x6d\x63\xf8\xb7\x87\x75\x7a\xc5\xae\x3b\xfe\x65\xca\x22\xca\x4a\xfe\xa6\xcd\x3e\x0e\xa2\xef\xe6\x2a\xe6\x7b\xe7\x55\x7d\x73\xf2\x91\x28\xba\xaa\x7f\x3b\x23\xe5\xd9\x5c\x65\x00\xc6\x86\xe9\x10\x07\xe8\x6e\xc4\xb9\x0f\xc7\xf8\x51\x8d\x78\x5c\xdc\xdb\x17\xb8\x3b\x5e\xa1\x36\x46\x9c\xf4\x99\xf9\x10\x8a\x09\x4c\x78\x60\x46\x7d\x1f\xa2\xb9\xa9\x5b\xc5\x20\x83\x75\xfb\x88\x0c\xbe\x83\xc4\x47\x2b\x06\x8c\x8d\xa3\xf6\x30\xf1\xf3\xe6\x43\x7a\x5f\xb2\x6a\xee\x23\x3c\x20\xe5\x09\x92\x48\x92\x8f\x04\xb2\xa8\x2c\x4f\xde\x2d\x3b\xd9\x80\xf4\x7f\xcd\x27\x63\x37\x98\x3f\x15\x5d\xf5\x5f\x89\xa0\x03\x9b\x8e\x64\x73\x37\xc7\xd9\x52\xfc\xaa\xa9\x8a\xd1\xfb\x61\x37\x4e\x59\x53\x59\xbf\x07\xae\x8a\x0b\x72\x9a\x07\xd9\x12\xfb\xf8\x50\x47\xb6\x26\xdb\xcd\x6e\x05\x2d\x1d\x90\xee\x17\xd7\xb4\x3b\xdb\x5a\x23\x78\xd0\x57\xd8\x44\x16\x58\x16\xfd\xeb\xe5\xcb\x5b\xa3\x9b\xe6\x3e\xcf\x10\x19\x2c\xb3\xec\x15\xfe\xc0\xa3\xb3\xb8\x32\xe7\x64\x46\xea\xaf\x3e\x60\x8f\x4e\x39\x3d\x9a\xd4\xd3\x15\x86\xae\x92\x80\x5c\xd9\x8a\xc8\x9e\x6d\x71\x14\x41\x9b\x92\xc8\xc8\x9a\x98\x43\xef\xd1\x43\x41\xb0\x28\x45\x9d\x0c\xc0\x91\xad\x7e\x07\x67\x28\x81\x66\xc2\x41\x89\xb5\xba\x4a\x90\x7c\xf0\x73\x11\x59\x2e\xd4\x76\x11\xe0\x56\x13\x4f\x10\x82\x75\x4d\x07\x0c\xd4\x78\x1b\x8a\xaf\x81\xcd\x6b\x02\xba\x23\xa0\x41\x91\x27\x64\x21\xb8\x7f\x2c\x31\x19\x67\x55\xd2\x14\x0b\xd1\x98\x63\x56\x8c\xd6\x35\x8c\xcb\x02\x14\x0f\x2d\x9b\x7b\x48\x53\x3d\x73\x6a\x96\xd9\x32\x70\xb0\xee\x64\x4c\x0b\x07\x09\x69\xed\x40\xc4\x8a\x61\xc1\x38\xc1\xb5\xa2\xd0\xb2\x1a\x50\xea\x7f\xcd\x58\x03\x48\x54\x95\xda\x3e\x05\x8e\x0e\xa0\x82\x01\x40\xc1\xd8\x28\x7d\x02\x77\xf6\x23\x35\x55\x0e\x5b\x73\x24\x34\x6b\x7d\x48\x36\xf5\xc8\xeb\x44\x38\xa7\x05\x5c\xfd\x34\x19\x16\x62\x46\xbd\xb3\x12\xae\x6a\xe1\xb3\x87\x4a\x73\xa0\x0d\xba\xe4\xd5\xd2\xfc\xad\x0a\x89\xeb\x61\x99\xde\xf9\xe3\x49\x44\x23\x82\x2f\x82\x89\x90\x81\x97\x4f\x62\xaf\xbb\x79\xe4\xa9\xdd\x95\x3d\xcd\x96\xb1\x56\xaf\x18\xdd\xcc\xd8\xd6\x51\x1e\x85\x35\x8c\xe2\x91\x53\x1e\x3b\x79\x69\xf7\xce\x29\xc2\xc0\xbd\x97\xe3\x75\xf7\xf7\x8b\xfb\x6b\xd4\x68\xd4\x59\x5a\xdb\xd3\x5d\x3f\x2a\xdd\xb2\x28\x67\xfa\x17\x38\x80\x7e\xa8\xf0\x8f\x44\x8d\x67\x92\xba\xa0\xb9\xd4\xc1\x02\xa7\xb5\xa1\x08\x56\xa1\x1e\x40\x70\x73\xe9\x87\xd0\x49\xcc\x40\x08\x9a\x4c\x0f\x09\xce\x5a\xb5\x70\xd6\x6b\x6a\xb9\x35\xfa\x3f\xde\x19\x69\xa4\x8b\x0c\xbe\x2c\xae\x65\x11\x3e\xfb\xd9\xa6\x28\x5a\x5a\x9e\x80\x58\xa5\xe7\x53\x5c\x41\xe2\x2f\xfb\xf5\x4e\x82\xfc\x86\x15\x24\x42\xd7\xe2\xaa\x9f\x73\xfe\x11\x89\x4a\x61\x93\x21\x7a\x6b\x97\x51\x38\xd4\xbe\xff\x57\xca\xa3\x28\xfa\xd6\x46\x73\x24\xf3\xf2\xf3\x35\xc4\xea\x5f\x81\xb4\x1b\x70\x86\x19\xd0\xe5\x7d\x55\x77\x88\x0d\x00\xac\x0c\x94\x73\x34\x98\xdd\xfa\x57\x24\x4e\x13\xfd\xea\xd2\x2d\x83\xa7\x59\xa4\xb8\xee\x8a\x4c\xe8\x8f\x19\xcb\x95\xd1\x28\x06\x86\xdd\x6a\xda\x3e\x20\xa1\x90\x62\x1b\x23\x56\xe9\x17\x70\x15\xe2\xe3\x88\xcd\x00\xd2\x8b\xeb\x0d\xb3\x70\xef\x26\x1a\x68\xf1\x98\xd5\x61\xbe\xe1\xcb\x21\x12\x07\x5b\x04\xd2\x2d\x82\x36\xc5\xab\x1b\x05\x0e\x5b\xe9\xfc\x88\xed\x16\x89\x43\x67\x91\x17\x1c\x47\x08\x4b\x12\x35\xc8\x8a\x7d\x69\x5d\x81\x5c\x5d\x3c\x95\xf7\x61\x77\x3f\xc0\xe1\x78\xab\xff\x75\x0f\x2f\xbe\x96\x7b\x37\x26\xd0\xfb\x7d\xea\x09\x97\xf8\xc9\xba\x3a\xd4\xe6\x0f\xbe\x2b\xde\x94\x1e\xab\x50\x33\x19\x61\x67\x06\x04\x0d\x82\x1a\x70\x05\x01\x1f\xc6\x00\xa0\x69\x3b\xcc\x16\x0c\xa4\x78\x74\x9e\xa3\xcc\x30\x22\xbf\xbc\xdd\x19\x08\x5d\xe6\x89\xa3\xe9\x9a\x23\x26\xa3\xac\xd4\x4b\x26\x12\x55\x74\xbf\xb8\xad\x3c\xc4\x8e\x76\x1b\xec\xdc\x5a\x7c\xca\x4b\x2e\x2d\x2c\xb9\xd1\xc9\x20\xfa\x09\xfd\xd7\x0c\xb8\x60\x26\x22\xde\x76\x2e\x5b\xd2\x9b\x04\x19\x87\x6b\xf4\xa6\xf5\xc6\xd7\xc7\xdd\x95\xc8\xf2\xd9\xf6\x46\xba\x39\x06\xc7\x28\x28\xc5\x87\x49\xc8\x4b\x61\xf2\x98\xfb\x09\xc7\x9c\x27\x97\x90\x42\x84\x14\x29\xf7\x6f\x0f\x08\x1c\x77\xf5\xc7\x7f\x10\x1f\x40\xcb\xc1\x7a\xa7\x9f\x60\xc6\xa7\x3e\xb1\x25\x07\x84\xec\xc3\xc5\x53\x33\xe6\x5e\xc4\xb1\xaf\xff\xf6\xb0\x6d\x51\xa6\x80\xc2\xa1\x3f\xae\x88\xee\xf8\x09\x69\x9d\x63\xfe\xa4\xe9\x53\xae\xe9\x4f\xd8\xfe\xb8\xed\xbe\xe6\x56\xdc\xec\x07\xbc\x26\x5e\x57\xdd\xb8\xb2\xe8\x0e\x2e\x50\xc4\x59\x9d\xad\x5f\x2e\x2e\xb4\xf0\x97\xf7\x25\x42\xcc\x6f\x27\xf0\x60\xfe\x31\xce\xd0\x5e\xde\xb4\xad\xeb\x60\x22\x54\x22\x6f\x89\xa0\x82\xe5\xf4\xb4\x0a\x9b\x92\x27\xdb\xca\xb0\xe7\x7e\xda\x75\x30\x43\x5d\x36\x9a\x59\xf6\x66\xea\x5b\xf8\x8f\xc2\x47\x03\xd2\x17\x4b\x6e\x5f\x08\x24\x7e\xff\x34\x73\x7e\x7b\x06\xce\x6f\x3d\x98\xf8\xac\x47\x9d\xa8\xa1\xe3\x47\x42\x58\xd8\x05\x1d\x1e\x2b\xa5\x3f\xce\x5d\x43\x22\xeb\xd2\xa3\xc6\x16\xda\xd1\x97\x3f\x82\xc6\x1b\x72\xe2\x27\x2d\xaa\xf5\x21\xb9\x90\x72\x0c\x69\x36\x38\x3c\x7b\xf2\x7b\xcc\xc5\x7d\x44\xf8\xec\x31\x26\x02\x9e\x4b\x11\xb3\x3a\x4c\x87\x0c\x95\x06\xaa\x67\xb1\x98\x77\x70\xcf\x6b\xaa\x1a\x58\x98\x01\x03\xca\xb0\xfb\xda\xc2\xeb\x35\xbd\xfd\x0e\x28\xb0\xe9\x1d\x8a\x2c\x2e\x30\xe7\xb8\xc4\x20\x92\xf5\x4a\xf4\x41\x83\x20\x45\x51\x67\xd5\x7b\x74\x3a\xc2\xec\x5f\xd3\xbb\x47\x23\xef\x95\xde\x5c\xf3\x5b\x9f\x41\x25\x34\xe7\x58\x77\x5e\xb5\x86\x67\xac\xa4\x08\xd7\x90\x5d\x4d\xf6\x1b\xf1\x01\x0f\x3c\x8c\x35\x13\x9a\xd4\xfb\x9f\xa9\xee\xde\x9f\xb8\xa7\x2b\xf8\x48\x53\x4d\x9f\x8d\xf9\x73\x7a\xf9\xbe\x6a\x92\x74\x8f\x74\xc0\xfd\x03\x78\xc9\x0e\x3c\xfa\xa0\xa9\x20\x8f\x1e\x4c\x36\xd4\x28\xe8\x27\x1f\xfd\xd1\x9b\x45\x6c\x83\xff\x06\xdf\x6c\x5f\x16\x5f\x2b\x20\x8b\xf2\xeb\x95\xa7\x39\x13\x57\x2e\xa4\xe9\x70\xab\x7f\x62\x22\xbe\x03\x5c\x0b\xea\xf3\xbd\x3b\x8a\xc2\x7c\x9c\xfa\xad\xf2\x1b\xda\x55\x1e\xcc\xbd\x4d\x75\xc9\x0a\x01\xdf\xd3\xab\xc7\xd7\x8d\x7a\x0b\x98\xd3\x8f\x02\xf0\xd5\xfe\xb2\xd5\x6e\x44\xa6\x3e\xf3\x6c\xe4\x26\x47\x8b\xd5\x83\x40\x66\x05\x55\x87\x36\x46\xe2\x8b\xfa\xfa\x64\x89\xeb\x1b\x51\x3e\xd3\xca\x48\x7b\x26\xd2\x60\xcb\x35\x4d\x1a\xe0\x89\x6e\xba\xa8\xc9\x5d\x6d\xe6\x45\xfe\x78\xcf\x10\x3f\xd8\xe3\x42\x2e\x34\x4d\xca\x6b\x0e\x89\xd9\x93\xc4\xe3\x70\xff\x30\xd4\x1f\xcd\xc6\x8f\xd0\x4f\xa2\xec\xbd\xd8\x55\xcd\x8c\x4f\xea\xb0\xdc\x1b\x16\xed\xaf\x33\x2c\x40\x56\x4c\xbe\x4c\x73\x86\xb2\x2f\x0b\x02\x62\xcb\x15\xac\x14\x59\x6e\xc8\xde\xf6\x31\x12\x18\x55\x9e\x78\x6d\x5f\xac\x7c\x67\xf1\x47\xe8\xc7\x74\xf6\x9f\x1f\x27\xeb\x19\x7d\x3f\x67\x78\xbd\xf8\x7e\x01\x82\x96\x98\xc7\x8b\x4f\xab\x85\x5e\xe1\x22\x44\x68\x40\xda\xcb\xdc\x8f\x69\xd9\xbd\x3b\xff\x61\xb8\x31\xc1\x3f\xb0\x49\xea\xe7\xf7\x85\x7c\xe8\xfe\x8c\x99\xdf\x09\x63\x70\xfc\x1a\xf2\x52\xfc\x54\xf2\xe9\x2f\x30\xe5\xca\x07\x6e\x58\xa7\xe3\x7e\xc7\x39\x51\xf3\x8f\x53\x56\xec\xa5\x1f\x58\x38\x44\xaa\x60\x56\x28\x7b\x8c\x03\xf2\x11\xb8\xc5\x52\x66\x9f\x6d\x68\xd1\x37\x37\xf5\x29\xef\xd2\xa8\x02\x9f\x87\x5a\x38\x9e\x3b\xc3\xe0\x53\x3b\xb8\x92\x47\x28\x92\x02\xf1\x6e\xe1\x98\x95\x81\x86\x8f\x0a\xbd\x13\xe3\x63\x6b\xaf\xa7\x57\x32\xd6\xd5\x97\xbd\x63\xf9\x5e\x7d\xa9\x91\xc5\x7b\x50\x99\x66\x4f\x7d\xd1\x74\xe8\xc7\xc1\x3e\xd7\xb0\x9a\xe8\xfb\x75\x21\xda\x05\xda\xea\xac\x26\x06\x91\xf6\x06\xbc\x84\x16\x0d\x9b\xd0\x85\xc7\xcd\x58\x32\x7a\x45\xbc\x21\x4b\xf8\x2e\x18\x0f\xbf\x28\xa0\xf1\x0d\x60\xeb\xd3\xcd\xb4\x32\xae\xc4\xb2\x65\x91\x58\x34\x00\xf2\x45\x4c\xe3\x93\x7f\xd0\xd4\x2d\x39\xfd\xdb\x0d\xfa\xe4\x9b\xc1\x2e\xf0\xb9\x53\x12\xed\xe5\x2c\x81\x74\x01\x08\xc0\x5f\xfb\x31\xbf\x34\x1d\x69\xcb\x73\x3d\xc8\x09\xfa\x4f\xd8\x36\x9a\xa2\x1a\x74\x47\x3e\x1e\xeb\xab\x25\x68\xe9\x87\xfb\x63\x32\x6b\x53\xc9\x4c\x89\x6a\x47\x0f\x5e\x6c\x1d\xfc\x56\x22\x94\x95\x0d\x84\xbf\x9a\x48\xbd\xb8\xf3\xb6\x5d\x25\x02\xaf\xbe\x02\x23\x6b\x34\x35\x1a\x58\x95\x95\x52\xc7\xe8\x57\xfb\xb6\x79\x4d\x81\xc7\x6c\xa8\x3a\xda\xdb\x2d\x8b\xc1\xd0\xdd\x8b\x89\x5c\x50\x7d\xb0\x6c\x1d\xa0\xe7\x96\x0d\x61\xb4\xa4\xa4\xfa\x6d\x48\x76\x49\x50\x4c\x6a\x77\xeb\x9d\x93\x6f\xb9\xd8\x81\x44\xe9\x66\x78\x03\xf7\x41\x85\x17\x7b\x26\xeb\x88\xce\x50\xf7\x39\x81\x79\xf6\xd5\xe7\x57\xae\x9a\x3c\x8b\x76\x09\x5f\x58\xba\x29\x27\x6d\x63\xc9\xe6\xee\xf7\x74\x9a\xb3\x6d\xdd\xea\xb2\xfb\xb5\xc7\x07\xae\x0c\x22\xf7\xb5\x0e\x91\x94\x93\xae\xd5\xca\xba\x50\xae\x69\x2e\x1d\x9e\x4d\xad\x5a\x62\xbe\x06\x2d\x03\x02\x99\x73\x2f\xca\x62\xe1\x16\x0f\x0b\xa9\x5b\x40\x0c\x1c\xfd\x91\x93\xcc\x27\xb3\x54\xa0\xa1\x12\xdc\xc3\xc4\x83\xe0\x6f\xf0\x10\xe3\x2b\x55\x4e\xce\x67\xf9\x27\x21\x11\xe8\xe3\x65\x82\x90\xff\xb3\x4c\x75\x28\x7d\xf4\xcd\xd1\x63\x5c\xf1\x29\x5d\x71\xef\x09\x7d\x73\xe3\x41\xcd\x01\x01\x07\x71\x5a\x4a\x5f\x60\x38\x87\xba\xa0\x71\xee\x37\xe2\x46\xcd\x15\x49\x03\x93\x36\x2f\x7b\x3e\xe6\xbc\xfb\x15\x89\x64\xcf\xb1\x63\x3e\x2b\xbe\x68\x00\x51\x7e\x0f\x23\x8a\xb7\xb6\x24\x47\x58\x36\x8c\x18\xee\x85\x75\xfa\x73\x6d\xa3\xf2\x99\x43\x23\xd3\x77\xa8\x0f\x70\xe2\x35\x63\x41\xf1\x87\x06\x1e\x63\xec\xd1\x7c\xec\x31\xaa\xf9\xbf\x1e\x62\xf6\x2f\xca\xb8\xa0\x18\xb3\x16\xeb\x95\x96\x9d\x38\xec\x6b\x70\x56\xb4\x5a\x66\x52\x78\x33\x05\x2d\x19\xd0\xe3\x4c\xb4\x35\x5c\x6b\x03\x54\xc8\x23\x16\xd7\xf8\x48\x1f\x63\x8f\x22\x82\x78\x9f\xc3\xcb\xb5\x58\x2b\x97\xc6\x15\x90\xff\x7b\xb4\xaa\x54\xe3\xbf\x3a\x7e\x1d\xbf\xd2\xaa\xc1\xeb\x56\xaa\x57\xca\xe9\x3a\x98\xfb\xa9\x29\x49\x7d\x66\x1e\xb0\x59\xb7\xad\x01\xe3\x42\x0c\xd0\x9b\x62\xe2\x1a\x16\x9d\x81\xff\xce\xf3\xe2\xaf\xc2\x0c\xae\x7a\x89\x56\xe9\xec\x69\x8f\x9d\xe6\x96\xd0\x7a\x49\xc4\x12\x80\xb0\xab\xd6\xde\x65\x77\xad\x5d\xd2\x40\x21\x60\xc9\xd7\x27\x6a\xa6\x5b\xd4\x06\xe7\x62\x9c\x36\x67\xf9\xf6\x7e\xdb\x2e\xfb\x9f\x39\x91\x36\x2f\x7a\x94\x23\xaf\x3f\xe1\x57\x2d\x9e\x31\x1f\xa7\x13\x31\xf4\xdf\xee\xe6\xa9\xb9\x63\xa0\xc5\x3e\x88\x0a\x54\xcc\x5d\xf3\x41\x11\xa9\xc1\x5d\x01\xee\xd1\x17\x3e\x16\x59\x07\x15\xc0\xd2\x1a\xd1\x11\x23\xe3\xd5\x3e\xaf\xdd\xda\x1b\xe9\xfe\xea\x63\xa0\x08\xfa\x2a\x3e\xfd\x51\x7e\x1d\x6d\xd9\x5c\xda\x38\x03\x2b\xbc\x41\x48\x8f\x2a\x2d\x20\xec\x1a\x68\x73\xc6\x65\xf8\x68\xa3\x7c\xbb\x6e\x64\x29\x18\x21\x23\xaf\xaa\x36\x2e\xc6\x20\xc3\x91\xf7\x7a\x2e\xb0\xf0\xff\x8f\xd2\x8f\xc3\x6d\xfe\x40\x9e\x27\x40\xe4\xd4\x6b\xfd\x85\x74\x2f\x03\x5c\x93\x3b\xe6\x92\x2b\x71\x0c\x5b\x13\x51\x0f\x1b\x79\xc4\x2c\xe9\x34\x48\x49\x6f\x80\xbb\x45\x83\x24\x79\x45\xf7\xce\xa0\xe0\x78\x95\x2e\xe2\xd4\xe9\xe9\xbc\x95\x25\x5b\xb6\x7b\x46\xb8\xb9\x48\x5e\x29\x9c\xe7\x35\xa5\x2e\xaf\x82\x99\x1b\x4e\x02\xb5\x4d\xd5\x45\x91\xc5\xe0\x63\xc6\x14\xfb\x09\xe9\x7a\xde\x24\xcc\x0e\x3d\xf1\x7c\x9a\x95\x16\xf9\x20\x7e\x35\x9d\x6b\x90\xbb\xac\x5d\xf3\xda\x8a\x1b\x38\x13\xd6\xac\x27\xab\x94\x0f\x58\x03\xe7\x66\x79\x87\x35\x67\x73\x65\x5d\x48\xf7\xf1\x39\x6c\x8f\xd6\x22\xe1\xeb\x6f\x35\xea\x1a\xd0\xfd\xe0\x1e\x6a\xa5\xe3\xbd\xee\x6d\x8a\xee\x77\x5a\x4b\xce\x27\x21\x24\x8e\x73\x7a\xc5\x2c\xcf\x80\x1e\xf9\x46\xf6\x7b\xbe\xfe\x18\x80\xac\x31\x41\x81\x35\x7e\xb5\xd6\xc2\xb1\x31\xa6\x4b\xad\x5e\x93\x5f\xb7\x8b\x31\xf1\xf2\xc3\x87\x9a\xa9\xcb\x26\x5f\xde\xc3\xf8\x91\x06\xe8\xd4\xaf\x02\x4d\xfd\x42\x2b\xda\xdc\xa6\xca\x32\xdb\x20\xbe\x93\xfd\xf7\xeb\xd4\x91\x9a\x2f\x25\x68\xec\xd6\x3f\xbd\x84\x0a\x44\x6c\xc5\x0f\xdc\x46\xfe\x93\x56\x61\x2d\x7d\x76\x79\x96\xe5\xe1\x3f\x0f\x01\xd8\xd2\xc4\x00\xee\x55\x4f\x9c\x70\xc4\x86\x11\x6e\xfd\xe5\xda\xb4\x7b\xf7\xbe\xf4\xff\xbf\x3d\xf0\xe7\x66\xf8\x18\x4b\x49\xde\x0b\xf8\xe0\xdd\x89\x38\xe3\x4b\xe1\xf7\x99\xdc\xe1\x47\x29\xb8\x73\x77\xea\xd6\x8a\xce\xa2\x42\x11\xd7\x40\x25\x0d\x0f\x01\xfb\xea\x5f\x2f\x61\x9e\x55\xbd\xaf\xd1\xbb\x3f\x97\x6c\x90\xe0\xd2\x7c\x82\x65\x85\x17\x0b\xde\x44\x3f\xfc\x7d\x14\xd7\xd4\xf5\x87\x90\x84\xe3\x52\x2e\xc0\x0d\xc8\x5d\xd4\x79\xf3\x89\xd7\x5c\xfe\x5f\x45\x36\x7f\xdd\x96\x9d\xa3\xb8\x82\xc0\x31\x8d\x02\x5a\xf2\x16\x86\x60\x3b\xc8\x53\xe5\x2e\xfb\xa1\x6f\xf7\xdd\xf8\xc1\xce\xf3\x48\xec\x98\x3d\x09\xb1\xe6\x92\x33\x89\x1f\xf3\x76\x43\xe5\x12\xf5\x40\x59\x01\x1e\x47\x74\x00\x25\x08\x05\xa4\x93\x7e\x27\xfd\x09\xc9\x42\x38\xec\x6b\x60\xef\x23\xf7\x13\x28\x9b\x1f\x9b\xcd\xf0\xaa\xbc\xdd\x46\xd8\x94\x47\xc3\x16\xd6\x6b\x4a\xde\x35\xfe\x2b\x3d\x5e\x60\x0c\x45\x3c\xf7\x6d\x33\xea\x69\x89\xe6\x10\xee\x09\x9d\xe6\x98\x3f\x15\x51\xed\x5a\xbf\x86\xba\xc3\x43\x8c\x62\x2e\xd0\xca\xc0\xde\x55\x81\x55\x53\xa9\x05\xc2\x30\x57\xf9\x45\x56\x40\x67\xc1\xb1\xe4\x3e\x6a\xf6\xfc\x81\x80\xb9\x95\xac\x41\xee\x0c\xeb\x60\x2d\xde\x5f\x9c\xec\xcc\x07\x93\x69\xa3\xf7\x3f\xf0\x19\x6b\x7b\xc4\xde\xc8\xa2\xd2\x8d\xf8\x7e\x56\xf0\xb7\x47\x41\x7f\x35\x0e\xda\xc2\x31\x8f\x1b\xd3\x22\x31\x87\x86\x83\xbc\xe5\xb4\x75\x56\x6c\x9d\x40\x05\x5a\xc4\xd1\xa0\x39\x9c\x5a\x68\xc8\x73\x71\x1f\x2f\x5f\xc6\x1c\xb9\xc1\xf4\xb9\xb8\xe2\x21\x38\x8e\xf9\xc9\xff\xee\x4e\x69\xce\x72\x6e\x35\x17\xcb\x12\xfe\x49\xa2\xfc\x20\x61\x86\xb1\x26\xf8\xc9\x0b\x21\x7f\x90\xea\xa9\x48\x48\x43\xc0\xed\x89\x27\x26\x43\x34\x90\x2b\xbc\xe6\xa2\x0f\xd2\xe8\x90\x1e\x47\xb9\xf4\x3c\x5e\xd8\xa1\xeb\x7d\x77\xea\x69\x0e\x5b\x56\x14\x22\xab\xb4\xaa\x12\xb6\x80\x07\xe3\xe2\xf4\x03\xf3\xca\x1a\xd4\xc6\x07\x5e\x47\x1c\x18\x8f\x53\x0d\x80\xa8\xca\x8c\xcc\xe7\x87\x8c\x5d\x7d\xb0\x19\x58\xad\x1d\x90\x89\xac\x47\x96\x8f\x52\x9b\x60\x4b\x9f\x71\xcb\x27\x82\xae\x21\x6a\x2b\x49\x5c\xcb\x27\x50\x40\x68\x7d\x99\x73\x6b\xf9\xd0\x0d\xea\x87\xbd\x21\x79\xe4\xb1\x83\x51\x04\x11\x15\x28\x0d\x4c\x57\xf2\x35\xc5\xb0\xae\xb8\x0a\x2a\xed\x31\xac\x16\x59\xd6\xf8\xba\xa1\xc0\xeb\xfb\xb7\x3b\x9d\x6c\x4f\x97\x68\x56\x07\x6c\xa2\x16\xce\x2c\x82\x21\x01\xab\x58\x6e\x9e\x21\x4c\xb2\xa4\xb1\x04\xae\xda\xc7\x5b\xbf\x31\x31\x5d\x49\x6c\x71\x21\x7d\xdb\xe5\x35\x6a\x21\x8a\x7e\x4e\xfe\x0a\xff\x91\x19\xb8\x04\x8d\x45\x7b\x85\x19\x6e\xdf\x5d\x16\x4a\xcc\x6a\x32\x81\x4a\x33\x4d\x7d\x0f\x55\xd6\x44\xf7\x73\xe9\x31\xc8\xca\x36\x34\x52\x1d\x91\x56\x03\xe5\x49\x7b\x0f\x69\x86\xcd\xb4\xf6\x41\x47\x50\xbd\x7c\x3d\x4a\xa4\x95\x7f\x81\x4c\xe9\xa0\xc1\x32\x5d\x9f\xd4\xfe\xbb\x3f\x5d\xcb\x3c\x9e\xfc\xb9\x17\x2d\x67\xab\x3c\x73\xa8\x14\xb4\x65\x01\x43\x15\x1c\x87\xec\x91\xd3\xd7\xf1\xb7\x17\x65\x07\x00\x0f\x86\x6d\x65\x29\x30\x2a\x77\x36\x77\x98\xd4\x30\x9a\xcc\x2e\xfe\x30\x77\x79\xa0\x97\x11\xc4\xbd\xe4\x78\xa3\x3d\xc4\xe8\x15\x4f\xed\xe6\x0e\xbf\xcb\xad\xf0\x03\x6c\x24\x9f\xac\x95\x04\xfe\x51\x61\x62\xbf\x8b\x05\x62\x84\xe2\xf1\x2c\x71\xcc\x16\x5a\x23\x73\xab\x4e\x1c\x06\xdc\x6d\x84\x88\x96\xd7\x3c\xf7\xd7\x0b\xb6\x4e\x83\x78\x5c\x62\xee\x2b\x27\x5a\x40\x7c\xb3\x38\x0c\xf1\xc5\x81\x67\x6a\x57\xd4\xbc\x03\x5f\xd4\x38\x2c\xc2\xd2\x46\x89\xbf\xca\xc0\xf4\x6e\xe1\xdc\x34\xec\x8e\xeb\x18\x90\x71\x64\xee\x26\xee\xb3\x99\xa2\xd2\xe2\x35\x05\x5f\x4e\xdd\x0b\xa7\xd7\x23\x47\x4e\x4a\x80\x8e\x36\x60\xeb\x33\x43\x92\x59\xa4\xb6\xed\x64\x73\x29\x16\x3a\x7e\xf8\x64\x88\x1d\x88\x73\xb0\x8b\xe8\x8a\x66\xa7\x54\x15\xaf\xb0\x9a\x25\x87\x0c\x20\x34\x42\xdd\x4d\x2e\x86\x84\x22\xb5\x0e\xd9\xcc\x9e\xd4\xb9\xd1\x8b\x68\x71\x84\x9a\x37\x69\xa2\xf1\x44\xf5\xd4\x60\xc9\x27\x62\x9e\xeb\x6d\x47\x2c\xdc\x44\x74\x47\xad\x7e\x38\x27\x5f\x61\xed\x8c\xd0\x90\x1b\xc0\x65\xd6\xbb\x19\x33\xf0\x46\x2c\x65\xeb\xf2\x50\xe4\x3f\xdf\x91\xbe\xd0\x3c\xa7\x85\x46\x9c\xe2\x60\xa0\xbe\x88\x8f\x62\x1d\x79\xb0\xe1\xcf\x68\xea\x92\xd2\x23\xed\x3a\xff\x06\xbb\xfc\x0f\xa4\x4b\x03\xad\x91\x5f\xc0\xda\xf7\xbf\x01\x31\x69\xac\x04\xdb\xd5\x5b\x0b\xb5\x97\x97\x5b\x3c\x5d\x44\x1b\x01\x89\xf2\xe9\x13\x13\xc1\xfa\x6c\xc7\x67\x1f\xf3\x47\x8f\xd7\x3e\x1f\xae\x28\x2b\xc3\xe1\x41\xad\x51\xfb\x0c\x54\xf6\xe4\x15\x61\x7a\xf7\x6e\xd5\xe3\x83\x0b\xfc\xb9\xdb\xbc\x83\x3a\xa3\xc1\x56\x0d\x6b\x66\x4d\xe1\xf5\x22\x72\xad\xc8\x6a\x5e\x4d\xf4\x2b\xa3\xae\x73\xb2\x68\xb5\x5c\x36\x05\xca\x49\x39\xf1\x08\xb2\x2a\x7b\xba\x8f\xf4\x64\x69\x86\x8c\xd2\x66\x79\xb6\x82\x1c\xce\xcc\x98\xe3\xb6\x27\x44\x99\xb8\xad\x78\x45\xec\xa5\x99\x32\x6e\x20\x43\x12\x69\x33\x1a\x04\x52\xde\xbd\x72\x50\x59\x62\x0b\x4a\x69\x69\xd3\xcb\x0f\xc5\xe6\xce\xa1\x46\x14\x79\x3f\x8b\xab\x7e\xb3\x19\x33\xe8\x87\xc4\xb8\xeb\x9e\x98\x49\x13\xb2\x41\x48\x6c\xca\x68\x63\x2d\xe6\xb0\xb8\x43\xad\x4d\x2f\xa0\x1b\xbd\x7a\x59\xa8\x36\x69\x89\x09\x3a\x74\x33\x2e\xbb\x53\xc9\x66\x89\xf9\xed\xd3\xb4\x86\x65\xcf\x8d\xb3\x27\x2d\xb9\x69\x60\x9e\xfe\x63\x89\xad\x96\x38\x3e\x08\xee\x0e\x2f\x6a\xb9\x28\x3f\x47\x47\x3c\x3d\x2d\xe2\xa8\x54\xe6\x13\x72\x09\x0f\x1d\xe5\x71\x8b\x22\xf7\x00\xf4\x68\x9d\xdc\xfa\x85\xb5\xdb\x53\x78\xbb\xf8\x96\x6b\xe7\x56\x94\x85\x18\x11\x63\xb4\xec\x0a\x19\x02\x03\xef\xb2\xc4\xf0\x0e\x8d\x56\x19\x43\xfc\x05\xc8\x03\xf4\xd9\xbb\x04\x88\x02\x20\x75\x3e\x70\x25\x4f\xc3\x09\x66\x8a\xfe\x3d\xd6\x83\x8c\xe9\x81\x24\x0c\xc7\xe4\x5a\xc2\x9f\x3f\x98\x2b\xd7\x92\x19\x36\x2d\x1a\x1c\xf1\x50\x60\x4d\x56\x7e\x1a\xa0\x9f\xd0\x77\x4f\x68\xa1\xfc\x02\xc4\xe1\x41\xe7\xbc\xac\x62\xf7\x5e\x3f\x09\x21\x34\xf5\xb3\x2e\x0e\xeb\xd5\x47\x51\x85\x50\x64\x25\x9c\x33\x06\x47\xf0\xd8\x41\x31\x8e\x80\xa0\xbf\x76\x37\x0b\x11\xde\xfa\x88\x38\x8e\x80\x13\x94\x0d\x53\x1e\xcf\xc9\xe1\x93\x74\x1f\x1f\xb6\x7d\x5a\x73\x39\x02\xc2\xe9\xde\x3e\x81\x3b\xb1\x84\xea\x93\xc8\xe5\xb9\x63\xf6\x39\xd5\xf0\x79\xbe\x82\x8f\xb2\x45\x2b\xba\x6e\x41\x4e\x83\x32\x1b\x49\x09\x33\x86\x14\xd8\x5e\x4a\xe8\xf1\x42\x10\xc4\x54\x3d\x58\x7c\xe0\x89\xf7\xee\x87\xe0\xab\x1b\x1f\x03\x4b\xa8\x09\xa5\x5a\x95\x14\xa5\x4e\x96\x20\xad\x43\xb1\x9f\x0d\x3f\x53\xfe\x24\x14\x88\xab\xd8\x34\x84\xe8\x08\x95\x39\xd5\x33\x65\x1a\x72\xae\x49\x0b\x72\xb4\x70\x32\x20\x37\x0b\x82\x85\x9d\x02\x02\x7f\x71\x61\x56\xdd\xc2\x77\x45\xf4\x12\x9e\xc1\x0e\x33\xfc\xbd\xab\xc1\xa9\x5b\x3e\xc2\x73\x8c\x96\x4f\xc0\x82\x85\x72\x4d\xeb\x55\x75\xf7\xed\x22\x3e\x5e\xbe\x92\xd1\x6f\x2e\xca\xff\xa0\xb9\xdd\xa4\x29\x00\x1d\x76\x0c\x2b\xc9\x22\x93\xf6\x71\x7c\x98\xba\x70\x72\x25\xd5\x83\x8c\x4b\xec\x31\xde\x81\x99\x20\x5a\x51\x51\x68\x14\x91\x1f\x09\x85\x37\x2c\xbb\x72\xf5\x69\x0d\x56\x34\xfe\xc7\xcd\x2d\xbb\x7b\xbd\xae\xe9\x70\xe9\x47\xf4\xc5\x2d\x06\xda\xcb\x52\xdf\xe8\x3e\xca\x2d\x30\x00\x1c\x61\xc0\xd7\xd4\x42\x3a\x73\x23\xbf\x0b\x46\x00\xd2\x94\x9a\x25\xcd\x76\xbd\x64\xc3\x9f\x3a\x68\x32\x64\x9c\x39\xc4\x4a\x97\xee\x28\x1c\x6b\x75\x67\x7b\xc8\x5d\x7c\x8d\xa7\x4a\xf2\x68\xe9\x8a\x4c\xa9\xf9\x48\xe1\xa5\x7e\x78\xa9\x02\x83\x3f\x9e\xa7\x86\xef\xbe\x5d\xb9\x94\x8f\x62\xe4\x91\x68\xdf\xb7\xd7\x00\x0a\x2d\xc8\x34\x69\xe1\xd1\x6b\xd1\xa4\xe8\xd4\x82\x42\x89\x43\xf7\x8a\xb9\xbf\x7d\xd1\x23\xda\xf9\xd9\x44\x5f\x94\x6d\x03\x90\xcf\x60\x2d\xd2\xd6\x10\x03\x66\x5d\x2f\x1e\x3b\x03\x70\xed\x81\xbd\x06\xa7\x9f\x53\xdc\x67\xa9\x55\x03\xf9\x08\x7e\xf2\x45\x19\x52\xf7\xdc\xa6\xa8\x11\xa0\xc4\x6f\x29\xee\x38\xdd\x06\x5d\xa1\xf4\xd7\x2b\x80\xad\x41\xe4\x69\x1d\xe6\xd4\xe8\x64\x50\x73\x68\x64\xa6\x5f\x16\xb3\x6f\x48\x31\xb5\xe9\x13\x20\xc4\xf8\x77\x88\x6a\x2d\x7a\x89\x4e\xd2\x34\x72\x5f\x56\x72\xa6\xe7\x96\xe7\x87\x95\xbc\xfd\x1e\x63\xc8\x77\x50\x80\xe2\x87\x6e\xa4\xeb\xd6\xe1\x6e\x42\xd8\xc3\x6f\xce\x8a\x0f\x9e\xd8\xda\x67\x04\x72\x8a\xd6\x45\x34\xb5\x47\xc2\xf4\x3b\xa8\xd2\x13\xd2\x38\x8b\x3b\x72\x97\x2b\xd5\x18\x71\x86\x86\x87\xf4\x2a\x70\xfb\xc3\x30\x65\xb4\x34\xef\x00\x3a\x83\xbc\x2c\x3d\xb6\xa9\x47\x11\xe7\xe5\x19\x35\x05\xa2\x5e\x46\x4c\xa6\xf7\x57\x9a\xde\xe1\x6d\x02\x45\x1e\x25\x98\x7c\xae\x29\xbf\xf3\xe3\xf0\x3b\x47\xbe\x6d\x1a\x32\xae\x22\xd1\xa8\x7e\xe7\xd8\xe9\x22\xf8\x84\x18\x69\xe8\xf5\x5e\xca\x10\xbd\x7d\x59\x54\x4a\x00\xe6\xd9\xdd\x7a\x45\x58\xaa\xf9\xd7\x0c\xaa\x8a\x12\xce\xc7\xa2\x2e\x3e\x1a\x62\x76\x77\x7b\x0e\xe1\x3a\xa2\xb9\x00\xfb\xd8\x94\xcc\x91\x98\x0c\x8c\x00\xb9\x5d\x98\x8f\x17\x10\xf6\xbf\x7c\x70\x41\x24\x7d\x0a\xbf\x48\x2c\xa5\x9b\x72\x34\x3f\x78\x55\x6e\x18\x26\x51\x10\xd5\x4a\xb1\x23\x90\x81\x22\xcf\xd6\x99\xf3\x1f\xd2\xf3\x8c\xa1\x10\x90\x69\xce\xc7\x4c\xec\x43\x8c\xa9\x71\x83\xa9\x15\x9f\xa0\x27\xc3\xb3\xa9\x24\x50\x4d\xe3\x41\x7c\x1c\xf6\x2b\xd1\xa6\x19\xd2\x63\xbc\xce\xee\x8d\xc0\x10\x04\x89\xd3\xe0\xa5\x87\xdc\xbc\x2a\xd6\xfe\xab\x04\xaf\xe0\xa9\xb9\x37\x59\xe0\x90\xf4\x2b\x6f\xb6\xba\xfe\x6b\xe0\xf8\x1f\x1f\x97\x7c\xc8\xe8\xe5\x98\x62\xff\xf1\x28\xc8\x3f\xbf\x62\x43\x0b\x60\x8e\x50\xb7\x7d\x51\x16\xdf\xa8\x47\x47\x66\x2e\x62\xa5\x2f\xb6\xfc\x72\xf6\xa2\x95\x5c\x2d\x07\xc9\x11\x79\x4f\x39\x00\x6b\xef\xa0\x1a\xfd\x13\xe2\xd8\x95\xf6\x18\x0c\xef\x7c\x5c\xad\x3c\x97\xd0\x1a\x1e\x83\x52\x92\xa7\x9c\x46\xf9\xe3\x08\xdd\xc1\xed\xc7\xfd\xd2\xa2\xa8\x60\xd9\xc8\xfb\x52\x99\xcc\xc7\xc1\x66\xb1\x3c\xc0\xb6\x75\x47\xaa\x3b\xa5\x40\x23\x6d\x55\x51\x18\x98\xd3\xee\x37\x1c\x74\x28\x6a\xfe\xa4\xc1\x88\x3d\xd9\x32\x8b\xb3\x57\x6b\x9c\x17\x76\xe6\x45\xf9\xfb\x57\xc5\xb3\x06\x6b\x1f\x00\x58\x30\xdd\xad\x9f\x90\xd6\xf8\x14\xcd\xfe\xcb\x85\xa7\x35\x1b\x9e\xe9\x9a\x9f\x67\x90\xd5\x55\x14\x08\x39\xee\xa2\x1b\x47\xb5\x25\x7c\x8f\xa9\xa1\x1e\xec\x80\x76\xdf\xab\x7f\xec\x7c\xbc\x4b\xfa\x52\xa0\xf0\x31\x9b\x1c\x6a\x2c\xb0\xcc\xaf\x50\x73\x56\x25\x3c\xe7\xeb\x73\xbf\x48\x0a\xf7\x85\xee\x91\xbe\xe1\xd3\xbe\x52\x12\xea\xc8\xcc\xe0\x5e\xaf\x48\x2f\x86\xdb\x7a\xa8\xfb\xa4\x60\x7c\x22\x3b\x85\xe5\x47\xbe\x67\xca\x02\xb3\x5f\x91\xab\x37\x07\x46\x80\xcd\x25\xa7\x65\x0f\x8a\xed\x36\x18\x6a\x65\x35\x19\x5a\xce\xed\x75\x5b\x83\x9b\x15\x82\xf1\xcf\x1f\x08\x33\x27\x23\x47\x2d\x90\xee\x4d\x4f\xd6\xab\xa7\x74\x4d\x5b\xee\x60\x72\x46\x5a\xb5\x13\x51\xaa\x31\xc1\xbf\x82\x11\xd2\x15\x17\xaf\xa6\x70\xaf\xa7\x88\x3e\xcb\x08\xea\xae\x4b\xc9\x2f\x5a\xfa\x6a\xf2\xfe\x0f\xc2\x92\xe9\xbf\xe8\xb3\xd7\x00\xca\x9e\x76\xc5\xd4\x3b\x45\xa8\xfc\xf8\x26\xb7\x87\x84\xa9\xd9\xd7\x93\xd8\xde\x59\x16\xdc\x25\xba\xe3\xb8\xa6\xd5\x1d\xe7\x54\x33\xe0\xf0\xd6\x02\xe7\xd8\xde\x8f\x00\x59\x11\x7c\xf5\xd2\xb6\x78\x4f\x1b\xd1\xee\xfb\x71\x9b\xab\x77\x02\x62\xd7\xa6\x68\x67\x48\xb2\x84\x87\xf5\xe7\x82\x54\x10\xf0\xa5\xd0\x46\xcb\x84\xa1\x15\x30\x8b\xbd\xb6\xc9\x15\x04\xee\xd6\xb0\x50\x3b\x63\x6b\x51\x26\x34\x2b\xeb\x08\x68\xd2\xf6\x50\xe4\x4a\xe4\x56\x68\xd9\x5d\x61\xbe\x88\x3f\xfa\x76\x30\x64\xc2\xb6\xfb\xb5\x2a\x8c\x8d\x95\x80\xa9\x0f\x2b\xb1\xf7\x84\x26\x5b\xa2\x66\xae\x7e\xd1\xfa\x86\x24\xd7\x45\xa0\x00\x07\xb2\x97\x0f\xb0\xdd\x91\x09\x14\x83\x39\xa9\x2d\xc9\x46\x67\x23\xea\xd4\xcb\x54\x1d\x92\x41\x75\x6d\x19\x1d\x43\x7a\x1c\x40\x54\x62\x6d\x8e\x70\x1f\x47\x2e\x73\x58\xed\x2d\xa0\x06\xb5\xec\xd3\x07\x16\x58\x75\xd9\xc0\x07\xa5\x0e\x20\xd1\xfb\x01\xe2\xa5\x41\xa9\xe6\xa6\xbb\xeb\xe8\x00\x80\x29\x12\xae\x8a\xa6\x01\x56\xb0\x23\x3b\x4d\xbe\x90\xe1\x9f\x51\x84\x3a\xdc\xec\x8a\x9f\x94\x9d\x7e\xd0\xd4\xbb\x0f\xa9\xe3\x11\x65\x56\x70\x43\x9f\x00\x03\xf5\xe9\x4b\xa7\x41\xba\x9f\x1e\xc3\x6e\xfc\x39\x74\x31\x05\xc0\x6e\x32\xa3\x14\x43\x83\xb6\xe8\x8c\x8d\xfd\x9d\x63\x78\x70\xe2\xb3\xcf\x56\xfa\x8a\x20\xab\x98\x5d\xdb\xf1\x95\xb7\x41\x8b\xf2\x61\xae\xa5\x03\x62\x2a\xf3\x60\x1d\x23\x52\xe6\xe2\x96\xfd\x3a\x35\xb9\xe7\x0c\x89\x8a\xb8\x08\x0f\x10\xcb\x14\x02\x1a\x05\x66\xe4\x68\xd3\xd7\x2d\xdc\x7c\xb0\x54\xcd\xdd\xa2\x55\x55\xfb\x97\x6a\x3d\x5e\x81\x0c\x52\xcf\xb0\xa8\x8a\x91\x3f\x8c\x01\x70\x67\x50\xfc\x96\x2a\x8a\xda\x2b\x23\xb9\x6b\x72\x73\xed\x65\x9d\x64\xea\x24\xc6\xc5\xf2\xe3\x0e\x27\x6a\xe5\x2b\x27\x84\xbe\x7a\xc3\x5b\x2d\xe0\xe8\x9d\x87\xb7\x14\x27\xfb\x64\xe4\x61\xb9\x32\xe7\xa2\x86\xec\x39\x57\x64\x03\x3b\x46\x01\xd3\xae\xf8\x4f\x4f\x5b\x24\x5a\xdf\x06\x05\xb2\xc0\xe5\x53\x97\xe2\xe6\x39\x5e\x53\xbd\xe2\xdb\xa5\xdb\xab\x23\xe3\x56\xfc\xc4\x3c\x81\x92\xf4\xb7\x6f\x87\xcf\x07\x42\x9a\x7c\xb9\xa2\xd0\xfa\x05\xdb\x80\x44\x74\xbf\xba\x82\xa8\x52\x06\x9d\x64\xf7\x23\x0a\x6c\x7f\xbd\x4a\x6f\x3a\x39\x62\x68\x10\xea\x73\x9c\xdd\x97\x59\xef\xe1\xec\xf1\xbc\x44\x91\x8a\x6b\xbc\x5d\x74\x93\xa8\x77\xfa\xe5\xb1\xa0\x30\xc8\x5d\xe4\x25\x4c\xfd\xda\xc3\xa5\x05\x69\x27\x60\xe1\x1c\xc4\xec\x4c\xa7\x22\x7e\xd2\x21\xd2\x20\xd7\x1a\x98\x76\xe4\xb9\xf2\x46\xb9\xff\xf2\x70\xe1\xfe\xa4\x80\x5c\x63\xf8\x9f\x20\xfd\xba\xd6\x34\x55\xcc\x59\xfa\x27\x29\x2a\x3d\x53\xe2\x5e\x05\x19\x71\x87\x4b\x32\x23\xd2\x0b\x55\xdc\x0a\xe8\x99\xba\x14\x80\x26\xd6\x3d\x9f\x18\xb1\xfd\x9f\x8c\xbd\xd9\x7a\xdd\x36\xb2\x36\x7c\xce\xbb\x92\x14\x27\x4e\x62\xa7\xbd\x23\x77\xf7\xd3\x7d\x56\x04\xb1\x48\x44\x20\x80\x60\x58\x16\x75\xf5\xff\x53\x6f\x15\x40\xca\xc9\xde\xff\x77\xb2\x50\xc0\xe2\x08\x62\xa8\xf1\xad\x7e\x0d\x70\x71\xcb\x2c\x26\xd4\x06\xa3\x1b\xb0\xa3\x7a\x0a\x58\x7e\x5f\x9c\x11\xec\x37\xd9\x04\x99\x4b\x91\x07\x83\x0a\x36\x25\x4f\x6d\x51\x53\xc5\x99\x70\x07\xe9\x67\xc4\x64\x66\xf7\x04\xab\xf3\x6e\xc5\xbe\x2d\xe6\x80\x01\x17\xf4\x67\x8b\x1d\x9b\xd9\x88\xb0\x27\x39\x46\xbb\xd8\x8b\xc3\xbe\x6d\x22\xec\x0d\x58\xd5\xf3\x06\xe8\x52\xcd\x86\x7a\xbd\xc5\x2b\x34\x5f\xaf\x36\xc7\xb4\x61\xcf\xe2\x05\x57\x8b\xb3\x69\x1d\xf4\x8e\x8c\x4b\xbb\x2d\xbd\xe1\x4d\xb2\x20\x9d\x05\x9c\xb4\x72\x34\x94\x13\xc6\x8a\xb7\xed\xac\x49\x12\x6d\xe0\x24\xc5\xa2\x14\x73\x79\xc6\x66\x03\xe6\x90\x67\xb5\x56\xbe\xd9\xf9\x8a\x9b\xc3\xdd\x8a\x86\x1b\x19\xab\x01\xe6\x4a\xb9\x54\x2e\xd9\x0a\x43\xcd\xd4\x6b\x85\x24\xd8\x2f\xe5\x48\x23\x67\xc9\xa0\x35\x19\xac\x3d\x45\x83\x62\x77\x28\xb5\xe0\x2b\xf5\xee\xdf\x72\x84\xf1\xa7\x5b\xdc\x08\xa4\x0b\x71\x8f\x3d\x36\x90\x52\x55\xc5\xec\x20\x91\xd2\x38\x4c\x3b\x62\x47\xc4\xe3\x39\x18\x59\xb9\x0c\x79\x03\xe1\xbd\xd3\xb7\xb6\xca\x06\xc3\x62\xf2\xe9\x42\x19\x59\x10\x41\x76\x15\xad\x9f\xf1\x53\xe4\x3d\xac\x51\xf8\x84\xa1\x93\x2c\x16\xf8\x8e\x19\x06\xea\x0f\xa8\xca\xfe\xa0\x6f\xb2\x2b\xbf\xb8\x10\x04\xae\x42\xb6\x69\x49\x8a\x21\x91\x44\x4c\x89\x6e\x43\x31\xeb\xa8\xa4\x8d\xbc\x80\x5d\x22\x40\x8c\xe6\x99\xb0\x54\xd2\xbc\xc4\xdd\x85\x78\xb7\x12\xa2\xf5\x30\x5b\x00\x36\x53\x98\x1e\xe6\x97\x8d\xde\xa6\x87\x39\xd0\x8b\x9b\x1e\xe6\x98\x9d\xe4\x2a\xa6\x59\x1e\x7c\x76\xc3\x8c\x36\xd0\x91\x89\x45\x70\xc1\x9a\x26\x43\x49\x46\x92\x95\x48\x13\x78\x48\x6a\x4b\x3d\xbc\x3d\x49\x67\xa6\x07\xb3\x91\xe5\xbb\xda\xe8\xa1\x90\xe2\xa5\x0e\x4f\x68\x36\x1f\xb3\x0e\x69\x32\x5b\x64\x76\x46\xae\xdf\xe7\x2e\x5c\x2e\x87\xab\xa1\x5b\xf4\xf6\x2e\xf0\x16\xd5\x8b\x60\x35\x30\x7a\x89\x9d\x77\xe4\x31\xbe\xea\x63\xc0\x41\xf1\x9d\xb7\xe2\x61\xa4\xef\x7a\x4d\xaf\xda\x3c\x20\xb3\x68\x21\x53\x0f\x01\xc1\x5c\x68\x57\x04\x25\x5a\x6c\xe0\x89\x62\xf8\x14\x09\x3d\x42\x13\x74\xcb\x28\xf9\x8a\x8b\x86\x12\x20\xdf\x76\x8f\x7d\x0a\xf6\xf5\x4c\x39\x82\x50\x28\x1c\x7a\x29\xd5\x1f\xb8\x03\xb1\x3e\x78\xdb\x2a\xba\x2a\x18\xc5\xef\xe7\xbe\x47\x02\x53\xa1\xdd\xf5\x34\xae\x26\xca\x75\xb3\x48\xa5\x50\xb9\x9b\xf4\xb0\x9b\xcd\x39\xee\xb4\xea\xb7\x0c\xd5\xa5\xe8\x05\x44\x54\x22\xe0\x09\x21\xd3\x55\xe2\xe1\xef\x2e\xf7\x27\xd2\x60\x2d\x54\xef\x6a\x70\x65\x2a\x54\x27\xa3\x0b\x74\xcb\xb2\x89\x90\x84\x10\x8f\x2f\x6c\x33\xdf\x59\xa3\xd6\x07\x2a\x36\x68\xf9\xc0\x36\xc7\xdd\x9a\x0d\x6c\x9d\x54\x96\x71\x48\x60\xa9\x41\x2a\x85\x87\x81\x68\x31\x6f\x70\xda\xe1\xe2\x15\x60\x8e\xca\x10\x90\xa4\xbd\xe3\x42\x1f\x45\x10\x4e\xa2\x39\x7a\x4d\x3c\x53\xd7\x1c\x67\x27\x8f\x82\xca\x49\xc9\xf6\x48\x6b\x3e\x52\x90\x91\xe0\x79\x2e\x55\x9b\xa7\x07\x4f\xe5\x85\x87\xae\x47\xca\xf1\xe2\x84\x26\xcc\x22\xf2\xb3\x4c\x1a\x3f\xcb\x4b\xf9\xb9\x67\x27\x50\xb2\x89\x43\xaa\xd9\x64\x02\x09\x21\x4f\xe9\x17\xbb\x1d\x0b\x28\x5e\x81\xd1\x0f\x7e\xc5\x68\xf2\x6b\xf4\xb4\xf6\x16\x1d\xb9\x0f\x7e\x8d\x01\xe9\x23\x06\xa3\xac\x70\xc2\x2f\xb4\x69\xda\x07\xff\x42\x9a\xbc\x42\x48\x6d\xc4\x24\xec\xb9\x36\x40\x59\x6d\x01\x6a\xec\x20\x71\x17\x58\x9d\xb4\xc0\xfa\x45\x7b\xf7\x64\x1d\x5d\xe9\x7d\x54\xeb\x8b\x90\xc3\xef\x76\xb8\x01\x7b\xdf\xd3\x0f\x30\xd9\x03\xfe\xbc\xd7\x47\x89\xc9\x1a\x10\x69\x53\xc1\x8e\xc2\xb5\xc2\x64\xcf\xdd\xfd\xe0\x2b\xa1\xad\xba\xda\x16\xed\x70\x49\xb7\xe1\xcf\xee\xbe\xdb\x28\x4d\x9d\xe8\x76\x33\xf4\xd1\x0e\xa8\x6d\xc0\x95\xd1\x4e\x4d\x70\x4d\x69\x9f\xfd\x81\x07\x7b\x50\xdf\xc8\xc0\x6d\xcd\x4b\x1a\x09\x21\x05\xb3\x7e\xb7\x33\xbe\xcc\x6e\x43\xcc\x79\xb3\xe2\xbb\x5f\xb7\x43\x72\xc3\x3f\xec\x1b\xfc\x32\x59\x42\x8b\xfc\x5b\xf5\x06\x5a\xdf\x79\xd5\x35\x4a\xc8\x3f\x41\x3f\xd9\x1e\x9c\x1e\x1b\xfb\x54\xda\xd3\xe6\xea\x66\xd5\x9b\x79\x4f\x5b\x54\xa2\x79\x79\xb3\x63\x5d\x48\x82\x16\xf7\xc3\x47\x91\x65\x29\xf0\x9a\xdd\x29\x64\x33\xa1\x40\x46\x67\x5b\x20\x13\x7d\x83\x7f\x35\x05\x5a\xfd\x91\x3a\x29\x93\x20\xf0\x34\xd9\x75\x9f\x45\x0f\x07\x1a\xd7\x1d\xcf\x1a\x68\x7c\xdf\x77\x64\xda\x64\xe3\x09\xd4\x9d\xfd\x28\x50\xee\xa9\x35\x28\x50\xa1\x6c\x44\x5e\xe4\xbf\x57\xb9\xcf\x43\x58\xc8\x37\xe9\xf5\xb0\xe4\x73\xbf\xd1\xca\x20\x8f\xa0\x90\xa9\xfb\x39\x02\xb9\xd2\xc7\x5d\xb0\xc1\x58\xde\x04\xa5\x32\x20\x56\x75\x47\x0b\xab\x03\x7f\x83\x7f\x57\x37\xd6\x6e\xa6\x4b\xb2\x19\xc3\xfb\x21\xac\x3c\x62\x1d\xb6\x2b\xa1\xe3\x2c\x67\x00\x9c\x8e\xd7\xa9\x2a\x89\x69\x82\xdb\x3b\xeb\x0c\xba\x9e\xb4\x63\x91\x3b\xb8\x62\xdd\x8b\xba\x7c\xbb\x12\x05\x75\xb6\x93\xfa\x8a\xae\xe0\xf1\x35\x0e\xf6\xe5\xd0\xb9\x1a\x42\xbf\xf4\x23\x1d\x56\x56\x1b\x80\xfb\x0a\x61\x41\x3c\x3a\xbb\xd8\xbc\x5b\x67\x33\x9f\x61\xbd\xe4\xcf\xb1\xaf\x34\xf2\xeb\xf3\xa1\xbc\x83\xe0\x92\x2d\x18\xa7\xe3\xd8\xfb\xee\xb0\x43\x41\x52\xb9\x52\xdd\x40\x10\x80\x93\x25\xd0\x94\xe9\xcd\xca\x08\x0b\x11\xe9\x69\xd0\x98\xeb\xa6\xc3\x29\x16\x79\xa7\xf8\x6a\x3b\x81\xa2\xe0\x12\xbc\x95\x58\xd3\x66\xa7\x9b\x90\x0d\x41\x37\xb0\x4c\x46\xaf\x50\xb7\xfe\xf2\xa0\x2e\x5f\x5f\xea\xe3\xe3\x4a\x35\x6d\xb4\xca\x63\x57\x37\xc6\x39\x6f\x12\xcc\xad\x7d\x67\xe8\x44\x4d\x3d\x33\x25\x93\x60\x75\xc8\x19\x14\xf4\xcf\x3e\xb8\xaa\xdb\x47\x1b\xef\x01\x24\x5b\x22\x2f\x5c\x1d\x60\x3b\xc5\x45\x37\x52\x1e\x56\x3a\xf6\xaa\x83\x83\xc3\x44\xa1\x65\x9c\xd3\xb2\x3e\xfb\xab\xeb\xd3\x71\xcc\xe6\x98\xd1\x0b\x69\x23\xab\x47\xa5\x8d\x5e\xb4\xd4\xd5\xa0\x4f\xa0\xa4\x18\xf5\xb2\xe1\x25\xa7\x69\x7d\x80\xf1\x29\x98\x14\x94\x74\x46\x27\xb0\x92\x94\xa2\x21\x7f\x40\x15\xf6\x90\xa2\xc9\x07\xcf\x03\x34\x1f\x1d\x26\x8c\x52\x1f\x82\xdc\xcb\xb8\x1e\xef\x77\x72\x95\x18\x6c\x5f\x0d\xd1\xc9\x83\x3a\x8a\x95\x0b\x25\xb8\x7c\x9a\x93\x14\x4e\x2b\xc5\xe2\x62\xd2\xc7\x8d\x67\xe7\x24\xe6\xb6\x05\x14\x09\x64\x9f\xec\x29\x91\x27\xb3\xc9\xfb\x24\x24\x1d\xc4\xb7\x49\xc9\x86\x45\x31\x81\x7b\x52\x0f\x69\x8f\xa5\x6b\x2f\x28\xa5\x1c\x53\x76\xfd\x94\x22\x5b\x5c\xba\x6c\x08\x7f\x36\xab\xe1\xdc\xf2\x0a\x7f\xb6\xc1\x7f\x64\x32\x1b\xb8\xb4\x87\x4c\x3b\xef\x24\x5c\xa2\x1f\x32\x05\x8b\x4b\x3d\x64\xfa\x46\x2f\x68\x9a\x9d\x70\x5b\x42\xc8\x0d\xf3\xac\xb9\xe4\x78\x51\x23\x7b\xb2\x33\x5c\x75\x3d\xe3\x92\x98\x04\x95\x96\x00\xee\x6d\x71\xd1\xd8\x42\x82\x7f\xbe\xb4\x7e\x92\x5d\x05\x8b\x13\x74\x49\x22\x67\x61\xc5\x5c\x1c\x19\x79\x67\xae\xd9\xe4\x8a\x89\xa9\x57\x93\xf5\xb4\xea\x0d\xdc\x5d\x5b\x63\xa1\x26\xc3\x44\xd2\xfa\x23\xfd\x8b\x22\xb8\x67\xdd\x0b\xe1\x9f\x80\x13\x57\x75\x88\xa6\xbc\xab\x1b\x35\x21\x53\x15\xe5\x6e\x80\xc9\xc5\x06\x7d\x3b\xa4\x70\xc0\xc1\xaa\x38\xb8\x4b\x7e\x04\xa9\xc7\xb3\xb6\x65\xf2\xf2\x60\x3c\x5b\x65\xdb\x16\x5a\xe7\x0f\x68\xbc\x28\x77\x7f\xdd\xfa\x13\xd7\xfe\xe5\x95\x92\x55\x2a\x57\x17\x85\x05\x9f\x28\x23\xf4\xaf\x0f\x65\xe6\xed\x55\x93\xc8\xb4\xc4\xc4\xe8\x92\x52\x8c\xb7\xc9\x31\xef\xde\x8f\x1d\x62\x2d\xd3\x7a\x77\x2a\xc0\x7c\xea\x23\x0b\xe8\xfb\x1a\xda\x88\x68\x88\x5d\x20\x50\x78\xb1\xd0\x01\x24\x48\x03\xd2\x2c\x04\x5d\xa9\x4c\xab\xe8\xcb\x78\x0e\x28\xcf\x89\x48\x73\x6a\x27\x2d\x0c\x66\x39\x3a\xc3\x5e\x09\xeb\x25\x73\xf4\x91\x9f\x5b\xa7\x20\xdc\x54\x75\x40\x75\xcf\x55\x19\x1b\x55\xfa\x1b\x39\xc1\x70\xb7\x7a\x6a\xed\xa8\x5e\x26\x02\xf4\x2b\xda\xde\x16\x37\xd6\x51\xa6\xd5\xb4\x48\x6d\x95\x1e\x93\x15\xa5\xff\xf6\x2b\x5f\xa8\x1a\x35\x20\x6f\x76\xef\x0e\x88\x7a\xca\x28\xb9\x8f\x1b\xf3\xea\x55\x3f\x61\x2b\xd5\xca\xe2\xf6\xd0\x20\xbf\x90\x6c\xf4\x52\x89\xc9\x61\x95\xe0\xad\xa2\x55\x32\xca\xb3\x36\x60\x82\xe0\xc9\x80\x7b\x22\x6d\xcc\xb5\xeb\xbe\xff\xbf\x35\x18\xfe\x18\x47\x57\x12\x8c\xad\xa4\x03\x48\x2b\x7d\x1e\x31\xd8\x94\x56\x23\x12\x7b\x5c\x0f\xab\x32\x89\x99\x92\xcf\xc6\x94\x2e\x6f\xa2\x00\x19\x8b\x1d\xff\x23\x3b\x41\x7b\xd5\x5b\xbe\x3a\x7c\xb6\x57\xd7\xe7\xd3\x49\xdd\x79\xd5\x0b\x13\xdd\x9d\xfc\xde\xa8\xe1\x33\xdd\x9d\x7c\xea\xbb\x43\x6e\x0a\x19\x0a\x02\x88\x2f\xdf\xf1\xde\x82\x76\xfd\x49\xbd\xa2\x77\x5e\x9d\xb7\xf8\x95\xa9\xfc\xea\xce\xb5\xe9\x15\xe7\x3e\xbc\xd9\x3c\x93\xfb\x83\x82\x9b\xe8\xcd\x2d\x91\x7f\xf7\x56\x37\xd1\x06\x4d\x8b\xe3\xdf\x37\x88\x05\x6f\xb1\x4a\x16\x24\x9a\x63\x44\x9a\x86\x47\x9a\x0f\x2f\x1a\x83\x19\x28\x36\xc0\x79\x47\x06\x4c\xc9\x7f\xa1\x90\xef\x48\x84\xa1\xe7\x82\x4d\xd2\xbe\xee\x35\xde\xbd\x2f\xd5\x52\xe9\xfc\x57\xbe\xfd\x23\x6d\xe4\xa6\x99\xe5\x10\xf9\xcb\xeb\x3c\x98\xc9\x17\x92\x2b\x67\xf9\x1d\x1f\x8b\x69\x1d\xde\x33\x65\xbd\x61\x11\x5d\xc8\x4c\x45\x44\x65\x21\x44\xe2\x87\x7e\x57\xea\xbc\x1a\xf4\xaa\xbc\x42\x61\xde\x0f\x2f\x5a\x04\x3c\x95\x39\x23\xef\xaa\xdc\xa9\x6e\xc7\xb8\x55\x7b\x75\x62\xd1\xda\xf8\xd3\xe9\x3e\xff\x68\x3d\x65\xe1\x66\x67\xeb\xed\x1e\xf4\x98\x60\x7b\xa8\x1d\xd3\x00\x02\x57\xfa\x2e\x8e\x0f\xb3\x0d\x72\x0f\x5e\x99\xc7\x59\x6f\xa2\x58\x60\x2a\x6a\x0b\x44\xa7\xd9\x56\x96\x4f\x44\x55\xed\x64\x14\xcc\x6e\xf6\xe7\x10\x96\x9a\xa7\xaa\xde\x86\x5c\x1b\xd9\xc4\xa4\xaa\x7c\xae\x56\xe2\x49\xf3\xa4\x1c\x47\xe1\x49\x9c\xa1\x54\x9a\x78\x29\x9a\x0d\x9b\x84\x78\x02\x3a\x01\x06\x98\xdd\x1a\x20\xdc\xe8\x13\x79\x79\xbd\x6e\xe4\x03\x8e\x40\xe6\x13\x76\x5b\xcf\x6f\xea\x78\xf3\x11\x15\x90\x62\xd4\xce\xee\x32\x89\xb9\x02\x89\x19\xff\x47\x70\x76\xda\xde\xe7\xb6\x90\x72\x0f\x15\x16\x40\x5c\xba\x61\x4c\x05\x25\x25\x18\x39\x1a\x77\xaa\x01\xc0\xfc\xbc\x3f\x52\xaf\x54\x8e\xd0\xb5\x86\x5c\x19\x91\x8f\xe0\x3d\x3b\x81\xa9\x3f\xf3\x5a\x72\x3e\x57\x5c\x9c\x3f\xa6\xc7\xc8\xcf\x4f\x40\xeb\x38\x1f\x29\x0e\x59\xf9\x31\x46\xe0\x46\xf4\xb8\xfa\x39\x8a\x06\x60\x8e\xe5\x25\x26\x7c\xf9\x58\x49\x5a\x6a\x3e\xb8\xe1\x31\xd6\xf2\x8d\x02\x4e\x6a\xc2\x6f\x59\x51\x28\xc1\x36\x83\xbe\x04\xc1\x7b\xae\xda\x6b\x9a\x7a\x83\xf0\x44\xd3\xff\x2b\x34\x5c\x42\x09\x7a\xfb\x9c\x69\xdb\x9d\x5e\x28\x8c\x2b\x85\xcb\xa5\x4a\x39\xa6\x39\x77\x5e\x6e\xee\xf9\x5d\xe7\xec\x8a\xe4\x56\x8e\xb4\xcc\x14\x96\x0b\xf5\x98\xe3\xbc\xb8\xb0\x06\x42\x06\x8b\x39\x63\x2d\x45\xc1\xe2\xc6\xdc\x0c\x3a\xbc\x79\x87\xf6\x96\x05\xf1\x69\x6e\xb9\xa0\xbd\xda\x08\x9b\xce\xdc\xea\x31\x6c\x33\x4c\x43\x68\x31\x9b\x30\xa5\x86\x4c\x5c\xec\xae\xa9\x7c\x4d\x5c\x30\x49\x0c\x2d\xa4\x49\x2f\x69\xa1\x7b\x57\xe7\x2e\xcd\x58\xe4\xc4\xb4\x80\x29\x05\x55\x14\xfd\xfb\x76\xb3\x4e\x2e\xe2\xe0\xf1\x6c\xc8\x1b\x82\x30\x04\x2a\xdb\xae\x05\xd6\x4e\x13\xe5\xb0\xea\x85\x2f\xfa\xe2\xaa\x8d\xad\xab\x8d\x2d\x32\x94\x4e\x40\x5c\x83\x4d\xdf\x95\xba\x59\xb9\x95\xe7\xe5\xa5\xed\x49\x9e\xc5\x83\x3f\x01\x8a\x9f\x90\x52\xea\x88\x61\x36\xdf\xe8\xf3\x1c\xea\x60\xab\x94\x3c\xce\x91\x6a\xfe\x0b\xb9\xcf\x88\x09\xa7\x3d\x51\xc7\x61\x15\x85\x82\xf6\xa8\x19\xea\x85\x13\x2d\x36\x43\x07\x0e\xae\x10\x08\x66\xbd\xe9\x42\x05\x7b\x16\x09\x22\xdd\xdd\x4e\x4f\xc4\xe2\x00\x5e\x25\x39\x01\x94\x7c\xa2\x94\x68\x61\x7e\x0b\xad\x59\xcf\x28\x7a\xa1\x41\x64\x16\xc6\x17\x41\x38\x64\x49\x0d\xcf\x93\x67\xc5\x47\x15\x54\xc3\xc3\x0b\xf1\x2a\x84\x71\x1d\xaa\xe0\xbd\x4a\x16\x40\xee\x63\xca\x49\x2d\x35\xbf\x6b\x1a\x6b\xc0\x27\xe3\x02\xc1\xdd\x65\x0b\x78\xa2\x1c\x21\xeb\x2a\xb1\xca\xd3\x32\x4b\x86\x7b\x43\x58\x91\x73\x93\xad\x33\x01\x89\x31\x75\x7e\x72\xd0\x7a\xf3\x6b\x90\x0c\xe5\x93\x01\x79\x62\x1e\x58\xf6\x07\xc3\x4c\x6d\xef\x4c\x25\xf1\x65\xf2\x11\x91\x0c\x65\x7c\x9c\xaa\x9a\x1c\xa6\xcc\xa6\xc9\x5d\xb1\x4e\x52\xa7\x54\x66\x03\xa9\x5c\x0d\xe8\xe6\x3b\x99\xf3\x86\x37\x86\xb5\xc4\x5d\x48\x23\xf4\x98\x4a\x55\x61\x00\x0c\xd5\x17\xc5\xf4\xa1\x1a\x93\x0c\x3f\x6c\x0c\xc6\xc2\x84\x2a\x91\xe3\xd6\xf3\xf3\x68\xeb\xa0\x44\x33\x87\xd8\xbf\x51\x73\xa1\xda\x35\x6b\x96\x9e\xb5\x75\x23\xbf\xa0\x0a\x5c\x0e\xba\x9c\x22\x44\x2c\xfc\x09\x10\xba\xae\x3e\x7e\xc6\x86\x28\xca\x56\x30\x1c\x78\x70\x7b\x86\xfc\x3c\xd9\x10\xb1\x61\x26\x64\x08\xd4\x56\x83\xb4\x67\xae\xe7\x78\x2e\x6e\x57\xd2\xad\x99\x16\x2b\x29\x9f\x31\x33\x85\x14\x96\x44\xc8\x82\x75\x4b\xf4\x4b\x58\x0e\x61\xfd\xd2\x8b\x41\xe2\xe2\x62\xc6\x18\x11\x32\xf7\x36\x96\x78\x64\xb4\x49\xed\x0e\x00\x2b\x39\xec\x2e\xbd\x6f\xa5\x6f\x65\xf0\xd8\xdc\xd5\x99\x38\x80\xe7\x8a\xad\x24\x6b\xd6\x46\x92\xa0\x88\xcb\xb8\x06\xaa\x9b\xb4\xde\x6e\xc7\xf4\xb4\x91\x5f\xf4\x28\x7f\x00\x4e\x4c\xd2\xd6\xf6\x17\x11\x1a\x61\x5b\x12\xce\x6e\x36\xea\x79\xed\x98\xac\x7d\xc0\x6d\xd4\xee\x3d\x93\xd4\xd3\x26\x16\x69\xb3\x59\x19\x9e\x9b\xf5\x63\xa9\xbb\xb6\x19\xb1\xeb\x29\xd9\xff\x16\xae\x71\x6c\xe3\x69\x8b\xf5\xdc\xd4\x2f\xcd\x47\x71\xe6\xbb\x3f\xa0\xd5\xed\x81\x0e\x9b\xdd\x63\xb6\x3d\xd5\x1e\xaa\x2c\x35\x51\x12\xf5\x96\xd9\x6c\xae\xdc\x05\x72\x37\x47\x10\xe0\x00\xf6\x3a\x5b\x49\x44\x68\x36\x27\x12\xe9\xd3\xe6\xa0\x6d\x20\xbc\xb6\xcb\x00\xf8\x76\xb5\x47\xb4\x79\xda\x0f\x81\xd0\xd8\x7c\xcc\x32\x13\x63\xb1\x5a\x95\x9b\x21\x12\x51\xa8\x0c\x96\x96\x09\xe9\x63\x4d\xbb\xf2\xb4\x31\x43\x38\x38\x0a\xe5\x99\xb0\xb7\x3c\x21\xdf\xa4\x40\x2b\x4d\xff\x76\xbe\x48\x1f\xd1\xf5\x18\x96\x89\xd4\xc7\xca\xdd\x9d\xbf\xfc\xc2\x50\xcf\x7c\x17\x92\xcd\xd1\xde\x03\xff\x8c\xb7\x7c\x43\x55\xd3\x0f\xaf\x9b\x0b\xd1\x21\x1a\x8d\x87\x48\x60\x7c\x7c\x43\x30\x49\xc1\x88\x8a\xc6\x68\x71\xac\x18\xce\xd1\x7b\x52\xde\x0a\xb4\x98\x1b\x99\xb4\xab\x80\x7b\x2b\xe9\xaf\x49\x45\xde\x11\x66\x12\xa7\x67\x53\xb5\xe9\xdc\xc6\xe2\xbe\xdb\x50\x24\x0f\xc9\x0e\xf9\xe7\x9a\x84\x24\xf0\x87\x6e\x5d\x06\x56\x38\xe5\x51\x59\x0e\xcc\x9e\x18\x6e\x6e\x6d\x23\x39\x34\xd7\x73\x14\xb4\x03\xad\x4b\x2a\x84\x51\x45\x44\x09\x14\x26\x57\xa0\x53\xf8\xf6\xb8\xda\xce\xe3\xae\x8e\x43\x62\xa7\x96\x50\x32\x23\xea\x4e\x2e\x94\x71\x7c\x47\x6a\xea\x28\x13\xb3\xed\xb0\xba\xc8\x25\xac\xe0\x1b\x19\x6c\xc4\x53\xcc\x9a\xea\x30\x67\xeb\xcf\x87\xcb\xc7\x3e\x63\x94\x45\x49\xa8\xc2\xc3\x38\xe2\xcb\xc8\xf2\x78\xa1\xab\xcc\xe6\x78\x27\x71\xbc\xce\x08\x2b\x37\x92\x04\xdc\xe4\x26\xdf\x13\xa5\xce\xe7\xef\x69\xdc\x28\x1f\x7d\xe3\xcc\x47\xd4\x32\xd5\xa1\xf0\x47\x4d\x35\x86\x42\xab\xbe\xd5\x54\x91\x49\xba\x62\xd7\x34\xd3\x32\x93\x7a\x83\xe6\x85\x95\x37\xad\x9b\x63\x4d\x4b\x59\xbc\x05\xbb\xee\xa0\x6f\xee\x47\x8d\x10\xf5\xab\x35\x9a\x7a\xf9\xe8\xf2\x39\x53\x58\x2d\xfa\x88\x39\x44\x5e\xdf\x2f\xb4\x8a\x26\x97\xfc\xef\xe6\x90\x41\xd2\x8b\x93\x23\x67\xfa\xc5\x9d\xf4\x98\x99\x47\x8f\xff\x34\x6f\x84\x84\xff\xcb\x48\x75\xba\x58\xef\xee\xea\xff\xfb\x83\xdd\xa3\x91\x64\x7f\x4c\x56\x04\x96\xbe\xcb\x0e\xfb\xd7\x6a\xbd\x16\x25\xc9\x49\x4e\x2c\x95\x1a\xc1\xb1\x38\x1a\x56\x59\xd0\x62\x64\xd6\x14\xdb\xc8\x68\x4f\xcc\x9a\xf5\x03\x78\x4d\x01\xd5\x99\x20\x7e\x1e\x20\x09\x80\xa7\x60\x21\xb3\xaf\x08\x17\x78\x67\xb9\xd3\xed\x1c\x96\x8b\x5b\xf1\xf1\xce\xb2\xdb\x71\x7e\x70\x31\x1c\x7a\xad\xe4\x55\x67\xb1\xb8\xee\xc7\xb5\xb8\x3c\x02\xac\xe2\x1e\xdc\xb5\xfe\x9e\x2e\xe6\x94\xb6\x11\x2b\xe9\xe6\x36\xfe\xac\xdb\x91\x99\x2b\x35\xd3\x92\x49\xef\x91\x5b\xd2\x31\xb4\x20\xeb\xc2\x22\x69\x7a\x8e\x20\x1f\x7a\x39\x8a\x8c\xd7\xe5\x28\xfd\xe3\x7f\x48\x9b\x58\x47\x3e\x34\xec\x65\x68\xb4\x4d\x8e\xfb\xd0\x32\xb0\xbc\x33\xda\xba\xb2\xe6\x03\x84\xbb\x6a\x27\x7b\x8a\x41\xc3\x35\x6a\x10\x90\x0f\x2f\xcd\x55\xf2\x95\x2d\x1d\xd3\xe2\x42\x79\xfe\x37\x77\x0a\x3e\x34\x17\xce\xb3\x37\xf6\x9d\x4d\xeb\xdd\x54\xf5\xfd\x71\x32\xf6\xff\xae\xd2\xad\xe4\xe7\x35\x78\x10\xde\x6d\xaf\x85\xf3\xd0\x0b\x39\x86\x8e\xd6\x55\xe5\x62\xb1\x70\xa3\xd4\x10\xb9\xbf\x52\xf9\xd0\x9c\x9d\x76\x4f\x47\x66\xbe\xc2\xee\x22\xce\x58\xd9\xb0\x6c\xb2\x5d\x38\xb6\xc9\xc9\xd7\xb2\xc9\xad\x54\xa4\xcb\xdf\x91\xaa\x41\x39\x35\xd9\xf6\xcf\x66\xe1\x01\x1a\xbe\x23\x79\xf8\x5f\x8b\x68\x30\x62\xdf\xd1\x79\xed\x5f\x26\xaf\xb1\xf6\x52\x2c\x49\x16\x69\x8c\xb9\x63\xf2\x51\x37\xab\xf2\x00\x2a\x10\x66\x94\x4a\xd1\xc9\xa3\x17\xb3\xd1\xb9\x1c\xc0\x63\x8a\xb0\x03\x7e\x28\xc5\xf2\x43\x94\xa2\x93\xe6\x43\xa9\xfa\xe6\x65\x00\x80\xdb\x52\x9b\x84\xa0\xda\x2a\x8a\xc8\x91\x64\x0e\xd9\x76\xd5\x67\xbb\x0a\x59\x25\x05\xaf\x5d\xe5\xd6\xaf\xd0\xbf\x74\xb8\x29\x49\x55\xf0\xb7\x34\x2f\x4b\xc8\x62\x90\xe0\xeb\x0c\xbb\xca\x99\x6a\xeb\x46\xa2\x71\xe5\x97\xfe\x91\xb6\x6c\xc3\x66\x5d\x9d\x6e\x04\x2f\x4e\x89\x03\xf5\xd3\x8d\x39\x28\x94\x41\x5d\x49\xae\x54\xc6\x37\x47\xac\x81\xe5\x65\x5a\x90\x3f\xf9\x9f\x19\xf0\xa5\xd4\x89\x9b\x03\x2c\xa4\x64\xe7\x98\xb3\x0b\x23\xec\xff\xbd\xd4\xd3\x61\xeb\x6e\x03\x46\x26\xf0\x86\xdd\x2b\x37\xa7\x49\x22\x9d\x86\xbc\x0a\x81\x5f\xd7\xff\x77\x6e\x99\x6e\xae\x6c\xf6\xb0\x28\x0f\xcd\x51\x20\x0e\xa5\x70\xcd\xf4\x16\xcd\x1e\x30\x45\x37\x08\xcc\xdd\x46\x26\x4e\x52\xdc\xda\xee\xe2\xca\x26\x49\x49\x50\x2a\x5c\x41\xcc\x06\xf9\x59\x91\xc6\xb2\xf3\x1b\x4c\xbf\x2f\x1a\x24\xbf\x5b\x2c\xc5\x79\x2d\x3a\x0f\x7c\x8b\x0d\x01\xcc\x76\x99\x7e\x44\x2e\xeb\xb2\x4d\xb7\x2c\xa9\x91\x10\x3a\xd3\xb3\xac\x28\x75\xcb\x67\x1f\x28\x09\xb6\xe1\xc7\xec\xb0\x92\xfd\x44\xde\x41\x27\x74\x25\x44\x25\xb9\x52\xf6\x70\xfa\xee\xf3\x0a\x65\x5c\x5a\x5c\xe0\x41\x24\xd5\xcb\x08\x4e\xc1\xb6\x3d\x8e\xa3\xed\xbe\xf7\xa7\x16\x20\x7f\x7d\x0e\x54\x70\x80\xec\x43\x97\x52\x7f\xc9\x4f\xba\x3a\xc0\x82\xe4\xed\xb4\xda\xbe\x31\xaf\xb6\xfb\x18\xae\x36\x4a\x62\xd4\x55\x2a\x08\x01\xe1\x73\x58\x98\x66\xb6\x6b\xf5\xa4\x12\xd2\xea\x65\x10\xaf\x5e\x7e\x1b\x14\x53\xab\x3f\x8c\xce\x2b\x71\xde\x19\x8f\x2b\xae\x3c\x3a\x97\x81\x2e\x05\x35\x51\x5f\x3d\x2f\xe5\xdd\x0d\x0e\x70\xcd\x6d\x9e\x8f\x69\x6d\x55\x06\xc4\x46\x79\xef\xb8\x6b\x83\xfe\x2b\xf1\x11\xaa\x61\x2e\xbf\x91\xe3\x4f\x82\x14\x9d\xb8\xdf\x47\x9e\x04\x90\xb1\x58\xcc\x21\xf1\x85\xe4\xa7\xea\xab\x09\xcb\x25\x1d\xdc\x17\x3e\x3e\x69\x53\xfe\x1b\x02\x4c\x16\x05\x38\xa0\x28\x50\xe6\x38\xac\x09\xcb\x11\xac\x92\x5d\x8f\xf0\x31\x7a\x7f\x7c\x8b\x51\x52\x0b\xf5\xc5\x7b\x8b\x7b\x0c\xc7\xae\x54\x3f\x16\xb4\x7a\xab\x6d\xf6\x95\x16\x6b\x20\xdf\x32\xad\x59\xc3\x36\xb7\x88\x00\xb3\x39\xab\x69\x8b\x9d\xcd\xb1\xbb\x81\x7c\x57\xc9\xb0\xcb\xf0\x8d\xa7\x2d\xc6\x1b\xde\x9f\xc5\x9d\x8c\xa0\x05\xee\x82\xf3\x97\xd7\xa7\x4e\xf0\xc9\x97\x36\xa9\x2a\x88\xf2\xc1\xc2\xb3\x32\x71\x70\x5d\x1d\x0e\x1b\xa8\x8d\x6c\x08\x5c\xe9\xb9\x0b\x51\x79\x3d\xa6\xed\xd8\x6d\x88\x9d\x0f\xd9\xba\x8f\x16\x7f\x0e\xcf\xbf\x67\xce\x84\xe5\x34\xcd\xba\xc5\x45\x05\x14\xbc\xe2\x5c\x9e\xfb\xf1\xe9\xba\x89\x18\xb2\x01\x7f\x39\x2e\x80\xda\x25\x1b\xe7\xfb\x06\x81\xbf\xe4\x96\xab\x34\x8a\xdc\x16\x0e\x67\xff\x1d\x51\x9d\xae\x91\x27\x08\x26\x77\xd6\xbb\x9a\x33\xd3\xcf\xc1\x20\xf3\x22\xa2\xc6\x45\x51\x62\x78\xbb\x11\xe7\xd3\x0b\xd9\xd9\x55\x04\x55\xb8\xf7\xd1\x15\x2e\xb0\xc0\x00\xe2\x46\x41\xe3\x57\x4f\x3e\x10\xd8\xd5\x7b\x9f\x30\x0e\x5e\x2e\x20\x36\xf2\x02\xda\x23\xf8\xb5\x3d\x2d\xbd\xa9\x9a\xe7\xdc\xbd\x13\x9a\x24\x3d\xa4\x24\x0a\x55\x05\x8e\x6a\x40\xa4\x96\x29\xb8\x5e\xb9\x9a\x2f\x71\x5e\x8f\x36\xc5\x45\x7b\x73\x83\xf5\x12\xdd\x82\x49\xf9\xf3\x77\xbf\x04\x97\x77\xf9\xcf\x65\xd7\xad\xbd\x4e\xfc\x46\x5d\x51\x57\x3b\x57\xac\xe2\xe1\x4c\x3f\x97\x9d\x9c\x77\x93\x2b\x75\x83\x4e\xfe\x17\xda\x85\x79\x3c\x09\x64\x53\x51\x79\xfc\x0f\xb7\xd1\xe2\xa6\x3f\x9c\x24\x9e\x84\x23\xa7\x80\xa3\x0d\xa2\xc3\x8a\xfd\xd2\x32\x84\x6b\x00\xa7\x89\xff\x22\x20\xd4\x52\x6e\x3d\xdf\xac\xb7\xb4\xd8\x70\x86\x59\x23\xed\x2c\xb4\xb2\xa3\x30\x55\xd7\x3e\x4f\x92\x1a\xcd\xdb\xb5\x6b\x82\xbc\xaa\xc1\x3f\xd9\xbb\x26\xb6\xf4\xf6\x95\x4b\x78\x2f\x7b\x37\x76\x34\x78\xbf\x08\xca\xd9\x7e\x8e\x62\xef\xee\x12\xeb\x31\xdb\xf3\xc8\x28\xf0\x9e\x6b\x3c\x7d\xbe\x7c\x8c\xe9\x98\x7c\x1b\x4e\xce\xbe\x05\x81\x94\x14\x42\xc2\xfd\x41\xfa\x16\x90\xb9\x8a\xa9\x84\x1b\xca\x1a\xbe\x93\x21\x61\x41\x11\x40\x3b\x78\xe8\xcf\x14\x16\x78\xff\xee\x14\x16\x37\x8b\xae\xf3\x33\x73\xb4\x5b\x6f\x66\x19\xfb\x33\x45\xfe\xe8\x7b\xdf\x40\x77\xe2\x41\x16\x80\x6c\xa4\x4d\x00\xf5\x84\xa3\x05\xef\x4a\x84\xc4\x31\x66\x2c\x0c\xdd\x81\x74\x76\xc3\x97\x14\x70\xd3\x42\xa2\x8c\xd2\xff\xbb\x5d\x9a\x57\x67\xfe\xbf\xa7\x0a\xf3\x8b\x3b\x52\x97\x5a\xd9\x02\x63\xa2\x56\xf8\x31\xad\xe0\x2e\xf0\x40\xf9\x92\xe9\x45\x86\xdd\x97\x1c\x21\x5f\xf3\xfb\xa4\x1c\xef\x36\xe8\xed\xc7\x98\xc1\xa3\x8c\xab\xf0\x7c\xef\x42\x65\x8a\xa5\x2e\x0e\xac\x4a\x90\x4a\x54\xb9\x82\x2b\xca\x2a\x32\xd9\xb7\x4e\xa6\xaf\xd7\x8a\xa5\x8a\xaf\x0c\x32\x14\x0b\x66\x13\x77\x8a\x5b\xc6\x30\xd8\xad\x88\xf0\xbb\xcd\x06\x2e\xa9\xbb\xcd\xd8\xc4\x05\x09\x11\x6e\xc5\x92\xee\xcc\xd6\xd3\x5b\x97\x17\x4a\x19\x32\x88\x7d\x3e\xe3\x48\x04\x92\xe0\x40\xfc\xdc\xa8\xec\xae\x3b\xc6\x4d\x92\x8d\x5e\x63\x4d\xde\xd3\xf5\x98\x3e\xbb\xb2\x05\x72\x66\xe2\x75\x17\x0b\xe9\xae\x4f\xe7\x24\x4a\x8c\x2f\x16\xe1\x6a\xdd\x05\x5d\x54\x45\x7b\xf5\x39\x06\x78\x27\xb1\x24\xc7\xcd\x62\x84\xdb\x87\x45\x03\x01\x5f\x3d\x9f\x38\x24\xa5\xbe\xc8\xed\xb1\x95\x63\xda\x0f\x71\x55\xd9\x0f\xeb\x15\x21\xb9\x85\x4b\x65\x3f\xfa\xbe\x81\xd4\x16\x9a\xa0\x22\x10\x98\xab\x7c\xc8\x80\x08\x70\xfe\x18\xbf\xd9\xa9\x03\x58\x20\xe6\x76\x7e\xa3\x37\xca\x2c\x41\x0c\x22\xd8\xa8\x07\xdb\xa1\xbf\x08\x36\x56\xcc\xfa\xdf\x6c\x01\x3f\x1f\xa6\xdf\xa2\x7a\x48\xf5\xec\x9e\xdf\x95\xb2\x3d\x74\x65\xc3\xdd\x4e\x21\x16\xde\xc2\x5c\xcf\x14\xd9\xcb\xf1\x09\x7f\x6b\xbb\x43\x1e\xdf\xd0\x17\x94\xe8\xad\xf6\x54\xf4\x37\x85\xa2\x8a\xde\xad\xea\x79\x11\x83\x75\x19\x65\xdc\x35\x67\x3f\x5f\x15\xfa\xd0\xf1\xfa\xff\x10\x8d\xc1\x3f\x32\xf2\x07\xf1\xb0\x25\xb3\x1d\x0b\x33\x7d\x58\x16\x13\x69\x16\xf3\x44\x9e\x6a\x5c\x7d\x2c\x18\xa9\xc4\xab\xd9\x29\x72\x7d\x21\xef\x69\x91\xf3\xfd\x4e\x19\xb9\x51\xc4\xb8\xc0\x94\x02\x11\x24\x5e\x2a\x00\x83\x0e\xe4\x47\x4d\x14\x4f\x99\x96\xee\x48\x8a\x61\xd8\xa7\x3c\x65\xf8\x9b\x82\x82\x4a\x9a\x09\xef\xa8\x8b\xb6\x1a\x0c\x9f\xd4\xbe\xc3\xe5\xeb\x01\xa5\x71\xa2\x82\xa5\x25\x51\x51\x37\xc6\x10\xc3\x59\xf9\x42\x92\x7c\x22\x71\xff\xbd\x68\x98\x60\xb2\x04\x24\xd4\xec\xc4\x0b\x9d\xa9\x0a\x16\xd1\x23\xf5\xbf\xdc\x12\x19\x95\x05\x3e\x0a\xdc\xb9\xdd\xd3\xe6\x56\xc1\x23\xa8\xf0\xd8\x9e\xe0\xdf\x28\xde\x43\x09\x5b\x30\x3a\xfa\xcb\x46\x99\xb0\xa6\x7e\xd9\x22\x0f\x16\x74\xd6\x16\x03\x96\x6e\x1c\x1b\xcf\xc5\x5e\xb5\x66\x43\x5d\x70\xd5\xa2\x81\x3e\x8d\xda\xfc\x66\xef\x5b\x12\x02\xe1\x95\xb8\x5c\xd3\x99\xd3\x86\x95\x58\xc8\x8b\x46\x07\x70\x82\xe0\x96\x1c\x8b\x84\x23\xf2\xcc\x53\x80\xa1\x82\x89\x17\x85\xe4\xf3\x14\xae\x97\xe0\xef\xa0\x59\x16\xe5\x68\x74\x91\xf4\x5e\x68\x3b\x18\x02\xb1\x0b\xe8\x75\xe4\x90\x81\x3c\x6a\x95\xc3\xf9\xe2\xe1\x23\x85\x67\x51\x9a\xaf\x6f\x87\x13\x7a\xf2\x6d\x9f\x59\x2c\x1d\x0f\xd7\xa0\x79\x4a\xbe\xd5\x73\xf5\xf5\x17\x8f\x92\x14\x01\xed\xdd\x77\xca\x14\xfd\xa1\x7e\x68\x4c\xaa\x79\x8c\x49\x31\x28\x24\x24\xcd\xe6\xe3\x92\x77\xd8\x04\x87\xd3\x22\x46\xff\xe9\xc1\xa8\x0b\x34\x2f\x8e\x29\x53\x1f\xb7\x99\x77\x44\xd9\x0e\xe0\x74\x9d\xb2\x35\xde\x85\xbe\x77\x9d\xa1\x48\x88\xd5\xcf\xfd\xd8\xc5\x16\xde\x19\xb1\x64\xa4\x6c\x3d\xa5\x32\x2a\xbb\x0d\xa5\xe6\xa6\x7b\x8c\x3d\xb5\xe2\x60\x31\x23\xe0\xf3\x96\x1c\xf7\x33\x2e\x57\xe1\x03\x73\xf4\x0d\x58\xfd\x29\xc7\x44\xeb\x08\x87\x17\x90\x40\x10\x3a\x50\xbe\x27\xe3\x12\x83\xd6\xaa\x3d\x3b\x1b\xfb\xa4\x6c\x58\x6d\xb6\x70\x82\x4d\xad\x63\xb7\x7e\x69\x19\xde\x0d\xa9\x55\x01\x07\x99\xf1\xbb\x9c\xae\x18\xa8\x54\xeb\xad\x86\x11\x74\xa1\x55\xbe\x77\x06\xca\x34\xe0\x94\xa5\x6e\x4d\x74\x12\x77\xcc\xe4\x3e\x3b\x04\x73\x65\x04\xd6\x0f\x34\xdb\x5b\x1e\x41\x66\xa9\xcd\x22\x5b\x67\x5b\x9c\xc4\xfe\x66\x7b\xb7\x38\xeb\xf7\x2d\x2e\xc2\x17\xfe\x1e\x77\x0a\x65\x9b\xb8\xc3\xf0\x8e\x80\x73\xcd\xf1\xe0\xcb\xc9\x2f\x12\xf1\x4b\xaa\xac\x41\xd3\x7a\xd1\x46\xd0\x9f\xed\xac\x88\xae\xfe\xf7\x96\x5d\x95\x10\x92\x67\x9a\x01\x63\x46\xc6\xd0\x82\x08\x67\x63\x34\x99\x64\xa1\x85\xd7\xe0\xd8\xfd\xe8\x9f\x69\x51\x0f\x86\x67\xe2\x75\x21\x68\x58\x6c\x99\x8a\xec\x54\x3b\x14\x98\x94\x55\x3b\x74\xa1\xe0\x87\x60\xaf\x65\x92\x4c\x40\x20\xe2\xa6\x7b\x47\x31\x92\xdb\xce\x6c\xb1\x63\xf7\x5f\x49\x84\xe0\x22\xb1\xd3\xf0\x58\xbc\x52\x2d\xdf\x8e\xe9\xd9\x1c\x62\xc4\x28\xb6\x27\x1b\x32\xd9\x56\xd1\xed\x08\x1d\x91\x11\xd3\x28\xa8\x51\xb1\x5d\x9b\x55\xac\xbf\x49\x44\xfa\xf7\x2e\x7e\x45\xf3\x59\xa3\x1c\x6e\x99\x56\xd9\x06\x60\x08\x51\xa6\xe2\xa4\x16\x68\x5c\x30\x14\x1a\x98\x60\x49\x16\xda\x62\x53\x95\x7a\xf3\x66\xc3\x5b\x2b\xfa\xba\x16\x6e\x11\xb3\xee\xb3\x7b\xd9\x26\x38\x85\x61\x3c\x3f\xbb\xd8\xb8\xeb\x5d\x39\xd2\x06\xa0\x20\x49\x1d\x3a\x0a\x49\x9c\x69\x86\xd8\xc9\x2d\x7d\x32\x3c\x47\x1f\x45\xc7\x50\xa0\xcb\x28\x30\x48\x1f\x53\x89\xe2\x2c\xa7\x63\xbe\x20\x9f\xf6\xf1\x3e\x11\x23\x70\x07\xb3\xa6\x67\xac\xe7\x5a\x85\xd0\x05\x15\xca\x46\x18\xc3\xa9\x76\x08\x31\x9c\x95\x92\x36\xe6\x59\xf9\xd3\x33\xfb\x01\xf4\x5b\xaf\x79\x0c\x3d\x96\x62\x6e\x89\xb9\xfb\x54\x95\x9e\x7c\x43\x08\x24\x71\x89\xe0\x36\x4b\xa5\xf5\x82\x34\x51\x2a\x39\x59\xec\x9e\x2b\x79\xb0\x7a\xc8\x13\xa7\x89\xef\xd2\x76\xf8\xa8\x16\x46\x5e\x48\x9a\x7c\xfc\x2a\xba\x20\xdc\xb8\x57\x90\xbe\x4c\x22\x39\xab\x3d\xf7\x8b\x32\x3c\x04\x91\x60\xae\x57\x4a\x8d\xce\x6c\xc3\xbb\xb5\xd4\x78\xb7\xc9\x25\x81\x01\xa4\x0c\x87\x86\xd2\xe6\x11\xc2\x06\xa8\xf6\x2c\x84\x67\x69\x57\xc8\x96\x67\xfe\x92\xad\x0f\xc1\xe7\x76\x73\x53\x69\xfe\x26\x8e\x53\xcf\x88\x40\xc2\x11\xc0\x8c\x56\x0c\xc6\x94\x5a\xee\xfc\x57\xb8\x56\x01\xb0\x17\xb3\x98\xc7\x4a\x3b\xcf\x38\xbb\xa9\x34\x41\x66\xd7\xc9\xf1\x97\xac\x89\xe5\xd8\xc5\xe5\xe3\x4a\x0c\xdc\x8d\x72\x88\x41\xf4\x3b\x6a\xc0\xc6\x97\x43\xe1\x88\x98\xb8\x6b\x4e\x81\xda\xf7\x9b\x4a\xa1\x07\xcd\x7d\xa5\xb2\xcb\x02\x54\xa9\x81\xbd\x39\xd3\x9b\x83\xea\x3e\x82\xbd\x82\x60\x98\xeb\x31\xde\xee\x56\x83\xaf\xad\xf7\x4d\xe7\xf2\xee\xae\x3b\xb4\xfe\x63\x3a\xa4\x7a\x47\xe5\x93\x7c\x0a\x17\xa2\x24\x1e\x51\x97\xf6\xb0\x08\xb7\x0a\xe0\x74\x3f\x00\xd4\xe5\xbf\xde\x7b\x42\x7a\x3c\x42\xa6\x2e\x44\x4b\xe2\x2b\x41\x26\x1f\xc4\x05\xae\x7c\x58\x44\x41\x76\xb6\x90\x2b\x88\x06\xd1\x63\x06\xad\x71\x58\xdc\x67\x9b\xe5\xd1\xa2\x85\x58\x18\x00\xd5\x3f\xc8\x2b\x11\x3a\x00\xfa\xa5\x0c\x31\xbc\x6b\x8a\x03\xd7\x5d\x02\xd8\x81\xe3\x0c\xa5\x80\x98\x7a\xab\x43\x07\x7f\x75\x7b\xe4\xcd\x7c\xaa\x2e\x84\x63\xaa\xea\x5c\xf5\xbf\x96\x02\xeb\x2e\xa6\x5d\xaf\x15\x05\x06\x8e\x69\x2c\x36\x35\xea\x5c\xaa\x31\x77\xad\x50\xe5\xf9\x82\xbe\x89\x3c\x9d\x75\x89\xae\xb1\xba\x14\x11\xe0\x7c\x01\x41\xf9\xff\x21\xab\x1d\x34\x2f\xbb\xb5\xe5\x59\x53\x54\xed\xc8\x02\x06\x36\xbe\xd3\x56\x01\x31\x31\x5d\xfe\x19\x9c\x02\x34\x0e\x6f\xa0\x16\x5c\xbc\x77\x0a\xdf\xeb\x2c\x93\xeb\x38\x95\x32\x9b\x5b\xee\x3e\x7a\x2c\x94\x61\x85\x6f\x62\xb4\xe1\xb1\xd7\x4a\xbb\x65\x64\x63\xe4\x93\xef\xbc\xd0\xdf\xc9\x34\x39\xe1\x4e\x2b\xea\x7e\xf8\xec\x52\x8a\xcc\xad\x57\x01\xb3\x43\xa2\x0b\xf2\x56\x9c\xed\xb3\x82\xe9\xdd\x11\xe7\x1f\x98\xb3\x01\xc6\x1b\x76\x82\x7f\xf1\x25\x06\x56\x1b\x5f\xea\xaa\xfe\xd2\x3c\xb1\x67\x21\xab\xd4\xdd\x51\x27\xe6\xa1\xa4\xbf\x3b\x75\x37\xba\x3b\x63\x43\x10\x6a\x55\x27\xa6\xbb\xcb\x12\xe5\x76\x77\x55\x7c\x14\x4f\x02\x6a\x1e\xf9\x75\x60\x0a\x75\xfa\x9d\xe9\x5f\x35\x43\x29\xd5\xcd\xc2\xd0\xa4\xa3\x71\x58\x1a\xe5\x20\x44\x5f\x8a\xff\x4e\x1c\x2a\x47\xd4\x6d\x17\xe0\x51\x7b\x77\xe8\xb8\x00\xb4\xb8\xef\x6b\x5d\x9d\xcd\x74\xb7\xcc\x8b\x22\x31\x1a\xd9\x21\x74\x67\x90\x40\x63\x84\xca\x69\xf2\x03\x5d\xef\x99\x62\x26\x1f\x9a\xbf\x9e\x12\xc1\x53\x72\x0b\x89\xfa\xcc\x15\x8d\x2f\x7a\x4f\xa7\x2c\xaa\x32\xd9\x00\x3e\xb9\x10\xa0\x82\xf2\x31\xac\x23\x82\x82\x39\x79\xc9\x88\x92\xbb\xc6\x4d\x4c\x98\xbd\x38\x7a\x72\x41\x50\x2a\xb4\x09\xed\x96\xc9\x1f\xa5\x6b\xf3\x06\xb5\xd3\x3a\x74\x20\x54\xf7\xa8\x1b\xb3\x44\x7a\xce\x1d\xb5\x86\x59\xa2\x30\xed\xb4\xef\x24\x42\xb5\x2b\x50\xe8\x65\x9b\xaa\xf8\xab\x92\xe7\xf1\x79\x6b\xa1\x17\xba\xfd\x33\x19\x81\xca\x76\x83\x1d\x5e\x05\x31\x7c\xec\x13\x45\x4d\xbd\xef\x55\x48\x2e\x3d\x0e\xcf\x9d\xed\x40\xcf\x3e\xab\x2c\xc0\x32\x9b\x09\x0b\xad\x22\x7c\xfe\xd9\x68\xc9\xdd\xae\x50\x6d\xcd\x1a\x7e\x0d\xb2\xcb\x9a\x40\xa8\x92\x43\xa2\x19\x64\xb0\x51\x7d\x91\xc4\xaa\x79\x55\x81\x43\xa7\x15\x17\x9b\x51\xcb\x16\x79\x25\x95\xc7\x60\x0e\x7d\x69\x60\xe0\xf1\x21\x3b\xc7\x7f\xad\x50\xd2\xf5\x1d\x99\x6d\xb4\xfc\x4b\xd1\x7c\xa0\x3c\xbd\x0b\xf8\x98\x1d\x8b\x05\x4e\x52\x93\xcc\xee\x04\x91\x9d\x5d\xd1\x30\x09\xa5\x70\x70\x89\xe2\xa6\x31\x77\x50\x94\x19\x71\x81\x5d\x90\x1c\x50\xbe\xbd\x84\xde\x54\x48\x4c\x8b\x21\x68\x0a\x8c\x02\xec\x74\x34\xa8\xce\x2a\xa5\x0d\x96\x3f\x4d\x6e\x09\x99\xf1\x02\xa1\xf4\xae\x72\x6f\x1e\x4a\xd8\x6f\xd1\x8b\xa5\xe6\xde\xfc\x9d\xf2\x64\xbc\x13\x25\xe2\x25\x8e\xa4\x75\xbe\xc7\x18\xf8\x9a\xb1\x34\xec\x95\x3f\x14\xc4\x08\x30\x8d\x42\x16\xb7\xee\xe0\x97\x7b\x89\xa0\x29\x73\x96\x1d\x6c\x63\x8e\xe2\xaa\x98\x25\xef\x13\x26\x57\x57\x54\x85\x4b\xcd\x89\x8f\xe5\xa8\x83\x57\xbe\xd4\x2f\xe4\x9c\x31\xac\xb5\x80\x5f\x05\x99\xc9\x10\x0c\xd3\x4f\xd4\x8c\x04\x13\x0d\x1b\x52\x37\x33\xa0\x8c\xa7\xa7\x19\x89\xc3\x93\x3a\xa4\x5d\xfc\xab\xd4\xbb\x52\xa3\x15\xfe\x52\xc6\x16\x90\x75\xb7\x03\xfb\x6a\xc3\xfb\x61\xa9\x8d\xdc\x1e\xf3\x64\x8e\x94\x5d\x70\xcb\xb4\x38\x51\x57\x0c\x95\x2e\x20\xfd\x7a\x05\x80\x1c\x8a\x18\xde\xa9\x1f\x62\x40\x0c\xf1\xf4\x83\x68\x01\x17\xf8\x15\xdf\x7c\x54\x5b\x36\x0a\x57\x4c\xb7\xa4\x07\x92\x7d\x72\xa0\x82\x2b\x91\x0f\x5e\x08\x74\x87\xf1\x12\x0a\xeb\xd5\xf3\x7f\x25\x6d\x80\x16\x65\xd4\xb0\xce\x8e\xda\x2a\xea\xdd\x9f\x14\x83\x62\x3d\x76\xf5\xc0\x59\x0f\x08\xb2\x1e\xbd\x66\x93\x2b\x12\x27\xc4\xdc\x0e\xec\x9b\x6a\xf3\x3c\x97\x95\x8d\xec\xde\x39\xc8\xad\x89\xfb\x81\xd9\x8e\xe1\xd8\xbc\x1d\x1e\x82\xa4\x10\xb2\xfb\x3b\xf9\x4e\xce\x6c\xb1\xd7\x0b\xa9\xca\x05\xb1\xd7\x3d\x33\x1d\x9c\x0a\x3b\x32\x92\x83\xdd\xa5\x17\x7f\xb4\x55\x21\x3c\x33\x76\x7b\x08\xf7\x22\x4c\x37\x9f\xb6\xa6\xa6\xf8\x9d\x58\x7e\x38\x4b\x5e\xc5\x45\x0a\x57\x3e\xb6\x5a\x04\x1b\xdd\x3b\x13\x2a\x57\x5d\x0e\x12\xbc\x86\x15\x38\x52\x1a\x34\x33\x02\x66\x8c\x2a\xe3\x47\xe5\xd7\xa8\x4a\x8e\xe8\x8f\xa1\x93\xea\x74\xd7\x2f\xa9\x7a\x43\xdc\x0d\x53\xc3\xa2\x7d\x69\xf7\x08\x78\x90\x5f\x58\x12\xbb\x96\x51\x66\x85\xd0\xaa\x55\xcc\x51\x88\x28\xca\x99\x5e\x78\xdd\xc6\x2e\xd4\x16\x83\x2a\xfd\xae\x84\x28\x14\x9d\x8f\x45\x3c\xa6\x7e\x8f\xad\x14\x4b\x2c\xf6\x26\x58\xc7\xe4\x2e\x65\x58\xfe\x34\x0b\x60\xb8\x89\x7d\x86\x2f\xbf\x4a\xc0\xa8\xc9\x6a\xa9\x46\x6c\x30\xe4\x98\xb4\xd9\x10\x77\xf0\xc5\xb6\xf5\x98\x0d\xdb\x5e\x28\x1f\x51\xd5\x47\x27\xdd\x5d\xab\x12\x7f\x21\x21\x7a\xac\xa8\x2c\x11\x5c\x6f\x59\xb0\x83\x48\x45\xc8\x84\x88\xad\xae\xb8\x84\x8f\x7c\xb0\x17\xc2\x75\x31\x0f\x32\x12\x97\xc8\x69\x2b\x76\x13\xe4\x94\x82\x4c\xd7\x24\xf1\xc0\xfb\x12\x50\xb9\x48\x66\x06\x95\xbf\x26\xbd\xde\xc5\xdd\x50\x0b\x89\x53\xd0\x31\xfe\xd9\x7a\x0a\xa2\x45\xda\xad\x17\x24\xf3\x18\x3a\x0f\xb6\x23\x2c\x56\x7f\x11\x0b\x25\x26\x14\xa6\xc4\xeb\x42\x1b\xe5\xfc\x9a\x11\xa6\x55\xa5\x62\xa3\x98\x70\x98\x50\x27\xd4\xdd\x42\xd8\x2e\x6a\xed\xa9\xa4\x59\xec\xc5\xb4\x83\xd3\x60\xf9\x11\x0b\xd6\xdf\x50\x25\x0a\xc8\x3a\x0e\x2d\x71\x56\xa5\x0f\xff\x01\x7f\xfa\x9d\x7b\x07\xa3\x79\x6f\x23\xe2\x65\x6f\x3c\x47\xfd\xb4\x8b\x08\xb9\x37\xbd\x3f\x97\xa7\x63\xd5\xab\x60\x46\xa5\xae\x51\x4c\xd9\x8d\x2a\x16\xa0\xf3\x4f\x9b\x3b\x49\x26\x36\x0d\xd1\x84\xc7\xdd\x31\xad\x2c\x45\x83\xda\x08\x0c\x79\x34\x88\x22\xb7\x0b\x98\x0c\xdf\xe1\x7b\x7b\x31\xc4\xf0\xb9\x93\xcc\x6b\x76\x49\xb9\xc7\x6a\x17\xdb\xfd\xf0\x80\x08\x86\xd5\x34\xef\x34\x5c\xe2\xba\x47\xa4\x86\x71\xdb\x04\x3b\x89\x0c\xc8\x28\xd4\xc8\x92\x75\x77\xc6\x0d\x8f\xe3\x55\x62\xdb\x3a\x16\x7e\x57\x00\x0e\x02\xdb\xdf\xa8\x01\x86\x74\xd4\x24\x41\xee\xbb\x1a\x90\x8a\xdc\xf2\x3e\x79\x6e\xff\x53\x95\xa9\x73\xcb\xde\x96\x3f\x1b\x0b\x32\xa5\x07\x8c\x8e\x98\x03\x78\x27\x9e\xd5\x4d\x17\x65\x09\x62\xe1\x42\xd7\x21\xa4\x03\x2d\x75\xfa\x4c\xf9\x95\xcb\xc7\xe8\xcb\x66\xef\xee\x65\x32\xad\xa7\x4a\x5c\x44\x88\x35\xad\xc7\x6f\xf3\x7c\xd5\x46\x1b\xcc\x01\xa4\x3b\x60\x24\xc2\x57\x2f\x2c\x5d\xb1\xb4\x1d\xa9\x1f\xd7\x49\x4d\x46\xb6\xfa\xc3\xd8\x5e\xb9\x47\x2f\x56\x7c\xa4\x2a\x94\xe3\xd5\xfb\x6d\x58\x91\xf3\x20\xe3\xf8\xab\x07\xc2\x0a\x15\xb5\x8f\xb4\xf6\xee\xa8\x78\xb9\x0e\x06\xa1\xfe\xeb\xc9\x64\x48\x56\xdf\x13\x18\x79\xa7\x76\x7d\x17\xaf\xc7\xd7\xf7\x3c\x4d\xa2\x44\x7e\xfa\x62\x7d\x4c\x31\xe8\xec\x4f\x6d\xc6\x56\x92\xe1\x98\xa4\x06\xf7\xae\x99\x91\x7d\xd7\xc7\xf2\xce\xbc\xb8\xfa\x58\x6b\x2f\x25\x7f\xe4\x69\xd1\xb7\xaf\xce\x88\x08\xa5\x3e\x6b\x46\xbc\xb3\x5c\xed\x65\xe4\xe9\x08\x76\x40\x30\x3c\xfc\xb8\xb0\x50\xd7\x5b\xbd\x1d\xe2\x47\xd9\x82\xeb\x0b\x9d\x0c\xc6\x4b\x4d\x87\x8c\x10\xb1\xbc\x58\x6f\x6b\x77\xea\x18\xff\x22\x94\x92\xbf\xb4\x11\xd3\x99\x6d\x7d\xc3\x16\x12\x26\x31\x90\x6a\x24\x14\xfa\x3c\x3d\x6d\x62\x4b\xbf\x52\x2d\x8f\xbc\x3d\x2d\x77\x3f\xcf\x44\x59\xbe\xeb\xcd\xe1\xa2\x1a\x64\x43\x12\xad\xbd\x33\x37\x05\x0a\x39\xa1\x76\xdd\x73\x95\x2c\x6d\x56\x6a\x18\x5a\x4a\x9b\x4f\xa3\x4b\xd4\x98\x08\x70\xf9\xb8\xc9\xd3\x85\xbe\xb6\xab\x1b\x06\x98\x5c\x25\x7b\x99\xca\x61\xb6\x58\xec\x2b\xb8\x6d\xfb\x4a\x5d\x5a\xd7\x26\x13\x9d\x0c\x4b\x59\x35\xb5\xe0\x4e\xf7\xf6\x6e\x7b\x82\x80\x8d\x8a\xe5\x2d\x55\xf6\x3f\xe8\x2d\x07\x9d\xd7\xa1\xe3\xed\x74\x4c\x1b\x4b\x2b\xfc\x6a\x17\x12\x7b\xc2\x3b\x17\xa5\x81\xad\xc5\x87\x88\xf3\x4a\x34\x16\xeb\x07\xd6\x92\x5e\x69\xb9\xf0\x63\x75\xcf\x1d\x31\xad\xb3\x5c\xc7\x9b\xca\x30\x31\x5e\xc8\xb7\x38\xc6\xe8\x85\x4c\xfc\x05\xff\x5a\xc7\xb2\x19\xea\xa5\x00\xfe\x6e\x85\x17\x93\xa2\x4c\x6a\x71\xc3\x60\xfb\xa3\xdd\x6d\x70\xde\x0a\xcc\x25\xb3\xcf\x9d\x43\xb0\xfc\x9d\x79\x11\xeb\xaa\x04\x48\xd0\xf9\xc0\x98\x51\x2b\x00\xf3\xfe\xef\x6a\x7b\xac\x31\x03\x63\x3d\x0d\x03\x99\xf5\x77\x9e\x4f\x08\x25\xf1\xd3\xdc\x0c\xd8\x96\xcf\x54\xd4\xa9\x45\x4a\xae\x67\xbd\x0f\x96\xb9\xdd\xad\x43\x57\xb3\x07\xe5\x6b\x12\x65\x67\x6b\xd7\x7a\x93\xa4\xe5\x81\x38\x0e\x46\x32\x9a\x33\x08\x4e\xbc\xe1\x79\x59\xd1\x50\x88\x0b\x49\x7d\x2c\x9f\xc4\xbb\xa8\x09\x26\x70\x3f\x4d\x3a\x73\x86\x95\x8c\x7c\x7e\x26\xae\x41\x7c\x43\x74\x4f\x3b\xdd\x64\x7b\xa2\x24\xc1\xdd\x3b\x41\x11\xaa\xf5\xea\x2f\x62\x8d\xf1\xbc\x8a\x15\xe5\x1b\xb3\xb3\xa5\xfa\x63\x2a\x64\x6c\x16\x8c\xb9\x1d\xc2\xed\xf9\x7b\x69\x51\x0b\xd0\xec\x4e\x5a\xd6\x8c\x6b\xd5\xe6\xb3\xba\xf3\x65\x3b\x44\xb7\xc9\x17\x58\x27\xb8\x14\x9d\x35\xf7\x97\xda\xc5\x03\x1e\xc7\x5e\xee\x51\xa2\x38\xf1\x33\xa1\xd8\xe4\x72\x01\x89\xea\x01\x7d\x72\x55\x5c\x4b\xc7\xc8\x03\xd0\x0f\x6a\x46\x64\x01\x21\x58\x76\x68\x26\x9e\x1b\x22\xd7\x52\xcb\x0d\x2a\x42\xae\x68\x9b\x03\xf6\x79\xc7\x64\x5b\x44\x9c\x1f\xaf\x18\x68\x55\xa3\x93\xe6\x85\x8f\x18\xb6\x92\xd9\x13\x5c\x2b\x2f\xc0\x4c\x74\xe5\xd4\x8f\x3e\x42\x57\xcb\x72\x18\xf0\xfe\x82\x94\xe2\x31\xa3\x31\xf6\x08\xe4\x7e\xb3\x61\x5a\x4f\x7f\x48\x59\x93\xde\xd7\xba\xbb\xef\xfb\x9a\xc8\xe5\x7a\xe0\x72\xc1\xdc\xb2\x17\x9e\xee\x24\xeb\x76\xc1\xc3\x51\xb0\xa6\x0b\x0f\x6e\xe3\xf7\x8d\x26\xee\xa9\x0d\xb3\x34\xd5\xcd\x2b\x8c\x0b\xa2\x16\x94\x85\x5d\x6d\x3c\xc5\x15\xd1\x95\x77\xef\x5a\x71\x3b\x2e\x6a\x18\x74\x3d\x0e\x0b\x33\x18\x7c\xe1\x70\x8b\xc6\xa6\xf1\xfe\xc5\xa5\x09\x8b\xe2\x68\xa2\xbb\x1b\xc1\x62\xef\x63\x65\xac\xc0\x3f\x37\xd3\x5d\x12\x2f\x46\x68\x09\xdf\xee\x7d\x23\xbb\x72\xaf\xc5\x5c\xb7\x51\xe1\xd9\x34\x68\x66\x74\x3a\xd4\x48\xb9\xb8\x5a\x95\xc3\x0f\x88\x82\x60\xcd\xb0\x37\x7b\x57\xb7\x4e\xeb\x5a\x2b\xa2\xc6\xe6\xc6\x31\xe2\xfe\x52\x35\x78\xfc\x52\x1b\x4c\x02\xbf\xa5\x63\x69\x5c\x0d\x8a\x8a\xe3\xab\x55\x1e\x7b\x81\xb0\x26\xf0\x7b\xc5\x64\xaf\xaf\xa9\x55\xde\x1d\xdc\x1a\xc3\xe9\x4f\x42\x79\xa7\xcb\x30\xe0\x6d\xfa\xfd\xf8\xd2\x65\x39\x86\xef\xda\x63\x0f\x35\x1b\x0d\xfd\x9a\x52\xc1\xd2\x2c\xf4\x75\xe3\x7a\xb7\x89\xf1\x67\x1c\x6b\xe2\xdd\x9d\x1d\x39\xf0\x47\xfa\x68\x03\xdb\x2b\x42\xd2\xc9\x9d\xd8\x10\x25\x00\x63\xd4\x97\xee\xc5\xc0\xe4\xa9\xc8\xc0\x97\xec\xfe\x0d\x7c\x5d\xa5\xd5\xd7\x49\xaf\xfb\xda\x9b\x31\x9d\xd5\x39\x7e\x50\x47\xb8\x4c\x97\xf5\xd8\x83\xca\xd7\xa3\xd6\x8d\xb7\xe2\x51\x2e\xd7\x8c\x73\xa9\xfa\x4d\xf9\x5d\xc7\x38\x49\x1a\x13\x24\x1f\x58\x6a\x7f\x93\xa0\x04\xba\xab\x33\x28\x8b\xc7\x71\x72\x79\x04\x88\xf5\xcc\xd8\xe2\xd2\xa7\xfa\xb2\xec\x76\x77\xf2\x99\xa7\xaa\x16\x4e\xe1\x70\x51\xc3\x1c\xbf\xd0\x57\x67\xae\xe4\x7a\xa0\xe6\x8d\x0a\x34\xbc\x4f\x02\xa0\x62\xc4\x8b\xe2\x6f\x7e\x7f\xb1\xdf\x5c\xd9\xa6\x5f\xda\x42\xfc\x2c\x77\x95\xc9\x10\x4a\xf3\x57\x5a\xe4\xd1\x56\xbc\xdb\xa7\x8f\x2e\x2c\x6d\xfa\xb8\xc7\xb0\x4e\x8f\x6d\x59\x36\xd8\x9d\x4d\xf3\x49\xb6\x36\xcd\x70\x22\xb0\x04\x31\xdc\x1a\x1c\xa7\x9e\x37\x17\x6a\x9c\x7e\x8d\x2f\x2f\x34\x3d\x6f\x6d\xa3\xe9\x77\x16\x94\x6f\x22\x66\xff\x42\x2e\x4c\x5f\xc5\x0d\x55\x8b\x6a\x5f\xb1\x45\x7e\x25\x89\x26\x1b\x11\x7b\x3d\x12\xab\xd7\x1f\xee\xb6\xb0\x74\xfe\xdf\x98\x23\x69\x48\xd3\x99\xa9\x18\xe9\x4d\x24\x68\x6b\x8b\xf9\x22\xe8\x8d\x40\xf0\x87\x2e\x7c\x0f\xe2\xe7\x00\xb9\x5d\x0b\xcd\xbe\xa0\x66\xed\xbf\x26\xfa\xbc\x24\x02\xbd\x90\x83\x2f\x71\x79\x90\xa4\xbe\xd3\xa2\x15\x86\x5b\x89\x00\x8d\x74\x35\x7d\xa6\x79\x76\x1d\x01\x4c\xe0\x7a\x86\x93\x87\x5b\x06\xb0\x4c\x21\x73\x1a\x74\xc5\x7e\xb4\xe0\x37\x01\xa8\x96\xa9\x10\x99\x4d\x11\xb7\xd2\x20\x40\x1b\xef\x08\x09\x1b\x33\x94\x93\x50\xdd\x71\xae\x93\x71\xe1\x8b\x19\xf5\x4b\xd3\xb4\x4d\x93\xa8\x9b\xd5\x1c\xd8\xad\x82\x55\x7c\xf4\xc0\x5e\xf4\x0a\xcc\xb8\xc2\x03\x68\x24\x32\x17\xb1\x2b\xb4\x79\xc3\xec\xd2\xcf\xe2\x3a\x55\x8e\x20\xda\x85\xc5\x76\x2c\x62\xf8\x58\x4f\x3e\xce\x94\xf1\x8b\x34\xe2\x8b\x7a\x66\x6e\x31\xef\x8a\xb9\x38\x82\x3e\x98\xaf\x54\x78\x1c\x51\xeb\x87\xa1\xe0\x0f\x5d\xa8\x3d\x21\x29\x24\x13\xab\xf8\xb7\x74\xd1\x0a\x08\xd0\xc7\x44\x8b\xe8\xa7\x14\x6d\x37\xcf\x62\x95\xc9\x49\x74\xae\xb3\x3b\x69\x6c\xff\xa3\x36\xb4\x8c\xfa\x5f\x4e\x5b\x1c\x2a\x3e\xe3\xd5\x71\x78\xcb\x70\x94\x74\xe1\xe6\xc0\x22\x0a\x7b\xde\x7d\x4e\x5d\x58\x54\x9e\x01\x25\x21\xce\xf9\xa2\xfc\xa1\x6e\xee\x56\x3d\xc2\x19\x88\x91\x9b\xb8\x11\x65\xa7\xf3\x11\x16\x21\x05\x34\x0b\xd4\x01\x4d\x03\x25\x59\x86\xf2\x66\xfb\x92\x32\x38\xda\xec\x92\x7c\xef\xcf\x94\x05\x09\x19\x46\x5b\x77\xf2\x32\xa7\xd8\x9d\xe3\x1c\xa5\x54\x0d\x11\x0f\x2b\x89\x34\xb6\xaf\x89\x42\xb7\x32\xd9\x57\x5e\xc3\xbb\x6e\xe7\x35\x29\x2a\xe6\x0d\x4e\xcc\xdc\x54\xcf\x8d\xe3\x1d\xfd\x2a\x81\x64\x1d\xf1\x89\x27\xec\x4d\xa6\x29\xb4\x9a\x3d\xdd\xe5\x7a\xa1\x79\x6d\x1c\x0c\xd6\x76\xf8\x51\xb1\x81\xf7\xab\xd0\x9f\xe2\x5d\x6d\xb7\xd8\x6e\xc6\x6a\x3f\x16\xf0\x9a\x69\x56\x7e\xb6\x66\x32\x9b\x95\x36\x73\xa6\xe6\x53\x2d\x49\xcf\xd8\xd7\xcf\x52\xf3\x52\x0f\x82\xad\xc7\x9e\x44\xd6\xfb\x8e\xd0\x0d\x4e\xc3\xef\x27\xef\x66\x27\x1c\xa7\x4d\x4e\x7d\xa0\x17\x16\x4e\x63\xd2\x47\x4d\x76\x11\xf0\x58\x04\xc5\x36\x73\xf1\x33\xec\x3b\xc4\xf4\x50\xbd\xb0\x28\x5f\xc8\x40\xdf\x2f\xaa\xac\xde\xaa\x70\x78\xa2\x42\xed\x9e\x9c\xcb\x60\x4c\x92\x57\x96\x44\xdc\x3a\x25\x92\xcb\x89\x71\x63\x3e\xc4\x9a\x13\x2c\x4f\xc9\x53\x96\xb8\x54\x32\xf5\x0a\x50\x67\xa3\x84\x6e\x6b\xda\x99\x73\x71\x83\x84\x22\x8d\xa0\xf3\x16\x21\x90\xf1\x1c\xb5\x6f\xc2\xb8\xbf\x67\x18\x65\x3a\xc9\x36\xbd\xaa\xb7\x69\x57\xc3\x5e\xe8\x68\x8c\x6f\xd0\x28\xc7\x4d\x67\xa1\x48\x82\x83\xb8\xb5\x20\x96\xe6\x33\x78\x4e\x34\x42\x3c\xa1\x9c\xfe\x87\x04\x65\xc3\x85\x40\xf4\x8b\xda\x84\x58\xd7\xa6\x86\x02\xa4\xc9\x54\x23\x43\xb1\xcb\xc8\xa4\x22\x78\x14\x12\xae\x10\xe1\xf2\x82\xec\xda\x0e\xc9\xe7\xb4\x77\x9f\x60\xda\xe1\x19\x72\x6b\x61\xd1\x55\x9d\xab\xff\x10\xf6\xe7\xf5\x24\x60\x3c\x9d\x16\x35\x6f\x2e\xf6\x1a\x45\x54\x15\x3f\xee\x21\xac\xe2\x5b\xf9\xc8\x4b\xa9\xdc\xe1\x3d\x26\xc3\x87\x11\x0d\x9c\xed\x9d\x17\x1e\x39\xea\x53\x03\x93\x17\xa6\xcf\x98\x07\xd0\x42\x62\x7d\x9d\xfe\x19\xba\x33\x4a\x04\x64\x66\x15\xa7\x74\x25\x25\xc5\x14\x14\x97\x1d\x72\xbd\xd5\x58\xe2\x7e\x01\xe0\x30\x42\x5d\x5a\x4f\x5e\xe7\xe7\x2a\x16\xf7\xdf\x5b\x91\x50\x4c\x9e\x4b\x61\x7a\xb2\xc0\xd0\x79\x84\xb3\x26\xf7\xf1\x57\xdb\x64\x71\xfa\x11\x39\xbf\xa6\x67\x9e\x39\x65\x9b\x7e\x9e\xc5\x4d\xec\x53\x2b\xdd\xaf\xf3\x0b\x7f\xe4\xb5\xd9\x62\xa7\x67\xa7\x70\x53\xcf\xf1\xee\x6c\x9d\x7e\x74\x01\x67\x3d\x7f\xb3\x0b\x97\xbf\xc5\xfc\xcd\x22\xa0\xe4\xd9\x10\xc0\x2e\x61\x2a\xfc\x41\xae\xfd\x68\x3d\xfe\xfb\xa1\x55\xb3\x4d\x9f\xda\xab\xdd\xe7\xd8\xb2\x1c\xff\xcd\x95\x22\x00\x8b\x72\x4f\x24\x45\xf9\x12\xfd\xa1\xba\xc7\x8f\x2d\xac\xd2\x6d\x4f\x6f\xd6\x6c\xd3\x7f\xda\x1a\x8b\x97\xeb\xff\x1e\xd5\x03\xec\x51\x10\xf3\xb4\xf8\x44\x15\x7f\x7f\x72\x75\x6b\x72\xc0\xe7\xe8\x97\x78\xa7\x30\xfd\x7a\xe4\xf5\x78\xe3\x21\xe4\xa6\xaf\xf4\x87\x7b\x71\x4a\xb7\xfc\xb2\xdb\x30\xfd\xf3\x05\x69\x4a\x29\x4c\xff\x7c\x9b\x6d\xff\xf7\x19\x1b\x57\x98\x9e\x72\x24\x0c\xc4\x67\xa4\x83\xed\x14\xbd\xe0\x21\x62\x41\xcb\x13\xcf\x69\x74\x9a\xac\x49\xbf\x50\x22\x34\xd8\xd7\x14\x83\x0a\x66\x7f\xf1\xfe\x1f\x95\xaf\x6e\xb6\xcc\x87\x7d\x74\x3b\x79\x3a\xe4\x82\x08\xa6\xfd\x62\xb3\x98\x60\x3f\x98\x46\x8b\x58\x5a\xbf\x50\x20\xed\x84\x7f\xd9\x60\xdf\x9a\xf5\xfc\x28\x99\xde\xe4\x83\x3d\x08\x6e\x2a\x9c\xff\x33\xad\x0d\x17\xfc\x67\x6e\x4a\x3d\x46\xef\x70\xc9\xa7\xe8\x79\xd1\xe0\x1e\x8a\x08\x98\xff\xc0\x52\x26\x32\x1e\xe0\x33\x3c\xd1\x3e\xc7\x45\x36\xb3\x60\x14\xfc\xf4\x63\x0c\x0b\xe0\x83\x9f\xc9\xdf\xf9\x89\xf8\xc0\x36\xe3\x83\x28\xab\xf3\x78\xbc\x29\x2c\xc4\x49\xfd\xa3\x56\x30\xcf\xcf\xd6\xff\xd1\x5e\xa6\xdf\x2c\x75\xcb\xd0\x67\xe7\xa5\xab\xbe\xb6\x62\xf4\x95\xd0\xdf\x5f\x8f\x2c\x68\x73\xff\x72\x36\xe0\x88\x9f\x3c\x15\x1d\x73\x1f\xd6\x23\xe1\xa8\x8f\x12\x3c\xc8\x5f\xec\x37\xcb\x92\x7b\xb1\xcc\x7d\x46\x1d\x4a\x0f\xbe\xc8\xd7\x7b\x00\x7c\x19\x3f\x41\xa2\x5c\xe1\x10\x97\x09\xfc\xf5\xcf\x25\x93\xf5\x6e\xfa\xc9\x86\x08\x77\x35\x85\xc8\x81\x90\x26\x15\xd1\x61\xcd\x07\xe2\x41\x82\x15\x06\x6b\xa6\x1c\xff\x6c\x56\x50\x16\x11\xae\xbb\x40\xa1\x39\x1c\xc9\xbe\x10\x00\xa6\x70\xd7\x61\x6d\x1c\xbe\x9d\xbc\xf2\x89\xab\xa4\x1a\xbe\x20\x89\xc5\x80\xab\x50\x27\x16\x37\x92\x2b\x48\xb8\xf4\x85\xef\x5a\x2f\x20\xad\x86\x24\x7e\x1b\x90\x31\x71\xa8\x11\xaa\x82\x1d\xd8\xbd\x4b\x93\x7f\x36\x78\xc8\x61\xb9\xf9\xb3\x89\xb7\x0d\xca\xde\xf8\x3f\xcd\xce\xd6\x44\x57\xa6\x87\x52\x68\xe7\x1e\xc1\x54\x3d\x7b\x74\x95\x65\xe3\x21\x2c\x31\x63\xd9\x8b\x81\x8c\x04\x7e\xeb\xd7\x79\x22\x6f\x5a\xe5\x5e\xe6\x45\x5f\x82\x65\xf2\xe6\xba\x11\x58\x22\x5d\x84\xf7\xb1\xf2\x2e\x7f\x63\xf7\xca\x82\x6b\x22\x3c\xd0\x0e\x49\xbf\xab\x3b\x7a\xc4\xf2\xb1\xe4\xa1\x60\x21\x7b\xd2\xb9\x6b\x77\xba\xdd\xb1\x7e\xa7\x31\xab\xf2\x81\xc5\xe7\x81\x4e\x07\xdd\xe4\xec\xdb\xd5\xbd\xf1\x00\x04\x03\x4a\xd1\xe8\xf7\x26\x74\x98\xd2\x82\xdc\x73\xa6\x0a\x1b\xba\x17\x05\x2d\x33\x9b\xe0\xf3\x0a\x6d\x75\xa7\xd4\x3f\x64\x23\x0b\xd2\x47\xd0\xa1\x54\xb5\x26\x41\xd3\x8d\x31\x08\xe2\x4c\x6c\xb1\xda\x72\x89\x8f\x88\xff\x47\x15\xc0\x2f\xa2\xe2\x25\x93\x3b\x22\x8e\x16\x6b\x9b\xa1\x41\xe9\x91\x14\xb6\xb8\x65\xa0\x00\x89\xa3\xbd\x89\xb9\x7b\x8d\xf4\x8c\xdc\x23\x21\x61\xa9\xa0\xbb\x25\x04\x5b\x77\xf7\xee\x89\xbe\xed\x92\x66\xab\xa9\x98\x2e\x2f\x34\xec\x66\x36\x77\x8f\xd2\xa3\xeb\x8f\xe6\x58\x01\xc5\x83\x18\x4f\xa7\x31\x5c\xc8\x9f\x76\xad\xa0\x23\x99\xb5\xee\x6a\xe0\xbd\xb1\x24\x2c\x79\x6b\x98\x56\xd7\xb5\x53\x55\x27\xe4\xdd\x82\x40\x88\xb0\xc1\x7b\x4e\xa5\x07\x9c\xf5\xcd\xf6\x4c\xbe\xd3\xcf\xfd\x7b\x02\xf1\x30\x57\xa2\x67\x13\xe1\x81\xa0\xd8\x04\xf0\x85\xbf\x69\x96\xc0\x4e\x0b\x23\xaf\x7d\xbc\xdb\xc5\xd9\xbb\x12\xfd\x2b\x74\xfa\x98\x4c\xcb\xe7\xa7\x89\x5d\x8a\xb2\xc9\x75\x8c\x73\x00\xed\x08\x59\x37\xdb\x03\x83\x4c\xdc\x79\x67\x51\x00\xf0\x8e\xf1\x3f\xec\xc7\xf1\xa6\xce\xdd\xd5\x7a\x7b\x61\xd8\x43\x1d\x01\xd6\x35\xd3\xa5\xae\xfc\x4e\x71\x02\x0b\xda\x66\xc9\xe0\x60\xd5\xcb\xfb\x46\xde\x48\xa4\xef\xcd\x2a\xb6\x07\xd0\xc2\x6f\xad\xb6\x6c\xa5\x70\xba\x7a\x79\x3f\xa2\x6c\x56\x1b\x17\xc5\x1f\xc8\xe4\x97\x11\x82\xaf\xcc\xd2\x16\x77\xc8\x7d\x6a\x7a\xb5\x59\x6e\xe6\xc9\x80\x67\x40\xb4\x70\xed\x16\x24\x1f\x4d\xd7\x52\xf8\xc8\x6c\x43\xdd\x24\x7e\x37\xbf\x44\x6c\x73\x3b\xe5\x5d\xf6\xb7\x9d\x32\xa2\x6f\xbb\x69\x24\x97\x96\xa4\xd7\xb3\xd1\x60\x73\x1d\xae\xfb\xa1\xb1\x94\x46\xbc\x52\x83\xf0\x8b\xcc\x15\xe7\x45\xc3\x7b\x3d\x42\x23\x79\x91\xef\xd8\x7d\x59\x17\xf4\x8b\xa1\x12\x61\x69\x1a\x73\x24\x09\x0b\x52\xb2\x55\x2c\x1b\xc4\xcc\xac\x7a\x17\xec\xae\x40\x8d\xfe\x67\x93\xdd\x09\xa5\xe5\xc7\x05\xf5\x16\x0b\x2f\xd7\x58\xfc\x3b\xbc\x4b\x8e\x36\xd4\xf5\x12\x74\xc0\x72\x24\x82\x54\x92\x7a\xba\x39\xe0\x06\x8a\x67\xc6\x85\x9c\xaf\xed\xfc\xba\xa8\xe1\xd4\x91\x03\xfb\x37\x7a\x73\x82\x88\x29\x2c\xf5\xdb\x21\x82\x48\x2f\x63\x91\xf2\x9d\x6f\x59\xcc\xea\xe2\x8e\x78\x42\x71\xeb\xf9\x90\x9c\x69\xe8\xfd\xed\x82\x29\x7b\xa5\x0d\x05\x55\xed\x5c\xcb\x52\x11\x42\x70\xba\x19\xa9\x4e\x2b\xb4\x13\x29\x1c\x4a\xe3\xae\xcb\x1a\x4b\x1d\x76\x05\xfd\x8e\xa2\x83\xbf\xb6\xbc\x4f\x2c\xf4\x81\x79\xfe\xb2\x8d\xf2\x67\xa4\xe3\x7c\xb8\xad\x1b\x33\x14\x40\x60\x56\x40\x29\xf2\xa2\x8c\xc1\xf6\x5e\x34\xb5\xec\xab\x0d\x93\x0d\x6f\x87\x1c\x14\x98\xd3\xeb\x15\x17\x17\xf5\xe1\x12\xc4\xa8\x26\x08\xea\xad\xc6\xc5\x2d\x3d\xe1\x83\x6d\xc9\xcb\x6e\x62\x5b\x96\x70\x4e\xf2\x0a\xff\xb2\x44\xde\x84\xb0\xdd\xc5\x11\x79\x17\xef\x63\x8d\x4e\x2c\x54\x8e\x7c\x14\xa8\x29\x04\x38\xb2\xae\x8d\x6a\xf2\x16\xb6\x78\x8d\x4a\xe9\x50\x73\xcc\x44\xdc\x2d\x60\x3e\x04\xb7\x69\x44\x63\x49\x0c\x96\x51\x91\x03\xe7\x34\x55\x50\xf0\x17\x21\x5d\x4a\xba\xb5\xbe\x97\x82\x0a\xaf\x56\xf2\x19\x81\xc7\x70\xa4\x73\xa1\x0a\x70\x65\x44\x2c\xff\x64\xa4\xb0\x3b\x56\xaf\x13\x22\xe5\x92\xfb\xa8\x8b\xfd\x3b\x42\x01\x05\xeb\x05\xa9\x7b\x3a\x7e\xac\x2c\xa7\x8a\xe2\xa3\xb5\x74\xbc\x08\xc2\x86\x8d\xc5\x8d\x40\x90\x34\xb4\x99\x4a\x55\x3b\x21\xb1\x98\x3a\xb4\x97\xaa\xde\x14\x27\xaa\x43\xb0\xe7\x56\x0b\x53\xd0\xa8\x79\x07\x19\xfb\x06\x2f\x19\x68\xdb\x2f\xfd\x71\xa9\xc7\xdd\x49\xc2\x14\xde\xf5\xfa\x22\x8d\x85\x0c\x82\xe6\x69\xe0\x51\x5d\xbb\x68\x86\xbe\xb7\x4d\xb0\x9c\x7b\xc7\x93\x67\xb7\xdb\x29\x38\xaf\xd1\x0c\xbb\x5d\x09\x3e\x67\x46\x73\xe7\xad\xe4\x87\xeb\x13\x62\xc2\x7b\x9c\xb8\x12\xd0\x1b\x8e\x32\x76\x1f\xbc\xfd\xd0\x06\x0d\xbd\xc8\xae\xed\xc8\xc3\xf1\x03\xe5\x6f\xc2\xb6\x7e\xa2\x9d\xb2\x81\xa8\xe3\x29\xdf\x95\xbf\x1d\x5b\xab\x03\x53\x21\x38\x8c\x1b\xdc\xce\x10\xbb\x2a\x45\x2c\x92\x90\x08\x09\xc4\xa5\xe7\x67\x77\xa9\x18\x2b\xc1\xc0\x96\xc7\xef\x47\xeb\x25\xb2\xeb\x0b\x85\xad\xd3\x3f\x65\x6b\x5f\xa6\xe7\x43\x14\x6a\x2e\x44\x2e\x0e\x63\x83\xa6\x65\x5b\xaf\x45\x85\x34\x18\x6d\x04\xbb\xff\x83\x4b\x87\x8f\x90\x85\xa0\x6f\x78\xb5\xa6\x89\xd6\x29\xa6\x4b\x88\x9e\x0d\x4b\xec\xfa\xdb\x4a\xaf\x9d\x99\x86\x11\xe1\xc6\x52\x39\xd4\x72\x90\xef\x25\x52\x35\x56\xab\xf3\x45\xec\x16\x98\x23\xbb\xab\x1b\x3c\x2b\x7b\x06\xa5\x5d\xb2\x71\x68\x71\x8b\xbe\x43\x14\xc3\x4f\x71\x58\x29\x8f\x52\x23\x50\x94\x9b\x96\xcf\x55\x36\x92\xaa\x9b\x66\xa1\x94\x36\x97\xc5\xc9\x33\x8d\x6c\x89\xa0\x79\x24\xbe\x50\xdd\x48\x48\xd3\x66\xa8\xfe\x23\x40\x3e\x8a\x9d\x36\x7c\xdd\x0b\xb4\x78\xd9\x62\xf3\x8b\xe4\xc4\xdc\x04\x6a\xc8\xd6\xe3\xb4\x43\x3e\xf2\xba\x5a\x36\xe5\x31\x86\x19\x4f\xe9\xb9\x2d\xab\x06\x3d\x4b\xa4\x6d\x80\xa2\x03\x98\x1a\x9d\x49\xa7\x2b\x86\x1e\xbf\x90\x6a\xc1\x06\xf5\x85\x14\x35\x4a\xd7\x53\x16\x7d\x5b\x06\x06\xd5\x87\x96\x49\x95\x93\x4c\x16\x91\xe0\x73\x34\x06\x1a\x86\x58\xcb\xf4\x14\x73\xc1\x01\xcf\x3c\x80\x25\xb9\x90\xb8\x91\x93\x14\x0f\x01\x58\x47\xfb\x91\x81\xb0\x21\x0f\x8e\x70\x1e\x51\xfd\xa7\xe1\xe6\x28\x11\x3c\x3c\x0a\x83\x28\x67\x9f\x78\xbb\x95\x9b\x42\x7d\x1c\xa6\xaf\x6d\x89\x79\x7a\xde\x44\xed\xf0\xbc\xd1\x8b\x2d\xc9\x0a\x83\xf2\x8c\x54\x87\x20\x7f\x24\x5f\x2a\xdd\x6e\x90\xc6\xd5\x55\x93\x45\x21\xd5\xc9\x3c\xd8\x62\xb6\x03\x62\xec\x83\xb7\xaf\x14\x16\x91\x9d\x80\xb6\xca\x0b\x34\x57\xda\x62\x83\x78\xc0\x3d\x92\x7f\x13\xa9\xf4\xd1\xda\xba\x75\x85\xc3\x23\xf3\xbd\x3a\x0f\x1f\x99\xc9\xa9\x22\x65\x59\x8d\xa0\x36\x4c\x58\x11\xe9\x6d\x76\xcb\xaa\xe2\x7d\xdb\xbb\x0a\x63\xef\x98\x07\x3f\x50\x00\xde\xc7\x0f\x76\x8f\x1d\xd2\xfb\x07\xfb\xcd\x1e\xdc\x16\x43\xc0\x7f\xb1\xd4\x68\xef\x05\xf7\xfb\x21\x93\x11\x84\x99\x0f\x2c\xda\x58\xe9\xf8\x0f\x00\x84\xb4\xc0\xf3\xfd\x90\xa9\x80\x3d\xfc\x31\xdb\xb6\x08\x11\x45\x79\xf7\x13\x85\x65\xd3\x0e\x41\x46\x2a\xbc\xe5\x4f\xd1\x56\x04\xa3\x7e\xa4\xb0\x48\x1f\x7c\xb4\x6b\x27\x76\x17\xd6\x6f\x74\xc8\xa1\x1f\x5d\xf5\xd2\xd1\x1f\x5d\xad\xae\xda\xe9\x63\x5b\xa3\xfe\xd7\x5e\x3d\x9e\xfb\xe7\xb9\x48\x3f\x7d\xc9\x70\xbf\x64\xaa\xf2\x5e\xc6\x73\xf2\xb9\xb3\xc6\xbf\x34\xc1\x3f\xf9\x15\x50\xa9\x61\xfa\xd5\x76\x7d\xd3\xaf\x2e\x01\x76\x19\x57\xfd\x64\xdd\x1c\xdc\x1b\x56\x3f\xcb\x7c\xcd\xa2\xed\x2e\x98\xe8\xf5\x0d\x4e\x95\x9f\x6a\xfb\x1d\xb0\x85\xc3\x6a\xd5\x95\xf1\x73\xdb\x68\xdf\x69\xc1\x28\x2e\xfc\x1c\x9f\xe3\x9b\x7e\xb7\xdf\x28\x45\x00\xe4\x98\xe9\x37\xfb\x4d\x31\xfa\xbe\xb0\x14\xda\x54\xbf\x73\xf7\xc2\xba\x7e\x71\xb4\x8a\x32\xc4\xa6\x18\x0e\x98\x5b\xbf\x1c\x75\xa3\x55\x18\xda\x7f\x33\x1f\x83\x73\xfe\x4d\x48\xe3\xae\x17\xfb\x7f\xaf\xfd\x6e\xf7\x39\x53\x58\xaa\x3c\xf6\xef\xce\xee\x14\xe4\x9f\x18\x8b\xbd\x5b\x2f\xba\x2f\x1b\x2c\x66\x5e\xcd\x74\x77\xa1\xbc\x1c\xd0\xa0\xf0\x53\x88\x7a\xea\x5f\xd1\x2b\xf3\xfe\xef\x98\x97\x82\x54\xb1\xa8\xb9\xca\x3c\xea\x18\x37\xff\xb1\x54\xd1\xe7\xff\x8d\x9e\xf4\x33\xaa\x5b\x7a\x2f\x15\x44\x05\x5c\x4d\xb3\x39\xc1\x77\x99\x34\x6b\x8e\x11\xbc\x61\xf2\x30\x1c\x08\xc9\x13\x96\x17\x53\x21\x70\xfa\xd0\x9e\x7e\x8e\x59\x26\xf0\xe2\xce\x46\xda\x67\x2a\x45\xd4\x69\x7e\xa2\x3d\xda\x59\x93\xb3\x89\x7d\xe7\x74\xb7\x9d\xfd\x48\xd6\xdf\x4a\x97\xc7\x5c\xf8\xb3\xb9\xd2\x43\x33\x1f\x6e\xd9\xbd\x10\x05\xa4\x7a\x83\x3e\xe0\x21\xac\xd1\x43\x41\xb2\x36\x87\xdc\x29\x29\xdb\xd0\x52\xed\x30\x38\x9d\x7e\x08\xd5\xad\x4d\xd3\x77\xfd\xd9\x34\x6d\xd6\x95\xd6\x94\x53\x96\xaf\x6d\xc4\x73\xe9\x21\xd3\x2c\x4b\xc8\xa5\x34\x93\x08\x3e\xaa\x5c\x80\xc4\xe3\x24\xcb\xaa\x55\x77\xa9\x92\xb6\xe3\x55\x72\x06\x3d\x34\x78\x25\x87\x9e\xe4\x46\xd4\xa9\x1b\xed\x4a\x40\x1d\x3a\x3d\x52\x58\x3d\x2d\xb6\x6c\xa0\x11\x72\xc0\x65\x93\x8c\xb4\xe0\x56\x1f\x29\xcf\xa2\xba\x98\x79\x4d\x36\xd3\xa3\x66\x0e\x81\xf6\xef\x3d\xbd\x92\x77\x5c\x8a\xa6\xf4\xd1\xe6\xbd\xf1\xf4\x78\xdc\xe0\x8e\x54\x98\x3b\x50\x6c\xa9\x59\xd2\x9a\x01\x14\xe9\x8c\x78\xaa\x1d\x0b\xa6\x93\x6e\x99\x66\xa7\xf1\x8d\x4c\x20\x23\xd2\x34\x7b\x5a\x16\x9b\x0f\x10\x76\xb9\x14\xc8\x86\xe1\x35\xf3\x05\xd8\xd1\x9e\x06\x43\xfc\x22\x46\x55\xe2\xf6\x94\xd6\x2c\xab\x52\x93\x40\x5f\xa1\xbb\xd9\x14\x59\xb6\xa6\xc7\xdc\x82\x55\x19\x19\x53\xfb\xb1\x79\x55\x62\xcf\x88\x7c\xc3\xe3\xb2\x24\xd4\x74\x3d\x9a\x5b\x5e\x3d\x49\xbe\xe4\xc7\x96\xa1\x69\x7b\x6c\x48\x1c\x35\x3d\x11\x42\x4d\x83\xaa\x61\x6d\x8e\x0a\x4c\xce\x93\x73\x1e\x40\xd3\xfc\x55\x34\x2f\xc0\x7c\x66\x7e\x7a\xa2\xbc\x5b\xe4\x46\x55\x23\xb5\xa1\xd2\xfa\x19\x9d\x7a\x02\x1c\x7f\x18\x25\xe0\xf9\x45\x72\x3c\x33\x9a\x30\x25\xcc\xe1\xd3\x26\x9f\xd9\x38\xf1\xba\x70\x62\x4e\x1f\x65\xcf\x75\xf2\x14\xcd\x4b\xb0\x07\x72\x9a\x4b\xb9\xef\x00\xf2\x54\xaf\xbe\x60\x34\x5e\xe1\x29\xf2\x2c\xb1\x12\xe8\x24\x30\x6a\x4f\x12\x04\x6e\xb2\xa5\x62\x53\x8e\xf1\xc6\x34\x50\x68\x9e\xb2\x8d\xde\x5e\x8a\x13\x1f\xfa\x24\x8f\xd9\xe6\x0e\x98\xac\x11\xc4\xef\x09\xe8\xb6\x41\xd5\x0d\x61\x1e\x4f\x47\x12\x33\xc3\x91\x1d\x3c\xd0\x16\x4d\xf4\x27\xf0\x29\x20\x5c\x39\x10\xa1\xf6\x03\x12\x46\x63\x29\xa1\x1d\x19\xbd\xec\xb4\xd8\x9b\xcd\x77\x45\x4c\x5d\x6c\xa2\x5c\xd5\xce\x08\xb3\xde\xf7\x2d\x99\xde\xb5\x2c\xae\x4b\x61\x3f\x58\x8f\x41\xbe\xd8\x5d\x53\x5b\x2e\x4e\x73\x8a\x2e\xae\x18\x6c\x4f\x23\xf5\xc0\xbb\x96\xef\x2a\x77\xa7\x2a\xb8\x1f\xfe\x70\x73\x94\x5c\xbc\x43\x7c\x5c\xa2\x8f\x92\x7b\x60\x61\x36\x57\xc3\xc6\x7e\xd0\x88\xae\x70\xa1\x24\xe5\xdb\xd2\x8c\x64\xc0\xff\xb0\x7c\x83\xc8\x10\x26\x8b\x58\x57\x15\xf7\xed\x9e\x00\xba\xc4\x4c\x34\xa4\x6b\x65\xa8\xd5\x99\xa7\x8b\x6e\xcc\x8f\x9e\x5c\x26\xd7\xde\x22\x76\x34\x27\x65\xa8\xd9\xf2\x02\x69\x25\xa8\xe3\x43\x76\x55\xac\x11\x75\x73\xc2\x16\xdb\xba\x9d\x5a\x0e\x54\xc6\xd5\x9a\xf1\x12\x29\xf2\xa3\xac\x86\x37\x52\x85\xc5\x8d\x90\xfa\x01\xb0\xb0\xe0\xe2\x7f\x74\x7f\xe0\x38\xe7\x5d\x72\x21\x4e\x3f\x7a\xbb\x33\xe3\xf9\x63\xa6\x60\x5c\x11\x05\xf6\x1c\xc5\xd0\x20\xfe\x88\x3f\x91\xf0\x4f\xab\x0d\x96\x44\x55\xf8\x93\x8d\x62\xc4\xfa\x3f\x09\xdd\x9a\x7e\xda\x28\x10\x5a\x1c\x4b\x96\xba\x41\xfe\xe4\xfc\x6c\x85\x13\x58\x01\x24\xa5\x1b\xc9\xea\x29\x2c\x98\x08\x50\xfe\x77\xbf\xf1\x9f\x22\x54\x51\xef\x8b\x35\x5b\x1b\xe4\x77\x8b\xad\x58\x21\x8b\x5b\x2c\x0b\x4d\xab\x32\xa1\x57\x4a\x35\xcc\x6b\x8e\xdf\x5c\x58\xa7\x9f\x1a\x61\x35\xe4\x3f\x99\x2f\x43\x79\xc8\x3a\xbc\x1e\xc3\x21\xeb\x23\x39\xb1\xb2\x50\x88\xf7\xce\x87\x95\x44\xc1\x61\x87\x53\x5a\x3d\xad\xfa\x47\xf9\x68\x73\x05\xff\xb4\xb9\xe4\x6d\x58\xeb\x36\x7d\x74\x29\x75\x3e\x0c\xd8\xa0\x8a\x36\x82\x84\xbb\x42\x7e\xd4\x65\x97\xa5\x67\xf1\xad\xbc\x50\xc7\x92\xa9\xf9\xbf\x50\xfd\xdc\x9f\x0d\x33\x5f\xcb\x05\xca\x52\x16\xb9\x9a\x79\xb1\x54\x18\x7a\xa1\x7f\xce\x62\x39\xfb\x39\xd3\x9f\x4e\x4c\xa8\x66\x72\x52\xfc\x42\xe6\x45\xd1\x14\x7f\x21\x13\x67\xdb\x09\xf0\x1c\xbf\x20\x0d\x23\x9a\xee\xd2\x51\xbf\xd8\xd2\xd4\xd9\xf3\x97\x98\x17\xb9\xf0\x1f\x11\xce\x43\xf2\x00\xbf\x08\x1f\xd7\x8b\x86\xad\x16\xb2\x7b\x77\xfb\xfe\x95\xca\xb6\xbb\xec\xa6\x5f\xe9\x8d\x5e\x36\xb1\x64\xfd\x6a\x03\x33\x58\xbf\xb6\x0c\x53\xeb\xaf\xed\x1b\x7f\x87\x51\x7e\xa2\x60\xba\xbb\xd6\x7b\x5a\x84\xdf\x4f\x14\xa7\x4f\x94\x78\x5f\x9d\x3e\x51\x75\xfd\x17\xb6\x53\x63\x7b\x9b\x9d\xe5\x35\x3c\xf4\x7f\xd3\x27\x7b\x57\x63\xdd\x27\xd7\x2d\xc3\x6e\x3e\x50\x58\xb3\x55\xe5\xe2\x6c\x9e\x3e\xf1\x62\x99\x64\x75\x81\x8c\xd8\xe7\xe6\x27\x77\xb7\x39\xb5\x05\xaf\x29\x46\xdf\x96\x57\x3e\xe3\x42\x7f\x26\x63\x35\x9f\xfb\x67\x00\xc7\xdd\x55\x34\xf9\x4c\x0b\xad\x84\x99\xc8\x23\x53\x42\xbc\xc8\xd3\x37\xf9\xd3\xd3\x21\xbf\x45\xeb\x5a\x54\x7e\x07\x2e\x35\x4f\xcd\x67\x0a\xa6\x05\xd1\xfc\x86\xa8\x57\x09\xaf\xd3\x67\x3a\xf1\x8b\x76\x3a\xb0\x93\x7f\xb6\x0b\xa0\x3f\x08\x33\x00\x9a\x14\x09\x97\xdf\x85\x2f\x96\x90\xb8\x2e\xa4\xf0\xba\xbd\x69\x76\x9f\x1d\x2a\x4e\x1d\xd2\x3b\x6f\x42\xb2\xd7\x8a\x33\x73\x57\x4e\x73\xad\x12\x72\x43\x21\xef\xb2\x9e\xeb\xbc\xd9\xde\x05\xd0\x05\x30\xb9\x9f\xb1\x27\x6a\x81\x1b\x82\x62\xce\xe1\xf3\xa0\xde\xb5\xd5\x62\xe1\x23\x07\x31\x23\x42\x79\xc9\x72\xc6\x3e\x63\xa0\x5e\xc9\x56\x4c\xbc\x33\x4f\xf0\x1b\xed\x6e\x16\x31\xa4\x65\x66\x3e\x7f\xb3\x2c\x85\x65\x04\x8d\x07\x3b\x6b\x5c\x0b\x80\x8e\x94\xa1\xb0\x71\xf4\x4a\xe9\x64\x18\x8d\xd0\x91\x8d\xd6\xa6\x39\x35\x41\x75\x01\xf3\x37\x67\xa0\xb2\xe1\x12\x16\x69\x26\xd5\x8c\x78\x21\x24\x9b\x70\x2f\x83\xab\x03\xd9\x87\xde\xa4\x29\xca\x02\x19\x10\x76\x1a\xca\x48\x48\xf1\x5b\x04\xf7\x79\x16\x3b\x70\x09\x51\xfc\xc3\x1f\x3b\xaf\x65\x52\x8e\x06\x26\x78\x99\x9e\x62\x52\x03\xd1\x20\x4a\x9b\x35\xf7\x86\xe5\x05\xc5\xbb\xe1\x26\x84\xe5\x85\x3a\x7a\x6d\x77\xdb\xc0\xfa\x92\xe3\xda\x2d\x04\xc1\x5d\x22\x3a\xe1\x8b\x9b\x80\xab\x21\x24\xd4\xe7\xad\x2e\x31\xe6\xe9\x1f\xaf\x32\x11\x7a\xf9\x85\xba\xfb\x81\xc4\x7f\xc2\xc0\x90\x10\xca\x4a\x59\x99\x32\x09\x24\xb2\x1a\x5e\xda\xc9\x2f\xa4\x12\x97\x84\x9c\xba\xe4\x7a\xf8\xa9\xc4\x28\x5e\xa8\xda\xa3\x5c\x93\xa8\x60\x92\x84\xa8\x14\x93\xa3\x68\xb8\x43\x07\xb6\x85\x03\x9c\x72\xd8\x4c\x5b\xcd\xeb\xf1\x8e\x16\xb5\xa5\x6d\x3d\x48\xf7\xbb\xaa\xf3\x03\xa9\xfa\x8b\x3a\x73\x07\x40\x6f\x04\x0d\xe0\x95\xa2\x24\x0d\xa0\x4e\x1a\x17\xec\xb2\x3a\xe9\x5d\xa9\x62\x86\x51\xcc\xd5\xa6\x70\x9e\xd1\x1f\x0a\x63\x18\xfd\xa1\x92\x43\x8a\x82\x07\x9d\x62\x4e\xdb\x21\x06\x5f\xa0\x91\xb2\x50\x23\x1e\xa4\x09\x66\xf5\xda\xa1\x49\xcf\x20\x56\xae\x8a\xff\x5f\x26\xab\x0a\x9d\x94\xed\x15\x17\x2f\x3b\xc4\x8d\x0b\x62\x1c\x8b\x42\xa2\x9e\xb7\xb7\x1e\xe2\x92\x72\x9c\x69\xee\xbe\xeb\x7f\xa9\x19\xbb\xf4\xc3\xcc\x15\x21\xe1\x7d\xa5\x33\xc6\x49\x92\x27\xf4\xf6\x2b\x9d\x9a\x07\x3b\xfd\x25\xab\xc2\x29\xb5\x05\xb9\x82\x20\x3b\xf3\x67\x4d\x6d\x75\xc3\x61\x8a\x67\xf9\x2a\x92\x78\x6a\x79\x1d\x9d\xf9\x9e\xc6\x2a\x89\x0e\x3f\xc4\x2f\xf3\x90\xcc\x6e\xa9\xa7\x60\x49\x47\xd6\xa1\x73\x5c\x72\x45\x70\x65\xd8\xce\xb9\xb2\x0a\x1b\x05\xb2\x9f\x77\x62\x49\x1c\x39\xfa\x1e\x0f\x8f\xca\xd1\xaf\xa8\x80\x4d\x4c\xe7\xed\x6f\xca\xff\xe1\x35\xd5\x29\xa8\x87\x58\xb4\x4f\xfa\x7b\x4a\x87\xd8\x9f\x0d\xc8\xd4\xdd\xec\xf5\x3f\xcd\x9a\x8d\xe7\xd5\xef\x34\x5b\x4f\xa2\x95\xcc\x74\x74\x2c\x3e\x3b\x30\x5d\xcf\x0a\x5c\x12\x00\xab\x03\x2c\xbe\xb5\xbb\x64\x5e\x2d\xe7\x8a\xfa\xa1\xf8\x1f\x45\x0f\xed\x5e\xec\xcc\xc1\x9f\xb4\x7d\x1d\x24\x1f\x12\x25\x2e\x3d\x5b\xd8\x5e\xef\x82\xec\x97\xfb\x63\xfc\xce\x2b\x69\xd9\xa6\xbc\xb9\xb7\x6e\x65\x01\x0d\xbf\x05\xb8\xff\xf1\x9e\x70\x0d\x91\xc8\x11\x0a\x30\xec\xfa\x87\x78\x99\xca\x6b\xfc\xfe\x8d\xc2\x22\x28\x7e\xb4\x49\x39\x53\x07\xb6\x03\xad\x06\x88\x0b\x09\x55\x3e\x17\x4e\x2d\xc8\xcf\xb4\x47\xd1\xc5\xd2\x37\x71\x86\x2a\x24\x79\x0e\x0b\xbd\xf6\x54\xce\xcf\xf4\x1a\xc3\x54\xc4\x03\xa2\x0a\x32\x1f\x9e\x79\x2a\x26\xe6\xb9\x49\x53\xac\xfd\x8d\x9e\x01\xc5\x25\x85\x33\x50\x3b\xad\xe2\xd3\x53\xec\x05\x9c\xb0\xc8\xbe\xf4\x6c\x0f\xb3\x59\xef\xa3\x2b\xd3\xd7\x8d\xdc\xe5\xe7\xb9\xb3\x30\xcf\x2e\xac\x94\x44\x5d\xf6\x3d\xbd\xc9\xa5\x9f\x05\x3e\x7c\x7a\xf6\x74\xc7\x8f\x38\x98\x47\x05\xb4\x79\x8e\x75\x8b\x53\x49\xd4\xc3\x50\x90\x50\x96\xbf\x17\x02\x00\x80\xa8\xd2\xf9\xe5\xef\x2a\xdd\xbf\x8b\xd7\xbc\x15\x43\xab\x54\x97\x3a\x3e\xfa\xc8\xdb\x84\x5c\x03\x16\x92\x3f\xd0\xdc\x16\xe1\xcb\x14\xfc\x81\x9f\xa5\xed\x54\xe1\x74\xf5\x8d\xde\xdc\x54\x0e\x58\xb7\xc4\x19\x55\x71\x0a\x10\xd3\x3b\x6a\x5f\x69\x13\xc6\xfd\x2b\xb9\x6f\x72\xb5\x4a\xb2\xb5\x7f\xa5\xdd\xf9\xa9\xbb\x06\x52\x78\xeb\x80\x6a\xe0\x52\x2a\xe5\x4a\x59\xe3\x7f\x74\xea\x08\x22\xd9\x19\x33\x63\x73\x2a\xc0\xbb\xe0\x7e\xac\x2a\xca\x9c\xa5\xf8\xe5\x5f\xca\xdc\xb7\x90\xaf\xf6\x15\x47\xbc\xc2\xd4\x5e\x37\x7b\x86\x94\x88\x6f\x88\xdc\x0e\x36\xdb\x77\x06\x5c\xf5\x8e\xaa\x1b\xcf\x24\x7e\xab\x38\xd3\x2a\x3b\xe6\xd7\xa8\x6a\x84\xaf\x31\xac\x40\xfd\xea\x49\xf3\xde\x73\x08\x5f\xb3\x93\xb0\xd1\xaf\x00\x3c\x11\x69\xa8\x66\xd7\xe1\xfa\x6b\xee\xaa\x24\xa4\xbf\x21\x1c\x19\xff\xc0\x41\x00\x92\x53\xfb\x9a\xd4\x54\x36\xfb\xda\x82\xac\x1c\x17\x22\xbf\xc0\xe8\xa0\xab\xe9\x3f\x57\x99\x6a\xf8\x8c\xfc\x13\x8b\x90\x12\x01\x70\x27\xc5\xc1\x22\xaf\x0d\x76\xbb\xd8\x26\x11\x7a\x59\x24\x37\x0b\x13\x1d\x0a\xcb\x22\x56\x00\xad\x6e\xd6\x10\xf8\xbb\x33\x36\x03\x28\xfc\x5f\xce\xd6\x20\x9e\x5b\x02\xa3\x73\x67\xe2\xb0\xdd\x15\xe3\x9b\x85\xad\xd6\x1f\xd3\xbf\xad\x2f\xdb\xf4\x6d\xb3\xc4\x02\xc0\xbf\x1d\x8c\x2d\x11\x95\x6f\x31\x7a\x1b\xa6\x57\x7b\xae\xd8\xff\xb1\xbb\x0d\x6e\xfa\x2f\x39\x7c\xf9\xff\xaa\x74\xfc\x66\x99\xdf\x21\x3f\xfd\xd7\xed\x33\xcd\xdf\xf0\x9f\x5a\x84\x7a\xf9\xa6\xe0\x44\x52\xbe\xc5\x45\x92\x51\xd0\x0e\xbc\x3a\xe6\x89\x1f\xe1\x31\x30\x19\xca\x39\xd6\x43\xf8\x86\x6e\x07\x9c\x23\x20\x0e\xb4\x18\xe1\xf2\x49\x93\x7b\x56\x3b\x49\xd6\x3b\x01\x4d\x6a\x49\x1d\x6d\x7f\xa5\xdb\x8b\xea\x98\x7f\x24\xb5\x0b\xb8\x70\x49\xb8\xe1\xc2\x3d\x7a\xa8\xe3\x04\x64\x54\xa0\x45\xc5\xf7\x5a\xa2\xff\x46\x3e\xa6\xba\x85\x51\x59\xac\x13\xa4\xc6\x8d\x34\x6f\x04\x53\x0a\x7b\xb8\x11\xe0\x1c\x37\xab\xc0\x46\xcf\x5b\x0c\x34\x41\x40\xab\x98\xd2\x58\x3d\x90\x1c\x02\x46\xe1\x1d\xba\x05\x5e\xd1\xee\x57\x10\xe4\x28\x99\x41\x53\xb4\x3d\xfb\x5c\xc6\xaa\xbb\x38\x53\x0f\x80\xc7\xf3\xcb\x94\x4e\xc5\xd9\x9f\xd1\x80\x51\x00\xb8\x62\x29\x02\x98\x5d\xba\xb9\x9b\x29\x65\xe9\x63\x01\xc0\x0e\x1c\x56\xba\x3e\x87\xe6\xb8\xc3\x33\x8f\xe6\x02\xaf\x8e\x52\x27\x32\xfc\xd6\x12\x6f\x7b\xee\x83\x24\x91\x22\x30\x4c\x92\xe1\xc7\x8b\xcb\x88\xd4\x31\xba\x4c\x77\x0f\x38\x64\x34\xd0\xe4\xfa\xbd\x0b\x25\x2e\x56\xa3\x93\xa0\xc1\xfb\x2b\x5d\xad\x1f\xc7\x20\xfc\xe2\x50\xc0\x1f\xf1\x7b\xef\xab\xec\x2c\xe9\x47\x45\xa3\xea\xe7\x91\x73\xd7\xcf\x76\x91\x96\x3c\x65\x41\x49\x28\x82\x20\x97\x63\xd1\xa3\x7e\x8f\xc5\x21\x38\x04\xe8\x39\xd9\xa6\x3a\x60\x3f\xdb\x6c\xd4\xe3\x98\xc7\xb6\x80\x01\x82\xd0\x7b\x35\x3f\x82\x7e\x9b\xaf\xb0\x64\x0f\xad\x89\x34\x68\xd8\x79\x0b\x8b\x15\xe4\x8b\x85\xe9\xee\x14\xff\x9d\x2f\xfb\x9d\x8a\x86\x10\xc2\x3b\x01\xb0\x1c\xc5\xf4\x55\xf0\xee\xb2\x62\xa6\xdd\x5d\x75\xbe\xe7\xe3\xc8\x54\x31\xc6\x0a\x79\x1e\x89\x4b\x16\x78\xc2\x42\xfe\x2e\x80\xb7\x1b\xbd\xd8\x25\x7e\x0b\x80\x87\xa5\xbc\x03\xe8\xcf\x0c\x1c\xc3\x6f\x2e\x1f\xd3\xbf\xff\xf3\xfc\xf3\xbf\xff\xf3\xd3\x74\x58\x2a\xf5\x98\xfe\x83\x2c\x29\xff\xa5\xc4\x5c\xd8\xf4\x66\x73\x9c\xde\x62\x0c\xea\xfc\xb3\xaa\x05\xe5\xed\x40\x30\x52\x88\x25\x6e\x92\xc3\x83\xee\x16\xe9\x9b\x5a\xe8\xd4\x2c\xab\x0a\xf7\xf9\xac\xce\xee\x24\x00\x55\xab\xe4\x62\x34\x82\x62\x7f\xd2\x70\xf3\x29\xbd\xb5\xd3\xcc\x28\xf0\x4a\xb0\x4c\xc0\x8c\xb6\x0b\xd2\x20\xd9\x65\xda\x88\xa7\x05\x13\xd6\x2f\xf8\x7e\xb4\x03\xf4\xb5\xe5\x1d\x28\x57\xcb\x74\x73\x38\xb1\x05\x25\x6e\x0e\x48\x4a\xc3\x2f\xc3\xd4\xb8\x23\x25\xc5\x4e\x5e\x31\xf5\x85\xe0\xf9\x66\x33\xfe\x52\x8f\x87\xb0\x4e\xf1\xd5\x2d\x68\x4a\x94\x5f\x50\x88\xcd\xee\x0d\x67\x5e\x6b\xc9\x06\xe3\x80\xfe\xee\xaa\x64\x36\xf0\x74\xa0\x68\x2b\xf7\x4d\x8a\x45\xce\x41\x89\x8c\x09\x8b\xc0\x65\x07\x63\xdd\x9d\x2b\xbc\xa3\x6c\x00\x6b\x6f\xb9\x34\xbb\x4c\xc8\x36\x1c\x56\xe6\x3c\x35\x1b\x12\x57\xdc\xb2\x02\x74\x39\xb8\x8a\x3b\x97\x2d\x3b\xcb\x0f\x57\x20\x95\x32\xe1\x9b\x33\xe8\x97\x3f\x1b\x15\x7e\x98\x52\xc9\xe0\x90\x9a\x1b\xfa\x6b\xf6\x6e\xb7\x3c\xc0\x63\x96\xd5\x58\x00\xe0\x1c\xbe\x55\x89\x6d\xdd\xaa\x98\xcf\x25\x2f\x4e\x0b\x97\xca\xff\x17\x00\x00\xff\xff\x60\x23\xf7\xfe\xf4\x56\x02\x00") + +func staticTextAdjectivesBytes() ([]byte, error) { + return bindataRead( + _staticTextAdjectives, + "static/text/adjectives", + ) +} + +func staticTextAdjectives() (*asset, error) { + bytes, err := staticTextAdjectivesBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/text/adjectives", size: 153332, mode: os.FileMode(436), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticTextAdjectivesOld = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x56\x5b\x76\xe4\x20\x0e\xfd\x9f\x55\x78\x01\xee\x45\xc9\x20\x1b\x75\x01\x22\x02\xca\xa9\xac\x7e\xce\x15\x4e\xcf\x7c\x25\xa7\xcc\x43\xba\x2f\x91\x67\xce\x52\xaf\x7d\x7b\x4b\xe6\x7d\x3b\x75\xe6\x7d\x0b\x89\xd9\x4e\xfc\x57\xb8\xf7\xcf\xbe\x45\x63\x8a\xfe\xc3\xac\xfc\xe6\xba\x6f\x7d\x48\x7d\x7d\xf6\xed\xa3\x13\xbb\x7b\x23\x7b\xad\x83\xfa\xcd\x79\xb0\xad\x43\xd9\x22\xd5\xb1\x6f\x49\x22\xeb\xec\xfb\x76\x9a\x70\x8d\xf9\xb3\x6f\x47\x96\xfe\xbb\xce\xa8\x1c\xb3\x86\x21\xbe\x26\x90\xf1\x69\x8c\x72\x68\xec\x5b\xcf\xda\xda\x67\xdf\xae\xac\x5a\x3e\xfb\x46\xb7\x57\x42\x95\x8b\x84\x7d\x2b\x52\xe7\x60\xaf\xe8\x3c\xf7\xed\xe0\xca\x6f\xcd\x8c\x5b\x03\x53\xe7\xcc\xbd\xef\x5b\x26\xbb\x78\xdf\xbe\xa6\x84\xd7\xbe\x99\xce\x1a\x71\x22\x79\x7b\x36\xfb\xf8\xec\x5b\x0f\x64\x81\xf7\x4d\x63\xdc\xb7\x9e\xa4\x7a\x6d\xab\xdf\xa8\x77\xc4\x12\xcd\x5c\xd0\x7e\x50\x0b\xc9\xbf\x1f\x26\x7c\xe2\xc8\x31\xb0\xb0\xf2\xbd\x6f\x2d\xcf\x9e\xf6\x2d\xe8\xcf\x07\x18\x52\x8d\x4f\xa3\xd4\x34\xeb\xc5\x03\x85\x57\x29\x07\x30\x3f\x26\x6a\xe8\xc3\x14\x2b\x2e\x63\x34\x7d\x98\xe4\x2c\x8e\x5d\x13\xb6\xe0\xbb\x83\x31\x03\x89\x22\x55\x68\x4c\xe3\x7d\xab\x64\xa6\xf7\xbe\xdd\x49\x4a\x97\x40\x19\xa0\xd5\x41\xdd\xaf\x08\x7a\x93\x39\xda\x51\xfa\x35\x41\xda\xb5\x6f\x85\xec\xcd\xd9\xa1\xee\x75\x82\xb2\xc1\xf6\x70\x7a\x01\xe0\x7a\x19\x2a\x6a\x02\x86\x21\x06\xfc\xbd\xd4\xae\xc5\x61\xf9\x38\x71\x8b\xcf\x8c\x6a\x43\xe6\x37\x1b\xd6\x92\x15\xbf\x23\x4a\x2f\xe4\x02\xe2\x17\x60\x2b\x07\xbe\x77\x9d\xb6\x6f\x23\x49\x05\x51\x34\x87\x38\x95\x7d\xcc\xe3\x50\x94\x10\x8c\x7e\xfc\x4e\xca\x99\xeb\xe5\x47\x5d\x34\x01\x43\xa7\x0c\x92\xa4\x46\x39\x4f\x36\x27\x38\x4d\x90\x1a\xe9\x01\xf7\x7e\xa1\x5d\x20\x16\x80\x4e\xff\x9a\x0c\x0c\xda\x2a\xf5\xca\x7a\xfb\xba\x61\x73\x24\xbf\xd8\x66\xe4\x7d\x6b\x3c\x04\x0a\x0a\x46\xae\x69\xb5\xca\x00\xe0\x30\xfa\x01\xa5\x45\x23\x77\x10\x31\x6d\x5d\x74\x4a\x1e\xe9\xe3\x9c\xbb\x8e\x7a\x52\x43\x85\x2d\x73\x8d\x12\xf7\x2d\x91\x0b\x2a\x32\x9d\x5c\x1f\xea\xe8\x5e\xfe\x38\xe7\x03\xdd\xa0\x0c\x80\x5c\xbc\x17\x76\x64\x97\x81\xe0\x57\xb0\x7a\x39\xfb\xc1\xe8\x38\x3e\x38\x72\x5e\x09\x87\x86\x69\x58\xf8\x56\x09\x8f\xb6\x93\x62\x9d\x4e\xa3\x87\xa0\x4c\x38\xb3\x48\x30\xed\x68\x3f\xec\xdb\x9b\xd0\x01\x3c\xb2\xaa\xb8\x54\xa3\xb3\x64\xdc\x1b\x87\xe1\x70\x1c\xd4\x17\x2e\x45\x69\x95\x3d\xf4\xfe\x55\x6e\x7c\x73\x1d\xd3\xfc\x02\x89\x9f\x9c\x5d\x60\x64\x4f\x11\x3d\x69\x78\x2d\xc3\x98\x91\xab\x2f\x31\xbd\xd1\xd2\xd7\x24\x48\x35\x39\x37\x7f\xe9\xba\x18\xde\x43\xf0\xb8\xfe\xd3\xec\x09\xbf\x18\x7c\xbb\x14\x1a\xb4\x0e\x27\x78\x24\x93\xd3\xbd\x99\xe7\x75\x09\x4c\xc5\x10\x2b\xa4\x75\x19\x33\x3c\xd9\x32\x53\x77\xac\x20\xb9\x0c\xd8\x0b\xd5\x28\xbf\x6e\x82\xbb\xb8\xaa\x15\x2f\x3d\x29\x20\xe6\x7d\x1b\x6c\xb6\x0a\x08\x49\xb2\x63\xdf\xd6\x81\x85\x7a\x97\x37\xef\x5b\xd6\x09\x35\xcd\xba\xfc\x29\xab\xbf\x90\x67\x71\xc7\xea\xa3\xbb\xc3\xe8\xed\x61\x05\x88\x23\x67\x09\x8b\x60\x3e\x4f\xb5\xb1\xe0\x39\x32\x41\x29\x23\x79\xfe\x64\x19\x03\x37\x53\x0d\xe2\x7d\x76\x59\x89\x75\x2b\xa2\xe2\xd7\x14\xe7\xe9\x48\x99\x20\xf6\x0e\x19\x03\x1e\x2a\xf3\x82\x49\x3b\x2c\x02\xe7\x9b\x44\x09\x73\xd9\x99\x8e\xce\x75\xfc\x29\x52\x23\x76\x9e\xf3\x07\x6e\x6a\x1c\x66\x16\xc2\x5e\x72\x83\xdf\x02\xd9\xbf\xc4\xb5\xfb\x35\x99\x5e\x9e\x7e\xc6\xfc\x64\x5a\x7f\x00\xc1\xb7\x27\xd5\x9b\x4a\xf6\x6a\x04\xba\x74\x7a\xc9\x63\xb9\x0f\xe6\x06\x5f\x5e\x5c\x57\xdf\xf0\x0b\xcc\xfc\x77\x4a\x40\x70\x70\xf5\x66\x0b\x47\x99\xc5\xe1\xba\xeb\x12\xf2\x1b\x27\xe6\x59\x70\x0e\x9d\x46\xf0\x0e\x95\xd9\x97\xf6\xd2\xfc\x97\x9b\x41\xd5\xff\x6a\x6b\xc6\x0f\x3b\xfd\x56\x84\x04\x00\x72\xfc\xfb\x98\x06\xfa\xe8\xcd\x70\xc2\xbe\x35\x73\xfe\x0c\x28\x47\x07\x67\x42\x81\x5c\x07\xdb\xa0\x27\xde\xa9\x56\xfd\x2c\xb0\x7c\x16\x34\xe3\x20\x1d\xc7\xcd\xc3\xcb\xbe\x24\x3b\x98\xdd\xd1\x06\xbd\xf5\x6b\x3a\x59\x95\xed\xfd\x68\xaa\xf1\xca\x13\x09\x09\x56\xe1\xaf\xe9\x16\xec\xc9\xdc\xce\x0d\x3d\x62\xf8\x31\xff\xf8\xad\x75\x05\x04\x46\xe1\x33\x9e\xde\x2e\xee\x5b\xcd\x04\xb7\xc1\xce\x63\xb9\xf9\x98\x19\xfc\x9c\x24\x06\xc7\xfa\xbc\x73\x00\x2e\x53\x97\x42\x91\xce\x46\xcb\x4b\xd8\x8f\xed\xa6\xfa\xc2\x39\x45\x2b\x26\x8b\x67\xfd\x6c\x6c\xc7\x32\x97\x11\x02\x2e\x7b\xd8\x9e\x12\x2f\x1e\x3e\xa8\x2a\x85\x67\x86\xcb\xe9\x71\x41\xd9\x87\x26\x99\x71\xee\x5a\xd6\x04\xe5\xb1\x6f\xd4\x5f\x18\x74\x43\xe7\x95\xa0\x97\xd2\xb2\x53\xc2\xf8\x08\xa7\xdf\x6a\xcb\x2e\xa7\xa9\xf7\x7a\x27\xe9\xed\xa1\xf3\xa4\x22\xcb\xf4\xc1\xa4\x83\xfd\xf0\x78\x29\x50\x5b\x9d\x0c\x81\x46\xa4\x14\xae\xce\xc6\x20\x58\x09\x72\xd1\x37\x43\x9c\x49\xae\xf4\xa7\xc9\x08\x7e\x0e\x26\xde\x93\x44\x91\x83\x71\x13\xa4\xc7\xda\x0b\x6f\x2c\x07\x93\x5c\x69\xec\x1b\x7f\x07\x19\xd8\x35\xaf\x95\xb9\xb3\x2e\x31\x34\xb2\x75\xdc\x2d\x19\xca\x91\xe6\xdb\xab\x5f\xa8\x6d\x48\x91\x35\x58\xf5\xa8\xfa\xfd\xfb\x5a\x79\xb3\x55\xff\xf7\xff\x27\x13\x99\xbf\x00\x6c\x99\xeb\x32\xb7\x3f\x16\xc0\xac\x5e\x5b\x69\xba\x68\xe0\x10\xb8\x0e\xf3\xc7\xcc\x3c\x4f\xef\x92\x32\xdb\x6f\x9a\xb8\x94\x70\x77\x84\xcd\x4e\x5a\x41\xc6\x35\x24\x38\x71\x89\xf8\x29\x26\xcd\xf5\xa6\xe0\xe8\x19\x81\xa9\xcc\x48\xd6\x36\xf3\x32\x4d\xe4\xae\x6b\x3c\xf4\xbc\x1e\x13\x3d\x7b\xbc\x88\x99\x8c\x05\xfd\x5b\x2e\xc9\x1e\xa8\x17\x57\x5e\xe2\x31\x6a\xb8\x5e\x73\xfc\x73\x52\x4f\xa2\x15\x55\x3e\xc1\xb9\x32\xd6\x00\xee\x92\xec\x5f\xfd\xac\x0c\x9b\xd6\x4c\xba\xdb\x67\x90\xbd\x57\x5c\x0a\x86\x04\xf9\x14\x0b\x5a\x1a\xd2\x56\xeb\x1a\x59\xaa\x9e\xe8\x6c\x8d\xc7\x44\xc8\x47\xe9\x49\xab\x8f\xdf\xfe\xef\xcd\xa1\x9a\xdd\x2d\x5d\xa1\x52\x05\x55\x78\xbb\xb9\xde\x65\x4d\xc9\x61\x5c\xe3\x0a\x99\x07\x19\xe9\x2b\x56\x3a\xbd\x3d\x1d\xe2\xaf\xb0\x98\xca\x13\xe3\x4a\xee\x73\x8f\x68\x30\xb7\x6c\xe6\x21\x46\x51\x1f\x8b\xf5\xbc\x44\xe4\xf3\xe3\x74\xb3\x4a\x7d\x94\x56\x55\xba\x8b\x79\x3e\x4f\xd9\x2e\x3f\x3f\x2b\x40\x8f\x2c\x23\x61\x4a\xe4\x39\xc6\x3f\x1b\x48\x7d\x48\x06\x74\xb8\xbc\xb0\x23\x9a\x65\x89\xfc\x5c\xa0\x3a\xd8\x17\x4d\xd8\x35\xfb\x33\x11\xe3\x28\xe0\x9d\xa8\xde\x76\xa0\x5c\x60\xe0\xac\x11\x32\xea\xcd\x8b\x36\xce\xf4\xed\xee\x30\xa1\x7a\xcd\x8c\x19\x10\x27\x12\xe9\xf6\x8c\x8b\x54\xaf\x87\xe0\x5e\x54\x87\x2b\x76\x72\x7e\x9e\x9a\xeb\x25\x47\x77\x5c\x2d\x48\x75\x11\xd2\xd2\x1c\x7f\x27\x9a\xdd\xab\x8e\x3e\x01\xc6\xca\x34\x3d\xc6\xec\x9e\x4e\x14\x56\x2a\x0e\xa3\xfa\x35\x05\xf9\x48\x6e\xf6\xce\xf9\x5c\x04\xce\x95\xe0\x85\xfe\x37\x34\x43\x1f\xeb\xf9\x70\x9b\xd4\xd7\x32\xde\x5c\xd3\xb1\x69\xf6\x87\xda\xc9\xc3\x5f\x59\xb3\xbf\x3c\xb1\x67\x5c\x43\xf4\x25\xb5\x3a\xf7\x12\x5e\x1e\x1e\x8d\xc6\x9a\xaf\x59\x3f\xfe\x34\x36\xee\xe9\x3f\xff\x0d\x00\x00\xff\xff\x2e\x59\x87\x20\xf4\x0c\x00\x00") + +func staticTextAdjectivesOldBytes() ([]byte, error) { + return bindataRead( + _staticTextAdjectivesOld, + "static/text/adjectives.old", + ) +} + +func staticTextAdjectivesOld() (*asset, error) { + bytes, err := staticTextAdjectivesOldBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/text/adjectives.old", size: 3316, mode: os.FileMode(436), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticTextAnimals = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x59\x5d\x9a\xe3\x2c\xaf\xbc\x3f\xab\x60\x01\x9e\x45\x09\x2c\x1b\xc6\x80\x78\x05\xb4\xdb\xbd\xfa\xf3\x48\x60\xc7\x3d\xdf\xcd\xf4\x24\x71\x40\xbf\xa5\x2a\x65\x83\x33\x2f\xa6\x20\x38\x72\xc7\x62\x36\xfa\x36\x0d\x99\x03\xf2\x62\x5c\xf8\xc2\xb6\x98\xd4\xeb\x61\x56\x94\x77\x2a\x42\x6d\xc0\x8b\x29\x61\x47\xca\x8b\xb1\x3d\x46\xf9\x37\xd9\x88\x16\x71\x31\x8e\xc9\xd1\x1a\x22\x2e\x66\x8b\x57\xc8\xbb\xa9\xff\xf5\xc0\x8c\x71\x31\x18\xb1\x78\xc8\x6d\x31\x11\xa9\x00\xaf\x72\x9e\x7c\x1d\x2c\xc9\x61\x85\xd8\xf5\x12\x32\x2e\xe6\xa4\xf8\x85\xac\xff\xad\x25\xac\xc8\x26\x51\x3e\xf0\x5a\xcc\x17\xa4\x12\x18\x8d\x85\x26\x9f\x01\x33\x9d\x8b\x49\x90\xa1\xc9\xfd\x85\x6a\xed\x69\x31\xf5\x84\x18\xe5\x93\x33\xc4\xd5\xc9\xb3\x16\xf2\x1a\x1c\x91\x5c\x0f\x96\x61\x25\x5a\xc5\xcc\x95\x61\xa7\xbc\xc5\x6b\x31\x0d\xb8\xaa\xe7\x35\xd3\x79\x19\x3a\xe3\x62\x9c\x87\x84\x71\x38\x4b\xd7\x11\xc4\xce\xbe\x6d\xf2\xd7\x86\x2a\x6f\xc7\x08\x09\x16\x73\x84\xd6\x30\x2f\xa6\xb6\x90\x0f\xdb\x77\x31\xca\xc1\xb9\x18\xb5\xf1\xe5\xb4\x5a\x53\x78\x04\x1e\x72\xf3\x72\xe3\x4a\xfb\x16\xaa\x5f\xcc\x86\x39\xa3\x5b\xcc\xc6\x61\x87\x86\x36\xf0\xba\x98\xdc\xb9\xa2\xa9\x1e\xf8\x58\x4c\xeb\xac\x91\x90\x8c\x41\x23\x5a\x4c\x46\xc8\x2b\x72\xf3\x12\x4d\xa7\x01\xd9\xa9\xe8\xb9\x8c\x21\x8f\xdc\x21\xf0\x19\x76\xb3\x18\xc8\xe0\x28\xaf\xa0\xb7\xcb\x1f\x4d\x49\x0d\x12\x71\x29\x00\x39\x39\x46\x60\x5c\x4d\x41\xe7\x80\x2f\x71\xb9\x14\xbd\x32\x25\xca\xc6\xf6\x9f\x1f\x10\xbb\x12\x51\x45\x09\x44\x6e\x9d\x29\xef\x23\xdc\x52\x09\x55\x1c\xa6\xaf\x69\xff\x86\xcc\x52\x4a\x05\xb9\x06\xc8\x12\x1a\x49\xae\x69\x04\xab\x24\x9b\x62\xbc\x4c\x82\x94\xa8\xf9\xc5\xac\x10\x13\x34\x7d\x6e\x7c\xbd\x27\xcb\x18\x23\x8c\x57\x47\xc8\x1a\x2b\x71\xea\x80\xbc\x03\x4b\x0c\x6a\x83\x18\x83\xe4\x83\x7b\x95\x4b\x8c\x8d\x1d\x17\x43\xb5\x71\x70\x7e\x19\xd9\x6c\x70\xe6\x99\x58\xd8\x36\xcc\x25\xe4\xea\xf4\x24\x07\x21\xc9\x8d\x77\x91\xce\xda\x24\xd7\xa8\xf4\xba\x98\x84\xc8\x87\x64\xee\xf4\x10\x9f\x5c\xd8\x2e\x5d\xb3\xce\xda\x94\x90\x9d\x14\x37\x09\x4c\xcf\x0d\x42\x36\xc3\xa4\x59\x70\x6c\x18\x1b\x07\xfc\x92\x0b\xff\xeb\xd8\x7e\x60\x56\x18\x85\x2a\xd5\x4c\x79\xc7\xc5\x78\x48\xb5\xc9\x23\xc4\x90\xf7\xde\xc4\xac\x8a\x60\x3a\x3b\x2f\x75\xd7\xe1\x00\x0e\x72\xad\x45\x56\xa3\x57\xe2\x44\x5d\x52\x51\x21\xe4\x66\x2c\x72\xd6\x04\x49\x7f\xde\xb6\x92\xc3\x48\xef\xa6\xa9\x25\xb4\x1f\x89\x1c\x69\x2f\x65\x28\x45\x1a\xb6\x75\x6e\xff\x34\x86\xa3\xbe\x4b\xdb\x4b\x88\x77\x68\xc4\x8b\x39\x21\xb2\xc4\x65\x8f\x50\xab\x89\x61\x16\x04\x44\xb8\x20\x9b\x16\x76\x71\x60\x63\xda\x97\xfb\x05\x70\x82\x35\xc4\x48\xe2\x72\xc8\xce\x87\x18\x41\xea\x15\xec\xa2\x28\xb1\x4a\x16\x24\x7a\xd5\x33\x9e\xe2\x55\x2c\xea\x30\xd3\x05\xd1\x14\xcc\x7b\x97\x97\x6b\xc8\x3b\x2d\x8f\x9d\x17\x4a\xa7\xff\xc1\x4b\x0b\x76\x3e\xe3\x7c\x48\x05\xf2\x8f\x60\xc2\xeb\x62\x4b\x60\x1c\x65\xad\x09\x75\x83\xc1\xda\xa0\xe8\x50\xa5\xae\xc4\xd5\x8b\x1a\x0e\x13\x89\x24\x6c\xb5\xb0\x24\x57\x32\x30\xb2\xa9\x21\xa9\x05\x39\x8d\x62\x90\x46\x6a\x50\x1f\x88\x6a\x61\xdb\x20\x5f\xaf\x2a\xd8\x35\xc2\x2b\xad\x24\xd5\xce\x69\x19\x20\x70\x02\x37\x2f\x11\x7a\xfa\x6c\xa6\xaa\xd0\xf8\xfa\x38\xaf\x9e\x92\xe3\xd3\x87\x52\xa4\x89\x2c\xc2\x2e\x97\x3e\x49\xc9\x0d\xa1\x8d\x92\x82\x10\x17\x13\x47\xbc\x9d\x47\x6c\xe0\xb5\xbf\xd6\x82\xee\x50\x14\xd8\xb5\x11\xe7\x11\xb3\x7f\x1f\x3b\x3c\x65\xbc\x8c\x02\x79\xcd\x7a\x56\x6d\xb0\xcb\x1b\x1a\x69\xdb\xd7\x3d\xe8\xd7\xa2\x84\x20\xc1\x5e\xe4\x25\x4b\xa8\x1c\x32\xd5\x37\xc6\x1f\x7d\xed\x72\x77\x52\xa4\x6e\x8c\x38\xcb\x61\x04\x23\x42\xb2\xf2\x36\x95\xe0\x46\x5f\xfb\xae\xb5\xac\x86\x34\x90\x5c\x14\xa2\x38\xbf\x14\x31\x75\xe9\x88\x6f\x85\xca\xe5\x29\x38\x74\x3e\xac\x19\x16\xb3\x33\x42\x33\x2b\xe8\xf4\x00\x01\x8b\x4b\x3a\xe9\xd4\xf6\xfc\xc2\xc5\xfc\xc5\x18\xaf\x81\xb1\x35\x2a\xce\x08\x3e\xff\x27\x18\x21\x33\x6d\x7e\xd2\xb3\xc4\x97\x17\xb3\x0f\xc4\x3b\x31\x56\x6f\x1c\xf1\x2e\x0d\xa7\x40\x2a\x85\x25\x85\x5b\x88\x0b\x05\x89\xdf\x0e\x3f\x18\x35\x40\xc1\x79\x1a\xdd\x1a\x97\x09\x05\x3f\x68\x19\xee\xc4\x26\x92\xc7\x32\xf0\xa9\x58\xed\x71\xdd\x51\x1d\xae\x1e\xb1\x88\xf3\xac\x80\x1a\x3b\xb6\x20\xd0\xe2\x28\x8e\x96\x5d\x71\x23\x6a\x37\x62\xbe\x50\xb6\x04\x86\xec\x41\x4b\x18\xf3\xdf\xa0\x4d\x18\x3f\xdd\x9f\xa0\x4a\x41\x2e\xd3\xaf\x1a\x2c\xb2\xc0\xa3\xef\xf5\xb8\x6e\x84\xb5\xb0\xee\x63\x5c\xac\xf7\x54\xf0\x90\x12\xb2\x47\xb9\x8f\xc9\x1d\xc6\x5f\x0c\xdf\x6f\xc8\x4d\xc0\xd5\xcf\xfc\xa4\x2e\x8e\x9d\x08\x55\x26\xfd\x33\xcd\x56\x70\xbe\x5a\x06\x77\x08\x21\x20\xc6\xda\x5e\x25\x42\xd7\xc0\x39\xad\x90\x72\x35\x8d\x9d\x23\x68\x61\x31\x25\x42\xbb\x14\x79\x2b\xc8\x80\x95\x01\x37\xdb\xc6\x49\xb5\x17\x41\x0f\xc9\x53\x60\x41\x72\x2d\x58\xb9\xe4\x10\x18\xd9\x20\x3a\x1d\x05\x64\x05\x0c\x04\x12\x10\xcc\x36\x46\x00\x72\x7e\x77\xf3\x44\x13\x4b\x91\xf6\x8c\x75\x00\x9f\x9c\xb4\x8f\xe6\x60\xb9\x72\xc7\xdc\x88\x3e\xf0\x12\xf6\x0e\x52\x75\xb3\xe3\x26\xf8\x6a\xf6\xaa\x27\x9c\xa0\xc6\x84\x63\x40\x38\x68\x2d\xe2\xa8\xdc\x11\x98\x32\xd9\xc7\x88\xde\x8b\xee\xbc\xa1\xd1\x92\x55\x87\x77\xc6\x6b\xd6\x94\x47\x4e\xa1\xcd\xf3\x1d\x30\xc5\x20\x76\x54\x8f\x32\xef\x57\x89\x47\x04\x41\x8e\x11\xd9\xd9\xc5\x12\x3e\x0e\x42\xd5\x26\x09\x51\x7e\x11\x23\xae\xff\xdb\x48\x0f\x22\x0e\x76\x63\x81\x19\x5c\x97\x8a\xd8\x48\x2c\x80\x5a\x1f\xfc\x78\xa6\x23\x7c\x91\x43\x65\x11\x90\x46\x0c\x15\xeb\x2e\xe2\x23\xe0\xa0\x2a\x4c\x20\x63\x58\x7b\x53\xcb\x67\x8e\x05\x41\xa7\x38\xe2\xb7\x47\x3a\x27\x3e\x6e\x54\xab\x44\xa0\x6f\x1b\x08\x70\xff\x8c\xc6\x80\x68\xa1\x31\x89\x09\x41\x5c\xd2\x44\xce\xa6\x99\x10\x31\xcf\x7a\xe6\xbe\xef\xa9\x58\x70\xc7\x8d\xd5\x29\xc4\x18\x0a\xae\x12\xfc\x90\xef\x77\xff\x92\x20\xed\x87\x0e\x68\xe1\xfa\x9e\x57\xa1\x6a\x64\xa9\xba\xf0\x01\xf8\x82\x31\x38\x18\x53\xc6\x77\xf0\x1d\xb4\xe4\x49\x8d\x92\xde\x7a\x23\xe2\x09\xb5\x7c\xda\x4e\xe2\xeb\x1c\x51\x1e\xc5\x70\xc1\x31\x18\xe3\xce\x70\x2d\xe6\xaf\xd8\x29\xfc\x45\x9a\xe8\x94\x32\x37\x5f\x8a\x18\x1b\x7d\x7b\x52\x6b\x26\x50\xd4\x46\x82\x27\xd3\xf5\xdb\xb0\x9b\x49\xdd\x2f\xe5\x84\x49\x51\x7a\x56\xfc\x77\xbd\x3a\x49\x58\xb0\xc2\x38\x9e\xe6\x01\xe0\xf5\x4b\x11\xca\xf7\x94\x42\xde\x07\x2c\xec\x1c\x7e\x7e\xe2\x35\xa1\x83\x9a\xd6\x54\x09\x87\x86\x31\x1f\xf8\xcc\xbf\x70\x80\xfa\xe1\x06\xf3\x7d\x02\xb4\xf6\x5d\x69\xa1\x25\x6d\xb2\x88\x7a\xb8\x4e\xf8\x90\x8a\xea\x88\xa8\x75\x03\x96\xf1\x4f\x23\x6a\x1e\xd7\xbb\x32\x76\x4c\xd5\xca\x08\xd6\xd7\x1f\xfa\x0b\x0d\x58\x0a\x95\x5a\x3b\x31\x44\x1d\x6b\x0f\x6b\x1b\xd4\x01\x4f\x7c\x90\xc4\x05\xe7\xa3\xa0\x02\x1c\xa1\xc9\xa4\xf0\xc0\x41\x2a\xb9\x79\xe2\x7c\x99\x15\xbf\xa4\x47\x56\x8d\x93\xcc\x04\xa6\x1c\x3e\xad\x5e\xdb\x94\x3e\xd3\xfb\xbe\x6d\x38\xa7\xc5\xcd\xfb\x24\x16\x0f\xdd\x17\xd4\x9f\xb9\x3a\x7d\x68\x78\x7b\xc3\x90\x26\xd5\x56\x44\x49\xc0\x2a\x17\x76\x88\x50\x60\xa7\x6a\x1a\x71\x1b\xf3\x64\x74\xb7\x58\xf7\xf0\xcc\xd8\x9f\x60\x1f\xa4\xe3\xe7\x33\xb4\x0a\x70\xe3\xb0\x0a\x75\x14\x58\x53\xc1\xd5\xa4\xba\x19\xff\x58\x8c\x31\x48\x48\x75\x6e\x38\x1f\x4a\xea\x62\x6c\xb0\xf8\xad\x93\xa2\x69\xbb\xba\xd8\x93\x55\x28\xee\xe2\xe6\x36\xc6\x7b\x6e\x60\xb4\x2e\xb7\x08\x69\xc0\x24\xdd\x02\xeb\x56\x35\xcf\x78\x19\xe5\xfa\x34\x2c\x1d\x50\x82\x82\x77\x12\x18\x69\x50\x82\x70\x95\x15\x63\x50\x94\x8e\x11\xf9\xf6\x28\x5e\xf9\x5b\xe7\x57\x88\xa1\x1e\x4f\x17\xfd\xef\xa0\x78\x99\x54\x18\x02\x87\x89\xa9\x1f\xbf\x22\xb9\x5e\xdb\x24\x09\x8e\x5a\xa3\xdc\x48\x06\xeb\x85\x8a\x93\x05\x5d\x03\x27\xc0\x37\x6b\x9a\x03\x0d\x32\x65\xa5\xa6\x8a\xea\x36\xca\x41\xc9\xe1\x07\x36\x85\x63\x45\x2a\x13\x9f\x6b\x63\x28\x73\xb2\xeb\x3b\xee\x90\x54\x8e\x19\x38\x70\x7a\x92\x9c\xa0\xb8\xff\xd4\xd2\xae\x72\xb9\x41\x4d\x90\xc5\xc3\x59\x7a\xbf\x06\x5a\x03\x15\x47\x8b\x39\x19\xaa\xb2\x33\xa2\xd5\x79\xad\xce\xbb\x03\xef\xf3\x5e\x8a\xf9\x77\x44\x87\x73\xb7\xec\x5a\xc7\xa8\xcf\x61\xf7\x02\x35\xfa\x44\xfd\x60\xad\x8e\xdf\xbf\xb0\x77\xf9\x8e\xef\xc9\x52\x5c\x85\x23\x72\x1a\x02\x1c\x48\xea\x0d\x53\x97\xf0\xda\x91\x89\x7b\xd2\xff\x3a\x73\x96\xbd\x15\xce\x77\xbd\x47\x38\x46\x74\x02\xc7\x06\x51\x27\xc8\xef\xec\x4a\xd1\x4e\xcf\xfa\xde\x43\xed\x8b\xa9\x8e\xb8\x0c\xb2\x2d\x94\xef\x2f\xb2\x25\x19\x07\x28\x37\xdd\x1d\xf5\x83\x56\x4c\xd2\xc7\x7e\x6e\x09\x06\xfb\x4a\x51\x63\xca\xe0\x74\xbb\x80\x1a\x9d\x53\x38\x45\x17\xa1\x3e\x45\x6c\xd4\x9d\x83\x20\x2e\xc4\x21\x5c\x52\x17\xe2\x9f\xe0\xd2\xf2\xbf\xb7\x12\xcf\x3a\xe4\x45\x20\xbf\x82\xeb\x52\x4e\x1f\x49\x82\x15\xb9\xbd\x5a\x38\xf5\x7a\xf0\xe0\xf8\xd2\x16\x43\x4b\x3d\x25\x73\xcb\xa4\xb9\x61\xb1\x9d\xc7\xd4\x7c\x09\x3e\x1f\xe6\x43\xaa\x06\x56\x53\x8f\xc1\xf1\x3d\x9d\xf1\xb5\x0e\xc9\x78\xca\x01\xc4\x2b\xb2\xea\xf6\x31\x6e\xcf\x51\x02\x2b\xae\xcf\xd5\xc3\x72\x0b\x9c\x87\xfe\xbd\xb7\x18\x43\x53\x7e\x44\x84\x45\xf8\x1a\x54\x2b\xab\x24\x79\xd4\xe8\x64\xcd\xf7\x25\x1e\x79\x52\xdd\xe7\x8a\x7b\xe9\x70\x0b\x03\x51\x54\x13\xcc\xb6\x28\xb5\xa1\xa2\xf6\x83\x20\x2b\x26\x8c\xca\xf9\xa0\x5c\x56\x41\xdd\x92\x14\x61\x44\xd8\xfe\x34\x08\xd2\xa7\x3b\xba\x83\x5e\x5b\x8f\x48\x67\x9e\xce\x48\x90\xff\x48\x7d\x08\xd1\xd5\x8e\x2f\x4c\x79\x17\xe0\x54\xfb\x5c\x8f\x58\x1f\xf5\xf2\x59\x85\xcc\x8d\x4d\xb9\xf6\x74\x2d\x06\xeb\x11\x12\x0d\xc4\x38\x42\x3e\xe0\x2f\x75\x41\xd9\x44\x2b\x3d\xae\xb9\x2e\x9d\x3c\xae\x75\xdd\x0a\x22\x13\xad\xf7\x4c\x7e\x56\x5c\xfb\xe4\xa9\x89\x88\xbd\x60\x82\x76\x8d\x65\xb1\x79\xf4\xe4\x5f\xf8\x82\x41\x33\x6d\x18\xe2\xdd\xc3\x2c\xb0\x4f\xf5\x7c\xe0\x66\xcf\xfd\xf7\xc6\x63\xd0\x09\x8a\x49\xbe\x78\x1f\x25\xb9\x92\xa3\x6e\x32\x17\xf2\x4a\x92\x57\xac\xcf\xf8\xb9\xd5\x7f\x0a\x02\x8f\x1e\x58\x48\x5a\x18\x64\xc0\xa9\xdc\x24\x76\x3a\x55\x69\xa4\x7b\x67\x71\x6e\xc8\xb1\xb9\x1c\x5a\x69\x40\xd4\xb3\x2e\x84\xc3\x82\xca\x26\x4a\x10\xc3\xa7\x76\x12\x84\x8c\xc6\x69\xff\x4c\x6e\x8c\x11\x7e\x87\xaa\x22\x7f\x8d\xf5\xc7\x47\xa9\xd7\x4c\xa7\xf0\x67\x89\x45\x1f\x0c\x0b\xda\x08\xfa\x98\x11\xb7\x3a\xb7\x3d\x67\x5d\xb8\x3c\xeb\x94\xad\xf3\x84\xde\x51\xfd\x10\xc3\x88\xcd\x57\x8f\xad\xb3\x76\x05\xc3\x9b\x01\x4f\x22\x26\xfd\x15\x81\xef\x79\x30\xc6\xd6\x01\x07\x14\x5a\x6e\x38\xad\x90\x3f\x4c\xd9\x52\x26\x2b\xf2\x87\x74\x10\xfd\x26\xdc\x8e\x58\xde\x17\x58\xbb\x65\x8f\x83\x84\x8a\x30\x7c\x78\x5d\x39\x90\x3b\x3c\x95\x22\x8f\x67\x84\x42\x31\x68\xc7\xdb\x28\xec\x6f\x98\xc1\x54\xa5\x1d\x4d\x2d\x44\xd9\xea\x08\x7a\xab\xf8\x7f\xd6\x4b\x4e\x74\xd5\x7b\xfb\xe1\x43\x29\x54\xa8\x41\x92\xf4\x4e\xd8\x1b\x66\xbc\x56\x38\x53\x16\x95\xb0\x7f\xba\xf9\x56\x87\x37\x69\x09\x33\xef\x63\x11\x03\xdf\x14\xa9\xc9\x29\x2c\x8a\x28\x64\x7a\x64\x7b\x12\x86\x47\x43\x3e\xdd\x0b\x2e\x3a\x8e\x0f\xde\x0e\xa5\x83\xf1\xf8\x2c\x05\xfe\x59\xed\x4e\x34\x54\x3a\x3c\x87\xfc\xbd\x1e\xd5\x45\x87\x38\x3b\x65\xfa\xd0\x7a\x8e\x55\xee\x0f\x0c\x64\xf8\x92\x86\xfb\x34\x91\xf0\x9f\x41\xb8\x64\x42\xc3\xaa\xeb\xe9\x61\xcb\x60\x43\xea\xf8\xb3\x39\x76\xe2\xd0\xd0\x05\xb9\x0f\xfb\x86\xf7\xf7\x9e\xe9\x16\x95\x90\x77\x8c\x13\x09\xee\xd5\xdd\x9b\xf0\x4f\xca\xf6\xe1\x4c\xc5\x23\xd4\xb1\xf7\x86\xf5\xba\x99\x35\xd4\x7a\x57\x81\xe8\xbb\x09\x25\x0f\x43\x9e\xc6\x71\xa2\xaa\x0b\x1b\xc9\xdd\x90\x53\xe5\x11\x4f\xbf\xa4\x71\x22\xe9\xad\x46\x62\x40\xf0\xa6\xfd\x74\x4d\x41\x8c\x93\xa1\x48\xbe\x75\xf5\xfb\xd9\xdd\xdd\xaa\x1f\x82\xa0\xcc\x5c\xc1\x15\x14\xb8\xd1\xd6\xd9\x91\xed\x87\x1a\xb3\x8a\xd8\x19\xfa\xc9\xe7\x1e\x3e\xf0\xf4\x69\xea\x75\x2c\x6f\x9e\x25\x8c\x54\x86\x76\xfc\x8b\x5b\x5a\x22\xf9\xc8\xf6\xea\x5f\x44\x40\x67\xfd\xaf\x6b\x5e\xc2\xb1\xc1\x5a\x94\xaa\x45\x0d\x2f\x14\xd5\x1d\x42\x6d\x6f\xc2\x94\x14\xd4\x1a\x36\x19\x24\x37\xd0\x3c\xd5\xf5\xcf\x62\x77\xf5\x83\xf7\xa1\x52\xa3\x07\x0b\x32\x9e\x9b\x64\x62\xa0\xd5\x27\xfe\xb5\xc1\x3e\xe6\xcc\xa8\xe3\x77\xb3\xbe\x7e\xf3\x18\xfd\x68\x81\xed\xbd\xfe\xf9\x42\xfe\xc2\xf6\x58\x71\x0f\xa3\x37\xe6\x14\x0a\x79\x42\xee\x5b\x6e\x3d\x1b\x67\x1d\xd7\x8c\xa5\x8d\x9f\x55\x04\x4f\x25\x9b\xc1\x5a\xb9\x4c\x87\xec\xd3\xf9\xb6\x4b\x4a\x83\xf6\xcb\xd8\x1b\x7a\x11\x1a\x73\x57\xe4\xa0\x56\x3a\x75\xac\x5b\xe2\x8c\xf4\xe6\xd8\x7c\x7d\x0b\x3c\x14\x90\x31\x70\xa7\xfe\xf5\xf3\xc7\x47\xa9\x3c\xb7\x3d\xd8\xfa\xda\x12\x84\x5c\xd1\xb5\xc1\x37\x74\xfe\x8b\x0b\x3a\x0b\xf7\x20\xe1\x77\x11\xd2\x3d\x80\x24\xa1\xfa\xf9\xd8\x32\x7b\x3a\xf5\x9f\x5b\x17\x3f\xd2\x7e\x00\xc5\xec\x02\xdb\x99\xe9\xf7\x50\xb5\xf4\xad\x30\xb5\x3f\x98\xf0\xfa\xb5\xe7\xb3\x64\x5b\x99\x12\xae\xea\xfe\xc4\xaa\x77\xb8\x1e\x94\x3b\x30\x96\x5b\x59\xf8\xb0\x7b\xa9\x85\xb9\xc2\x79\xaf\xda\xa5\x2b\x06\x34\xd7\xc2\x22\x99\xe9\x78\xc3\xe0\xbd\xbc\xf9\x47\x17\x4d\x3a\x23\x1c\x45\xea\xea\x5e\x24\x9d\x21\xae\x93\xfc\x4c\x7d\xf7\x46\x67\xad\x43\xa9\xc2\x43\x95\xe6\x60\x31\x5b\x88\x83\xa7\x72\x16\x45\x33\x77\xac\x03\xda\xee\xdf\x9a\x5e\x94\xa2\x14\xcc\xba\xa6\x54\x57\xf1\xb1\x64\xac\x24\xd3\x95\xc1\xcf\x65\x60\x82\xae\x63\xed\x3d\xd7\x36\xc6\xec\xfc\x87\x68\x35\xdd\x43\xe1\xef\xed\x5c\x01\x86\x03\x51\x93\x9f\x75\xf7\x22\x5e\xae\x13\xfa\x7f\x0f\xa5\x5f\x7b\x86\x67\x55\xfd\xda\xef\xdc\x82\x64\x38\x34\xf5\xdb\x4e\x3c\x56\x63\xf5\x18\x32\x76\xee\x62\x55\xf7\x46\x11\x6f\xb7\x72\x98\x14\xf1\xe6\xf7\xf3\x79\x21\x35\x75\xea\xe4\x1b\xd7\xc7\x8f\x4e\x0e\x38\x58\x21\x7e\xcf\xca\x22\xec\x53\x81\xeb\xc2\x25\xd8\xf0\x03\xf9\x96\x38\x8f\x1d\x63\x1d\x60\xee\x71\x30\x95\xe0\x3f\xe4\x71\x26\xff\xff\xfe\x3f\x00\x00\xff\xff\x60\x0c\x71\x81\x6d\x1d\x00\x00") + +func staticTextAnimalsBytes() ([]byte, error) { + return bindataRead( + _staticTextAnimals, + "static/text/animals", + ) +} + +func staticTextAnimals() (*asset, error) { + bytes, err := staticTextAnimalsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/text/animals", size: 7533, mode: os.FileMode(436), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticTextAnimalsAll = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xbd\x59\x7e\xe5\x28\xb3\x3d\xfa\xce\x44\xce\x53\x0e\x22\x1b\x57\x66\x7d\x5f\x36\xbe\x65\x9f\x01\xb0\x25\xb6\x44\x6d\x44\xa8\x68\x6c\x2b\x47\x7f\x7f\x6b\x45\xa0\xed\x3a\xff\x07\x89\x15\x74\xa2\x0d\x02\x08\x90\xf7\x65\x7e\xf1\xe5\xe6\x00\x5e\x25\x5d\x9d\xbf\xf8\x24\x39\x38\x7f\x91\xcd\xd7\xbe\x01\x94\xd6\xab\xfb\x78\x29\x7e\x8b\x34\x65\x92\xcd\x3b\xaf\x20\xb8\x8f\x97\x3e\x87\xeb\xdc\xaf\xee\xe3\xe5\xa8\x35\xe6\xe8\xb3\xfb\x38\xf9\xdc\xd6\x58\x63\x6b\xde\x08\x99\xc2\xbe\xfa\xe4\x9d\xff\x17\x99\x4f\xe7\xe3\x12\xfb\x36\xa8\x7d\xc5\xc7\x0c\xb7\x50\x8e\x25\xc6\x41\xd7\x29\xa4\x38\x87\xe1\xde\x4b\x9c\x7d\x38\x89\x5e\xf1\x85\x12\x67\xd8\x9c\x4e\x25\x66\xaf\xf6\xc8\xdd\xe4\xd5\xdb\x14\x72\x93\xe2\x3e\x4e\x53\xdc\x63\x0b\x27\x1a\xc1\x8c\xb8\x4a\xd9\xf8\xb9\x35\x14\xc9\x2d\x7a\x42\xe6\x6c\x95\x50\x64\x66\x64\x71\x46\xaa\xd3\x1d\xa1\xd8\xa6\x98\x25\x1f\x6f\x00\x7b\xc8\x95\x9f\x30\x64\xdf\xc8\x71\x96\xba\x4b\x89\x33\xe3\x85\xa9\x0e\x25\xce\xd2\xd6\x50\xf8\xe5\xc2\xe2\x28\x72\xf1\x4d\x69\x2b\x3f\x7e\xb9\xc8\x2c\xb9\xd1\x76\x97\x82\x58\x5a\xf4\x70\x68\xa8\x0d\x92\xef\xcc\x12\xbd\x3a\xc9\x76\x4c\x8c\x6c\xe0\xe6\xa7\xc0\x4f\xdf\x2d\x52\xa8\xef\x3c\xb7\xbb\xe3\x1b\xd3\xeb\xdf\x53\xd9\xc8\x5d\x66\xf3\xb6\xcb\xac\x9f\x6d\x11\xd1\xf4\x14\xbc\x1a\x28\x9a\xd9\x27\x24\x6a\xf6\x7b\x9c\x9d\x9f\x67\xff\x86\x37\x4a\x68\x0e\x69\xc1\x77\x61\xa2\x1e\xd5\x44\xca\xe6\x90\x22\x8d\x2c\xcd\xc3\x43\x96\x97\xc8\xba\x9c\xb7\x58\x7c\x72\x7e\xee\xa9\xb9\x8f\x81\xcd\x23\x2c\xa8\xf5\x8f\x61\x39\xf6\xa8\xe1\x09\x7b\x55\xd0\x64\x8f\x6d\x0d\x13\xe9\xfd\x98\x42\x11\x45\x52\xb2\x79\x57\x3c\xea\x3f\xa0\xfc\x27\xb4\x13\x0f\x08\x0f\x0d\x35\x82\xef\x5f\xaf\x21\xef\x31\x57\xb4\x11\xf7\xf1\x7a\x8d\x65\x0b\xb3\xfb\x78\x2d\x71\xf2\x19\xb9\xf2\xd7\x22\xbb\x7f\x11\xe7\xaf\x2d\x94\xba\xfa\x6b\x73\x7e\xf1\xe8\x4a\x8b\xdf\x90\x4d\x1a\xf8\xec\xe2\x77\x7c\xb6\xba\x8f\x4b\x48\x9e\xe9\x5d\x6e\xb1\x36\xd6\xb3\xfb\xb8\x64\xdf\x56\xef\x3e\x2e\x62\xc9\x5c\x24\x23\x09\x8b\xf4\x16\xdd\xc7\xa5\x44\x99\x56\xcf\x16\xb3\x8c\x14\xa3\x6b\xf9\xa5\x7b\xf7\x31\xa6\x5e\xac\x62\x06\xd4\x58\x40\xe1\x53\xb1\x84\xd9\x27\x58\xbc\xb9\x8f\x7f\x7b\xd4\xd1\xcd\x5a\x2b\xba\xef\xc7\xe4\xfb\x6c\x86\x59\x5e\xfc\x24\x45\x41\x2b\x52\xab\xfb\x98\x2e\x9d\x5e\x2f\x3d\x69\xe4\x69\x02\x39\x85\x39\xe6\x61\x11\x66\xa1\x91\xfc\xbe\xe2\xbb\x89\x8d\x31\x4d\xc3\xfd\x90\x8c\xf6\x38\x20\x9b\x6d\x9a\x43\xb9\xa6\xc3\x7d\x4c\x61\x42\x9b\xa2\x29\x65\xa0\x8e\xc6\x9f\xc2\x1e\xab\x57\x46\x90\xc2\x6b\xbc\x22\xb6\x70\x14\x61\x9b\x50\x64\x09\x5f\xe0\x7d\x09\x25\x9e\x0d\xc1\xa7\xe4\x73\x93\x48\x14\x17\x0f\xf6\x70\xa2\x6b\xac\xab\xfb\x38\x28\x8b\x23\x09\x3e\xe6\x3e\x26\xd9\xc3\x1b\x0d\x6b\x6b\x40\xcc\x97\x54\x7c\x46\xba\x07\x33\xf4\x69\xf7\x13\x8d\xd5\x6b\xd3\xfd\x98\x2a\xd9\x05\x2c\xb5\xd4\x0e\xf4\x71\xbf\xf9\xdf\xa8\x6d\x1a\xde\xf9\xed\x12\xca\xdf\x7e\xba\xb9\x8f\xdb\x25\xc9\x9e\x22\x19\xc1\x76\x49\x47\x59\x8f\x3c\xa1\x08\xfd\x86\x62\x9f\x0a\xd8\xe8\x76\x39\x6a\x03\xa3\x3e\x51\xd3\x04\x1b\x89\x3e\xb7\x85\x0b\xdc\x43\x1c\x2c\x94\x10\x49\xda\x50\xeb\x9b\x65\x64\xdb\x64\x3e\xf4\x6b\x44\xa7\x6d\x2b\x7e\xe1\x67\x73\x64\x4a\x73\x64\xaf\xa4\x09\x1f\x12\x2e\x71\x86\xc5\xbe\xc6\x4b\xbc\x03\xf8\x05\x92\x14\xf7\xaa\xb6\x73\xdc\x93\xa0\x13\x80\xc8\x81\x15\x09\x28\x6f\x96\xea\x7d\x8d\xe4\x2b\x06\xcc\x79\x2f\xfa\x65\x0c\x17\x17\x1f\xb2\x7f\x87\xef\x01\xfb\x66\xf6\xdd\x3a\x58\xf6\x17\x9f\xdb\x1d\x57\x1a\xcc\x79\xd6\xe1\x29\xe6\xe8\x7c\xf6\x93\x64\x64\x20\x8f\xfe\x9e\xfd\xe2\x6b\xa3\xcd\x5e\x91\x5c\x35\x3d\x40\x59\xe3\xb4\xfa\x79\xc4\xaa\x24\x63\xd4\x17\x43\xd5\x5d\x43\xc1\x64\x28\xd4\x85\x7e\xd7\xea\x27\xfb\x26\x2d\x36\x70\xd3\x3c\xad\xf2\x72\xb8\x8f\x79\x3a\xac\x1b\x01\xc9\xbb\xda\xa4\x05\xaa\x20\xcf\x85\xb9\xa7\x69\x4e\x73\x89\xe4\x6d\x39\x70\xb4\xf4\x79\x09\x89\x4d\xd8\xe7\x05\x1d\x23\x2f\xee\x63\x5e\x38\x60\xe4\xa5\x5b\xa0\xa5\xc7\x94\xfc\x00\xef\x2d\x4f\x36\xa8\x64\x1f\xbe\x18\xf3\x2b\xca\xf3\x22\xee\x63\x5e\x23\x4a\x1b\x86\x05\x5e\x63\x5e\x2c\x6b\x28\xd3\xb8\xf9\x84\x21\xc0\x7d\x24\x44\x43\xcb\xb1\x72\x90\x37\xd8\x4a\xd8\x98\xa7\xdb\x61\x9d\xcb\xe7\x8c\x21\xdf\x7d\x54\x13\xfe\x72\x0c\x96\x3c\x9f\x05\x16\x72\xb1\xe6\x9a\x39\x1a\xd2\x2a\x81\x31\x64\xd9\xc8\xb7\x68\xca\x3e\xc2\x90\xa8\x27\x82\x8c\xf1\x46\x4f\x51\xfd\x9e\xb1\xed\x6b\xe0\x28\xa8\x08\xf2\x03\x2c\x13\x9b\x68\x96\xda\x0a\xfa\xf3\x47\x1d\xdb\xf1\x66\x11\x61\x7c\x3f\xcb\x0b\x44\xe6\x57\x1b\x9e\x4b\x2c\x33\xcc\xe0\x29\x72\xe4\x16\xc8\xd6\xd5\xb4\xe4\xb5\x00\x7e\x42\x90\x59\xaf\x34\xcb\x48\x14\xe4\x02\x1f\x68\x8f\xbe\x83\x0e\x0f\xc9\x28\x5b\x5b\x6a\xab\xfc\x16\xb4\x37\x05\x99\x08\xac\x9e\x65\x38\xa0\x85\xd7\x10\x71\x96\x32\x79\x85\x18\x58\xe8\x16\x93\x4c\x7e\x2f\xef\xf1\x48\x40\x1c\xe9\x4b\x9a\x87\x22\xbf\x05\x31\x09\x47\x43\xe9\xb3\x9f\x9d\xdf\x7d\xc1\xab\x19\x8b\xdc\x3d\x39\xb4\x47\xc0\x3d\x14\x7c\x7f\x5f\x7d\xdd\x54\x94\x00\x17\x80\xc5\x10\x80\x80\x2c\x95\x2a\x0d\xee\x6b\x89\xbf\x49\x15\xd9\x57\xb6\xdb\xdd\xbc\xd2\x39\xb1\xe2\x91\xf2\x01\xcd\x35\x1d\x55\x6d\x8f\xaa\x56\x7e\x97\x39\x40\x76\xa5\x89\x64\x9f\xa3\x20\xc0\xa8\xb8\x5d\x16\x54\x0c\x8d\xe1\xca\x04\xf9\x5d\x52\x60\x43\xd9\x77\x9f\x04\x0c\xde\xef\x7b\xc8\x73\x9c\x7a\xe2\x48\xf5\x11\xe4\xef\x90\x58\x3a\x7b\x0b\x79\xb0\x50\x13\x66\x35\x36\xc5\xe7\xe7\x90\x90\x7f\x3a\x46\x82\x8f\x85\x0f\x79\xa5\x2f\x7e\x5a\x33\xca\xc6\x80\x87\x15\x52\x5f\x3c\xd3\x5e\x7c\x0e\xde\x8c\xe0\x7c\xb9\x98\x4c\xf4\xb1\x60\xa0\x29\x53\x60\x87\xa6\xa9\xb9\x2f\xd3\xea\x83\xc9\x05\xde\xc8\xd1\x03\x8c\x52\xf1\xe3\xc4\x6d\x45\x0f\x28\xd3\x1a\x72\x83\x0c\xac\x58\x07\x44\xc0\x78\xf6\xd0\x77\x84\x57\x6a\x8e\xf5\x16\xd9\xc2\x41\x25\xd1\xa1\x0a\xb8\x85\xde\x56\xfb\x8e\x54\x5f\x16\x73\xb0\xe6\x32\x50\x64\x44\x5a\x64\x65\x6a\x91\x23\xbf\x07\xd2\x0f\x8e\x7a\x2e\x53\x93\x29\x5c\x34\xe7\xed\x2e\x20\x93\xa2\x10\x5e\xd8\x9a\xca\x1c\x2c\x40\x50\xb1\x82\xe0\x25\xda\x88\x6e\x04\xd3\xb2\xf8\x14\xdd\xc7\xb2\xf8\x6a\x21\x96\x90\x1b\xa7\x12\x86\xee\x76\x16\x58\x89\x91\x83\x25\xa2\x97\xa8\x39\x62\x90\xec\x3b\xd8\x93\xa1\x11\x8e\x09\x5d\x7a\x8d\x3e\x2b\x3c\xb2\xd6\xc1\x72\x14\x69\x18\xcf\x10\x66\x64\x55\x67\x17\x25\xca\x06\x01\xb2\xc4\xca\x18\xa3\x5a\x52\x60\xf8\x58\x36\x3f\x93\x85\x8f\x30\x27\x0d\x59\xd0\x28\x01\x82\x8c\x53\xb6\xe3\x55\x0a\x1c\x8a\xbc\x12\x7d\x2c\x6d\x08\xa4\x40\x8c\xba\xb1\xd5\xfb\xa2\x2c\x04\xa5\x6f\x08\xdf\x6b\x51\x66\x3f\xb5\x83\xad\xed\x25\x4e\x02\x50\x27\x76\x6c\xc4\x42\x88\x68\xea\x39\x31\x53\x14\xbd\x21\xba\x81\xe6\x3c\xc4\x2b\xce\xb0\x94\x7d\x3d\x52\x02\x9f\xab\xd1\x46\xa5\x1a\xc5\xf9\xba\xbb\x8f\x18\x4b\x21\x45\x56\x85\x91\x2c\x88\x90\x6c\x42\x74\xf4\x83\x58\x5a\xab\xe7\xf4\xa0\x36\x6f\xed\x09\x88\xbe\xd1\xac\x95\xd9\x40\xce\xde\xd7\xa3\xa1\xc5\x12\x2b\x17\x68\x1c\x05\x3e\xb6\x35\xa0\xd2\xc1\x80\x87\x28\xab\x58\xf6\x1a\xd5\xbd\xa8\x0c\xd5\xd6\x28\x65\x45\x91\x70\x52\xd5\x4a\x9c\x56\xeb\x57\x27\x6e\x56\x34\xf8\x8c\xa1\xc6\x41\xdb\xf7\x1b\x9e\x14\x9a\xfb\x08\x99\x4e\x28\xe4\x21\xda\xae\x02\x80\xfa\x36\x82\xf6\x25\xee\x3a\xad\xed\x45\xa6\x15\x26\xc6\xa6\x64\x93\x1c\x36\xd5\xde\x64\x0b\x28\x66\xff\xe2\x67\xff\xe2\x9b\xfb\xf8\xe2\xd7\xe8\x3e\xbe\xa0\x84\x5e\x64\x0a\xcd\xf9\x37\x49\xd2\x92\xf3\x47\xf8\xe0\x8f\xe0\x3e\x1e\xa5\xae\xb1\x00\xb4\xf5\xf0\xee\xe2\xfd\x87\xe4\xb7\x8b\xbb\xf8\xcb\x05\xec\xed\x93\xbf\x04\xe3\xab\x17\x7f\x41\xc7\x81\xa7\x8b\x48\x86\x71\xc0\xfd\x28\x02\xdb\x4f\x7e\x82\x70\xc1\xf2\x30\x5c\x22\xca\x9a\x36\x17\xda\xf4\x0a\x70\xab\xaf\x71\xdb\x42\x71\x27\x97\x32\x20\xd3\x9a\xa4\x68\x6b\x38\xed\xf6\xd5\x2f\xc1\x28\x0c\x71\x9f\x06\x3a\x3f\x65\xb5\x8b\xb8\xe7\x85\x69\x8e\xb2\x1d\x15\x66\x99\x23\x19\xe4\x27\x9f\x28\x40\xaa\x19\xa7\xb0\xd7\x13\x63\x7e\xc0\x0c\x9a\xc5\x1d\x9a\xdc\xf2\x8e\x38\x1d\xef\xde\xd0\xa1\x3f\xf9\x14\x2b\x46\x00\x05\x56\x5c\x29\x89\x64\x72\xd1\x8b\xc7\xe8\x21\xd2\xdc\x27\x9f\x97\x38\x52\x9e\x6f\xcc\x7b\x6e\x7e\xa3\x11\xf2\xe2\x2e\xbe\x5c\xf8\x0a\x49\x8d\x46\xa3\xe3\x7d\xfb\x90\xa4\x57\x44\x5d\xb2\x9f\x12\x81\xe4\xb9\xdf\x22\x11\xd9\xd2\xc5\x97\xe2\x27\x01\x13\x52\x88\xf9\x1c\xd1\xd6\xf3\x4c\x8f\xc5\x24\xc5\x4f\xbe\xb4\xe2\x37\xa6\xa1\x86\xfc\x77\x74\x9f\x3c\x3a\x60\x9d\x58\x4f\x84\x37\x00\xe4\xab\x56\x74\xe1\xc9\xb2\x6d\x94\xfa\x23\x56\x8f\x4c\x2d\x1f\xfb\x42\x5b\x8f\x50\x16\x0b\xa5\x04\xcb\x0b\x82\xd5\x2a\x26\x0d\x0c\xb2\xa2\x5a\x2e\xfe\xc0\xe3\xdd\x25\xf8\x05\x79\x0c\xfe\x86\x57\xe1\x6b\xc6\xbb\x2f\x25\x2c\x52\x0e\xe0\x17\xb4\xa3\x30\x5f\xfa\xe2\x2e\x01\xbe\xc3\x15\xaf\xc6\x90\x29\x6c\x39\xb6\xe0\x3e\x19\xd2\xaf\x91\x50\x7e\x70\x09\x29\x51\x62\x03\x78\x0d\xe8\xdf\x84\x07\x7c\x99\x5c\x00\xf4\x4e\x2a\xbf\x84\xd4\x17\xef\x3e\x85\x2d\x42\xf0\xb8\x84\x22\xf0\x53\x8e\x49\x36\x29\xfb\x1a\xdd\x25\xb4\x26\x79\x71\x9f\xd4\x8c\xde\x7d\x8a\x17\xa9\xee\x12\x97\x70\x04\x18\x60\x0f\xee\x12\x93\xd6\x03\xc0\xe1\x2e\x31\xb7\x5e\x10\xee\x12\xf7\x30\x3b\x4d\x56\xac\xe8\x69\xb1\x4d\xab\xfb\xc4\x85\x96\x4f\xb1\x0d\xfe\x76\x89\xad\x05\x46\xf4\xe2\xd3\x4b\x70\x9f\x68\xe2\x73\xc9\x5f\x02\xb8\xc5\x25\xf9\xe9\xa6\x11\x11\xf5\xe9\x06\x47\x20\x84\x03\x9a\xfc\x6e\x40\xa6\x9b\x22\x4d\x14\x11\xd2\x05\xb0\x0b\x7a\x24\x50\xcd\xfe\x16\x00\xe7\x39\x94\xd7\xe2\x35\x50\x86\x64\x93\x04\x91\x73\x31\xee\x92\x30\xf7\x99\x24\xa4\x01\x8f\xda\x0c\xce\xa1\x6c\x06\xb7\x50\x82\xc1\x5d\x06\xc4\xdc\xe3\x53\xe2\x7c\x9a\x86\x76\x60\x20\xad\x0e\x20\x41\xe5\x7d\x4a\x21\xe7\x68\x96\x80\x5a\xa7\x8a\x99\xfb\x90\x33\x32\x10\xf3\xcc\x41\xef\x53\x8a\xb5\xd2\x41\x64\x5e\xa5\xe7\x59\x21\x1d\x2f\x49\x5e\x35\xbf\x3d\xf0\x65\xe5\xd6\xc3\x45\x1a\x9b\x53\xea\xe1\x1a\xb3\x99\x2c\xa2\x1e\x96\xc8\x82\xe9\x61\x0d\x5e\x7d\xef\x12\x73\x23\xc2\xe8\xe9\x0d\x46\x96\x53\xd7\x89\xd9\x45\x3c\x9e\xc2\x97\x46\x25\xbe\x58\x82\xc4\xb7\x0b\x23\x95\xcb\x84\xd0\x82\x99\x74\xbe\x01\x34\x1f\x69\xff\xba\xb2\x51\x8b\xb6\x02\x49\x49\x33\x20\xa9\x45\xf7\x49\xb6\x0b\x6a\x00\x26\xb2\x2a\xdb\xe5\x98\xc0\x36\x0d\xa0\xb0\x14\xb2\x58\x07\xbc\x3b\xa4\x78\xc7\x6f\xee\x93\x70\x72\x7b\x91\x6c\x79\x96\xbc\x08\xde\xb1\xc1\x90\xcb\x81\xf7\xcd\xf8\x92\x80\xb7\xa0\x53\x48\xf9\x2d\x48\x4b\xc5\x33\x16\x81\x2e\xe0\x7f\xd2\x74\xf5\xe6\x22\x0d\xa5\xfd\x49\x6c\x94\x04\x28\x98\xb3\xa1\xb4\x65\xfb\x70\x0d\x61\x46\x67\x94\xd6\x53\xcc\x0c\xf0\xc2\x6c\xbc\x98\xf7\x17\xce\xba\x60\x9b\x8d\x8c\xee\x22\xaf\xa1\x68\xbd\xc9\x2b\xeb\x4a\x5e\xb5\x62\xe4\x8d\x91\xbd\x29\x5b\x02\xb7\xd1\x48\x89\x28\xed\x7c\x3a\xa1\x57\x7c\x60\x3a\x73\x19\x28\xc3\x72\x3e\xc6\x54\x42\x09\xb0\xb2\xe2\xd7\x4d\x5d\x37\x7a\xdf\xd0\xde\x16\xd2\xc3\x67\x46\xc4\x97\x59\x1b\xf2\x7b\xf2\x5f\x1e\xc6\x97\x49\xd4\x16\x96\xf7\xae\x96\x96\xdc\x68\x01\xe6\x5e\x82\xaf\xa0\xc2\x8b\x48\xc1\xc4\xe8\x52\x22\xf9\x63\x61\xeb\x29\xb1\x32\x1d\x00\x6c\xbd\x6a\x6a\x13\x2a\xb1\xb9\x4b\x11\x3f\x6b\x4b\x03\x32\x07\x99\x6e\x81\x6e\x79\x12\x18\x32\x6f\xbe\x20\x15\x52\x37\xf6\xa9\x22\xda\x41\x69\x6a\x03\x2c\xf2\x9a\x19\xfc\x53\xe9\x93\x65\xb2\x4f\x56\xad\x40\x0c\xd7\x51\x1d\xa5\xb3\xf8\x0f\xce\x60\x2f\x6a\x66\xf7\xa9\x5f\x28\xcb\x7f\xea\x17\xc1\xab\xa7\x89\xd4\x34\x99\x14\x06\x28\x27\xb4\xad\x06\xa0\x22\xd5\x4c\x63\xce\xe0\x70\x78\xd5\x1b\x3e\xd7\x21\x0f\xc4\xc5\x17\xf7\xa9\xdb\x14\xf8\xd2\xaf\xd7\x64\xbd\xb5\x5f\xf1\xb9\xab\xc5\xcc\x21\xa4\xa7\x4b\x4f\x30\xf4\x35\x0b\xed\xd2\x35\xe6\x69\x55\x54\xcc\xca\xa2\x48\x89\x7c\xb3\xa7\xd4\x42\x29\x11\xad\xac\x6f\x97\x14\x30\x18\x7d\xea\x79\xa1\xd4\x76\xe9\x64\x44\x1d\xb3\x87\x05\xd6\xc7\x39\x23\xb9\x18\x41\x5f\x85\x5d\xa4\x97\xf5\xcc\x77\xd1\x76\xfa\xa9\x97\x2d\x40\xc4\xa0\xb4\xd4\x8b\x71\x8d\x5e\x8a\xb8\x4b\xaf\xab\xe5\xbb\xae\x0d\x35\xdb\x6b\x63\x4b\xe8\x0d\xf3\x38\xf6\x87\x4f\xbd\x05\x78\x6d\x41\x32\x3a\xcc\xa5\x63\xec\xb0\x58\x08\xc1\xfa\xfa\xef\xdf\x0c\x78\x7c\x98\x3c\x86\x9c\xcb\x41\x7e\x39\xf9\xcb\xc5\x2f\x81\x5c\xe6\xb3\x9f\xfc\xdf\x5e\x60\x52\x96\x9d\xfc\x14\xff\xe9\x01\xe6\x0d\x02\xe3\xe4\xe7\x39\x56\xf3\x3a\x17\xef\x26\x1f\xa6\x98\x20\xe9\x7f\x56\xc4\x9c\x7d\x86\x44\x95\x02\x85\xa6\x13\xd3\x65\xf2\x71\xa3\xe7\xc8\x91\x64\xf2\xb1\x80\x4a\x9c\xa4\x4c\x3e\x5d\x41\xc4\x19\x82\xee\x67\x9f\x52\xd4\x49\x21\x21\xc7\x5f\xaf\x38\x87\x49\xe3\x4e\x29\x4a\x3e\x36\xfb\x2a\x28\x2e\x38\x10\xea\x42\xc3\x09\xef\x7e\x6c\x89\x99\xb8\xad\x25\x4e\x77\x27\x90\x6f\x84\x62\x95\x33\xf9\x24\x55\x36\xa4\x35\x1d\x53\x4f\x1a\xf0\xd8\x36\xdf\xde\x2d\xd0\x7f\xf6\xdb\x85\x8d\x61\xf2\x5b\x48\x20\x43\xb2\x58\xb7\xa0\x61\xb6\x3d\xd8\xd6\x12\xb0\x64\xce\x75\x00\x8f\x24\xe7\x3a\xf0\x67\x9f\x3d\xa7\xd7\x88\x29\xfb\x72\xc0\x66\x0a\x85\xc6\xc8\x42\xb6\xa2\x64\x5d\x83\xa4\xe7\x5b\x28\xac\x98\xc9\xe7\x2c\x19\xc6\x8b\xaf\x10\xc8\xdd\xe4\xf7\x90\x62\xa6\x59\x26\x8f\x01\x01\xe1\xf6\xd8\x64\x44\xb5\x0b\xaa\x61\x67\x79\xed\x85\xdd\x9c\x40\x34\xbd\x7b\x89\x93\x4e\x80\x88\xb7\x6e\xbb\x3a\x77\xca\x56\x42\x4e\x0b\x0b\x26\xa7\x37\xd9\x8e\x3b\x46\x82\xb9\x0a\x3b\xf9\x1d\xcc\x84\x69\x3b\x2e\x9e\x2d\xaa\xf8\x0b\x9b\x60\xf1\x17\x4b\x5d\xf1\x93\x4f\x66\x9a\x97\x3c\xb1\x2d\x14\x9f\x47\x4a\x8a\xcf\x6f\x74\xda\xfd\xa4\xf4\x7e\xba\xd4\x1a\x59\x37\x60\x12\xb4\x99\x56\x7f\xf6\xc3\x3b\xc9\x44\x93\x88\xfe\x0e\xdf\x7b\xe2\x36\xce\x67\x5f\xe6\xb8\x78\x03\x23\x8d\x73\xcc\x9a\x48\x02\x76\x3e\xba\xb3\x75\x94\xb9\xa3\x0a\x34\x22\x62\xc6\x1f\x20\x07\x7d\xc6\xe7\xb6\x61\x8e\xe8\xe2\x45\xba\xd3\xdd\xcf\xc6\x50\x39\xbe\x88\x66\x9e\x88\x9e\x6c\xb5\xe2\xf3\x40\x74\xde\x41\xef\xeb\xe8\x09\x65\x17\x14\xb6\x57\x38\x7b\xed\xd7\xca\xcd\x68\xb2\xb1\x94\xb6\x4a\xa9\x88\xb4\x0e\x56\x50\xb7\x50\x64\xd6\x82\xab\x55\x5e\xb5\x35\xd6\x26\xc5\x0c\x2b\x18\x40\x9d\xa2\x7d\xf6\xb5\xfb\xd3\x1a\xf0\xde\x2e\x48\x32\xae\xe6\x3e\xfb\x86\x1a\x45\x6a\x9b\x4f\xfd\x4a\x40\x4e\x36\xf9\x16\xca\xce\xe9\x25\xb0\x95\x62\x5b\x51\xf5\x2c\x2a\x40\xed\xfa\x44\xf6\xad\x26\x7b\xd3\x95\x45\xfd\x82\xcd\xb3\xe9\x72\x4e\xb9\x07\xa1\x5e\x9a\x4f\x42\x33\xc1\x05\x82\x35\xde\x56\xfa\x2f\x87\x9b\xfc\x01\xa9\xe7\x73\xd0\x46\xf8\x39\x5c\xba\x76\x0b\xe5\x48\x61\x8a\xf3\x68\xd2\x53\x98\x8a\xec\xd1\xbb\x29\xe4\x06\xf1\x1e\xde\x73\x2b\x5c\x29\xd3\xc0\xb9\x9d\xf3\x2b\x12\x32\x85\x32\x31\x9e\xcc\x75\x8a\xed\x9d\xd3\xce\x24\x1a\xc6\xc0\x1e\x4f\x8a\xf6\x18\x20\x65\xa4\x8a\xc4\xb4\x4a\x99\x7d\x43\x02\xde\xd3\x61\xd0\x90\x80\x3e\x9f\xd0\x9f\xb8\x71\x1e\xf1\x39\xec\x94\xe0\x3e\x07\xc8\x37\xc7\x48\x65\xf1\xb6\xae\x38\x85\xe2\xd5\x55\x77\x83\x89\x74\x95\x56\x73\x4f\xb2\x0f\x07\x5d\x74\x79\x87\xcf\xf8\x9a\xec\x95\xa5\x34\x60\xbe\x5b\xdf\x63\xd2\x16\x4d\xc8\xe5\x99\xbe\xc1\x61\xe2\x72\xdf\xe7\x50\x26\x5b\x28\x24\xdc\x47\xdc\xd3\x58\x2b\xf9\x3f\x34\xea\x1a\xd3\x10\x08\x11\xb0\x6f\xab\xc6\xd2\xd6\x38\xbc\xbe\x9c\x40\x63\x3d\xd0\x20\x74\xbc\x1a\xa6\x5a\x88\x59\xa0\x43\xeb\x86\xbb\xb3\x8d\x77\xe4\xa3\x71\xe5\x5d\x4d\x0b\xd2\xe4\xce\x63\x8c\x40\x7a\x56\x3f\x41\xc4\x99\x3c\x21\x3a\xfe\xca\x15\x88\x1a\xe9\x18\x9a\xda\x34\x99\xa3\xd5\xd0\xa4\x24\x8a\x75\x20\x4b\x16\x49\xdb\x55\x9e\x56\x7f\x55\x51\x66\x5a\xfd\xdf\xa4\x93\xff\xcd\xc8\xd2\x64\x93\x71\xc5\x55\x4d\xa9\x2d\x2e\xfa\xfd\xcd\x87\x61\xa6\x20\x77\x34\xea\x78\xc5\x30\x16\xc0\x29\x56\xbf\x89\x46\x90\xf3\x70\x2b\x20\x8b\xd7\x37\x97\x3f\x14\x9d\xee\x7e\x8a\x79\xd8\xe5\x91\x90\xe2\xe7\x12\xe3\x1d\xfd\xcb\x7a\xf0\x0d\xa3\xbb\xc1\x14\x58\x1a\x65\x09\xfa\x4d\x08\x11\x30\x25\x79\x4d\x54\x39\x17\xa5\x40\x14\xad\x94\xd5\x37\xee\x4b\x7e\x5e\x7d\x87\xd4\xb1\x86\xd0\x3c\x8a\x29\x40\xc2\xa0\x83\xa1\x66\xf8\xca\xf8\x43\x92\x1c\x38\x85\x31\x22\x32\x30\x41\x1e\x56\x96\xee\x90\x8e\xd9\x62\x3a\xe6\x32\x2c\x51\x60\xa1\x94\xa3\x36\xc9\x28\x8a\x50\x5b\xee\x0d\x2e\x2f\x51\x1a\x2c\x5e\x8a\x34\x1f\xe9\xef\x15\x33\xc1\x69\xc5\x6c\x92\x6f\x3f\x87\xa0\x88\xf1\xc0\x2c\x6a\xb3\x40\xd4\x27\x10\x7c\x26\xae\xdd\xaf\x1d\x1f\x8f\x49\x36\x5f\x1b\x64\x18\xe2\x90\x75\x21\x47\xa9\x63\xb2\x1e\x0f\x8a\x9c\x60\x5a\xe3\xe6\xb5\x04\x08\xac\xc6\xe2\xb6\xfb\xfc\x5b\xbf\x85\x09\x0a\x19\xdf\x80\xc3\x4f\xd6\xb7\x08\x93\xbb\x6f\x3d\xdf\xe0\xa9\x48\x1e\xec\xcc\x08\xfd\x62\xb1\x05\x37\x88\x37\x6c\xc9\xc9\x6f\xc7\xac\x36\x84\xac\x29\x43\x56\x83\xa4\x64\x93\xec\xe7\xff\xd7\xaa\x9e\xd4\x10\xe8\x48\x8e\x51\x60\x4d\x62\x82\x0c\xd7\x1d\x27\x99\x26\x36\x9f\x3b\x89\x8e\x6c\x6b\x92\xb1\x9e\x50\x72\xe8\x77\xaa\xad\x3e\x8d\xdc\xd8\xf2\x25\x13\xf2\x7e\x31\xf3\x74\x69\xf6\x31\x0e\xc4\xab\xf8\x2c\xd3\x81\xc1\x9b\xaa\x46\x99\xa5\xcf\x0f\x49\x92\x40\x5e\xbe\x0a\xb7\x7a\xd7\xb6\x1e\x61\x90\x4c\x3b\xf8\xf7\x16\xaa\x2e\xa7\x7c\x3e\xd9\xfb\xe0\xeb\xb4\x09\x51\x7b\x83\x94\x28\x77\xe5\x07\xa5\x33\xbd\x44\x69\xfa\xbd\x12\x7f\xfb\xa5\x90\x9a\x56\xe9\x0b\xda\xbe\xbc\xba\xcf\x2b\xea\x67\x47\xbb\x67\x4c\xe5\xa8\x9e\x92\x09\x11\xa5\x67\xa0\xb0\x1d\x66\xa7\x6b\xb8\x56\x1c\x77\x7a\xb8\x26\xd1\x81\x84\xc4\x29\x01\x93\xda\xf1\x3e\xf1\xe8\xa1\x46\x35\x3f\xb0\xb5\xad\x7e\xc1\x6b\xba\xbd\x22\x5f\x0a\x3f\xbc\xc6\x94\xfe\xa7\x7e\x78\x8d\xb3\xbc\xc2\x2a\x2f\xde\x4d\x71\xf2\xe8\x9c\x30\xc6\x8c\x9b\x84\xc6\x13\xa7\x35\x41\x0a\x50\x53\xdd\x62\x9e\xc3\x49\x28\x7b\xa0\xf9\xce\xea\x64\x3e\x98\xd9\xa0\xd8\x69\x06\x9a\x68\x33\x71\x0b\x6f\x78\x8f\x89\x43\xcc\x53\xba\x23\xd4\x5f\xcc\xd9\x5f\xc0\x16\x63\x99\x7c\xa0\xa0\x1f\x75\xbc\x8f\xa5\x40\x42\x00\x23\x89\x85\x75\x1d\xeb\x24\xee\x73\xac\x18\xee\xd8\x72\x3f\xc7\xe6\x1b\xab\x30\xb6\xc0\x65\xf5\xcf\x11\xc2\x8e\xb6\x13\x84\x78\x09\xcd\x7d\x4e\x7e\x3e\xb7\x16\xa6\xe4\x37\xd8\x60\x52\x52\x82\xd2\x75\x0d\x68\x9b\xc9\xe7\x05\x73\xfa\x29\xf9\x57\xf7\x39\x59\x17\xff\x9c\x02\xa6\x3a\xe8\x9d\x88\x31\xc5\xbc\x50\xd6\x02\x42\x89\x25\x63\xd3\x53\x92\xda\x8a\x6e\x3c\x4d\xa9\x6f\x17\xf0\xc5\xd4\x77\x8c\x16\x30\x2c\xb2\x63\x0e\x95\x9a\x47\x53\x3a\x76\x76\x9f\x1c\x36\xdb\xc4\x21\x15\x67\x1d\xbf\xff\xa5\x32\x37\x89\x9f\xd6\xd7\x35\xee\x40\x8d\xaf\xe8\x26\xb9\xe0\x81\x67\xb9\xd8\xa2\xee\x24\x17\xb4\x45\x99\xac\xc0\x09\x18\x01\x01\xea\x04\x28\x8f\x26\x00\x7b\x39\x37\x25\xe0\xa6\x8b\x87\x44\x6d\x2d\xbe\x73\x6a\x4a\x1e\xa0\xee\xc7\xef\x4e\x1a\x53\x91\xcf\x68\xd5\xc1\xa4\x55\xcc\xff\xf1\xf2\x2d\x84\x64\x48\x84\x00\xe3\x2d\x64\x68\x21\x5f\x56\xc7\xc4\x8f\xdf\x0a\x72\x06\x24\x18\x32\x65\xc6\xc3\x05\x9b\x49\x42\x52\x35\x15\x42\xee\xc9\xb2\x69\x0d\x82\xfe\x03\x3a\xd2\x01\x79\xe0\xb3\x84\x12\x2e\xde\x4c\xcb\xdc\x2a\xee\xb3\x24\x88\x67\xf0\x80\x61\xf9\x78\x53\xa0\x1c\xf6\xb3\xe8\xa2\xda\x24\x98\xf9\xfa\x05\x25\x96\x52\xd8\x2e\x82\x76\x70\xc2\x4c\x1c\xd5\x55\x26\x2a\x74\x4c\x92\xe4\xa2\x41\x1b\xec\x3b\x2b\x1c\xa6\xb5\x1b\x41\x23\xf0\x66\xbe\xb3\x3a\xfb\x8c\x6c\x9e\x6b\x48\x06\x2c\xc9\x1b\x2a\x75\xc3\x2c\x5a\xb6\x2d\xe4\x8a\x99\x92\x6c\x7b\x55\xd9\x85\x1f\xa4\xe0\x82\xb7\x36\x44\xc9\x33\x26\x1a\x92\xe7\x83\x0a\x1b\x93\xe4\x90\x05\x12\xb9\xe4\xb0\x53\x73\x0f\x56\x07\xde\xd7\x50\x5e\xe8\x83\x62\x81\xe4\x65\x24\x36\x9b\x66\xdc\x67\xc9\x59\x28\x45\xb1\xda\x55\xcf\x04\xb6\xa6\x70\x32\x49\xae\x7b\x98\xe2\x35\x4e\xc4\xad\xc4\xa9\xe9\xe7\x9b\x4a\xdd\x92\x7b\x31\x11\x4d\x90\xb4\x85\xa6\xae\xea\x72\xef\x07\x2f\xb6\x86\x3d\x50\xdc\x56\x13\x51\xef\xbb\xda\xef\xa1\x70\x59\xe9\xb3\x40\x0c\xc2\xf0\x45\x60\x49\x25\x3c\x0b\xb1\xf8\xe5\xd8\xf1\xad\xc2\x92\x2a\x5c\xf5\xfd\x2c\x65\x36\x75\x22\x85\x4c\x58\x09\xa7\x8c\xad\xd8\x6c\xad\xe4\xcb\x12\x41\xc6\x37\xaf\xc6\xb0\xde\x84\x0b\x8e\x98\xd6\x4f\xc5\xdf\x68\x97\x83\xcd\xb8\x38\xd7\x47\x25\x14\x08\x40\xa0\x5f\xc6\x17\x5e\x34\xfa\x63\xf6\x67\x4a\x80\xcd\x36\x9f\xca\x09\x3a\x4a\xbe\xb7\x62\x37\x2d\xc7\xbe\x8e\x7d\x38\xb8\x36\x53\x19\x98\xa4\xe2\x6b\x17\x14\x58\xe5\xd4\x4d\xea\x26\x93\xdf\x76\x56\x74\x6d\x6c\x9c\x2d\x82\xeb\x7f\xa6\x69\x5f\x6f\xf5\x55\x12\xbc\xb7\xc1\x2b\x5a\x93\xfc\x0a\x21\x0a\x76\x4c\x57\xeb\x25\xc7\x37\x37\x49\xe7\x3a\x82\xf4\x05\xd3\x4b\xe9\x45\x3b\x41\x2f\x95\x35\xf4\x8a\x47\xa7\xa1\xf2\x6a\xad\xf0\xb5\x44\xc4\xf9\x56\xfd\x74\x8b\x41\x97\xf2\x26\x39\xb4\x01\x1c\xc2\xae\x7b\xec\xdd\x4d\xc5\x5f\xdc\xe7\x21\xf3\x02\xb4\xf8\x2f\x8c\x70\x5a\xce\xc5\x67\xda\x66\xce\x93\xd4\xd4\xa4\x17\xbf\xfb\x3e\xd3\xdc\x23\xfd\xd4\x0a\xfe\x8b\x99\x46\x01\xfb\x2e\xfe\x0d\xe8\xd0\xc4\x95\x10\xd8\xb4\x60\x1e\x1f\xe0\x23\x1d\xa0\x24\x85\x0f\xc3\x47\x6d\xee\x73\xc1\x70\x55\xe2\x14\x6c\xd2\x40\xc8\xf4\x44\x2e\x08\x4f\x25\x66\x41\x91\xab\xc9\xaf\x71\xf7\xc9\x4d\x45\xfc\x0d\x7d\x0a\x13\x56\xce\x9d\x26\x88\x4e\x73\xc4\x1c\x89\xe8\x00\xd7\x38\xa1\x46\xaf\x04\x4a\xbe\xc8\xd4\x1b\xdd\x3f\x6c\x7e\xe1\xb2\x54\x91\x5a\xb9\x30\x4d\x34\x34\xc4\x21\x4e\xbf\xa7\x23\xc8\xe6\xcf\x18\x9b\xb7\xf8\x9a\x87\xbc\x60\x98\xdb\xc7\x4c\xd3\x2b\x5f\x17\x1f\x91\xdd\x5e\x6d\x76\x36\x10\x22\x3f\xf6\x66\xea\xeb\x5c\xa9\x00\x8d\x51\x25\x8f\x29\xfa\x3b\x8b\x3e\xdc\x31\xef\x7c\xe7\x6a\x73\xf6\x89\x04\x85\x52\x73\x38\x05\x9a\x41\x31\xcf\xc4\x45\xa6\x93\x68\x41\x7b\xb7\x12\x60\x25\x2d\x40\x88\x6e\xe8\x0f\xec\x1e\x40\xbf\xf5\x8b\x2d\x64\xd3\x83\xd1\xa5\x95\x3b\xdd\x8d\xd2\xf5\xcd\x69\xc0\xe0\x26\x88\x4d\x7d\xba\x61\x7c\xa2\xf1\xe1\xbe\x5a\xfd\xb9\x4f\xc6\x8c\x15\x0d\x4e\xd3\x6d\x49\xb3\x27\x34\x92\x9e\x46\xa3\xed\x39\xaa\xcb\xd4\x73\x46\x0b\xe8\xa8\xbc\xbe\x77\x8c\x70\xe8\xaf\x9d\x8d\xf3\xd5\x7d\xee\x05\xf1\x8d\x26\xdc\x4b\x0a\xaf\x30\x8a\x7f\x95\xbc\xc0\xb9\x8a\x0e\xa5\x9d\x33\x91\xa9\xd7\x1b\x5f\x1f\x30\xa0\x7e\xee\x0d\x03\x1b\x06\x2d\x43\x16\x4d\xa3\x3e\x16\x40\xf2\xb5\x6a\x6b\xee\xad\xa5\x30\xa0\x2e\x52\x1d\xba\x70\x7c\xf8\x2c\xa7\xbe\xc1\x67\x50\x13\xcf\x2f\x10\x5a\x7d\x1c\x13\x57\x87\x29\xd5\x1e\x53\x92\x1d\x43\x01\x41\x35\x8b\xa1\x02\x70\x52\xdd\x5c\x20\xb1\x84\xe1\xa0\xbb\xc5\x5e\xc3\x72\x9b\xd3\x7d\x3e\xe6\xb8\x53\x2d\x74\x3a\x16\x32\xcc\x63\x21\x1b\x3e\x36\x6f\x2a\x4e\x9f\x8f\x1c\xf7\x3b\x82\xdb\xbd\x7e\xd5\xf6\x5e\xbd\xd3\x31\x46\x28\x03\xcc\x55\x96\x25\x49\xad\xa7\x77\x4a\xe5\x47\xbe\xa7\x34\x4b\x9d\x28\x37\x1e\x3b\x55\x0c\xd5\xd4\x02\x3d\xf6\xa2\x92\x9d\x01\xc6\x41\x68\x2d\x41\x7d\x8c\xcf\x9e\xf8\x9d\x4f\x7e\xa3\xb6\xd1\xee\x0e\x64\x7d\xf1\xc9\x54\xd6\x40\x6b\x69\xcc\xfe\xa2\x93\x58\xcc\xd9\xdc\x17\x3f\x85\x24\xc0\x6b\x5d\x31\x5a\x7e\xa1\xa2\xd1\xd0\xb5\x3e\xa9\x5e\x4f\x3c\xea\xe1\x1d\x7d\x77\xad\x63\xd5\x67\xf6\x09\xa5\xeb\xb3\x9b\xfd\xe6\xbe\xf8\xcd\xf3\x65\x1a\x0e\xb3\xdf\xaa\x69\x42\x18\x4c\x87\x9b\x7d\xf6\x11\x29\x80\xc1\x0f\x64\x4f\xbf\xfb\x8a\x89\xc0\xec\x0b\x98\xde\x17\x5f\x0f\x53\x07\x30\x58\x09\xc6\xee\x20\xb1\xf6\xeb\x13\xde\x1d\x18\x5f\x3d\x7a\x51\xba\x97\xd3\xa9\x6b\x2e\xfa\x25\x64\x5d\x2c\xba\x63\xcd\x50\xb0\x65\xe3\x39\x4c\x1e\x32\xc4\x17\x35\xbd\x02\x2d\x85\x39\x84\xe2\xe6\x70\x15\x4c\x49\x04\x30\x42\xb2\x09\x51\x1d\x79\x66\x85\x1c\xec\x4b\x48\x71\x5a\x25\x03\xec\x6b\xcc\x23\x02\x23\x35\x55\x8a\x69\x9b\xe7\x22\xbe\xee\x71\xe0\x69\x48\x98\xef\x49\x0b\x45\x8b\x26\xf7\x80\x71\xf2\x86\x12\xf5\xca\xbf\x84\x1c\x2b\xf3\x38\x83\xa3\x85\x0c\xb3\xc5\x29\x21\x74\xd9\xbc\x9d\xde\x21\x56\x99\x95\xb0\x51\xee\xff\x42\x36\x39\xbe\x55\x36\x64\x2f\x1d\xff\x87\xac\x8a\x35\xf0\x1c\x28\x32\x7c\x09\xaa\x90\x4a\x5e\x6c\x44\xdf\x88\xee\x6d\x59\x29\xa6\xb1\x6e\xb2\x14\x15\x3f\xbf\x84\x17\xc9\x6e\x5e\x05\x29\x8c\x7e\xd6\x25\x81\x2f\xd1\xa7\xd0\xf5\xf8\xc1\x1c\xfd\x26\x79\xe6\x86\xca\x1c\xfd\xbe\x86\x22\x1b\x3f\x1e\x75\x2b\xe3\x4b\x34\x85\xf2\x2f\x91\x3a\xe2\x5a\xa7\xa8\xa5\xcd\x7d\x89\x36\xd4\x80\x71\xcc\x77\x02\x1e\x20\xe3\xe8\xe2\xde\x97\x3b\xb6\xb4\x46\xdd\x04\x9d\x31\x4e\x1f\x94\x4c\xbe\x44\x8c\x9b\xaa\x14\xf9\x25\x4e\xed\x18\x45\x10\x4f\xa6\xf1\xe5\x84\x28\xcc\x38\xb3\x92\x35\x3a\xc5\x88\xf0\x7a\x4d\x7d\x41\xfd\xc4\xf5\x00\xd3\x75\x73\xbc\x7d\x98\x23\xf2\xb6\x05\x3b\xae\x32\xc7\xbc\x08\xde\xa2\x4b\xc0\x5f\x0c\x31\x0f\x06\x03\x6d\xaf\xc9\x2f\x21\xa5\xe1\x72\x92\xea\xca\x8d\x23\x03\x6d\x24\x65\x50\xc6\x7e\xe6\xa1\x79\xf9\x25\x5a\x59\xbc\x2f\x06\xd9\x82\x69\x7e\x7e\x89\x5c\x73\xc1\x77\xf6\x24\x36\x83\x23\x9e\xe5\x84\xac\x8d\xdd\x96\xb8\xbe\xc4\x3d\x4b\x84\x31\xfa\x2f\x10\xb9\xe7\x97\xb8\xd7\xb1\x78\xf4\x25\x5a\x43\x8c\x3b\xa9\x3a\x0d\xf6\xac\xc4\x9d\xf7\x7e\x91\x0b\x1a\x6b\x76\xb3\x5c\x2a\x8a\x09\x73\xc4\x19\x1d\x42\xb7\x5c\x67\x99\xc5\xcd\x12\x1c\x84\xc4\x59\x16\xb3\x5c\x22\x82\x6a\xa7\x44\xe5\x29\x24\x73\x91\x14\x45\x87\x81\x99\xb0\x6f\x00\xc9\x8f\xf8\xd8\x4b\x87\x49\xbb\x2f\xb2\xc5\xcc\xad\xd9\x59\x64\x4e\xe1\xd2\xf1\xa9\x62\xba\x51\x5f\xa4\xdc\x30\xdb\x9c\x21\xe6\xf7\x0a\x4f\xe5\x80\xed\xa1\x7b\x50\xb3\x40\xba\x0b\xc9\xcd\xd2\x8b\xf4\x49\x7a\x8a\x6e\x96\x17\xb8\xbc\x46\xee\x2b\x03\x65\xf7\xa5\xf8\x49\xf8\xee\x79\xc8\x0f\x27\x85\xd2\x2e\x1e\x42\xac\x1a\xa1\x19\x20\xab\xa5\xac\xfb\xa5\x84\x58\x6b\xc8\x1e\x68\xf7\xd9\x7a\x85\x11\x08\x1f\xaf\x3a\xe5\x98\xa9\xd8\x30\x17\xd9\x7c\xb0\x86\x70\xc7\x16\x48\x36\x9e\xa8\x9a\x31\x29\xc1\x7b\x1c\xbe\xf9\x32\xa0\x16\x61\x41\x9f\x2f\xc7\x46\x7d\x64\x24\xee\x78\xa7\x48\xf9\xe5\xa4\x10\x53\x47\xcd\xf5\xe9\xc6\xb9\xf9\xdc\xf9\x40\x6a\xf9\x42\x43\xa3\xeb\xa9\x06\xf7\xa5\x6f\x41\x75\x95\xe6\x9e\xdd\x97\xbe\x53\x50\x0a\xb9\xa1\xc9\x7f\xe9\x65\xc5\x10\xd4\x6b\x9c\x0e\xb4\xdd\xa3\xce\x2a\x2a\x7e\x39\xda\xd8\xf6\x79\xf0\x53\x0a\xd5\xa9\xda\x1b\xdf\xcd\x05\x5f\xda\x4a\x41\x26\xf8\xf2\x1a\x17\xf7\x30\xad\x21\x07\x2b\x25\x23\xaa\x0b\x90\x51\xb3\x87\x45\x9c\xb3\x09\xbd\x81\x6b\xaf\xd6\x01\x94\xe0\x62\xe1\xc3\x09\x91\x34\xa5\x28\xd3\x87\x69\xb5\xa1\x3a\x4c\xa6\xa7\x05\xb0\xfb\xe2\x6b\x6c\xf8\x5c\x93\x5d\x15\x1d\x69\x0f\x16\xaf\x96\x3a\xd6\x3d\x60\x98\xbc\x57\x47\x38\xc9\x5e\xdd\xc3\x28\x8a\xa0\x20\xb8\x87\x79\x13\x1b\xe6\x82\x42\xf3\x0a\xa9\x2f\x84\x64\xea\x5b\x21\xa4\x5d\x7a\x83\xa9\xe5\x70\x6d\x2e\x2c\x0b\x1e\x5f\x5c\x58\x4a\x68\xee\x61\xd1\x7d\xd2\x10\xe7\x50\xf4\xcd\xc6\xf9\x10\xb7\x60\xdb\x06\x0f\xb1\x78\xf7\x90\xfc\xc2\xc1\x3a\x24\x9f\x67\x90\x59\xb7\x25\x1f\x54\x8f\xf3\x21\x81\x6b\xab\xa1\x49\x49\x3c\xc0\xf8\x90\x6c\xa7\x38\x24\x5f\x37\x9b\x03\xc0\xf6\x24\x62\x04\x39\xc4\x92\x90\x2e\xf2\xea\x1e\x52\x98\x6c\xcf\x51\x93\x70\xa7\xf9\xad\x20\x6d\x78\x07\x1b\xc9\x0d\x76\x04\xc3\xfb\xbe\x7a\x7a\xec\x0d\x63\x89\xea\x5f\x33\xa8\x2a\xb8\x86\x74\x73\x0f\xe3\xd4\xcb\x03\xc5\xd4\x90\x5e\x42\x71\x0f\xdb\x25\xf0\x38\x85\x01\xf5\xb0\x5d\xa2\x0d\x05\x84\x4d\xb4\xd9\x85\xed\x52\x0e\x71\x61\xdb\x43\x91\xe2\xc2\xd6\xdd\xc3\x76\x68\x03\x0b\x79\x92\x04\x41\x25\xe4\x59\x4f\x94\x3d\x00\xc8\x7b\x64\x1e\x67\x6b\x30\x79\x7e\xd7\x60\xf2\x52\xbc\x31\x85\x81\xab\x7b\xc8\x2b\x37\x42\x1e\x72\x45\x55\x64\x5b\xc2\x7c\xe0\xe2\xd6\xbf\x16\x07\xcc\x0a\x5d\x5a\x97\xbe\xb4\x75\x3e\xe4\x96\xc2\xa7\x4e\x26\xf4\x90\x31\xd1\xb2\x83\x3a\x90\x19\xac\x55\xe6\xb3\x55\x06\x59\xe3\x0e\x8e\x1d\xa4\xf8\x1d\x42\x45\xd8\xd7\x80\x86\x31\xbb\x87\x81\x90\x05\xc5\x92\x87\xed\x28\xac\x7d\x0d\x5c\x5c\x78\xd8\x57\x95\xe1\xc3\x80\x77\xad\x8c\x87\x3d\x26\x3f\xad\xe8\x82\x7b\xcc\x88\x0a\x59\x0a\x7b\xf3\xad\x70\x26\xfd\x00\x49\x89\x73\xfc\x87\x7f\xba\xda\xfc\xa3\xc7\xb2\xc2\x3f\x1d\x6c\xe7\xe1\x9f\x0e\xcb\x82\x49\xf4\x6f\x24\x62\x20\x6b\x0d\x25\xb4\x53\xb0\x79\x28\x71\xac\x8a\x3d\x94\x98\xfd\x14\xcc\x0f\xb1\xda\xaa\x4a\xca\x43\x89\x6d\xe5\x86\x7e\x28\x1b\x3e\x13\x0a\xa2\x86\x6c\xe8\x42\x79\xe5\xd1\xe1\x87\x72\xb4\xb5\xd8\xa6\x69\xe0\x21\xd7\x08\xd9\xc3\x3d\xd4\x69\xe5\x9a\xb2\x75\xa1\x93\x54\x7f\x92\x7c\x71\x0f\xd5\x9a\xd1\x43\x95\x37\xf7\x50\x5b\x89\x69\xf6\xee\xc1\xf6\xa2\x1f\xba\x2f\x53\x93\xea\x42\x3f\x67\x5f\x0f\x27\x04\xbb\x7b\xe8\x13\x06\x76\xdd\x75\x7f\xe8\x64\x4b\x30\x0f\x8a\x96\xa1\x2f\x09\x83\xc3\x83\x9a\x6c\x15\x6a\x87\x21\x5c\x6d\xcf\xc9\xf5\x9d\x44\xb5\xf7\x9b\x2f\x5c\x7e\x79\xe8\x5b\x98\xf8\xa5\x2d\x64\x33\xc1\xc8\x3c\x21\x7a\xcd\x43\x37\x75\xa1\x87\x0e\xd6\xd9\x0d\xf4\xca\x76\x48\xa2\xf8\xa9\xa9\x3d\x7a\x31\xf9\xfc\x43\x57\xc1\x1e\xb6\x45\x20\xaa\xa8\x38\xf1\xd0\xcb\xe1\x53\x30\x33\x9a\x4d\xf2\x71\x8b\x77\xc4\x9a\xef\x98\xe7\x6b\x43\x3c\x21\x7c\x37\xbf\x69\xea\xb8\xbd\x4d\x9b\xf5\xc8\xe0\x50\xe1\x35\xb8\x87\x37\x1f\x8a\xed\xf6\x3e\xbc\x6d\x22\xc5\x3d\xbc\xc9\x24\xb6\x78\x03\x8c\x89\x27\xa3\x7a\xb3\xe5\x12\x41\x89\x1c\xbe\xba\x3f\x7c\x9a\xc4\x5d\xf1\xce\x66\x7c\x58\x02\x3a\x94\x3a\xa9\xd8\x6f\xd0\x24\xaf\xab\xcf\x3e\xc9\xcd\x03\x2c\xee\x0f\x8f\x39\x64\xf2\x03\x58\x00\x62\x5d\xff\xbc\xfa\xd7\xec\xae\xc1\x53\x9d\xda\x14\x39\xaf\x21\xd6\xe6\xfe\xb0\x8d\x95\xab\x9e\xb5\xfb\x83\x5a\x2e\xd7\xb0\xa1\xb8\xfe\x08\xb9\x57\xef\xae\xa1\x7c\x98\xc3\x87\xe4\xf3\x04\x7f\x05\xfc\xfd\x1a\x1a\xd5\xec\xae\xec\x38\xd7\x18\xd2\x7c\xf5\x25\xb8\x6b\x5c\x3e\x50\xe6\xbd\x46\x3d\x99\xf5\x07\x4d\xfd\x44\xb4\x95\x80\x2b\xd5\xab\xff\x88\x9c\x86\x0e\x27\xe3\x24\xd7\x98\xf1\x50\x64\xd7\x8d\xf1\x6b\xcc\x4b\x28\x1c\xed\xaf\x31\xc7\xca\x2c\x44\x2e\x40\x34\x05\x7d\xa1\x09\x11\xc6\xe2\xaf\xeb\x05\xf2\xc6\x55\x7d\xff\x11\x6b\xb5\x0d\x1c\xc0\xae\x5b\x8c\x27\xd4\xe2\x8a\xd4\x73\xd6\x24\x1b\xd4\xa4\x25\xbf\xb8\x77\xc2\xb1\xc1\xbe\x11\xe9\xf7\x92\xdf\x28\x76\x5f\x93\xcf\x37\xbc\xdb\xb0\x6f\x5c\x3d\x06\xe0\x50\xf9\x47\xf2\x2f\xf1\xcc\xb4\x11\xc8\x75\x0a\x1e\xaf\x79\xd1\x7c\x26\xee\x1b\x0f\x93\xaa\x9c\xd7\x14\xb9\x28\x7d\x4d\xd2\x79\xc2\xfd\x9a\xfa\x0d\x91\x1c\xee\x2a\x3e\xb9\xab\x48\x73\x57\x29\x7e\x73\x7f\xe0\x1d\x73\xbc\x82\x59\x5e\xa5\x84\xe1\x16\x52\x58\xd4\x8c\xdb\x45\x01\x2b\x51\x20\xdb\xbd\xd2\xa4\x3a\xf4\x1f\x90\x8a\xb9\x96\x33\x90\x96\x91\x94\x0d\xb3\x46\x33\xad\x80\x4e\xaa\x57\xc3\x9a\x3b\xa9\x15\x5e\xf1\xbe\xca\x1b\x1e\x5d\x79\xff\x03\xc3\x73\xac\x5a\x07\xc5\x67\x08\x72\x71\x50\x0d\x32\x58\xf2\xee\x5a\x82\x6a\xc6\xfe\x51\xc2\x02\x21\x45\x4d\xfd\x60\x89\x81\x8a\x28\x7f\x94\x98\x97\xa8\x21\x15\xe9\x97\x4b\x6c\xd4\x46\x3a\x1c\x75\x43\xf1\xd2\xfa\x28\xb2\xac\xba\xb4\x0f\xb8\x49\x6f\xab\xfb\xa3\x4f\xca\xc4\x00\xc0\xfe\xae\x7d\x02\x27\xbb\x76\xf0\xe8\x3f\x7a\x5a\x4c\x58\xf8\xa3\x27\x64\xfe\xda\xd3\xe6\x0b\xa8\x8d\xca\x83\x7f\xf4\x3c\x53\xae\xfe\xa3\xf3\x64\xc1\xb5\x17\x3c\x5a\x7a\xbd\x9c\xa7\x48\x0d\xf7\xea\x16\x3f\xa3\xd6\xbe\xda\x8e\x27\x4c\xeb\xd6\x8b\x9f\xf1\xe9\xaf\x7e\xa6\xb7\xe4\x17\x71\x5f\xfd\x79\xac\xff\xab\x4f\x01\x33\xb8\x59\x14\x9a\x72\xca\x57\x9f\x12\x99\xd2\xe2\x53\xd2\x98\xef\xc7\x87\x89\xb3\x45\x94\x62\x46\xb2\x16\x43\x41\xed\x8a\xe7\x68\x0f\x2c\xaf\x5e\x83\x93\xde\x2e\xd4\x1d\x07\x00\xe3\x75\x8b\xdf\x02\x5f\xdc\x61\x5b\xf4\xa2\x85\xc5\x67\xcc\x22\x16\x0a\x6e\xee\xab\xca\x6f\x51\xe9\xec\x20\x11\x2e\xbe\x2c\x3e\x07\x44\x5c\x4a\xd7\xd9\x8c\x42\xe6\x92\x8a\xc1\x5f\x3d\x8f\x84\x9d\x13\x82\x77\x34\x93\x42\xaa\xb6\xf0\xde\xb1\xb6\x60\x6e\x85\x5b\xd5\x19\x89\xd3\x23\x64\xf3\xb0\x06\xf7\xa7\xa5\xe6\xbb\x17\xf7\x95\x7a\x63\x0b\xde\x49\x89\xf1\x45\xc2\x4a\x30\x2c\xee\x15\x73\xd0\xf7\x6f\xb6\xd3\x85\x66\x70\x4b\x98\x6e\xe2\x96\x10\x3e\x2c\x21\xb8\xaf\xe1\x76\x33\x66\xbd\x84\x84\x79\xb8\xfb\x1a\x52\xe0\xb8\xbd\x28\x40\x01\x0d\x44\x6f\xdb\x7e\x24\x5a\x2a\xc0\x57\x09\x51\x30\x61\xab\x17\xb9\xb9\x25\xa0\x78\xbf\xe2\xdd\x3c\xcc\x43\x32\x0f\xd1\x7e\x0d\xa2\x7a\x2d\x81\x50\xa6\xe9\x78\x73\x4b\x10\x4e\x90\x96\x20\x5b\x80\x30\x0b\x37\x45\x8c\x7c\xa8\xbf\x11\x31\x8e\x7b\x91\x2b\x16\xd3\xd9\x35\x52\x3f\xd4\xd6\x74\xec\x11\x89\x2a\x97\x98\xdc\x57\x1a\x56\x93\x8a\x99\xe2\x12\x72\xbf\xc1\xc6\x76\xb2\x88\x2a\x8d\xd5\x94\x67\x81\x6d\xae\x44\x58\xdd\x12\x21\x68\x2f\xd1\x17\x30\xe8\x25\x5e\xf0\x5c\x24\xbb\xaf\x71\xf1\xa5\x45\x93\x31\x78\xae\xe3\x6b\xcc\x4b\x3a\x36\x5d\xcf\x75\x5f\x63\xf1\xd7\x2b\xc2\xc0\x0c\x46\x6b\xd1\x46\x55\x9c\xfe\x9a\x7c\x09\x18\x1a\x0d\xe8\x87\x93\xef\x93\xe6\x3f\x19\x2f\xfe\xca\x9a\x4f\x72\x89\x43\x99\x7d\x01\xb1\xf0\x28\xb9\x3a\x2c\xe7\x11\xc4\xaf\x5c\x56\x78\x87\x31\xc8\xa2\x76\x96\x64\x87\x39\x97\xd4\x5b\x93\xec\x20\x13\xf2\x45\xed\xed\x50\xdc\x57\x08\x89\xe7\x72\xf4\x72\x52\xc1\x2d\xb9\xbb\x45\xe0\x5d\x6c\xf8\x00\xa8\x9d\x03\xc1\x57\xb9\xc4\x30\xe4\x3a\x23\xde\x08\x4e\x1b\x71\x8b\x5c\x0e\xb7\xc8\xfc\x1a\x11\x49\x9a\x75\x27\x09\x28\xe4\x70\x04\x22\x1d\x52\x15\xf1\x13\xdb\xbe\xea\xb5\x37\xee\xeb\x89\x47\xa4\x27\xdd\x37\xb7\xc8\x39\x71\xfd\x2a\xd9\xc4\x6c\xf3\x97\xef\x52\xf7\x22\x52\x8d\x2f\x88\xd4\xa0\x6f\xfb\xd4\xce\x02\xa0\x41\x9f\x05\x5d\x4a\x78\x2e\x17\x32\xdd\x42\x08\xbe\xae\x96\xf7\xa5\x75\x70\x60\xf6\x3b\xa9\xab\x7f\xbd\xc1\xe4\x30\xb9\x14\x3f\x99\x78\xe1\xbe\xde\x31\xaa\xbf\x50\xf9\x9d\xb6\xec\xf9\xc5\xcf\xb4\xe5\xd6\xe4\x52\xb8\x3d\xc1\x92\x00\xb4\x31\x61\x29\xe1\x02\x4f\x21\x64\x3b\x60\x44\xcc\xa2\x03\x00\x6b\x25\xb0\x8f\x87\x90\xeb\x8a\x01\x9f\xf0\xd5\x2c\x17\xbd\xf4\xe8\xab\x21\xc8\x7c\x4b\x09\xd9\xcf\x51\x3f\xc1\x38\x0e\xca\x37\x00\x6b\xc8\x6a\x72\x6c\x04\x82\xbc\xb1\x94\x78\xbd\xa2\xfd\x14\x1e\x37\x5b\x0a\xd5\x47\x96\x12\x7f\xff\x66\x22\x24\x64\xcc\xff\x42\x02\xae\x3c\x90\xb7\x14\xc4\xa0\x45\x4d\xb8\xca\x62\xe8\x43\x5d\xb9\x23\x08\x6a\x37\x13\x75\x53\xfa\x85\xaf\xcb\xe1\xbe\x16\x9d\xfa\xc0\x1c\x3c\xaf\xf4\xdc\x60\x51\xdd\xd7\x72\xd8\xd8\xba\x74\x9f\xf9\xf2\x93\xb8\xa5\xcf\x4b\x40\xf2\x7a\xc8\x6a\x94\xf0\xdb\xbb\xaf\x3d\x94\x5c\x91\xd1\x1e\x53\x0a\x9b\x34\xa0\x66\x2b\x63\x4b\x4f\xd7\xd7\x10\x66\x80\xe4\xbe\xf6\x84\x78\x72\x46\x56\xfa\xbe\x23\x10\xc6\xc9\xd9\x7d\x3d\xb6\x4c\x61\x14\x40\xb8\xb3\x4e\xb4\xaf\x51\xd0\x25\x81\x31\x00\x2a\xec\x05\xe6\xae\x7a\x3b\x5f\xe1\x79\x39\x8a\xc9\xd4\x5f\x8f\xd1\x71\x57\x94\xfa\xaa\x4d\x03\x06\x06\xa5\xd5\xcf\x5c\x0c\x5c\xfd\x6c\x07\x36\xbf\x0d\xc4\x30\xdf\x7c\x18\x8b\xdc\x06\xc7\x9a\xe4\x20\x7b\x25\x14\x30\xc8\x95\xa0\x08\x46\x2a\xb3\x55\xc2\xfc\x2b\x39\x42\x9c\x5a\x35\xeb\x7b\x2a\xd3\xd1\xc6\x7c\x85\x92\xdd\x6a\xc2\xe6\xea\x63\xe1\x8b\x7b\xcc\x48\xf7\x0d\x99\xe1\xad\x3d\xee\xdb\xdd\x9c\x03\xa2\x4d\x57\x36\x8e\x6f\x3e\x45\x1f\x58\x38\xab\x4f\xf1\xd2\x1b\xad\x26\xe1\xfd\x19\x84\xcd\x3e\x97\xa2\xfc\x0b\x32\xc4\x7d\xa3\x8e\x3a\xc8\x6b\x64\x01\xa6\x16\x90\x94\xcd\xcf\xe5\xf0\xc8\xee\x16\xb3\xf0\xb3\xdb\x66\x7a\x13\xdf\xfc\xb6\xeb\x79\xe6\xd5\x6f\x55\xfd\xe7\xd9\xad\x5e\x57\x7c\xbf\xc1\x7c\x57\x0a\xef\x28\xe4\xb8\x20\x15\x65\xa7\x53\xd9\x51\x57\xaa\x02\xbf\xfa\xd2\xf8\x0a\x97\x00\x1e\xb7\xfa\xf2\x12\x6a\xb3\xf2\x21\xde\x18\x41\x9b\x56\x76\xd6\xd5\x77\xf4\xf6\xd5\xbf\x6a\xb7\x27\x1b\xc1\x6b\x93\xb6\x3a\xa6\x74\x0d\xf3\x12\xd0\x67\xd6\x40\x4d\xd2\x6f\x61\xec\xab\x02\x8d\x9b\xa8\x88\x79\x8b\x02\xd1\x6f\xf1\x6e\x35\x90\x69\xf5\x06\x3a\x5d\x02\x79\x20\x20\x98\xce\xc6\x6d\x83\x35\xa4\x2d\xe6\xb6\xc2\x9f\x2e\xf6\xdd\x91\x15\x79\xd8\xfc\xb4\x52\x4f\xe6\x1b\xd7\x3b\x8c\xbf\x7f\x0b\x5b\x5c\xc8\x0a\x89\x10\xa3\x61\xcc\x77\xf3\xe9\x47\x97\x47\x06\x92\x3c\x62\x8a\x45\x6f\xfd\x31\x6f\xad\x0c\x25\x65\x70\x9f\x35\xec\x7e\x1e\x77\x30\xf0\x74\x12\x4f\x2a\x7c\x0b\x98\x37\x94\x19\x60\xe3\x82\xf0\x8c\xbc\x16\x34\xc5\x50\x76\x34\x1b\x1a\x98\xa4\xaf\x18\xe7\x8b\x67\xef\x01\x46\x91\x7f\x0b\x75\x0f\x25\xee\x2b\x7a\xeb\xb7\x80\xf4\x9c\x0c\x5d\x49\xcc\x96\x15\xdd\xa8\xb2\xc3\x45\x02\xb5\x30\x29\x65\x25\x61\x4d\x45\xb1\xe5\x90\xf2\xdf\x14\xee\x91\x55\x1d\x51\x35\x84\x2e\x3e\x8d\xd8\x49\x45\x23\x78\x17\x00\xe5\xfc\x6f\xe1\xcd\x6b\xe5\x68\xb9\x18\x25\xea\xb2\x45\x26\xe6\xed\x54\x36\x30\xcc\x32\x7a\xe3\x56\xdf\x1a\xe7\xe0\xbe\xc5\xcd\x9b\xbe\xd1\x1a\xd1\xb2\x63\x9e\x39\xdd\x02\xf8\xa7\x73\x77\x92\x4e\xf9\x70\xdf\xe2\xbe\xcb\x45\xea\xe4\xef\x50\xe3\x06\x65\x7a\x33\xc4\x33\x0f\x81\x13\x72\x0f\x43\xd7\x44\xef\xf4\xf0\xb7\xcb\xb8\x34\x62\x3d\xc9\xe1\x56\xe3\x6c\xeb\x68\x77\x52\xcc\xcd\xae\x92\xfa\x16\xf7\xca\x55\xd5\x6f\xb1\xf4\x39\xe6\xe0\x07\xb2\x70\xa5\xcf\x42\x23\xbf\xb7\xcb\xb3\xb8\x55\x7c\xfb\x1d\xb3\x5b\x05\xc3\xc7\x4a\x0e\x8a\xce\x23\xcb\xb4\x0a\x06\x9b\xd5\x26\x5d\xdf\x24\x5d\x8a\xc8\x0d\xf9\x91\x24\x13\x8f\x55\x30\xa6\x41\xa1\xe8\x88\xed\x86\xc2\x6f\x27\x11\xe9\xb0\x85\xe6\xa9\x06\x07\x07\x5e\x40\xf8\x0e\x8e\x98\x40\xe8\x9a\xf9\x37\xd9\xfc\xb0\xd7\x29\xda\x2a\x5b\xa0\x20\xb3\x01\x72\x4b\xfd\x9b\x9a\x28\x38\x20\x19\x56\x1a\xc5\x2a\x9b\x80\x66\xd3\x95\xb1\x63\xb9\x4a\x0e\xc7\x25\x04\x05\x43\x93\x67\x95\xac\xd9\x45\x8b\x10\xb9\xe2\x75\xa3\x10\xb8\x8a\xec\x02\xdf\x25\xf3\x45\x0d\x9a\x95\x1a\x5b\x4e\x0f\xee\xf0\x4d\x51\x80\x08\x02\x06\x41\x0a\x01\x4c\x4a\xc0\xda\x28\x17\xac\x18\xb0\x67\x96\x6f\x37\x7f\x7d\xdb\x62\x5e\xb8\xd6\xb2\xf6\x6d\x67\x2c\xdf\x8e\xa1\xa6\xf5\xed\x20\x9f\x16\x74\x16\xc0\xba\xf3\xdc\x7b\x70\xb6\x73\xa8\xeb\xbd\xdf\x8e\x79\xdc\x71\x38\xa0\x85\x9e\x8b\xf0\xb2\xc5\xff\x43\x76\xf3\x38\xeb\xa6\xbd\x12\xe8\x00\x23\x86\xed\xe0\xa4\xc0\xb0\x59\x0e\xd6\x03\x4c\x8e\x69\x20\xbb\x6f\x07\xc6\x3d\xed\x55\x47\x40\x69\x1f\x49\x5f\x53\x1b\x73\xba\x6f\x36\x33\xfa\x76\xa4\x33\xad\xe9\x5d\x52\x93\x50\x67\x98\xc1\xa8\xdc\xed\xdf\xdc\xb7\x63\x3b\x2f\x8b\xf8\x76\x64\x30\x2a\x88\xe3\xdf\x8e\x9d\x8b\xdb\x10\x68\x81\x0b\xf5\xee\x79\x6d\xe1\x7a\x27\xa5\x05\x75\x95\x25\x1d\xfb\x3a\x08\xe5\x57\x07\xb7\x03\xd8\x04\x8f\xdd\xb8\xf8\x6a\x88\x05\xb2\xcb\xee\x99\xa1\x6f\xc7\x5e\xa3\xae\x95\x12\xee\x05\x22\x8b\x46\x52\xbc\x69\xb7\x2a\x1c\x42\xf6\x7a\x14\x26\x9e\xba\x8c\x96\x3d\xe2\x31\x29\xfb\xf3\x12\x8a\x7c\xd8\x42\xd5\xfd\xd9\x78\x09\x6f\x2e\x5e\x80\xa6\x35\x87\xbe\x49\x76\x7f\x0e\xc4\xf0\xaa\x7f\xac\x72\xcd\x9f\x77\x1c\xfd\xbf\xa8\xff\xe3\xb3\x57\xb8\x1e\x3c\xf2\x0c\x8f\xcd\x27\xb3\x54\x19\x40\x4d\x04\xfa\xd3\x0e\x27\xfc\x39\xb5\x48\x1d\xd4\x38\x35\x99\xc7\xe7\x06\xd4\x20\xdc\x41\x8d\x90\x1d\xe3\xec\xfe\x54\x13\xdf\x05\x62\xb1\xfc\x39\x90\xd6\x6c\xdc\xfc\x22\x2e\x6e\x3b\x66\x63\x7f\xf2\x88\x65\x75\x7f\xe6\x39\x4e\xe7\x75\x80\x31\xcf\x25\xc2\xce\xc4\xfe\x3f\xf3\xb5\x57\xc1\xf7\xe2\x40\xd9\xc5\x5c\xc3\xd4\xdc\x9f\x34\xbc\x99\x7a\x2e\x2f\x9e\x38\xd0\xbe\x56\x6a\x62\xc7\x5c\x9b\x2f\x2e\xe6\x97\x00\x11\x83\x3b\xe6\x20\x6a\xdb\x42\x6e\xee\x4f\xde\xfd\xf6\xe7\xb8\xf9\xed\xcf\x12\x67\xee\x6c\xe4\xe0\xfe\xac\xd3\x8a\x0c\x25\xcf\xfd\x89\x58\xb9\x16\xf1\x67\xd5\x85\x88\x3f\xc7\xbd\x6b\x7f\x56\x76\xc8\xf9\x48\xd1\xfd\x59\x5b\xbc\xef\x48\x9d\x14\x0a\xb5\xf6\x61\xc9\xe2\x47\x3a\x0f\x32\x91\x3f\xdf\xe4\x52\x54\x65\xe4\xcf\x37\x6a\x3a\xc0\xa0\xdf\xbf\x79\x27\x8c\xfb\xdb\x4f\x7e\xf3\xc5\xf1\x0a\x43\xbc\x7c\xa2\x31\xfb\x57\x9a\xb7\x1c\xaf\xa6\x70\x08\xb2\xf8\xcb\x25\x36\xc2\xba\x85\x64\x28\xc7\x3d\xb8\xff\x78\xdd\x36\xfe\xdb\x87\x25\x20\xc2\xa5\xfb\x61\xf0\xfe\x92\xbf\x7d\xad\x71\x76\xff\xf1\xb6\xd5\xfe\x1f\xff\x62\xf7\x9f\x31\xd4\xab\x7d\xe4\x70\x7f\x87\x94\x54\x0b\xf2\xef\xc0\x35\xa3\xbf\x43\xb9\x88\x77\xff\x09\x05\xb3\x85\xbf\x83\x79\x05\x4b\xfb\x8f\x94\xd9\x67\xae\xb6\xfc\xdd\xf3\x24\xee\x3f\x47\x7e\x73\xff\xf5\x37\xdf\x24\xb8\x9b\xbf\x45\xf7\x5f\x9f\x86\x76\xde\x80\xa6\x7a\x7e\xe3\xa0\x9d\x60\x2e\xbe\x88\xb8\xff\x62\x22\xfd\x6a\x5d\x62\x10\xbd\xba\x9b\x6f\xc7\x1c\x67\x77\x0b\xde\xdd\x42\xa8\xab\x64\x10\x69\xe7\x2b\x06\xf7\xdf\x90\x0f\x7f\x6e\x3d\xdf\x02\x64\xee\xe4\x6e\xd1\xe7\xc5\xdd\x10\x30\xa6\x44\xed\x9e\x1b\x6f\xec\x43\xf2\x6f\x83\x2b\xdf\x86\x7e\xfe\x00\xf4\x96\xb9\x89\x7c\x8b\xf9\xe6\xff\x96\xee\xfe\xcb\x9d\x96\x60\x37\xa0\x9e\x94\x64\x77\x8b\xf0\xd6\x02\x5e\x2d\x90\x6e\xf1\x15\xc2\x3e\xd0\xe1\x6e\xf1\x35\xba\x5b\x0a\x97\xaa\x8b\xa7\xb7\x2c\xcd\xdd\x04\x9d\xe5\x26\x17\xf7\x5f\x76\xc7\xff\xca\x12\x41\x6f\xaa\x99\x7d\x13\xb9\xf9\x4b\x2f\xc5\xbb\x5b\xf1\xf8\x00\x77\xf0\xff\xab\x3b\x1d\x02\xd6\x46\x01\xef\xd6\xe7\xee\x6e\xfd\xc5\xd7\xdf\xee\xbf\xc7\xbe\x8a\xd6\xac\xc2\x5e\xdd\x77\x6f\x3a\x7f\xc9\x5f\x30\xb9\x6a\xab\x6a\xb1\x7c\xff\x17\x19\xbd\xfb\xee\xa7\x50\xda\x30\x2d\xc8\xa4\x8b\xcc\xdf\xfd\xb4\x66\x49\x3e\x6e\x8c\x71\x6a\xa6\xfd\xaf\xcb\x3d\xe9\x6e\x31\x9c\xf5\x38\x4a\xf2\xf3\x71\xe9\x0b\x4d\x16\xef\x77\xbf\xa8\xce\xd0\x77\xbf\x90\x8f\x24\xbf\x28\xbf\xa4\x8d\x71\x4e\xc0\x9d\x31\x2d\x52\x78\xa6\x2b\x28\x61\xfb\x5c\x80\x7a\x90\xfc\xbb\xdf\xbc\xe3\x95\x4b\xdf\xfd\x06\xde\x0a\x7c\x8b\x19\x64\x48\x49\x0f\x55\x23\xc2\x2d\xea\x7d\x66\x27\x62\xc2\x4f\x2a\xf1\x03\x5b\xa6\x87\x6c\x79\xdf\xf6\x12\x0e\x58\xd8\xd5\x7e\x8a\xaa\x9a\xb2\x87\xd4\x8c\x38\x46\x01\xe7\x29\xa0\xc5\x10\xe8\x0c\x87\xa7\x43\x8a\xfb\xee\x4d\x07\x0d\xa0\x23\x99\x19\x4d\xc7\xca\x24\xb7\xd5\x67\x9b\xc9\x9d\x14\x7d\xed\x90\x23\x92\xdf\x23\x4a\x6a\xdf\x19\xf7\xce\x1a\x49\xbe\x2c\x41\x57\xc5\xbf\xfb\x12\xf9\x3a\x97\xf9\x13\x2f\x79\xfe\xee\x47\xba\xca\x0d\x04\x63\x2c\x2f\xc8\x63\x79\xe1\x32\x4e\x32\x80\xf2\xaa\x91\x52\x2d\x2c\x0d\x32\x8a\x13\x33\x6d\x55\x2f\x41\xfd\xee\xb5\x46\x1a\x35\x04\xfc\x89\xd4\x53\xa3\x58\xf1\xdd\xb7\x22\x73\x98\x34\x23\x47\x28\x2e\x05\x7f\xb5\xe5\x9b\xa4\xdb\x5b\xe0\x5c\xa1\xb9\xef\xe1\xa2\x7a\x11\x29\x4c\xeb\x6b\x70\x2a\x52\x7d\x0f\x11\x85\xbc\xf9\x3b\xb2\x22\x0a\xb1\xae\x9b\x47\xc5\xa6\x40\xc9\xca\x7d\x0f\x9c\x65\xa5\xb0\xa1\xb0\xf1\x36\x9f\xdb\x90\x34\xbf\x07\xc9\x97\x50\x16\x82\x71\x19\x5e\x0a\xb2\xfb\x32\x0f\x33\xd4\xea\xbe\x63\x86\x65\x81\x77\x4f\x3a\xce\x63\xe7\xd8\x08\xbd\x8e\x5b\x09\x1d\x24\x14\xdb\xf8\x09\xa2\x6e\xa7\x39\x12\xbd\xc7\x7a\xae\x8a\x9f\x54\x67\xa4\x02\x71\x24\x05\xce\xa6\x49\x8f\xe4\xef\x2d\x66\x69\xbe\x54\x64\x75\x7f\x77\x71\x1f\x9c\x4c\xa5\xe1\xf4\x7a\x57\x71\x20\x35\x26\x1f\x24\xf6\xc6\xe5\x61\x46\x52\xf7\xa8\x49\x6e\xd2\x8e\x7d\x1d\x2a\x10\xef\x2d\x18\x8a\xfe\x8b\xa0\x7e\xfa\xa4\x5a\x9f\x29\xf4\x49\xa6\xa3\xa9\x44\x98\xc2\x4b\x28\xa8\xbf\xd5\x57\xef\xbe\x63\xb2\xc6\xc5\x9d\x14\x31\xfa\x7c\x8f\x9b\x69\xeb\x03\x61\x46\x0a\xf3\x0d\xef\x90\x79\xd0\xf9\x7b\xdc\x78\x15\x1e\x7d\x64\xa1\xde\x77\xa8\x4a\x40\x26\xed\xc4\x82\xcc\xc7\x8d\x8d\x3f\x6e\x3b\x7b\x77\x1c\x4b\x2e\x44\xf4\x97\x27\x49\xd9\x71\x05\x01\xaf\x49\x66\x98\x18\xba\xbe\xab\xbe\x47\x8a\xe0\x37\x51\x32\xaa\x99\x66\xa3\xa1\xfd\x34\xee\xee\x7b\xdc\xfd\x58\xef\x56\x8c\x78\x77\xbd\x54\x5d\x21\x8b\x07\x19\xd9\xf7\xf8\x1b\x25\x30\x6e\x15\xf9\x1e\xc1\x48\x2d\x68\x93\xa9\x58\x3f\x8f\xad\xa5\x90\xc3\x74\x83\x35\x44\xa1\xec\x4f\xa4\x9d\x33\x42\x56\xc1\x94\x2c\xc5\xdf\x9e\x2f\x34\x48\x1a\x9a\xb2\x44\x1e\xc7\x03\x4f\xdf\x21\x4a\x7b\x18\x11\x93\xfa\xef\x72\x91\x36\x4c\x8d\x4d\x2e\x5c\xb8\x49\x32\xf5\xda\xdc\x77\x1a\x08\x70\x95\xd2\x8e\x37\x97\x64\x59\x6c\xb5\x27\x09\x98\x8a\x44\x78\x4e\x71\x11\x97\x24\xeb\xd5\x5a\x00\xaf\x22\xc9\x25\x91\x1b\x35\x81\x92\x48\x76\xdf\x31\x37\xd0\x1c\x02\xa1\xd0\x21\xfd\xe8\xe5\x9d\x84\xc9\x6b\x2b\x23\x61\x82\x51\x12\xf0\x25\xf7\x9d\x46\x53\x40\xfe\x00\x87\x5b\x40\xf5\x48\x89\xd5\x52\x5f\x0e\xf7\x5d\x1a\xb2\xdb\x2b\xe8\xfe\xe2\x91\xbe\x17\xbd\x4e\xea\xbb\xbc\xa1\xa8\xe5\xcd\x4e\x15\x01\x41\xee\x0d\xee\x7b\x9f\x4c\x44\xfd\xde\x79\x9a\x10\xe6\xe1\xbe\xf7\x6b\xc8\xcb\x29\x13\xa4\xbe\x70\xb2\xf7\xbd\x6f\x7b\xc8\xb4\xd8\x76\x2d\xe4\xbe\xed\xb6\x7c\xff\xbd\xa3\xa9\xa6\x6e\x02\xc1\xf7\x5e\x27\xea\x79\x7c\xef\xed\xef\xf3\x1b\x80\xc8\x68\x6f\x85\x2e\x7a\x89\xed\x77\x24\xd7\x7c\xbc\x90\xdf\x7e\x3f\x26\xde\x9c\x97\x68\xa2\x73\x1b\x80\x1f\x40\x94\xeb\x31\xa1\x89\xd3\xd0\x62\x38\x16\x1f\xe8\x77\x31\xed\xf2\xef\xc7\xc2\xc8\x36\x9b\xce\x24\x43\xf4\x34\x20\x43\xe6\x37\x97\x8e\x62\xc5\x75\xe8\x75\x8b\xe9\xa8\xd5\x96\x8c\x7e\xf8\xc9\x4f\xde\x6d\x7e\xf2\xff\xf4\x40\xf3\x15\x96\x63\x5f\x69\xf3\x76\xd6\xee\x87\x3f\xef\xd1\x97\x6c\xd4\x1a\xc0\x37\x14\x27\x9e\x59\x25\x3e\xb9\x0e\x29\x53\x05\x21\x1e\x8b\xaf\x4a\x0c\x1f\x65\xf5\xdb\x29\xa6\xd0\x06\xbc\x60\x23\x18\x7e\x8c\x7f\x13\xff\x16\x5f\x26\x46\x39\xcb\x3f\x1d\x09\x98\x0b\x58\x24\xc7\xf3\x1f\x3e\xf8\x8c\xe9\xf1\xe6\x97\x45\x9a\xfb\xe1\x97\x68\x87\x56\x37\xbf\x40\x2c\xdc\x7c\x5c\x0a\xa2\xfa\x1b\xbe\xff\xb6\x78\x6f\x3e\x32\xd0\x4d\xdc\x0f\x6f\x27\x06\xcd\x29\xf9\x33\x77\xc9\x4f\x82\x81\x39\x0f\x87\xfb\xf1\x19\x25\xa9\x25\x64\x50\x95\xa8\x36\xde\xb5\xd3\xf0\xdd\xa4\x2f\xc1\x3b\x66\x61\x26\x53\x42\xf7\xfe\xe1\x53\x32\x35\x43\x42\xcd\xb7\x69\xe2\x6b\x3d\xa5\x16\x2a\xc2\x6f\x17\xc4\xb9\x6d\x1e\x75\xb2\xe9\xad\xd0\xa0\xa5\xad\xb4\xe8\xcd\x8c\x95\xc1\x80\xac\x26\x37\x7c\x38\x7b\xf0\x4b\x98\x2d\xc0\x32\xab\x1e\xe8\x0f\x03\x0c\x93\xe7\xce\x84\x67\x7a\x58\xfc\x25\x1c\xb0\xb5\x68\x72\x34\xbd\xaf\x1f\x27\xf4\xc4\xc8\x0e\x7a\xe1\x0f\xc8\x32\xbc\x52\xee\xc7\x50\xbe\x83\x83\xb9\x47\x5e\xeb\xfd\x63\x20\x16\x24\x17\x10\x3d\x86\x46\x06\xdb\x7c\xee\x4c\xd2\x9b\xdb\x20\xea\x60\xb6\x12\xdd\xe6\x59\x41\xc5\x5f\xa4\x3b\x5e\xa3\xb5\xf9\xb2\xf8\x66\x26\x92\x58\x96\x78\x9e\xf1\xa0\xdf\xdb\x2a\x05\x66\x62\x9e\xcb\x26\x35\x34\x05\x28\x25\x18\xf4\x56\xfb\x1e\x59\x9e\x86\x34\x30\x04\xf7\x1f\x7a\xf9\xc9\xc6\xbd\x4c\xb7\xf9\x5a\x7d\xf5\x9d\xd5\x54\x5b\x9c\x54\x6b\x9d\x2b\x0f\xd7\xab\xda\x2d\xb6\x72\x33\x88\x22\x94\x78\x36\xde\xd5\xc7\xae\x53\xcf\x83\x49\x27\x8e\xa3\x98\x5e\x42\x89\xd3\xcd\xfd\xf0\x6f\xb6\x4d\xfa\xc3\x1f\xa1\x51\x3f\x68\xf3\xc7\x35\x21\x97\xbf\xc1\xff\xb7\xe0\x67\x79\xa5\x24\xb7\x05\xaf\xba\x9c\x00\x14\xaf\x7f\x84\xc9\xe4\x90\x6d\xa0\xec\xb6\x30\xf7\x0a\x9b\x50\x6e\xbe\xb9\x1f\x61\x61\x37\x0f\x27\xd2\xca\x50\x62\x2c\xd6\x82\xd4\x75\x92\x13\xb5\xd3\x1f\x17\x72\x8a\x2e\x98\x28\x9d\x0f\x5b\x70\x55\x72\xa4\x01\x98\xcb\x0a\x3f\x4e\xa8\xf9\x0d\x0b\xaf\x97\xa6\x3d\x98\xc3\x19\x76\xd7\x7b\x70\x08\xcf\x48\x54\x7d\x2b\xd3\xf6\xbe\xd5\x79\x52\x7d\x73\x3f\x42\xf2\x59\x17\xb8\x09\xb9\xb1\x4b\x24\x63\xe1\x5d\xa9\x3d\x9d\x10\x0d\xf3\x47\x48\xc1\x2f\x63\xac\x1f\x94\xda\xf3\xad\x3d\x3e\xe8\xf1\xde\xe1\x29\xe9\x42\xc4\x8f\x90\x64\xf1\x2c\xc8\x24\xc3\x4d\x92\x40\x6e\xbf\xc3\xd3\xc1\x54\xe2\x08\xb9\xf3\x3c\x19\x55\x21\x42\x00\xf5\x52\x69\xb5\x5d\xc6\xf1\xc6\x2d\xe4\xd5\xcf\x68\x8f\x21\xc7\x7d\x47\x44\x59\x76\x21\x3d\x64\x90\x1f\x3c\xf0\x11\x4b\xd1\xea\xa0\xe0\xa5\x46\x50\xd3\x52\xb0\xaf\xd1\x18\x98\x42\x78\x2e\x93\x5d\xef\xbc\x85\xb2\x78\xde\xcf\xfe\x23\xa0\x37\xd1\x1b\x2f\x19\xdd\x78\x71\x2f\x28\x4a\x4c\x00\x9c\xcb\x28\xea\xd3\xa4\xf5\x35\x2e\xe7\x25\x52\x8b\xb1\x61\xbe\x05\xf0\x6e\xcc\x8a\xb7\x50\x43\x9e\xd6\x63\x83\xbf\x2a\xd3\x38\x1f\x79\x5e\xc0\x00\x60\x6a\xa6\x5b\x68\x9e\x17\x5b\xfe\x08\xcd\x5a\x00\xed\xee\x8d\xa1\xf9\xdf\xa2\x76\x14\x42\xb7\xc0\xf9\xd2\x12\x00\x5f\xdd\x16\x27\xfe\x8f\xe0\x47\xe4\x00\x96\x5b\x41\x3b\x21\xf1\xae\x99\x93\x96\xc9\xb4\x89\x4e\x12\x59\x02\xd6\xf3\x2e\xc3\x65\xe6\x79\x86\xdd\xdc\x56\x93\xb8\x49\x6c\xc7\x9b\x7e\x51\x50\x8e\xb1\xda\xa7\xf4\x5a\x1e\x6f\x21\x6c\xff\x86\xfe\xee\x3b\x66\x3f\xec\xa0\xc9\x36\x3e\xda\x0c\x74\xbb\xec\x49\x31\x03\xce\x4b\x70\xdc\x4b\x02\x1f\xde\x62\x4a\xa1\xfc\x4f\xfd\xd0\xd6\xbe\x5d\x48\xea\x9d\x48\x5b\x4c\xcd\xfd\x88\xe9\x85\x11\x8d\x0c\x6c\x8c\x21\xdf\xf0\xca\xf2\xea\x7e\x98\x16\xc5\x8f\x58\x84\x77\x3c\x6c\xac\x22\xf1\xee\x87\xf0\xd7\x24\x34\xb4\x19\xca\x74\xae\x90\x6c\xf2\xb7\x2f\xe8\x98\x72\x83\x03\x9a\xbf\x0c\x5f\x3c\xe4\xfe\x83\x46\x0e\x15\xa3\xb2\x60\x68\xc1\xa0\x42\x70\x83\x29\xd3\x0a\xfb\x71\xc8\xe3\x07\xf7\x01\x98\x3d\xe1\xde\xe4\x0f\x49\x2f\x08\xb9\x99\x28\x4b\x44\xe7\xec\x67\xbe\x13\xdf\x85\xf1\x64\x32\x09\x1a\x19\xa6\x6a\x30\x6c\xbc\x59\xb3\xc0\xbc\x61\x10\x93\x2c\xef\x46\xf6\x41\xa1\x78\x84\xc7\xd5\x37\x83\x64\xd4\xf2\x6e\x3d\x73\x93\x2c\xb6\xfa\x0e\xfb\x4d\x94\xdd\x40\x18\x28\x41\x5b\xb7\x61\xfa\xa5\xcc\xbd\x8d\xfb\x8a\x37\x91\x42\xad\x2b\x80\x15\xed\x52\x0a\xc6\x2b\xb6\x11\x18\x82\x91\x56\x8a\x16\xb6\xae\xa8\x6f\x52\xff\xe9\xb1\xc9\x09\x18\xd3\x0f\x69\xba\xcc\x72\x22\x4b\x5d\xc3\x57\x1a\x86\xb5\x4d\xfa\x15\x22\x9a\x9e\x43\xe1\x1b\x49\xe9\x6d\xbd\x14\xd5\x1d\x25\xb1\xfb\xd2\xdc\xd6\xf9\x13\xa1\xad\xcf\xf5\xa6\x0a\x8a\x3f\xfa\x12\x93\xbe\xb5\x8c\x80\x74\xc2\xbc\xf5\xa8\x6b\x6c\x5b\x87\x20\xd3\x53\x0a\xcd\xfd\xe8\x69\x78\x4c\xf0\x37\xae\xcc\x80\x33\xf5\xd1\x60\x8f\xec\xf4\x6d\x8b\xd3\x2a\x8b\xfb\xd1\x73\x8b\xe4\x79\x5b\xcf\xed\x6f\x3f\xb9\x1f\x60\x51\xd9\x62\xb1\x81\xa1\x53\x0f\xe3\xc7\x98\xac\x6f\xbd\x80\x03\xa0\x76\xd8\x8c\xf8\x2e\x33\x35\xe8\x80\xe3\xe4\x77\x7f\x22\x8b\xca\xf6\xe7\x08\x94\x51\xf7\x3a\x8d\xf8\xea\x2d\x24\xc8\xf4\x81\xb8\x60\x40\xec\x75\x88\x60\x86\x2c\x29\xb5\x86\x04\xa3\xf9\x8c\xe4\xd7\x16\x92\x37\x73\x7c\xa0\x05\xcd\x64\xf3\x19\x11\xb5\xb3\x62\xfa\xef\xdf\xe8\x19\x87\xc7\xa3\xbc\xe5\x30\x9e\xfe\xe3\xf0\xb3\xae\x64\xfd\x38\xa6\xd0\xee\xba\x5c\xdb\x31\xdd\xb7\xec\x7f\xbc\x23\x18\x1e\xae\x7b\x82\xb0\x44\x37\x85\x6d\xc4\x7d\xb7\x48\x1a\xf1\x9d\xc3\x80\x3a\xe3\xe4\x8a\x61\x28\x93\x12\x63\x93\xe7\xc7\xc1\xcd\x72\x6b\xf2\x07\xff\x0c\x31\xcc\x86\xa6\x7f\x42\xba\x67\x84\x96\x49\x6f\xa8\xfb\x71\x8c\xd5\xba\x1f\x87\xca\xf6\x87\xca\xf1\x47\x89\xdc\x71\xfd\x71\x94\x2d\x4c\xfc\x3c\x80\x9e\x43\x30\x6c\xe5\x7e\x27\xec\x0b\x46\x53\x4a\x01\xc1\x1b\xb1\x4e\x64\x7c\xe1\xa8\x7a\x7b\xb9\x21\xb5\x41\xd4\x90\xd0\x42\x8b\xee\xc7\xd1\x46\x73\x3e\x74\x42\xfa\xe3\x78\x63\xfb\x82\x61\x0e\x6f\xf7\x93\xb9\x4a\xdc\x50\xcd\xdb\xf1\xf6\xbe\x2e\xde\xee\x0b\x2e\x20\x86\xa6\x3c\xf0\x59\xcc\xdb\x3b\x22\x93\xd2\xa9\xd6\x4f\x1f\x36\x74\xff\x99\xf8\x6f\xef\xb2\xcf\xf9\xc0\x9b\xff\x51\xc9\x7e\xef\x2e\xfb\xf2\xba\xfa\xe4\x7e\x7a\xbd\x17\xe8\xa7\xaf\xdd\xbb\x9f\x1e\xed\x2a\x12\xd8\xd6\xd2\x4f\xdf\x4a\x7c\x73\xd9\xb7\x66\xbf\x3a\xfa\xe9\xfb\xa4\xd7\x0a\xfd\xf4\x7d\xe4\xf7\x27\x7f\xf4\xd4\xab\xcb\x21\xcc\xa6\xc0\xfd\x13\x32\x15\x6f\x2c\xca\xe1\xd6\x24\xbb\x9f\xd4\x84\xe1\xb5\x5c\x0a\x67\xef\xb2\x02\xc4\xb0\x85\xd2\x02\x9c\xe4\x7e\xf1\xdc\xcf\x20\xd7\x78\x09\x05\x00\x33\xa3\x9f\x41\xf6\xb5\x30\x2e\xa1\xd8\xfa\x33\xec\x7c\xe9\x25\xc4\x03\x58\x9a\xb4\x83\xe6\x50\x62\xf3\x6a\xc4\xd9\xfd\x54\x73\x38\xc4\x8c\xf0\x18\x6b\x61\x56\x6e\x41\xe7\x40\xbe\x0a\x83\xcb\x3a\x3f\x03\x5b\xde\xcf\xd0\xc7\x38\x9e\x07\x64\x52\xba\x69\x0c\x30\xc1\xaf\x57\xe9\x79\xe6\x41\xa5\x1c\x5e\x9b\xcb\x71\x59\x1b\x55\x49\x88\x62\xa6\x08\x97\x63\x5a\x7c\x74\x3f\xe3\x56\x3c\x86\xcd\x1c\x9b\xfb\x19\xf5\x80\xc2\xcf\xd8\xce\x9f\x9a\xbd\xc3\xd6\x2f\xf3\x3b\x9b\xbe\x29\x59\xef\x6d\xe7\xa7\xd2\x7a\x8d\x56\x96\x09\xed\x70\xf2\xee\x27\x66\x07\x66\x68\xe6\xb5\x31\x08\x77\xb1\x98\x5b\xc8\x04\x93\xfb\x49\x43\x3f\xf5\x53\x5a\xe0\x86\x1a\xc0\x16\xf5\x06\x92\x2c\xe3\x66\x8f\x9f\x03\x31\xa2\xa6\x97\x13\xc2\x56\xab\x4a\x1a\xe7\xe4\xfe\x44\x5a\x2b\xbc\xdc\x81\x97\x6f\x69\x64\xba\x49\x09\xeb\x72\xbc\xf3\x03\xa2\xab\xbd\x4d\x70\x7f\x0a\xff\xc8\x50\xdd\xcf\x3e\xc5\x6b\x41\x47\xfe\xd9\x67\xbe\xce\x73\xb7\x2e\xf7\xed\xe2\x9b\xfb\xd9\xb7\xc0\x75\xb0\x9f\xfc\xbd\x94\x1a\x9a\xef\xbe\x6d\x3d\x41\xf2\xf8\x69\xc8\xac\xdb\x54\xb8\x06\x01\x48\x9d\x20\x97\x0f\x8f\xda\x38\xa6\xe6\x33\x26\x64\x84\xa1\x84\xce\xc6\x8f\xc4\xea\x62\xae\x42\x29\xfe\x4d\xe1\x16\x72\x70\xf9\xd8\xf6\x55\xdf\x3e\xa1\xd9\x0d\x84\xfc\x19\xae\x8a\x78\xbc\x68\x5c\x29\xfe\x6b\x0a\x98\x4e\x84\xea\x64\x0a\x49\x9a\xfb\x35\xad\x28\x3f\x3f\x00\x63\x90\x89\x1a\x66\xee\x97\x9a\x7e\x80\xbb\x63\xaf\xee\xd7\xa4\x27\xd3\x7f\xcd\x72\xb1\x71\x4f\xa1\xda\x4d\x12\xf9\xd3\xbf\x5f\xb3\x64\x08\x16\x42\x93\x7e\xb8\x4e\xdd\xa2\x41\x5b\x50\xfb\x15\x86\x10\xf3\x2b\xcc\x2a\x67\xb2\x95\x9c\x14\x46\x82\x41\xf4\xcd\xfd\x0a\x19\xfe\xe1\xa1\x9a\x36\x07\x11\x22\x58\xa6\xf7\x57\x24\x48\xd4\xdb\xfc\x25\xea\x31\x79\xb9\xf9\x3d\xba\x5f\x78\x7b\xf7\x2b\xc5\x45\xec\xf6\x44\x39\x71\x50\x7b\xfb\xe5\x9a\xa4\xcd\xfd\xda\xfc\xea\x9d\x6c\x98\x00\x97\xb0\xaf\xb0\xde\xec\x42\xd5\x5f\x1b\x95\x85\x9c\x64\xbf\x84\xe2\x7e\xe5\xe9\xae\x8c\xfa\x2b\xcf\x98\x5c\xba\x5f\x79\x1c\xe8\xfc\x65\x57\xeb\xfd\xc2\x2c\x93\x33\x2e\x6f\x18\xed\x5a\x91\xce\xbd\xe5\x8e\xb3\x93\xdd\xaf\x4e\xf6\xa0\x2a\x1c\x1c\xf5\x7a\x42\x39\xec\x6b\x90\xb9\x20\x28\x7f\xa4\xa4\xdf\xd8\x57\x3d\x0e\x3d\x40\xbb\x5b\xdb\xc4\x0d\xd8\x36\xda\x01\x29\xb1\x18\x52\xe1\xe2\xd7\x1e\x6b\x5b\xe5\x6c\xfb\x46\x4f\x76\x49\xdf\x9d\x64\x0c\x24\xa8\x4b\xac\x65\xbe\x4b\xad\x7d\x73\x48\xfa\x02\x79\xc2\xfd\xd2\x1d\x2f\x44\x64\x48\xa3\x29\x13\xc5\x9f\x5f\x25\xf8\x2d\x0b\xc1\xd4\x64\x5c\x54\x7a\x52\xea\x45\x57\x7b\x7f\x95\x71\xc0\x88\x08\xcd\xbb\x6c\x28\x78\x3d\x19\x5e\x99\x5c\x79\x47\x64\xa3\x64\xc3\xf4\xc1\xfc\x29\x31\x3c\x6a\x7b\x57\xf8\x4e\xb1\xf8\x5f\x36\xfc\xd0\xbe\x32\x33\x7b\xcc\x0b\x46\x9d\x5f\xa5\xb1\xab\x49\x41\x8c\xe7\x28\xf9\x0b\xe4\xb8\x84\x55\x09\x72\x76\x42\x9d\x1c\x49\x69\xbc\x4c\x0b\x79\x5a\x18\xa7\xc9\x33\xd6\xcf\x4e\x9a\xd1\x41\xbc\xd1\x3b\x12\xa4\xb0\x08\x8e\xdf\xda\x5e\x2a\x05\xe9\x26\x83\x81\x4b\xe5\x79\xe5\x5f\x34\xe0\x3e\x36\xb0\x88\x10\xbe\x72\xff\xef\x17\x38\x73\xd4\xfb\xc2\x40\x84\xf3\x3a\x41\x10\xef\x8e\xad\xbf\x23\x4d\xb0\x10\xd8\x0c\xfd\xb6\x5f\x27\xc1\x68\xce\x9b\xa9\x14\x83\x79\x88\x21\xcc\x88\x7f\xdd\xb1\x7a\x47\x43\x83\xa1\xad\x86\x8a\x26\xab\xfb\xd5\x38\x8b\xa7\xa1\x91\x35\x4e\x1d\x61\x0c\xba\x3a\x1e\x46\xd7\xb7\x6a\x28\xfd\x02\x4b\xff\xd5\x8b\xcf\xf7\xa3\xda\xbf\x5e\x7c\xe2\xa6\x82\xbc\xa0\xeb\x94\xd9\xfd\x7a\xe1\x7f\x37\xe4\x25\xee\x52\x39\xad\x42\x9d\x71\x01\x30\xd2\xb5\x3a\x79\x4d\x78\x42\x73\xf2\xe6\xe4\x8d\x87\x80\x7e\xbd\x1d\x17\xee\x97\xfc\x7a\x3b\x52\xa0\xd4\xf7\xeb\x8d\x7f\x03\x50\x23\x0f\x0b\xcd\xc9\xc1\x31\x5e\x8d\xa1\x78\xcf\xdf\x40\xee\x7e\x0a\xc5\x3d\xfa\x09\x42\x97\xaa\xf9\xef\x77\x42\x87\x3e\x5a\xb0\xbc\x76\x3f\xdd\x54\x4f\x6b\xa7\x8a\x44\x73\xbb\x9f\xdd\xa3\x9f\x67\x04\x9b\x87\x30\xb4\xfb\x39\x6c\x01\xf3\xa5\x47\x3d\x19\x56\x01\xec\x98\xfb\x40\x6a\x59\xd4\xb0\x74\x12\xd1\x26\x41\xae\xcb\x27\x30\xd7\x14\xfc\x44\xf9\x66\xf7\xe9\x8a\x66\xf3\xe8\x53\xcc\x67\x60\xe2\x5e\xe1\x4a\x15\x39\x05\x31\x8b\x7b\xf4\x88\x2b\xcf\x51\x4e\x93\x61\x76\x9f\x17\x49\x91\x96\xe3\xca\x11\xc0\xb2\x0f\x67\x9e\x0f\x7c\x54\xd3\x13\x88\xad\x97\xec\x7e\x8f\x49\x33\xb9\x47\x01\x29\x2f\xb6\x01\xf0\x08\x59\x50\x73\x58\x3c\x57\xf4\xc9\xfe\x40\xcd\xb1\xda\x76\x03\x29\x79\xb3\x14\x17\xcf\x6d\x1a\x58\xa6\x31\xdf\x53\xc2\xee\x7a\xda\xf9\xcf\xb5\x09\x83\x0d\xe1\xd9\xb9\xe1\x0b\xb3\x6f\x7f\x42\xed\xa5\xf0\xc5\x15\xbf\x8d\xf6\x75\xd2\xff\x0d\x9e\x07\x9f\x61\xf9\x5b\x90\xa7\x51\x7e\xc5\x14\x0a\x76\x5f\x0a\x5f\xd2\xcc\xb0\x6a\x2d\x18\xda\x16\x7a\xed\xac\xca\x62\x6b\x18\x8f\xde\x72\xf1\x72\x26\xaa\x56\x16\x5c\x1d\x3f\x1a\x36\x68\x9d\xd6\xa8\x8c\x62\x54\x84\xd2\xa6\xa6\x07\xdc\xd0\x0f\x76\xdf\x98\x25\x95\x13\xd5\xb4\x5a\x01\x73\x0f\xf0\x38\xfe\x24\xfb\xe8\x5f\x50\x03\xaf\x6e\x0f\x5e\x6f\xed\x01\x10\x35\xaf\xe8\x40\x7b\xf0\x6b\xc8\x30\x8a\x8e\xbb\x7b\xb8\x78\xb7\x87\x69\xf2\xe5\x70\x8f\x81\xbf\x26\x3e\x47\x17\xa3\x99\xee\xa0\x3f\xd5\x6b\x71\xc0\xf7\xd6\xc8\x6a\x98\xa3\x84\x89\x97\xf2\x11\xeb\x5d\xb1\x80\xbb\x4f\x7b\x74\xbb\xaa\x45\x3e\x86\x1b\x78\x20\x82\xa6\x30\x36\xd2\x06\x1e\xc5\xa2\xe4\xf8\xe9\x90\x91\x28\xda\x90\x22\xf8\xdb\x4e\x7d\x8b\x44\xa7\x73\x52\xb9\x87\xd4\x67\x81\xc1\x4d\xae\x8e\x6f\x0d\xc8\xcc\x6c\x97\x22\x37\x84\xd9\xf6\xd5\xaa\x63\x47\xf9\xf1\x96\x06\x7e\x27\xeb\xef\x1e\x01\xf8\xb5\xbc\xf4\x48\x0f\x59\xef\x41\x1c\x68\x84\xcd\x82\xb4\xe8\x2f\x35\x1e\x61\xda\xfd\xe4\xee\x31\x94\xf3\xaf\x01\x8f\x9c\x0b\x43\x36\x58\x89\x55\x57\xfa\x71\x5c\x47\x46\x70\x66\x1c\x23\x2f\x83\xdb\x6a\x02\x91\x4d\xa1\x1f\x43\x99\xe3\x74\x87\x6f\x88\x34\x2c\xda\x6a\x90\x21\xfd\xe9\xf7\xa3\xc1\xe1\x91\x04\x9a\xbf\xfe\xa3\x6b\xc8\xe1\x20\x77\x2b\x3a\xc3\x63\x1a\xf5\x8e\x34\x7f\xc9\x67\x70\x12\xe0\x2a\x25\x58\xf0\x5a\xcf\x3f\xcd\x91\x6c\x61\xd6\xfd\xd6\x93\x62\xf9\x00\xcb\xa6\x69\x7c\x8d\xf9\x96\x08\xb7\xd8\xe0\x2f\xeb\x27\x64\x8e\x76\xb1\x1e\x88\x71\x64\xfe\x91\x2a\xdf\x94\xcc\xf6\x50\x9b\xdb\xc1\x1b\x42\x43\x85\x56\x26\xc7\xa0\xa5\xda\x7e\x58\xb3\x07\x6a\x63\x3d\x86\x56\x74\xf1\x9c\x68\x3b\x7e\xb3\xd8\x07\xbc\x97\xf9\xb0\x19\xcd\xe8\x35\x20\xc8\x6f\x08\x65\x7b\x75\x8f\x2b\xba\x90\x29\xb9\x3e\xf2\x17\x8d\x36\x35\x1f\x04\x52\x02\x01\x75\x45\xfc\x06\x2c\x49\xbc\x1b\xbc\xc8\x24\x63\xb5\xfd\xbd\xcd\x9b\x52\x54\x48\x25\x9f\x54\x3d\x67\x88\xab\x8f\x03\xdd\x03\xf1\x0a\x93\x13\xfe\xcb\x1e\xcc\x10\xb0\xb0\xf1\x1a\xba\xfb\x50\x46\xf8\xb8\xfa\x22\x9b\x9f\x2c\x1b\x75\xb2\xb2\x21\x4c\x76\xf6\x7f\x5f\x7d\x8d\x54\xc4\x7c\x1c\x48\x63\xb1\xff\x21\xda\x7f\x42\x69\xb3\x59\x7a\x6c\xf9\xfa\xf1\xfc\x85\xe8\xbe\x06\x5f\x7d\x6e\x00\xd9\xeb\x81\xba\x47\x8c\x7a\x9c\x86\x00\xc9\x1a\xd0\x66\xf4\x86\x6b\x1d\x6e\x78\x8b\xb5\xde\x06\xf4\xb8\xa6\x70\x31\x81\xec\x71\x95\xc9\xf3\x6d\x1f\x91\x49\x02\xf8\xe5\x2a\xe1\x42\x3a\xe4\x38\xdd\xaf\x19\x33\x8b\xc1\x9e\x06\xa5\x31\x11\x6b\xfe\x25\x99\xe6\x0d\xa1\xda\x9c\x74\x9c\x85\x75\xca\x1f\xd7\xf2\xdf\x85\x5a\x22\x0a\xe8\xd2\xe4\xc2\x4b\x3f\xd8\x95\x57\x79\x8b\x5a\x3a\xc5\x2f\x9b\x4c\x92\x11\x4f\x39\xb2\xee\xd9\x3e\xae\x6d\x8d\x65\x54\x19\x31\xd3\x00\x19\x36\xf2\xb2\x76\xb4\x28\xb9\x44\x0c\xc1\x84\xd3\xe1\xf3\xc0\x81\x77\x3e\x80\x0d\xad\xe3\xb0\x95\x22\x74\x69\x80\xbb\x20\xac\x64\x9d\xac\xbe\x49\x8c\x1f\x26\xdc\xc9\xd3\xed\x8d\x63\xf9\x80\xda\xf8\xd7\xa3\xd2\xae\x72\xa7\x12\x20\x34\xb6\x47\x05\x23\xaa\x3a\x40\x93\xbb\xaa\x34\xff\xd6\x08\x56\xc1\xa5\x9f\xc7\x88\x8a\xa3\x9e\x18\x22\x8e\x18\x90\xa2\x5f\x04\x76\x1a\x3a\x9e\x7c\x6f\x8f\xa6\x0a\xf0\x18\x27\xdd\x90\xd8\xa9\x4e\x67\x82\xc4\x8e\x2a\x44\xd7\x8f\x53\xdf\xd8\x86\xc8\x29\xf6\xa8\x27\xb4\xf6\xc8\x8b\x19\x1e\xe3\x48\x5f\xe4\xd5\xdc\x7b\xe4\x21\xb4\x3d\xaa\x72\xc5\x1e\xa9\x61\xb9\xc7\x9b\xc7\x2b\xf0\x65\x37\xd7\x00\x7e\x50\x0e\xbd\xc7\x34\xad\xbe\xcc\x00\x63\xc4\xd7\xce\x19\xf3\xb4\x22\xf2\x3c\x35\x8f\x46\x10\x75\x90\xb0\x4b\x9c\x1e\x23\x07\x0b\x26\x2e\xeb\x4f\x37\x1f\x63\xce\x76\xbd\x00\xa0\x1e\xa7\xac\x77\xac\x25\x3e\x7e\x56\xbf\x47\x1d\x47\x60\x0a\xde\xdc\x77\x7d\x8c\x3b\x92\xbb\x07\xfb\x88\x75\xeb\xb8\xc7\x64\x06\xfc\x62\xa6\x57\x78\xf4\xf8\xf1\xc4\x4c\xdb\x0e\x26\x1b\x77\xd4\x73\xdc\x47\xe9\x60\xfa\x87\x48\x8b\xcf\x2b\x4d\x5d\xd8\x75\x7b\xac\xde\x2e\xee\x7a\x8c\x75\x62\x52\x21\xb1\xdf\x85\x29\xa5\xd1\xc5\xb9\xfb\xf9\x18\xed\x9e\xd6\xc7\xd8\xba\xee\x57\x3f\xc6\x76\xa0\xbf\xef\x89\xf7\xc2\xf9\x44\xa4\xf3\x8c\xc7\x74\xce\x32\x00\x3b\x9a\x4c\xf2\x71\x0a\x30\xb8\x47\x98\xdd\xbd\xf9\x24\x7f\x1e\x2c\x85\x25\x87\x5f\x5e\xe3\x63\xd3\xe9\xdd\x08\x30\xbf\xc4\x43\xdd\x0c\xd4\x38\x77\x37\xa0\x89\x03\xce\xe7\x28\x01\x19\xc6\x24\xcb\x3d\xf9\x76\xd0\xe6\x78\xb7\x34\xa1\x74\x0b\x39\x78\xf5\xa1\x58\x63\x3f\xc6\x61\x2d\x94\x0e\xe8\x5d\xc2\xa4\xed\x83\x54\x37\xeb\xc2\xbf\x45\x00\xf7\x46\xbb\x73\xdb\x9c\xb0\x31\x00\xa6\xd1\x1c\xea\x68\x69\x38\x1a\xb1\xaf\xc3\x37\x8f\xb1\x87\x8c\xf1\x22\xf1\x82\x83\x53\xb6\x05\x69\x15\x76\xc2\xc8\x40\xaa\x6a\x7b\x47\x23\xf3\xa1\x17\xd1\x5f\xa9\xf9\x7f\x51\x56\xa4\xbc\x20\x4f\x72\x33\x37\x53\xb0\xb9\x13\x16\x0b\x55\xed\x77\x95\x12\x98\x3b\x99\x46\x59\x0b\x6f\xb5\xd9\x93\xbc\xa0\x4d\xa7\xce\x1d\x9d\xc7\xd4\xed\x10\xbd\x22\x32\x4b\x9e\x46\x18\x35\x2c\x5e\x3b\x81\x68\xe7\x7b\x94\xd9\xdb\xcf\x28\x15\xe2\x2b\x90\x11\xc2\x6e\x80\x1d\xcb\xdc\xed\xcf\xa0\x63\x40\x97\x39\xa6\x83\xff\xd4\x7b\x94\xfb\x7f\xac\x14\xf3\xf7\x39\xa7\x8b\x0d\x81\x12\x74\x52\xb6\xcb\x02\xb1\x5e\x16\x19\x17\xb2\xee\x12\x6f\xe0\x03\x3c\x23\xc4\xff\x05\x32\x91\x90\x47\x9b\x7b\x94\x14\x39\x74\xc3\x5f\x8a\x43\xe6\x17\xfb\xc3\x28\xff\xc4\xf8\x28\x29\xa1\x7c\xbb\xd2\x1e\xec\x4a\x54\x31\x07\x66\xcc\xdc\x66\x7d\x94\x74\xdc\x7f\x37\x3a\x28\x30\x78\x49\xc7\x45\x2c\xda\xc3\x96\xc4\xf6\x01\xd5\xab\xdd\x3d\x0f\x78\xaa\x47\x81\x08\x56\x6a\xe9\xd0\x1f\x89\x03\xbd\x63\xd6\x27\x25\x2d\x28\x45\xd5\x68\xf8\xe2\x7d\xef\x96\x10\x6d\x46\x06\x4c\x42\x02\xb5\x69\x14\x3b\xdd\xf6\x30\x73\x7b\xe0\xc4\x67\x70\xf6\xfe\x51\x96\x20\x05\x9c\x1a\x88\xdb\x04\x8f\x18\xff\x6d\x89\x91\xf8\x3c\x05\x76\x52\xe6\x72\x8e\x63\x8a\xd5\x36\x14\x4f\x91\x77\x97\xed\x5a\x30\x40\xc8\x66\xeb\x52\x40\x6f\x18\x04\x64\xdb\x7d\x16\x9a\xfc\x5e\x1e\xad\x2a\x2f\xb0\x05\xf3\x17\x01\xdf\xe7\xd5\x7b\xee\x51\xc6\x24\x66\x17\x29\xaf\x91\x55\x88\x19\x2e\x98\x9e\xec\x31\xff\xed\x11\xa2\xd8\x2f\x4f\x1f\x45\xff\xe7\x2d\x77\x64\x53\x6a\x29\x53\xdf\x29\x99\x0f\xa4\x63\x89\x94\xe5\x80\x67\xbd\x84\x65\x97\x72\x63\x8b\x2a\xfa\x2f\xcf\x47\x88\x18\xe4\x0e\x8f\xa8\x8d\x03\x1c\x40\x81\x7e\x02\xa8\xb3\xbd\x95\x5d\x62\x65\x02\x5a\x37\x29\x8d\x50\x83\xfe\xf6\x98\x45\x48\xf3\x1b\x9a\xb8\x39\x83\x52\x26\x2d\xfc\xcb\x53\x66\x3a\x01\xc5\xac\xba\xba\x21\xf3\x0d\x83\x90\xbc\xd9\x00\x5c\xf4\xc7\x65\x7b\xf1\x8d\xca\xaf\xc1\x3d\x16\xcf\x8f\xed\xc5\xbf\x66\xbc\x0f\xef\xf6\x82\xba\xc7\xa4\xb5\x84\x35\xe4\x8a\x96\x5d\x42\xbd\x50\x6b\x93\x0b\x5c\x8f\x25\xbe\xd3\x7f\x3b\x29\xc6\xa3\xf7\x57\xd3\x4c\x7a\xf8\x6d\x87\x78\x54\x0e\x35\x1b\xfd\x6f\xda\xce\x0a\xd5\x24\x1f\x8b\xae\xa3\xaa\x0d\xaf\x0b\x50\xa0\x25\x78\x9f\x19\xd8\x9a\xdf\x5e\xe4\x12\xa5\xc5\xc9\x3d\x16\x3b\x64\x09\x1e\x7f\xc7\xf9\x24\x10\x5c\x26\x5e\x09\x62\xc0\x62\x12\xfe\x37\xb1\x98\xbd\xe2\xff\xe3\x74\x32\xa2\x22\x53\x1c\x8b\x3c\x3c\x8f\xeb\x99\x86\x49\x72\xed\x89\x56\x87\xf0\x93\x30\xd1\x2f\x06\xd2\xe8\x16\xb4\x9e\x22\xe3\x72\xac\xbd\x0c\xa5\xd9\x47\x3d\x86\xae\x93\xfe\xbd\x48\x8d\x1b\x27\x7e\x8a\x22\x81\xec\xe4\x1f\xe7\x21\x73\xa2\xa4\xa9\xe2\x99\xdb\xd5\x6f\x7b\xf5\x4a\xb2\xfc\xf9\xcb\x0a\xff\x46\x14\x6b\xa3\x0b\xa7\x59\xb0\x10\xff\xa2\x05\xd8\x64\xfc\xf2\xc9\xa8\xd3\xaf\x42\xf3\x6e\x1a\x36\xb4\x1f\x2b\x45\x77\x9c\xd5\xe1\xb7\x98\x2d\x95\x6b\x60\xd5\x8b\xda\xf0\x37\x9e\x8f\xa5\xeb\x49\x1f\x03\xda\xb1\x2a\x8f\x97\x33\x73\x80\xe3\x77\xdb\x8f\x95\x37\x86\x3d\xd6\x60\x17\x02\x3e\x56\x5e\x8c\x42\xe3\x5c\x4a\xaa\xa1\xcf\x7e\x82\x74\xa8\x30\x85\x16\xbd\x62\xdd\xf6\x52\xb8\x0d\xbf\x32\x8d\xff\x54\xdc\x49\x14\x16\x09\xd5\x16\x79\xbc\x63\x6e\x87\xdc\xe9\x77\x78\xfc\x7e\x5c\x2d\xf6\xf7\x83\xab\xc6\xb5\xcb\x88\xa9\x1c\x6f\xee\xb1\xc6\x86\x9e\x5e\x89\xc6\x5f\x84\x07\x1e\x42\xb3\x92\x36\xfe\x9b\xba\x17\x4a\xeb\xd4\xfc\xda\x79\x33\x88\x7b\x1c\x17\x84\x00\x0c\x29\x84\x97\x6c\x0e\xd3\x4a\xf6\x98\xa8\x57\xee\x1e\x07\x62\x98\x31\xeb\xd8\x9b\x2f\x1b\x7f\x95\xf7\xd8\x86\x82\xdc\x23\x0f\x25\xad\x5c\x01\x60\xab\x62\x09\x28\x1a\xab\x37\xa4\x32\xff\x58\xcf\xed\x53\x1d\xa4\xd4\xfe\xdd\xa9\x82\x77\x74\xb7\x38\xa2\x99\x94\x75\x78\x62\x9b\x59\x1d\x08\xc9\x6f\x18\xd2\xf5\x7e\x4e\xc5\x7a\xb7\x35\xf1\xbf\x6e\x23\xf9\x97\x0d\x7d\xe8\xcf\x6e\x1e\xdb\xe1\xf9\x9e\x56\xf9\x2d\xe8\x8e\x7d\x9e\x63\x5e\x5e\xe3\x35\xb8\xbd\x5f\xaf\x5c\x9f\x06\x00\xff\xeb\xd7\x2b\x66\x62\x34\x90\xa8\xbe\xb8\xbd\xdf\xba\x7b\xe4\x95\xeb\x8f\xe7\x95\xeb\xbb\xaa\xb0\x3c\xf6\xb4\xe9\x4e\xdb\xde\x79\x9a\xa0\x86\x80\xc8\xf2\x2d\xc2\xcf\x8e\x07\x6e\xfb\x7e\xb8\xc7\x63\xca\xf6\x87\x35\xf7\x78\x2c\xe7\x96\x03\x31\x12\x7c\x2c\xe3\x74\xc0\xe3\x91\xb8\x5e\x82\x14\x1c\x85\x7b\x8d\x8f\x6a\xd2\x7f\x51\x49\xeb\xe0\xaf\x51\x10\xd9\xbb\x13\xf6\x20\x6c\x73\xef\x11\x42\xaa\x4c\x76\xfe\x83\x14\x87\x16\x05\x54\x7f\x87\xa5\xad\x70\xec\x87\xae\x6f\xd0\xb0\x10\x84\x18\x45\xfe\xe9\x7e\xba\x7d\xe0\x1b\x78\x2e\x7d\x0f\x33\xd0\xb2\x78\x18\xab\x2c\x30\x62\x72\xff\xf4\x10\x32\xde\xed\xb7\x07\x85\x01\xf6\xff\xeb\xb1\x4e\x4c\x9d\x1d\x37\x54\x83\x03\x62\xf1\x13\xff\xbb\x52\xfc\x14\x74\xcd\xbd\x70\xad\x9e\x6f\xbd\xcd\xfe\x2f\x5d\xa9\x1f\x82\xc3\x9d\x94\xec\xfe\xf2\x73\x14\x65\xd7\xe5\x84\x88\x2d\x26\xf7\x97\xff\xdb\xe3\x65\xa1\xfe\x1e\xfd\xea\x2f\x6f\x0d\xbe\xf8\xcd\xfd\xe5\xb7\x8b\xf0\xba\x92\x06\xbc\xaf\xde\xc6\x14\x12\x42\x3d\x3b\x7c\x26\x7b\xbe\x5a\xa1\xb9\xf0\xa6\x88\xbf\x6c\xf9\xe4\x2f\xbf\xaf\x71\xe2\xfa\x11\xe1\x69\x67\x33\x99\xbf\xf4\xa7\xcb\x7f\x71\xbb\x23\xa0\x14\x50\x04\x2d\x20\x89\x2d\x36\xa6\xa4\xc5\x46\xa3\xa5\x61\xe8\xef\xbd\xff\xf2\xfc\x2d\x46\xf1\x2f\x01\xd9\x3a\x5c\xf1\xbf\xa5\x70\xf4\x54\x84\x02\x2e\x61\xd2\x7f\x4d\xe7\xe6\xfe\x0a\x53\x2f\x2f\x51\x6f\x3f\xf8\x17\xa5\x79\x0e\x33\x6f\xc8\x2b\x41\x4f\x84\x94\x30\xf3\x04\x07\x4c\x2d\xfe\x30\x53\xb0\x2d\x61\xd6\x4b\x6e\x00\x9a\x2f\x0d\x80\x13\xd8\xbf\xc2\xdc\x6d\xb8\x2c\x61\xe6\x01\xb2\x12\xc2\x4b\x70\x7f\x05\x88\xdb\xda\x41\xfe\x0a\x4b\xf2\xdc\x0c\xfa\x2b\x2c\x5c\x9f\xf9\x2b\x44\xcc\x6b\xb8\xfd\x0c\xfe\x5b\x02\x66\x6a\x0c\xb6\xc5\x14\x16\x54\x61\xd8\x20\x48\xc2\xe8\xcc\xca\x79\x4f\x60\x09\x26\x7d\xff\x15\x76\x53\x68\x29\x01\xa2\x79\xa0\x0d\x4f\x69\xfc\x15\xf8\x1f\x82\x68\x0a\xd2\x45\xc9\xbe\x01\x95\x18\x30\x5f\x01\x3a\x23\x3a\x78\xdd\xcc\x5f\xab\xbf\xcc\xf7\xef\x0c\x0a\x3e\x56\xbf\x08\x06\x90\xea\xca\x1a\xbc\xfb\x6b\xd5\x91\x16\xa6\x35\xa5\xb2\x86\x4a\x9f\x10\x9a\x20\x48\x9f\xc8\x1a\xd1\x1a\xf3\xb9\x7e\x5d\x56\xbd\x87\x5b\x34\x80\xdc\xff\x95\x4c\x32\x8d\x65\x60\x52\x39\xda\x0f\xc8\x48\x29\x4f\x27\x7c\xa7\xf2\xcd\x08\x47\x5a\xe3\x6f\xb9\xd8\xfc\xc2\x08\xe4\x1c\x08\x43\xcf\x5f\x06\x10\x89\xcc\xe7\x0a\xe7\x20\x9a\xda\x1f\x5b\x80\xd8\x75\x87\xe6\xe9\xf0\x93\xb4\xc2\x3f\xc1\xfd\x45\xfe\x7a\x57\x94\x37\x3a\x24\xbf\x57\x57\x78\x7f\x17\xdb\xd5\x5f\x71\x5a\x37\xc9\x73\xc8\xde\xa9\xe4\xd7\x2a\xbc\x9f\x50\xa3\x3e\x49\x8c\x2b\xdc\x75\xa1\x76\x4e\x89\x73\x0a\x87\x2b\xf1\x9a\xf4\xf8\x49\x89\x79\xe1\x9d\xd7\x00\xab\x4f\x95\x00\x9d\x16\xa6\x36\x4b\x9e\xb2\xc2\x27\x6a\xc5\x37\x5f\xd8\xea\xf4\xe7\x4e\x45\xfc\x7c\x63\x4f\x11\x30\x2f\xb2\x95\x02\x99\xa4\xc8\xc5\x27\x81\x11\xb3\xfb\x4b\x07\xff\x22\xf6\xe3\x7d\x00\xde\x58\x54\x84\x4f\x40\x9b\xa4\x81\xcf\xc8\xcc\xab\x5b\x8b\x04\x3c\xfc\xed\x73\x91\x94\x18\xb3\x00\x97\x7f\xba\xc7\x17\xed\x1e\xac\x22\xcd\x96\xbb\x50\xed\xe4\x1f\x6a\x22\xae\xd6\x5e\x43\xd4\xb0\x07\x02\xf5\xf9\x7e\xfa\xb8\xf4\x79\xe6\xcb\xfe\x12\x5d\xfa\xf5\xea\x4a\xdf\xc0\x10\xfa\x66\xbd\xde\x00\x12\x64\x5c\xb3\xef\x71\xe2\x4f\x82\x89\x24\x01\xe8\x32\xf4\x5f\xac\x32\x5d\x69\x32\x0c\xcb\x5d\xd7\xe7\xab\xbf\xa4\xe0\x2a\xf7\x39\xcd\x20\x93\xa9\x7e\xe1\xa2\xd0\x93\x9a\x26\x20\x9c\x14\x43\xc6\xc5\xe3\xad\x5b\x4f\x00\x52\xfe\xa7\x7e\x98\x56\x89\x13\xbc\xc6\x2d\x96\xe8\xaa\xbf\xe1\x95\xfc\xa6\x17\x86\x3d\x19\x2c\xfe\x0e\x2d\xee\x14\xb5\xb0\x9f\x7c\xda\x04\x61\x36\xc9\x66\x50\x70\x54\x18\x67\xf5\xa0\xdc\xb8\xfa\xb4\x83\xde\x47\x1c\x7b\xcc\x14\xc4\x9e\x7c\xea\xb7\x08\xe3\x25\xe8\x3f\xb7\x2a\x7f\x04\xed\x9e\x78\xe9\xca\x93\xdf\xe4\x08\xb3\xd3\x6b\xcc\xd8\x0c\x01\x2d\x2b\x79\xb6\xcb\xb3\x00\xf7\xb8\x87\xe2\xaa\x1f\xc7\xbc\x9e\x7c\x99\x64\x3a\x38\x07\x21\x9e\x31\x03\xaf\x86\x30\x20\xd1\x56\x35\x15\x0d\xb2\x26\x14\x6b\xe2\x88\x2c\xcd\x65\xb2\x93\x4d\xc3\xcf\xa9\x21\x58\xdf\x53\x8c\x77\x66\x94\xe3\x8b\x33\xa6\xa4\x4a\xa3\x56\xab\xaf\xd5\x5f\x0e\xf7\xe4\xf9\x5b\x25\x78\x21\x60\x91\x19\xe2\x17\xdb\x31\xca\x9c\x72\x97\x8a\x5f\x59\x49\xd5\xed\xa8\x27\x54\x6b\xd9\x38\xa4\x8f\x89\x8a\xda\x91\xc5\x0c\x34\x94\x3a\x95\xb6\x7f\x07\x29\x55\xf5\x5f\xf4\x08\x7c\xb8\x6a\x77\x05\xc0\x4c\x24\x0f\x16\xea\x9b\x36\xdb\x27\x7f\xa8\x42\x59\x9d\xfc\x8c\x17\xda\xe5\xc4\x53\x4f\xee\x69\x42\x6d\x69\x1b\x99\x3c\x35\x6d\x3a\x3d\xee\xaa\x5c\xf2\x34\x90\xa7\x65\x4f\xbe\x00\x14\x7f\x81\x53\xf1\x17\xdb\xa5\x7e\x52\x95\x60\xb4\x62\xc0\xd3\x4e\x77\x65\xeb\xe4\xfb\x8e\xf7\x4b\xe0\xee\xcd\xd3\xc4\xd3\x1c\x90\x0c\x00\x65\x49\xbe\xbf\x29\xdc\x29\x7a\xa1\x98\xf6\x3d\x94\x1b\x62\x59\x63\x6d\xba\x51\xf0\x0e\x6b\x4d\xd7\xd3\x42\x3d\xfe\x96\xed\xd0\xd5\x09\xa5\x94\x35\x1b\xd6\x4c\xac\xd9\xf7\xdf\x68\x7d\xd3\x2a\x92\x36\x6e\x26\xbb\xa7\x29\xf2\x68\xa0\x9a\x96\xfa\xa8\x3f\xaa\x25\x1a\x39\x8a\x99\x73\x58\x45\x77\x3b\x26\x39\xd6\x2a\x7a\xe5\xec\xd3\x14\xfb\x19\x02\x35\x6d\xf5\x38\xe9\x89\xed\x3a\xa5\x50\x20\xaf\x3c\x01\xc8\xee\x17\x26\x58\x71\x09\xd1\x3d\x4d\x18\xcd\xfc\xf8\x00\x89\x37\x82\xa3\x9d\x76\xfc\x31\xd4\x13\x04\x17\x66\x80\xe6\x79\xd5\xe1\x9d\x7e\x1b\x18\xa9\x18\x21\x8a\x95\x1e\xa0\xa0\x2d\x0f\x14\x90\xca\x77\x9b\xa0\x4f\x93\x94\x9d\x45\x53\x0d\xa9\x6f\x83\x1a\x09\x09\x79\xe7\xa0\x11\xd1\x25\x82\xe1\x18\x60\x23\x7d\x32\x22\xb2\x36\xf8\x1b\xb9\x3a\x95\xe0\x37\x05\x82\x16\x5a\xfa\x85\xa3\x56\x9d\x3a\xb8\x0f\x4c\x34\x9f\xde\xf8\x42\xee\x7a\x8b\x0b\x38\xff\x40\x56\x29\x4a\x58\x09\x1c\x29\xde\xff\x49\xfc\x34\x1d\xfb\xca\x09\x75\x1d\x28\xbb\x1a\xbc\x7e\x27\x78\xde\x67\x08\xa0\x52\x5c\x0d\x3e\xe1\xc5\xdd\x68\x00\xfd\xc1\x24\x40\x46\x0d\xd7\xe0\x39\xb2\x3d\x85\x0b\x0f\x97\xa1\x02\xc3\x54\x02\x75\x80\x9a\x7b\x0a\xb1\x6e\xe3\x4a\x98\xa7\x10\xcd\x44\xef\x79\x0a\x29\x64\xdb\x4d\x24\x0e\xee\x29\xe4\x1c\xf2\xda\xf3\x0c\xbc\xa3\x2f\x06\xfb\x63\x10\x75\x1e\xdc\x53\xd0\x59\x1b\x4c\xf6\x68\xde\x0f\x86\x96\x44\x11\x28\xd3\x9f\xbc\xc2\x9e\xf7\xf4\xd0\x67\x31\xe9\x5a\x61\x37\xbb\x6a\xf5\x1a\xca\xb8\xb5\xb9\x9e\x10\x05\x52\x5e\x98\x71\xf4\x9a\x30\x7e\x39\x56\x03\x95\x96\xea\x0a\xf6\xb1\x52\x73\xba\xae\xbe\xdc\xf4\x6d\x3c\xbc\xae\xc1\x97\x57\xaf\x1e\x43\xd8\xf5\x5d\x29\x1c\x13\x7e\x68\x71\x42\x90\x90\xf4\x77\x19\x44\xdd\xac\x92\xab\x6b\x5c\xb4\x16\xd7\xb8\x7e\x78\xfe\xdd\x61\x93\x19\x5b\xdc\xb9\xd5\xa3\xd7\xe1\xd5\x55\x6c\x3c\x5d\xc5\xce\xd6\xd6\x55\x5e\x42\xa2\x57\x00\xfb\x64\x09\xaf\x78\x47\x7e\xaa\xc4\x6d\x37\x43\x5b\xa1\x9e\x34\x7c\x1a\x97\xd8\x3e\xe9\xea\x7b\x8d\x18\x3e\x17\x57\xe3\x1c\x5e\x23\x47\xd7\x1a\x51\x6c\xee\x29\x2e\xfc\xaf\x8e\xab\x31\xcd\x78\xe9\x55\x55\x4f\x31\x25\xbf\x8c\x36\x46\x42\xe0\x8a\xee\x0f\x7a\xb0\x01\x22\x13\x7a\x9f\xec\x3f\x8d\x35\xa6\x97\xa0\x53\x11\x85\xca\xc4\x09\x2b\x37\xf9\x0c\xef\xd2\x10\xe8\x05\x95\xa5\x2b\x59\x4f\x3c\x73\x6f\x51\x03\x76\x24\x25\xdf\x77\x3e\x9e\xc6\x9f\x68\x2a\x2f\x92\x73\x4f\x7a\x9f\x9c\xca\xc1\x4a\xd8\xaa\x73\xbd\x13\x88\x6c\xe7\xdf\x4e\x60\x8d\xb2\x8e\x25\x20\x6c\xa1\x58\xab\x26\x5b\x65\xe4\xdd\xc3\x4f\xb1\x36\x3d\x15\xf5\x14\xeb\x18\xff\x22\x2f\xa4\xe3\xe0\x1c\x9b\x50\xc3\x00\xa8\xe9\xdb\xfc\xbc\xdc\xa5\xb3\x7a\xf3\x2d\xb8\x7a\x8b\x1b\x39\xc0\x2d\xe6\x1b\xde\x3b\x15\xeb\xeb\xad\x7b\xbc\x68\x77\xf0\xc4\x65\x4d\xaa\x27\x53\x13\xff\x90\x51\x93\xb4\xd5\xd5\xd4\x17\x57\x37\x9f\x92\xde\xc2\xa1\x77\xf1\xd4\x2d\xbc\xba\x27\x4c\x8e\x58\x71\x9b\x48\x5b\x55\xe9\xce\x3a\x71\x3e\x45\x2d\xce\x15\xf9\xd6\x16\x45\xa4\x7b\x9f\xc4\x1c\x57\xb3\xe7\x39\x1d\xbd\xde\x87\x6f\x0b\x0c\x79\xb5\x66\x01\x7f\x12\xaf\x0d\xac\xca\x74\x0b\x47\x70\x95\xea\x92\x55\x12\xaf\x31\x35\xd3\x7c\xa4\xe0\x9e\x24\x81\xe5\x8a\x6d\xc5\x01\xe4\x53\xa7\x51\x29\x16\x38\x90\x2c\x36\x58\x9d\x44\x19\x9e\x54\x13\xa5\x4a\x8a\xcd\xa3\xe2\x9e\x30\x42\x72\x51\xb1\x8a\x9d\x19\x7b\x92\x8c\xea\x7e\x92\x12\xde\xf0\xb6\x85\x98\x2a\xa5\x84\xe4\xaa\xbc\xba\xba\xfb\xd9\x72\x44\x24\x68\x76\xbb\x4f\x63\x1c\x02\x7c\x83\x5b\x8e\x08\xc1\xfb\x19\x60\x6b\x83\xc9\xee\x4d\xe8\xa3\x2e\x18\xa3\x63\xf8\xe6\xf3\xc2\x1b\xfc\xeb\xee\x5f\xb3\xbe\x51\x14\x7b\x30\xf5\xee\xa7\x7d\xfc\xcb\x5e\x11\x9a\x0e\x80\x0d\x47\x84\xb6\x35\x0c\xe2\xd4\x49\x3e\x89\xd1\xaf\x8c\xb6\xf0\x7a\x92\xec\x69\x5f\xc7\xef\x33\x9f\xb8\x5f\xc0\x61\xde\xd0\x3b\xeb\x3d\x5a\xb8\xa3\x0c\x0f\x56\xf4\x3b\xdb\xd9\xd3\x3e\x76\xc3\x2a\x77\x2d\x9e\x76\xe5\xc8\x7b\x2c\xe7\xd5\x3b\x55\x09\xf4\xc5\x3d\x96\xa1\xa0\xfd\x0e\xd3\xd7\x3b\x1a\x93\xb6\xaa\x64\x68\x1a\x5e\x96\x03\x9d\x72\x8f\xdc\xc6\x78\xa2\x39\xd2\xd1\x7e\xc3\x42\xaf\xd2\x7e\xe2\x31\x48\x76\x67\x5e\x51\x17\xcc\x60\x43\xdd\x45\x54\xe3\xfa\x69\x17\xbd\x39\xae\x1a\xc8\x03\x45\x7e\x4f\x3a\xf9\xf5\x8e\x49\xe0\x05\x8d\x98\x88\xd9\x3d\xb4\xf9\xfc\xd3\x21\xea\x61\x26\xa6\x85\x05\x84\x5e\xfb\x4f\xf7\x10\xc8\x68\x34\xf5\x57\xf4\xe2\x79\xd8\xf1\x08\x89\x01\x4d\xfd\x3f\x3d\xce\x7c\x33\xf1\x34\x4f\x07\x6d\x81\x06\xb4\x01\x36\x4c\xa2\xb8\xa7\x51\x9b\x5f\xf8\xb2\x9e\xdb\x7c\xba\xc5\xbc\x7c\xb0\x71\xba\x79\xee\x29\xb9\x27\xfe\x2b\x73\xfc\xc9\xb9\x2a\x35\x96\xa3\xeb\xb8\x43\x17\x60\xf1\x14\xff\xda\x68\xae\x54\x91\xba\xe9\xd2\x69\x6d\xbc\x1c\xe7\xa9\x05\x6f\x87\x30\x4e\x68\x5b\x32\xb5\x61\xd8\xc7\x3b\xb3\xc0\x5a\x08\x7b\x0a\xd3\xea\xab\x86\x5b\x7c\x56\x06\xdc\xc2\x72\x9f\xe5\x57\x50\xfc\xc2\x13\xff\x60\x79\xbf\x3f\xe7\x1d\xcd\x84\xda\xed\x7b\xc7\x12\x35\x92\x6c\x7a\x3e\x70\x69\x82\x14\x06\x32\xa1\xa7\x16\x30\xc9\x39\xa7\x91\x27\xa9\xc1\x4a\xb8\x5f\x94\x06\x12\xd5\xc1\xdb\xb2\xb2\x79\x56\x0d\x0b\x7a\x8e\x68\x8c\x96\xb9\xfb\xde\x12\x71\x8b\xcb\xda\xe8\x45\xd7\x9c\x14\xed\x41\xf3\x14\xaf\x89\x61\xc0\x6a\x9b\xb6\x1b\x9a\xc5\x1f\x00\xe5\x06\xff\xbf\x2d\x7d\xf1\xb7\x0c\x8d\xb7\xda\xc4\x23\x88\xa8\xe0\xc0\x23\xca\x3a\xdb\x38\x21\xa2\x97\x8c\x72\x6d\x8a\xac\xfa\x80\xd0\xc2\x01\x5e\xa5\x20\x6d\x52\xb4\xa5\x36\xc1\xe8\xd0\x8a\xd7\x9b\xc4\x81\x0e\xf7\xd4\x0a\x46\x0b\xaf\xa0\x46\xd5\x3a\xe0\x69\x88\x77\xb7\x64\x19\x7d\xb6\x16\x52\x98\x49\x54\x0d\xa7\xc4\xe8\xbf\x6a\xa3\x85\xf0\xd4\x4a\x34\xee\x42\x34\x58\x11\x4f\x88\x3d\xb5\x42\x3e\x3c\xdc\xc5\x7e\x22\xad\x90\x65\x5f\x7a\x5b\xa3\xe0\x93\x04\x1b\x4f\x08\x0f\xeb\x3c\x7c\x1b\x75\x8f\xfc\xe0\x3c\xbe\x75\xb4\xc4\x9e\x51\x44\xbd\x50\x99\xe7\x09\x73\x52\x65\x10\x9c\x9d\x6a\x04\xbd\x70\xb6\xde\x0e\xd6\xd7\x91\x02\x42\xf0\x02\x45\x6d\xf5\x26\xc1\x8d\x7f\x83\x3d\xe9\x71\xa8\x27\x72\xa0\xc1\x7e\xba\x8a\xef\xb5\xef\xa1\x5c\x30\xda\xf6\xa2\x4b\xff\x00\xaa\x1a\x54\x35\x11\xca\xd4\xbb\xdd\x31\x53\x15\x20\x3a\x9d\x40\xf7\xf2\x12\x5f\xa4\xb8\x27\x24\xa9\xd7\x14\x6f\xae\xbe\xf2\x17\x0a\x30\xb3\xab\xaf\x36\xc0\xbf\xc6\x6b\xd3\x37\x13\xfc\x4a\x09\x41\x11\x24\xde\x57\xb1\x4b\x79\x88\x94\xf5\x1c\xc9\x16\x56\x15\xe5\x81\xf4\x10\xc2\x93\x9e\x31\xd2\x93\xf3\x24\x0e\xe4\xf0\xc8\x7e\xe1\x51\x39\xa0\x3c\x85\xbf\xbd\xab\x47\xd6\xff\x1c\x3e\x19\x50\x6f\xbb\xf5\x82\x23\xa3\x33\x9a\x36\x0a\x28\xee\xaf\x3c\x1d\xf9\x7e\x96\x64\x10\x6a\x7f\x5f\xd1\x84\x9c\x94\xdf\xdc\xd3\x51\xca\xaa\xbf\x9c\x7c\xf6\x17\x93\xd4\x9b\xbf\x5c\x0e\xf7\xec\xa7\x31\x69\x01\x3c\xee\x87\x1a\xee\x64\xaf\x4a\xec\x3c\xad\xf4\xec\x67\x0e\xc2\x00\x82\xae\xde\xfc\xbc\x43\xba\x68\x9e\x82\xdb\x33\x0c\xfb\x02\xef\x21\x67\x61\x35\x2e\x2f\xb1\x0a\x9b\x8f\x3b\xad\x21\xd5\x35\x9f\xfc\x2e\x0a\x24\xbb\xe7\xb1\x12\xd4\xb8\xb2\xd4\x3d\x41\xf1\x5d\xcd\x08\x1f\xfc\xc5\x8f\x1a\x36\xc5\x6d\x5e\x8f\x15\xf1\xdc\xee\xb3\xcf\xfc\xaf\x88\x6b\x7e\x0f\xec\x9c\xcd\xef\xb1\xb8\x67\xbc\x2d\x67\x7b\xd4\x60\xc5\x67\x6a\x12\x3f\xfb\x32\xc7\xa5\xf8\x19\xa1\x0c\xc2\x1f\x6f\x21\x86\x95\x26\xb8\xec\x42\x03\x52\x3a\x5c\x6b\xb4\xf8\x4a\x8d\x2a\x3f\x10\x32\xea\x26\xdd\x1f\x30\x5b\xa2\x67\x1e\x51\x64\xc3\x68\xbe\x37\x41\x3a\x61\x78\x33\x25\xf9\x4b\x61\xe9\xbe\x59\x44\x87\xaf\xb5\x0f\xd3\xca\x04\xa3\x75\xc3\x64\xb1\x85\xc5\x3d\x07\x2b\xe6\xf0\x77\x77\xcf\x21\x05\xde\x31\x06\x74\x5f\x80\x7a\x0e\x5b\xbe\xf3\xe6\x16\xf2\xb4\xba\xe7\x90\xc3\xa5\x8c\x0e\xdf\x42\x2e\x61\x82\x65\x31\xb9\x08\xbc\xdf\x4f\x29\xc0\x4e\x37\x31\x9b\x27\x5e\x4b\x18\xf7\x0b\x3f\x87\x12\x2e\xec\xf9\x03\x9d\xd6\xc3\x0b\x86\x85\x59\x60\x05\x36\xa2\x0b\xe1\xf4\x31\x16\xc4\xa9\x57\xff\x8c\xf9\xce\x8e\x79\x69\x23\x42\x4b\x08\x7a\x7d\x78\x0b\xb5\xb9\xe7\x60\x7f\x9c\x6e\x61\xfc\x70\x1a\x56\xfd\x9e\x10\x10\xe2\x5a\x68\x05\x89\x69\xfc\x4d\xa2\xb6\x0a\x10\xeb\xb1\x41\x06\xa3\xc3\x79\x67\x09\x29\x31\xe3\xec\x2c\x4a\x8e\xc4\x37\x1e\x54\x50\xcb\x5d\x8f\xd6\x3e\x87\xd6\xe2\x32\xfe\x29\xfb\x4c\x65\x5e\xce\xac\x09\x2b\x17\x8d\x9e\x39\x04\x23\xc1\xcf\xab\xd7\x7b\xf0\xc1\xf3\x4f\xa2\x3a\xea\xf0\xf1\xad\xba\x5d\xcf\x03\xa1\xba\xd6\x50\xfc\x79\x43\x12\x8f\x77\x90\x31\x3c\x0f\xa4\x5e\xc6\x56\x15\x15\xa1\x04\x12\xb3\x1d\x9d\x7e\xa6\xc5\x25\x32\x7e\x5d\xe8\x7b\x36\x00\xab\x38\xdd\x38\x5d\x05\x83\x3f\x87\x23\x23\x54\x80\x7f\x7e\x47\x70\xfc\x79\x5e\x65\x23\x1b\x32\x75\x84\x76\x5e\x91\x0c\x24\x7d\x59\x2f\x25\x20\xc6\xe2\x79\x75\xe6\xf3\x5a\x7c\xb7\x2e\xbc\x96\xe0\xe7\x2b\x6a\xd4\x50\x5d\x09\x87\xc7\x50\x6f\x51\xe5\x9e\x77\x84\x71\xb4\xe7\xb5\xc4\x33\x9a\xb8\xe3\xfb\x05\xe3\x38\x2f\x8e\x58\xe1\x7c\x50\x43\x82\x65\xdb\xf9\x8b\xaf\x06\x06\xcb\x93\x5d\xcf\x86\xe8\x78\x98\x24\xfd\xbc\x1e\x25\xd8\x34\xb4\xad\x47\xf5\x2a\xfb\xc0\x7e\x60\x6f\x44\x07\x8a\x97\x38\x85\xec\x9e\xe3\xb4\xf2\x4a\x3a\xef\xb8\xa4\xd0\x62\x28\x53\x48\x8e\x6b\x3f\x78\x83\x6d\xb5\xb8\x94\x50\xab\x7b\x8e\x89\x47\x26\xdb\xf8\x87\xd6\x73\xd4\x7b\x9b\xd4\xd4\xfc\xc4\xad\x4f\xdd\x3d\xc7\x6c\x77\x82\x2b\xb2\xe1\x16\xb2\xec\x26\x74\x9e\x10\x2c\xa3\xe9\xc7\x1c\xd0\x08\xa2\x9d\x8c\x00\x2d\x66\x61\x6c\x07\x28\xd1\x5c\x2c\xce\xdd\x86\xd2\x16\xdb\x50\x23\x7d\x3e\xa1\xf9\x19\x24\x0a\x2f\xb6\x88\x97\x5e\x26\xd1\xc4\xaa\xeb\xd9\xb6\xbd\x9f\x79\x18\xbc\xc9\x7c\xb8\x67\x59\xfc\xd8\x80\x7b\xa6\x86\x19\x8f\xe3\x36\xd9\xdc\xb3\x6c\x51\x2f\x33\x6a\xb2\xf1\x5f\x95\x4d\xf2\xd2\xb5\x28\x1a\x26\xc4\xae\xc9\xce\x2b\x50\x9b\xec\x76\x2b\xc9\xb3\x94\xfd\xce\x57\x06\x31\x8a\x43\x4a\xa3\x66\xd5\x00\xba\x7c\x03\x8a\x73\x4a\x04\x38\x6f\x61\x6e\xd2\x27\xf0\x69\x1a\x01\xdf\xe8\xfc\xc9\x6a\x93\xd7\x35\xc0\xf9\x2d\x4e\xa6\xe1\xf9\x2c\xe3\xda\x25\x20\x0e\x8c\x30\x35\x0d\x54\xc1\x54\xad\x25\xc5\xa7\x3e\xfb\x9d\x44\x69\x80\xe0\xb4\x8f\xd6\xca\x22\x8a\x5f\x42\xd2\x1d\x64\xb2\x22\x0c\x1c\xb0\xb4\xda\x50\x48\xc7\x10\xec\x46\xcc\xe7\x32\xce\xe2\x37\xfe\xbc\x75\xa1\x29\x39\x20\x75\x03\x99\x38\xf8\x5c\xb8\x4e\xac\x1f\x8d\xfe\x66\x91\xbe\xfb\x99\x32\x08\xcd\x58\x89\x17\xe1\x5a\x0d\x91\x45\x67\x88\x91\xa1\xe0\x86\xf6\xd0\x33\x86\xba\x30\xf8\xa3\x11\x4c\x67\x9c\xf8\xfb\x0e\xda\x8d\x85\x66\xda\xea\x5d\x39\x1a\xff\xf4\x4e\xad\x55\xc9\x21\x39\xa8\x57\x55\xce\x51\x17\x5d\xe6\x33\xac\xbd\x8e\xb8\x5a\x09\xc6\x69\x3d\x68\xce\x7e\xd2\x0f\x03\x8c\xa8\x17\x14\x53\x5c\x16\x5b\xd7\x80\x4d\x3a\xdd\xf4\xf6\xa6\x56\x62\x92\x0b\x47\x9b\x12\xb9\x1a\x3e\x0a\xcc\x94\x7c\x80\x34\x09\xf7\x7b\xac\x94\x78\xa3\xb9\x9f\x36\x3b\x33\xb0\x27\x9d\x6c\xda\xae\xea\x73\x89\x36\x20\xf0\x6a\xa1\xf1\x79\x59\xb4\x30\x90\x75\xbd\x1a\xf1\xc4\x56\x68\xb2\x30\xb4\xe9\x95\x84\x01\xad\xad\x3f\x53\x64\xe7\x7a\x58\x1b\x10\x2d\xfc\x8e\x35\x12\xc8\xf5\xf1\x74\x18\x43\x01\x15\x49\x2e\xc9\xd7\x66\x58\x67\xdd\xcf\x3c\x7b\x22\x53\x92\x8c\xc9\x50\x2b\x7a\x24\xb4\x15\xe9\xf0\xd8\xb7\x3d\x28\x4d\x64\x45\x7a\xec\xf6\x4b\xc4\xd6\x3d\x84\x24\xf7\xdc\x79\x31\x90\xfd\x89\xb6\xf5\x6b\x73\xad\x6f\x17\xfd\x39\x72\xeb\xa8\x25\x5e\x28\xd4\x7a\x56\xf1\xfb\xb9\xef\x1e\x6c\x0f\x86\x66\xb5\xef\xe0\x6c\x17\x30\xfb\x5e\x2e\x43\x6b\xaf\xf5\x72\x91\x06\x2b\xe3\x33\x9d\x7b\x63\x0a\xd0\x7a\x7a\xb9\x85\x03\x54\xb6\x4e\x4e\xf8\x06\x87\xcc\x79\x19\x2c\xaa\x56\x54\x2f\x0d\x62\x28\x0d\x6e\x3f\xb7\x5e\x6f\x7c\x21\x87\xbd\x56\xbf\xba\xf6\x1a\xf9\x83\xe6\xe2\x9e\x8f\x14\x86\x3a\x92\x61\x54\xe9\xb1\xed\x3e\x77\xc3\xf7\x2b\x52\x9f\x8f\xe2\x73\x8e\xae\xa9\x39\x0f\x0b\x96\x12\xa1\xf1\x58\x62\x06\x6e\xc2\x97\xfa\xe9\xfe\xe6\x4b\x74\xff\x3b\x79\xa7\x57\xf1\xfc\x6f\xcc\xed\xdd\xdd\x66\x77\xb2\x6f\xee\x7f\xd3\x8b\xe7\x8b\xdd\x14\x20\x85\x0a\xf3\x54\x05\xf8\xdf\xff\x9f\xa9\xab\xdb\x72\x95\x85\xa1\xf7\xbc\xcb\x3c\x4e\x9d\x59\xde\xa5\x6d\x46\xf3\x0d\x05\x3f\x50\x18\xfb\xf4\x67\xed\x0d\x78\xce\x45\xc9\x0e\x45\x7e\x5c\x18\x02\x84\xf0\x12\x77\x7b\xdd\x79\x58\x91\xf7\x0c\x3e\x30\x38\x12\xd1\xdf\x0f\x11\x8d\x3d\x6e\x61\x39\xac\x2b\x71\xc7\x85\x95\xf1\x57\x64\x8f\xb1\xc8\xa0\xd5\xf8\x46\x6b\x28\x84\x8d\x4d\x18\x2c\x1e\x71\x70\x26\xee\x80\xdc\x71\x47\xea\x7e\x27\x6e\x1d\x20\xd3\x5b\xb7\xa6\xa4\x50\xf2\x48\x0f\xea\xf9\x07\xda\x60\x99\x28\x53\x39\x3a\x52\xdc\x4e\x7e\x3c\xb7\x34\xc6\xa3\x5b\xca\xbd\x20\x08\x91\x1b\xea\xb9\xcb\xda\xfd\x11\x16\xf1\x45\x5d\x91\xa0\x6e\xa2\xfb\xf1\x23\x13\xe4\x2c\xae\xc8\xff\x87\xed\xe2\x26\x19\x5b\x12\x44\x47\x76\x45\xd2\xcb\xc2\xee\x8a\x3e\x98\x89\x3e\x39\x34\x17\xd5\x74\xba\xa2\x16\x5c\x51\x1f\x1f\xc3\xe9\xe1\xa4\xa1\x4b\xfd\xa2\x61\x07\x8b\x3c\x14\xfd\x13\xe4\x65\xc1\x4d\xc3\xf1\x3c\x72\xb9\x7c\xd0\x17\x4d\x45\x51\x4c\xc6\xbb\xee\x26\x1f\x93\xe6\x4d\x18\x6a\xda\xcd\x5b\xfc\x17\x87\x5e\x0c\x1d\x26\x4e\xda\xbd\x25\x02\x40\x18\x14\x83\xb6\xee\x0a\x6f\xac\x3f\xdd\x64\x8f\x63\x09\x88\xe6\x99\x8d\xc9\x30\x4b\x2a\x4d\x97\x2b\x16\x74\x91\x94\x62\x0c\xae\x70\xdb\x7b\x32\x2e\x48\x90\xb4\x52\x2c\x69\x74\x13\xc2\x30\x22\x8c\xc9\xb9\x37\xd7\x6a\x5b\x2c\x3f\x04\x53\x9f\xc9\x0a\x37\x24\x1a\x6d\xc2\xa9\xe3\xf6\x2c\x61\x00\xfa\x55\x64\xf2\xce\xa8\x31\xa6\x83\x53\xf4\x65\xf8\x31\xe9\x18\xbd\x98\xf0\xd7\x4d\xf1\x35\x2c\x6d\x4a\x4c\xbb\xb5\x8d\xce\xe9\xf0\x1b\xd2\x1c\x7e\x3f\x92\x2b\x24\xea\xaa\x34\x9b\x91\x2a\x6b\x8c\x0e\xb3\x77\xb9\x9f\xa4\x7a\xe2\x5f\x8f\x2a\x57\xd9\xa0\xc2\x54\x49\x77\xaf\x9d\x24\xd0\xb6\x74\x57\x25\x61\xec\x40\x26\x69\x5f\xe3\xe2\xaa\xe4\xcd\x55\xd9\x1f\xeb\x93\xdc\xae\x89\x56\x21\x44\x57\x14\x8f\xe9\x56\xf9\xe5\xa7\x54\x55\x9a\xa9\x49\x55\xc9\xea\x41\x0a\xca\xd0\x3b\x7e\x5c\xc1\xae\x7a\xe7\x94\xb3\xaa\x16\xf3\xee\x53\x0d\xb3\xd7\xc0\x54\x3f\xe2\x3e\xd5\xf3\x71\x1e\xe0\xae\x2b\xd4\xd2\xba\xaa\xec\x2a\xa9\x81\xf6\xf0\xaa\xfe\xc7\xd5\xd5\xbe\xbf\x11\x06\xae\x4b\x55\xee\x51\x77\x3a\x8c\xe1\xc1\x7c\x5c\x3b\x9f\x8d\xe3\xe6\x02\x20\xdf\xd9\xe7\x6a\xc9\x4b\x95\x13\x51\x14\x84\x75\xb5\x5d\xef\x62\x7b\x43\xad\x41\x44\x9e\x89\x76\x36\x75\x8d\x71\x63\xe2\xf3\x29\xab\xab\xd6\xae\x10\xab\xb6\x2c\x7c\xad\xe6\x9f\x0f\x54\xaa\x99\xe2\x55\x0b\xcf\x58\x37\x7c\x8f\xed\x45\x59\x52\x5e\x80\x05\xd0\x9a\x64\x19\x1f\x51\x1d\x57\xbe\x56\xc3\x2b\xc8\xae\x46\xff\xcd\xa0\x55\x23\xfa\xef\xb6\xf0\x5a\xa3\x2f\xed\x00\x76\x65\x47\x71\x35\xc6\xe7\x3d\x42\x6e\x03\xf1\x14\x35\xc0\x07\xaf\x0e\x05\x5a\xb5\xf6\x3f\x9b\x07\x61\xa0\x4d\xb9\xd4\x04\xd8\x6a\x11\xa3\x77\xb5\x19\xf9\x83\xf4\xae\x11\x93\x47\x89\x48\x90\x04\x19\x27\xc9\x88\x4f\x1a\x18\x7c\xec\x78\x59\xe9\x6c\xbb\x3d\x35\x9d\xf4\xea\xfc\x2b\x61\x1f\x8a\xcd\xd7\x85\x73\xc7\x43\x50\x83\x3b\xfa\x3a\xc1\x97\x06\x74\xbe\x24\x40\x7d\x38\x23\x3a\x32\xe8\x65\x63\x4a\xdc\xe3\x68\x21\xdb\xf1\xa5\xb9\x0f\x86\xf1\xe3\x6a\x98\x2f\xdb\x78\xde\x9e\xb4\x25\x33\x5e\x04\x80\xf2\xb8\x3a\xbd\x01\xfc\xf5\xcf\x7c\xca\x8f\x3b\xb5\x2f\x4c\x9f\xea\x7d\xac\x98\xac\x35\xd4\x2e\x07\xeb\x8c\xd7\x25\x77\xc8\x4e\xd5\x61\x9b\x91\x9d\xd1\xff\xb8\x33\x1e\x61\x71\xb3\x0c\xad\x6f\xe6\xbd\x36\x04\xa3\x55\xb3\xa0\x4d\x6f\x08\x49\x84\x87\x9b\xdb\x6c\x66\xd6\x20\xf6\x44\x2d\x67\x6d\xb6\x0b\xe6\x66\xc5\xa3\x16\xfe\xfb\xbb\xc7\x38\x5f\xcd\x9a\xbb\x57\x60\xd2\x1e\x13\x9a\xff\x27\x13\xf7\x8e\x10\x63\x73\xfc\xe7\x24\xe4\x7b\x30\x71\x57\x30\xdb\x7a\x76\x30\x8e\xb7\xbd\x63\x32\xef\xe6\x73\xa1\x96\xdc\x69\x57\xb9\x2f\x0e\xd2\x6b\x3e\x97\xae\xb3\xfe\x09\x00\x00\xff\xff\xd4\x66\xb5\x00\x27\xba\x00\x00") + +func staticTextAnimalsAllBytes() ([]byte, error) { + return bindataRead( + _staticTextAnimalsAll, + "static/text/animals.all", + ) +} + +func staticTextAnimalsAll() (*asset, error) { + bytes, err := staticTextAnimalsAllBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/text/animals.all", size: 47655, mode: os.FileMode(436), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticTextHowmanyPy = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcf\x6a\x84\x30\x10\x87\xef\x82\xef\x30\xb7\x24\xed\x12\xf6\xbc\xe0\x93\x88\x87\x50\x47\x3a\xd5\x8e\x21\x86\x8a\x94\xbe\x7b\xc9\x1f\x37\x6e\x2b\x9b\x9b\x33\xdf\x8c\xf3\xfd\x4c\xff\x81\x6f\x9e\xbe\x70\x81\x06\xbe\x7f\xea\x6a\x25\xff\x0e\xb3\x45\x96\xa2\xf4\xc4\x45\x38\xa1\xc0\x2c\x30\xdc\xea\x0a\x00\x60\x98\x1d\x4c\xc4\x08\xc4\xf7\x5a\x78\xeb\xec\x7a\x68\x62\x4b\x2f\xde\x91\x95\x4a\x4f\xf3\x8a\x4e\xaa\x02\xd1\x10\xb9\xf6\xda\x01\xcf\x3e\xac\x28\xbf\x3a\xec\x0a\xaf\x34\xda\x3c\xd2\x41\x03\x6d\x57\xa8\x13\x42\x1b\x6b\x91\x7b\x19\xbe\x55\x5d\xd5\x95\x75\xc4\x5e\x4e\xc8\xb2\xd0\x7a\xc4\x6d\x91\x4a\x45\xc0\x30\x7d\x9a\x69\xcf\x20\xc8\x99\x68\x42\xbc\x67\x91\x80\x14\x84\x76\x68\x7a\xa9\xf4\x62\x27\xf2\x52\x5c\x84\xca\x57\x67\xfb\x38\x7b\xae\x7f\xa2\x9e\x36\x1f\xbc\x73\xe5\x4c\xf8\x6f\xeb\x99\x69\x42\x93\x1f\x41\x03\xd7\x24\x36\xe2\xf6\x98\x78\x0e\xe2\x76\x3f\x70\x27\x72\x26\x86\xfb\xff\x43\x87\x73\xc3\x6e\x82\x57\x78\x8c\xb7\x1d\x71\xeb\xd4\xcb\xe1\x92\x54\x29\x47\x92\xaa\xab\xdf\x00\x00\x00\xff\xff\x71\x1b\x50\xe4\x7f\x02\x00\x00") + +func staticTextHowmanyPyBytes() ([]byte, error) { + return bindataRead( + _staticTextHowmanyPy, + "static/text/howmany.py", + ) +} + +func staticTextHowmanyPy() (*asset, error) { + bytes, err := staticTextHowmanyPyBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/text/howmany.py", size: 639, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticTextRobotsTxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x0a\x2d\x4e\x2d\xd2\x4d\x4c\x4f\xcd\x2b\xb1\x52\xd0\xe2\x72\xc9\x2c\x4e\xcc\xc9\xc9\x2f\xb7\x52\xd0\xe7\x72\x84\x32\x3c\x52\x73\x0a\xf4\xcb\x32\x53\xcb\xe1\x22\xc5\x99\x25\xa9\xb9\x89\x05\x7a\x15\xb9\x39\x5c\x80\x00\x00\x00\xff\xff\x7d\x6b\xc3\x67\x40\x00\x00\x00") + +func staticTextRobotsTxtBytes() ([]byte, error) { + return bindataRead( + _staticTextRobotsTxt, + "static/text/robots.txt", + ) +} + +func staticTextRobotsTxt() (*asset, error) { + bytes, err := staticTextRobotsTxtBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/text/robots.txt", size: 64, mode: os.FileMode(436), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticTextSitemapXml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\xd1\x4e\xc4\x20\x10\x45\xdf\x9b\xf4\x1f\x08\xef\x65\x5a\x4d\xcc\xba\xa1\xec\x9b\xf1\x03\xf4\x03\x08\x3b\xb6\x44\x60\x2a\x83\xcb\xee\xdf\x9b\x5a\xad\x3e\xc1\x3d\x39\x73\x73\xf5\xe9\x1a\x83\xb8\x60\x66\x4f\x69\x94\x83\xea\xa5\xc0\xe4\xe8\xec\xd3\x34\xca\xd7\x97\xa7\xee\x20\x4f\xa6\x6d\xf4\x67\x0e\x8c\x45\x5c\x63\x48\x3c\xca\xb9\x94\xe5\x08\x50\x6b\x55\xec\x0b\x46\xbb\xb0\xa2\x3c\x01\xbb\x19\xa3\x65\xf8\x81\xd0\xab\x47\x69\xda\x46\x08\xb1\x16\x6c\xbf\x35\x04\x72\x66\xed\xe0\x23\x80\xad\xf5\x9d\x6c\xb0\xca\x51\x84\x67\x0c\x0b\x5c\x3c\x56\x0d\xab\xf3\x77\x60\xb9\x44\x3a\x9b\xbb\x7e\x78\xe8\xfa\xfb\x6e\x38\x68\xf8\x65\xbb\xe4\x66\x9b\x26\x7c\xcb\xf8\x61\x22\xa5\x32\x87\x9b\x86\x7f\x6c\xf7\x96\xec\x29\xfb\x72\x33\x83\xea\x35\xec\x69\xdb\x09\xdb\xd0\xef\x97\xb1\x18\xd1\x36\x5f\x01\x00\x00\xff\xff\x87\xdd\xba\x32\x25\x01\x00\x00") + +func staticTextSitemapXmlBytes() ([]byte, error) { + return bindataRead( + _staticTextSitemapXml, + "static/text/sitemap.xml", + ) +} + +func staticTextSitemapXml() (*asset, error) { + bytes, err := staticTextSitemapXmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/text/sitemap.xml", size: 293, mode: os.FileMode(509), modTime: time.Unix(1508076289, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _templatesIndexTmpl = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xff\x6f\xdb\x38\x96\xf8\xcf\x5b\xa0\xff\xc3\xab\x9a\x1d\xdb\x5b\x5b\x8a\x3b\x4d\x3b\x75\x6d\xcf\x67\x3e\x69\x07\xd3\xbb\x5e\x5b\x34\x99\x05\x16\x7b\x8b\x5b\x5a\x7a\xb6\xd9\x50\xa4\x96\xa4\x62\xa7\x41\xfe\xf7\x03\x49\xc9\x92\x63\x49\x76\x9c\xb4\xd3\x3d\xc4\x03\x4c\x6d\x92\xef\x0b\xdf\x77\x52\x14\x33\x7c\xf4\xfa\xc3\xf1\xe9\xdf\x3e\xbe\x81\xb9\x8e\xd9\xf8\xe1\x83\x61\xf6\xef\xc3\x07\x00\x00\xc3\x39\x92\x68\xec\xbe\xdb\xdf\x31\x6a\x02\x73\xad\x93\x1e\xfe\x2b\xa5\xe7\x23\x2f\x14\x5c\x23\xd7\x3d\x7d\x91\xa0\x07\xd9\xaf\x91\xa7\x71\xa9\x03\x83\xea\x15\x84\x73\x22\x15\xea\xd1\xef\xa7\xbf\xf6\x7e\xf2\x36\x90\x71\x12\xe3\xc8\x3b\xa7\xb8\x48\x84\xd4\x25\x14\x0b\x1a\xe9\xf9\x28\xc2\x73\x1a\x62\xcf\xfe\xe8\x02\xe5\x54\x53\xc2\x7a\x2a\x24\x0c\x47\xfd\x35\x6c\x8c\xf2\x33\x90\xc8\x46\x1e\x49\x12\x86\x3d\x2d\xd2\x70\xde\xa3\xa1\xe0\x1e\x28\xfa\x05\xd5\xc8\x3b\x7a\xb1\x3c\x7a\xe1\xc1\x5c\xe2\x74\x14\x28\x4d\x34\x0d\x03\x1a\xcf\x82\x50\x2c\x2e\x44\xe0\xc0\x0c\x40\xcf\x0e\xf4\x13\x3e\xbb\x21\x81\xe7\x87\xcb\xe7\x87\xb5\x04\x2a\x49\x59\x90\x3d\x48\xbd\x78\xba\x7c\xf1\x74\x97\xb9\xd8\x81\xfb\x10\x78\xbe\x7c\xf1\x7c\x27\x02\x66\xe0\x1e\x04\xfa\xfd\x67\xcb\x7e\xff\xd9\x2e\x24\xb2\xa1\xfb\x10\x79\x7a\xb8\xec\x3f\xad\xd7\x49\x99\x88\x1b\xba\x0f\x91\x67\xcf\x96\xfd\x67\xbb\xcd\xc4\x0d\xdd\x87\xc8\xd1\xd3\x65\xff\x68\x27\x95\x67\x43\xf7\x21\xf2\xd3\xe1\xb2\xff\xd3\x6e\xe2\x72\x43\xeb\x89\x38\xc4\x26\x30\x8c\x3c\x1a\x93\x19\x06\x09\x9f\x15\x94\x5e\x3e\x5d\xf6\x5f\x36\x4c\x87\x47\x52\xd0\x28\xa3\xe5\x06\xef\x4b\xeb\xc7\xa7\xcb\x1f\xeb\x29\x4d\xc9\xb9\x25\x62\x47\xed\x4b\xe2\xe5\xf3\xe5\xcb\x7a\x6f\xc9\x49\xd8\x51\x7b\x4b\xec\xf9\xb2\xbf\x9d\x84\x1d\x55\x4f\x22\x26\x9c\x4e\x51\xe9\x5a\x3c\xf9\x00\xff\xb3\x12\xbc\x26\x5a\xc7\xca\xd8\x01\x0d\x89\xa6\x82\xf7\x4e\x29\xc3\x63\xc1\x84\x2c\x05\xef\xc7\xd3\xe9\xb4\x2e\xd6\x6f\x42\xbf\x35\x73\x2d\x41\x07\xb1\xda\xf0\x96\x3a\x6c\x7a\x8e\x31\xf6\xc2\x1a\xfa\x0f\x1f\x5c\x5e\x02\x9d\x02\xe1\x11\xf8\xc7\xa9\xd2\x22\x3e\x3e\x39\x01\xff\x13\x92\xe8\x23\x99\x21\x5c\x5d\x3d\x7c\x50\x12\x8f\xd2\x17\x0c\xd5\x1c\x51\xe7\x7a\xb0\x99\x2c\x54\x2a\x13\x98\x97\x4b\x2c\x54\x2a\x08\x2d\x42\xdf\xf4\x8e\x2d\x25\x64\x2a\x43\xa9\x42\x49\x13\x5d\xc6\xf1\x99\x9c\x13\xd7\xea\x81\x92\x61\x81\xe9\xb3\x0a\x3e\xff\x2b\x45\x79\xd1\xeb\xfb\x3f\xf9\x3f\xfa\x9f\x95\x37\x1e\x06\x6e\xe8\xf8\x16\xdc\xcd\xa8\x9e\xa7\x93\x5e\x4c\xe4\x59\x24\x16\x3c\x67\x73\x6f\x7c\x31\xf2\x54\xf5\x62\x7a\x7b\x4c\x13\xa2\x70\x07\x44\x9b\x80\x73\x3a\x9b\x33\x3a\x9b\xeb\x15\x64\x26\xe7\xeb\x02\x2d\x06\x1a\x32\xd7\x25\x7a\x33\xe5\x14\xb8\x12\x12\x9e\x5d\x47\x66\xd0\x19\x9e\xaf\x4f\x7b\x9c\x9b\x9e\xff\x8e\x2a\xbd\xb2\xb5\xe0\x2f\xf0\xc9\x94\x4e\x12\x23\x98\x0a\x09\x8c\x2a\xad\xe0\x2f\xc1\xc3\x07\x2a\x21\x1c\x2e\x21\x4c\xa5\x12\x72\x00\x89\xa0\x5c\xa3\x7c\x05\x57\xce\xb2\x78\x64\xe1\x27\x22\xba\x80\x4b\xe7\x0a\x13\x12\x9e\xcd\xa4\x48\x79\x34\x00\x63\xf0\xaf\x1e\x3e\xb8\x7a\xf8\xc0\x57\x69\x18\xa2\x52\xf9\x28\xeb\x1a\x03\x78\x7c\x14\x4e\x7e\x3a\x0a\x5f\xb9\xc6\xa9\xe0\xba\xb7\x40\x33\xab\x01\x4c\x04\x8b\x32\xd8\x29\xa1\x2c\x95\x78\x1d\x36\x7a\x79\xf4\xe3\xb3\xe9\x16\xd8\x24\x95\xd8\x33\x46\x02\xe4\x3a\xfc\x8b\x17\x2f\xdc\xa0\xc7\x0b\x49\x92\xbc\x37\x11\x8a\x9a\x18\x30\x00\x32\x51\x82\xa5\x1a\x33\x0a\x5a\x24\x03\x38\x3a\x4c\x96\xd9\x6f\x86\x53\x3d\x80\xe2\xb7\x74\xb4\x8b\x86\x89\xd0\x5a\xc4\x79\x8b\xa1\x93\x90\x28\x27\x33\x77\xac\xf6\x0f\x0f\xff\xec\x3a\x33\xbd\xbc\x89\x68\xa1\x97\xb2\x5c\xc5\x39\xca\x29\x13\x8b\xc1\x9c\x46\x11\xf2\x15\x90\xd1\xc1\x6a\xb0\xa5\x60\xb4\x4d\x24\xae\xe6\x6b\xcb\xd4\x01\x64\xa4\x4a\xc4\xcb\x4d\x13\xb1\xec\x29\xfa\x85\xf2\x99\x11\x9f\x8c\x50\xf6\x26\x22\x9f\x49\x2f\x16\x5f\x7a\xcd\x23\x16\x38\x39\xa3\xba\x79\x50\xad\x68\x33\x51\x5e\x13\xe4\x75\x31\x96\xf5\x50\x74\x1a\x1a\x9b\xbf\xb9\xe0\x39\x72\x91\x6a\x46\x39\xae\xb5\xad\xb1\x3b\x27\x91\x58\xac\x77\xaf\xe6\xbb\xd9\x57\xd3\x2c\xd1\x24\xc4\xb5\x26\x6b\x92\xae\xb5\xef\x1f\x62\x9c\x35\x67\x8a\xfe\x8d\xa8\xd7\x42\xbf\xe5\xef\x49\xec\x94\xbd\x02\x99\x92\x98\xb2\x8b\x01\x78\xef\xd2\x90\x46\x04\x8e\x05\x57\x82\xa1\xd7\x85\xff\x12\x9c\x84\xa2\x0b\xb1\xe0\x42\x25\x24\xc4\x15\x4a\x13\xe3\x2b\x91\xb4\x3e\x24\xc8\xe1\x84\x70\xd5\xea\xb6\x4e\x70\x26\x10\x7e\x7f\xdb\xea\x9e\x92\xb9\x88\x49\xf7\x17\x49\x09\xeb\x2a\xc2\x55\x4f\xa1\xa4\xd3\x82\xc5\xdc\xb5\xaf\x4c\x30\xf1\xf3\x70\xdd\xb3\x16\x99\xb2\x2e\x5c\x6b\x12\x6c\xe5\x3f\x24\x8a\x28\x9f\xf5\x32\x9d\xda\x69\x5b\x24\xff\x2f\xc6\x88\x12\x68\xc7\x94\xf7\x32\x93\x3c\xc2\xb8\x93\xc3\x45\xf4\xfc\xb1\xf1\xd3\xae\xfd\x26\x91\x47\x28\x31\xea\x42\xad\x59\x6f\x12\x7b\x9a\x1b\x73\xb9\x2b\xb3\xa6\x55\x5f\x26\xa4\x52\x60\x28\xbe\xf6\xe6\x42\xd2\x2f\x82\x6b\xc2\xca\x54\x62\xb2\xcc\x39\xfe\xf1\xb0\xf0\xef\x0d\x4c\xbd\x88\x2a\x32\x61\x86\xeb\x32\x4e\x24\x86\x91\xb5\x36\x9b\x5a\xea\xe6\xd1\xf7\x9f\xae\x8c\x65\x73\x26\xab\x2e\xa7\x9c\x2a\xa9\x1e\xde\xad\x58\xfb\x87\x0d\x72\x2d\x3a\xef\x5e\x1c\x03\xf0\x8f\x30\x86\xfe\xf6\x29\xbf\xb8\xeb\x29\x1f\x35\x4d\xf9\xe8\xcf\x6b\xfc\x54\x72\xd4\x3f\xbc\x63\x96\x9e\x36\x69\xe1\xe9\xe1\x3a\x4b\xc3\xc0\xa6\xff\xf1\x5a\x96\x5e\x15\xaa\x9a\x6a\x86\xe3\xcb\x4b\xf0\xb3\x4c\x33\x0c\x5c\x93\x99\x4b\xf9\xbf\x15\x44\xb9\x36\x69\x5d\xab\x4d\x5a\xe3\x87\x0f\xfe\xe4\x02\x2d\xa3\x89\x80\x11\x4c\x09\x53\xf8\x0a\x0a\x78\xf3\x09\x82\xe1\xa3\xbf\x1f\xbf\xfe\xe5\xf4\x97\xbf\xaf\x77\x1c\xb4\x17\x94\x47\x62\xd1\xf1\x99\x20\x51\x7b\x9a\xf2\xd0\x24\x89\x76\xa7\x2c\x8b\x02\x0b\x7c\x42\x9d\x4a\xae\x80\x40\x3e\xb4\x0b\x7a\x4e\x74\x17\x88\x02\x26\xf8\xcc\xfc\x4b\xb5\x2d\xbb\x29\x4f\x51\x81\x16\x30\x41\xa0\xfc\x5c\x9c\x19\xa1\x2f\x28\x63\xc0\x85\xae\xc4\x3e\x41\xd0\x92\xce\x66\x46\x3f\x3e\x9c\xce\x71\x45\xc5\xc1\x4d\x10\x42\xc2\x18\x46\x40\xa6\x1a\xa5\x21\xa4\xb4\x48\x14\x4c\x90\xf2\x59\xde\x37\x15\xb2\x12\xfb\x7b\x88\x29\x63\x54\x61\x28\x78\xa4\x7c\x78\x3b\x85\x7f\xd2\xd8\x5a\x8f\xc6\x7f\x02\x55\x90\x10\xa5\x0c\x93\x19\x13\xa0\xcb\x1c\x08\x6e\x7e\x57\x62\x66\xce\xad\x00\xa3\x19\x76\x81\x72\xa5\x91\x44\x20\xa6\x16\x81\x96\x84\x32\xca\x67\xfe\x26\xe8\x0a\x77\x84\x13\x91\xf2\x10\xad\x02\xba\xb0\x20\x54\x77\x61\xc5\x5b\xa5\x32\xcc\xe7\x9c\x48\xd0\x34\x46\x91\xea\x57\xd5\x23\xa4\xd5\x17\x34\xeb\xb5\x30\x86\xd6\x63\x45\xce\xd1\x94\x41\xff\x3f\xd5\x5a\xf0\x56\xc7\x97\x18\x8b\x73\x3c\x66\x44\xa9\x76\xe7\x86\xb0\xc6\x58\xdb\x9e\x69\xa2\x7c\xe6\x75\x6a\x78\xcc\x67\x62\x97\x6a\x4b\x0d\x23\xd0\x73\xaa\xba\xf5\x83\xcd\x87\xc8\x99\x82\x91\xf9\x27\x8d\x91\x6b\xb5\x05\x37\x23\xc6\x5e\x46\x3b\x0a\xc2\x7c\x32\xb9\xc2\x08\x78\xca\x58\x03\x7a\xf3\xa1\x53\x68\x3f\x2a\xe9\xcb\x90\xf1\xcd\x9a\xf6\xa2\x9d\xcd\xaa\x6b\x39\x6e\x12\xc1\xd5\x36\xf1\x10\xc6\xde\x8b\x05\x8c\x0a\xc3\x80\x1f\x7e\x80\x47\xcd\x06\x60\x3e\x21\x43\x22\x4f\xdd\xb0\x76\x36\xbc\x89\x93\x62\xea\x0a\x75\x0e\x67\x25\xe8\x4c\xb3\x09\xd6\x48\x22\xe3\xf4\xe6\x62\xa8\x12\x81\x69\xab\x74\xba\xd3\x39\x55\x2e\x2c\x58\x0a\xd6\xd7\x72\x3f\x02\x9c\x4e\x31\xd4\x99\xcf\xc2\x19\x5e\xa4\x09\xe0\x39\xf2\xea\xb8\xf3\x0b\x8f\x4c\x2c\x11\x9c\x5d\xc0\x94\x4a\x54\x70\x74\x78\x18\x2b\x10\x12\xe6\x84\x4d\x81\x80\x0b\x1a\x59\xd8\x31\x28\x53\x85\xd2\x06\x9f\x04\x23\x13\x9a\x29\x9f\x6d\xa2\x36\x4e\x61\x06\xbe\xe5\x49\xaa\x5b\x1d\x5f\xf0\x76\xcb\xf2\xd2\xea\xae\xbb\x7c\xb3\x49\x86\xae\x06\xf5\x99\x98\xb5\x5b\x8e\x16\x88\x30\x4c\xa5\xc4\xa8\x65\x64\xf9\xa7\x3f\xe5\xa2\xcf\xd3\xc0\x08\xb4\x4c\x4d\xe0\xd8\xe0\xe1\x9c\xb0\x76\x55\x9b\xf1\xf4\x84\x91\x10\xdb\x01\x06\xb3\xae\xe7\x75\x3a\xaf\xe0\xaa\x9a\xa1\x7d\x03\x45\x43\x90\x38\x21\xe7\x36\x46\x54\x03\xa6\x89\x4d\x4f\x55\x76\x73\xd5\x35\xca\xea\x74\x2a\xcd\x64\x15\x60\x73\x04\x75\x22\x3e\xf0\xc9\x67\xb2\x6c\x37\xc4\x04\x93\x7e\x07\xd0\xfa\xf8\xe1\xe4\xb4\xd5\x10\x9b\x52\xc9\x06\xd0\x0a\xd2\x24\x22\x1a\x9b\x06\x46\x44\x93\x01\xfc\xc7\xc9\x87\xf7\xbe\xd2\x92\xf2\x19\x9d\x5e\x34\xd1\x37\x1f\x8e\x8b\xff\x31\xe2\x1a\x54\x6a\xb5\xb3\x25\x64\x26\x64\x86\x03\xf0\x4a\xa5\x87\xd7\x10\x8d\x9a\xb0\x65\xfb\x09\x83\x22\x9c\x9a\xd9\x6c\x0d\xa9\xb7\xc9\x2f\x90\x19\xb8\x21\xb4\xda\xcf\x28\xcc\xbc\x19\xb0\x96\x38\x89\x22\x47\xd9\xcb\x50\x36\x26\x29\x2b\x17\xb7\xa3\x77\x7b\x82\xd9\xbe\xca\x76\x82\x7b\xc8\xd4\xba\x94\x95\x54\x8c\x4a\x91\x19\x36\xe6\x9d\x06\x45\xa3\x94\x42\x96\xd4\xbc\x9c\xcb\xae\x6b\xfc\xea\xca\xbe\x23\xf1\xd5\xcb\xc7\x4d\x63\x4f\xc1\x64\xdb\xca\xa7\x36\x28\x78\xa5\xdd\xeb\xe0\xb3\x12\xdc\xdb\xe2\xf7\x0e\xac\x65\x86\xb6\x6a\x32\x61\x65\xa8\x6b\x0c\x71\x89\xa4\x31\xfe\x2a\xe4\x09\xb2\xe9\x6b\x54\x5a\xa6\xa1\xfe\x76\x01\xcf\x52\xbf\xeb\x78\x77\x1f\xb1\xee\x23\x56\x15\x81\xfb\x88\x75\x73\xc1\x7c\x87\x11\x8b\x89\xf0\xcc\xf8\x75\xdb\xac\xbb\x93\xb9\x24\xaa\xde\x31\xee\x3a\x5e\x19\xda\xdf\x20\x5c\x6d\x2d\xc9\xf2\x89\x0f\x4a\xdf\xef\x63\xdc\x7d\x8c\x83\x06\xc9\x9a\x65\xbf\xa1\x90\xfb\x4f\x8e\xbb\x63\x06\x78\xef\x44\x78\xe6\x99\x95\xdf\xfa\x67\xbb\x68\xdc\x4e\xa0\xcf\x84\x8b\x0b\x30\x02\x2f\x28\xd9\x72\x70\x4e\x71\xe1\x6d\x55\xc4\xd7\x98\xd2\xef\x9c\x7d\xad\x49\x61\x44\xf5\x6d\x26\x75\x9f\x8b\xf6\x10\xcc\x77\x98\x8b\x92\x74\xc2\xa8\x9a\xdb\x74\xf4\xed\x8a\x66\x47\xf4\x3b\xc8\x43\x8e\x11\xb7\xaf\x50\x12\xc5\xba\x1b\x7e\x74\x1d\xf7\x35\xf8\x7d\x7e\xb2\x9f\x95\x64\xb3\xf1\x59\xac\xce\xec\x07\x23\x6f\x67\x11\x57\x98\xdc\xca\xda\xee\x56\xb6\x55\x94\x56\x2c\x7b\x9d\x57\x8d\x08\xf6\x96\xf9\x7d\x96\xd8\x43\x30\xdf\x61\x96\x40\x1e\xca\x8b\x44\xff\x51\x8b\x96\x8c\xfc\x77\x90\x2f\xee\xd7\x2d\xf7\x79\xa1\xf6\xb3\xad\xc8\x2f\x79\xd1\x7a\x81\xf1\xc6\x75\xfc\xdb\xae\x5e\x6a\x27\xf6\x1a\xbf\xde\xc4\xee\x57\x30\x37\x46\xf3\x7f\x32\x37\xd9\xa7\xfc\x1f\xd8\x5d\x3c\xe4\x7c\xfd\xe6\xdd\x9b\xd3\x37\x3b\x24\x24\xc1\x22\x46\xd5\xb7\x48\x48\xf7\xb9\xe5\x3e\xb7\x40\xb3\x64\xaf\x8d\xbc\x7d\x64\x35\xa6\xfd\x6f\x19\x59\xf7\x89\x89\xf7\xa1\xb5\x22\xb8\x1e\xb4\xbd\x72\x52\xf7\x3a\x7e\xc8\x68\x78\x56\x9c\xd9\xa9\xf7\x68\xf4\x13\x69\x4f\x1c\xbd\xc6\x29\x49\x99\xae\xd5\xca\x39\x91\xa5\x1a\x1a\x46\x90\x48\x11\x27\x66\x01\xcc\xd0\x34\x20\xd7\x28\x81\x94\xc6\xf8\xf0\x5e\x68\x1c\x40\x56\x2e\x51\x3e\x73\xe7\xa0\x9c\x0d\x00\x61\x0c\x0c\x6d\x2a\x52\x05\x73\xaa\xb4\x90\x17\xbe\xd7\x05\xaf\x56\xa3\xc6\xa9\x4a\x2c\x3c\x72\x67\xde\x1a\x0d\xb1\x66\x25\x54\x77\xb0\xab\x42\xe2\xee\xc4\x4e\x8d\xcc\x0d\xb2\xaf\x2a\x71\x09\x23\x63\x69\x53\x2a\xe3\xb6\xf7\x8b\x44\xb8\x10\x29\xa8\x34\xfb\xb2\x20\x5c\x83\x16\x60\xf9\xf8\xb9\x51\x6e\x72\xa7\xd8\xbe\xb5\x88\x33\x84\xea\x62\xcd\xf6\x48\xbe\x34\x08\xff\x26\x52\xa3\x77\xa5\x30\x82\x63\xc2\x43\x64\x8f\x6a\x31\xde\x50\x1f\xaa\x74\xa6\xe0\xdb\xa9\xa5\x38\xe1\x67\xc5\x63\xcf\xdd\x99\xd2\xc0\x7e\xe1\xb8\xd4\xf6\xa4\x22\x50\x0d\x54\x81\x48\x90\x63\xd4\x05\x52\xa7\xcb\x48\xd8\x93\xca\x77\xa1\xcd\xea\xa3\x16\xdf\xad\xf6\xf2\x87\x2a\xdf\x49\xf8\x32\xca\xb0\xcf\x73\xee\x38\x24\x19\x90\xed\x8f\xc5\xbe\x7a\x6e\xf5\xae\x21\xf0\xf2\x6d\x46\xc3\x81\x3b\x07\xdd\x00\xdf\x90\x33\x77\xaa\xe7\xbe\xe6\x04\xdc\x63\xb8\x6d\x47\xb9\x1b\xca\xc0\xaa\x07\xfe\x0d\x98\x82\x00\x3e\x7e\x38\x39\xcd\x73\x8d\xf5\xfd\xc6\xd1\x12\x99\x20\x51\xc3\xb8\x7a\xcf\xa9\x12\x43\x69\xaf\xf8\xab\xb9\xce\x6a\xeb\x1c\xbc\xf2\x89\xe6\x28\x32\xb1\x4b\x66\xe1\x4e\xd8\x88\xa7\xa8\xc6\x98\x24\xfe\x32\x66\xa0\x84\x09\x7b\xf9\x4b\x11\x94\x47\xb8\xc4\x08\x26\x17\xa0\x90\xc8\x70\x0e\xc8\x67\x94\xa3\xf2\xeb\x42\x48\xee\x2b\xb5\xcf\x7a\x4a\x7b\xe2\x4d\x26\x57\x62\xff\x06\xd1\x0a\x8a\x13\xff\x26\xd2\x63\x54\x97\x8c\x7f\xf6\xe0\x09\x6c\x59\x19\xd8\x13\xe7\x05\xa2\x1d\xc2\xf7\x5d\x4d\x1e\xbe\xba\xbf\x65\x6c\xd4\x46\x8d\xef\x39\x5a\x7c\x2c\xf3\xde\xc4\xe8\x96\x99\xac\x3d\x99\xbd\x71\x46\xac\x62\x38\xdf\x29\xf9\x63\xaa\x18\x53\x9e\x5b\x0e\x30\xb2\xef\x7a\x83\x71\x6b\xb5\x43\xe1\x02\xed\xbf\xa2\x54\x54\xf0\x0c\x9d\xd2\xe4\x02\x28\xcf\x4b\xfc\x8e\x7f\x07\x95\x4d\xb1\x89\xf4\xc7\x17\x33\xd7\x9b\x0f\xda\x5e\xfe\xa6\x9e\xd7\xf1\xcf\xf0\x22\x12\x0b\xbe\x8b\xee\xe8\xb4\x8d\x66\xfc\xb1\x88\x10\x46\xa3\x11\xbc\xec\xc0\xa5\xc9\x17\x9a\x4c\x60\x41\x54\xce\x6a\x63\x6e\x99\xa1\x86\x90\x48\xd4\xab\x37\xa9\x03\x85\x0c\x2d\xed\x7a\x40\x63\x0d\x4a\x13\x99\xbf\xd5\xe4\xaf\x60\x4e\x4c\xeb\x96\x57\x7e\x90\x47\x1b\x70\x6f\x78\x54\x29\x9d\x32\xdc\x81\x01\x81\x11\x1c\xb4\xcd\x97\x6d\xef\x5d\x9d\x13\x96\x9a\x08\x6e\xa1\xdc\x9b\x04\x8d\x14\x82\x00\x14\xea\xe2\xad\x49\x07\xaf\xc5\xc0\x36\xc1\x04\xa7\x42\x62\x26\xab\x27\x56\xc6\x4f\x5c\x8f\x7b\x7b\xc6\x76\xd4\x63\x2f\xb8\xb0\x78\x7d\x95\x4e\xdc\xbe\x61\xfb\xb0\xeb\x44\xb9\x65\xef\x2d\xff\x3c\x01\xef\xbf\x75\xc3\xbe\xe1\xfa\xd8\xeb\xc4\x90\x47\x35\xef\x94\x94\xc4\x90\xa4\xb9\x4d\x10\xed\xde\x9c\x5f\x19\x07\x90\x19\xa1\x1c\xda\x26\x93\x0b\x8e\xf6\x66\x07\xfb\x36\x20\x99\x34\xf0\x5f\x61\x22\x55\x06\x00\xa3\xcc\xa8\x9e\x40\x7f\x2b\x8f\x2e\x6c\xb9\x77\x19\x45\x98\x2a\x60\xa2\xe9\x51\xdd\xce\x81\xee\x26\x8e\xdb\xf2\x23\x64\xa8\xc9\x84\x99\x4c\x7b\x3d\xe8\x1a\x6a\x35\xce\x6b\xfb\x76\xe3\xc8\xbe\xe6\x47\x39\xbe\x4f\xe3\xc2\xf4\x7d\xa2\xb5\x6c\xb7\x68\xd4\xaa\x7b\x25\x69\xcb\x9e\xb8\xdd\xe8\xf6\xec\x56\xa0\x89\xd3\xa6\x1e\x69\xfd\xdc\x82\x27\x70\xe0\x27\x44\x92\xb8\x69\x2b\xdb\xcb\xd8\xf1\x06\x39\x63\x0d\x9b\x57\x9e\x29\xf5\xbc\x1d\x77\xbd\x1b\xf6\xbc\x77\xdc\xc2\xdf\xdc\x18\xbf\xc9\xfe\x85\xef\x2a\xed\xb6\xcd\x27\xb5\xe1\xa5\xa6\xf2\xab\xde\x80\xab\x5a\xc0\x5e\x75\x5e\x41\x10\xfc\xe3\x1f\xe3\xb5\xf7\xa1\x8b\x9b\x56\x56\x4d\x59\xcb\x9c\x7d\x56\x3e\xe5\x54\xff\x96\x5f\xd0\x42\xf9\xec\x03\x7f\xe7\xde\x1d\x5b\xbb\xa2\xc5\x61\x2a\x5d\x66\x37\xb4\x57\x29\xd0\x68\xe4\x25\x24\x5a\xbb\x5a\x88\x48\x4d\x43\x86\x10\x9a\x8a\x68\xe4\xad\xdd\xbd\xe0\xad\xb1\x96\xdd\x2e\x51\xba\x4a\xa8\x54\xd7\x0c\x23\x7a\x6e\xf1\x2f\x24\x49\xca\x04\xd6\x3a\xf3\xd7\xd3\xcb\x03\x8c\x45\x7c\xca\xda\x57\xd7\x93\xac\x41\x07\x11\x3d\x2f\xb3\x7c\xed\x77\xf9\x1e\xa2\xeb\x32\xb6\x94\xb3\xa9\x15\xd7\x32\x54\xdd\xca\xe0\x59\x06\x4d\xe3\x75\xee\x2d\x9e\x94\x6d\xa0\xe9\xd9\x1d\xf4\x8a\xc1\xe0\xae\xa0\x1a\x0f\x03\x46\xeb\xba\x1f\xf5\x7a\xc5\xc5\x38\x5a\xc0\x19\x62\x62\xa2\x58\x0c\x0c\xcf\x91\xfd\x0c\xbd\x5e\x3d\xe6\x4d\x56\x8c\xf7\x96\xa7\x45\x54\x2f\x9c\x53\x16\x49\xe4\xa5\x66\xc2\x98\x58\xf4\xe6\xe2\x1c\x65\x1d\xdf\x96\x02\xc9\xae\x22\x7a\x5c\x08\xe5\x1d\xe5\x67\x7d\xaf\x4a\x06\xfc\xcc\x5b\x7f\xe1\x9f\x34\xa1\xae\x92\x63\xce\x69\x13\x4f\x8d\x33\xf7\xc6\x2b\x96\x83\x5a\x1e\xdf\xe3\xc2\xf0\xd6\xa0\x94\x9b\xd0\x99\x6b\x9d\xa8\x41\x90\x5d\x3a\xe5\x87\x22\x0e\x54\x38\x17\x8c\x7d\x71\xf7\x8a\xd5\xb2\x71\x22\x52\x19\xe2\x8e\x9c\x54\xdd\xdc\x73\x5b\xce\x1f\xd7\xb1\xe6\xc2\x43\x69\x57\x60\x2b\x73\x3d\xcb\xdd\x5b\xf5\x31\x3f\x13\x07\xbd\x6d\x1c\xae\x56\x7d\xdb\x71\x5b\xa7\xde\x8a\xf0\xe3\xce\xe8\xf8\x0e\xec\xed\xae\x97\xeb\x57\x5f\x54\x62\x9b\xcb\x9d\x14\xdc\x16\x12\xda\xfe\x5b\xf5\x4e\x84\x67\x18\x75\xec\xf7\xec\xf1\x87\xf9\xd9\xd9\x46\xa7\x1c\x01\x1b\xf9\xb9\xb5\x79\x94\x1f\x17\x8d\x33\xeb\x2c\xf1\x0a\x57\x57\xd9\x61\x90\x82\xa5\xac\xf3\xf2\x12\x79\xe4\xc2\xc3\x1d\xb9\x60\x33\xa7\xab\x6d\xe1\x82\x4d\x27\x5e\xb8\xba\x72\x5b\x7d\x05\x8b\xef\xec\xaf\xbb\xe6\x6f\xed\x11\x48\xb6\x8c\xad\x0d\x0b\xbf\xb9\xfe\x5d\xc9\x6f\x35\xac\xdb\x0b\x70\xe3\xa9\xc8\xf8\x04\xd9\xb4\x17\x65\x4d\xdf\x4c\x91\xc5\xd3\xb2\xf1\x1b\xf3\xf5\xee\x5c\x74\x18\xa4\xac\x2e\xc9\x36\xa7\xee\x9b\x66\x66\xc3\xcd\x82\xea\x39\xf8\x7f\xa5\xb8\xc8\x6c\xa2\x18\xe3\x56\x3f\x18\xad\x78\xae\xad\x2a\x2a\x6d\xcb\x1e\xfe\xaa\x33\x2c\x43\xb0\x3e\x27\xdb\x79\xda\x52\xe3\x6b\x16\x1b\x77\x36\x7f\xd8\xab\x3a\x69\x16\x01\xdc\xa6\x2c\x69\x30\xef\x3b\xd3\xe0\x71\x2a\x25\x72\xeb\x70\xd5\x4c\x34\x59\x78\xa3\x9f\x5c\x5e\x82\x24\x7c\x86\xa6\x00\x0f\x91\x6b\x76\x61\x2a\x0d\x8c\x6e\x97\x47\xea\x9c\x79\x35\x6f\x3f\x9b\x71\x60\x62\xb3\xbf\x53\xcc\xbd\x13\x6f\xae\xee\xbc\x5d\x0a\xde\x4c\x2e\x37\x74\xa4\x3f\x38\xa1\xd5\xf3\x55\x67\x8e\x25\x76\xc7\x43\x7b\x89\xa7\xcd\x16\xeb\xdb\xe4\xe3\x61\x60\xba\xc6\x5b\xa8\x6f\x2b\x5c\xbe\xff\x82\xe5\x8f\x97\x5f\x83\x5b\xac\x5f\xde\x58\x01\xbc\x71\x5d\xeb\x8d\xa6\x58\x44\xf5\x12\x8e\xc6\xa8\xbe\xa3\xd2\x56\x8f\x30\xc6\xc7\xe6\x1b\x44\x82\x6f\x4b\xfb\x7b\x5b\xd2\x2d\x26\xb1\x79\x9c\xae\x4e\xe7\x06\xf5\xed\x54\xb9\x03\xff\xa5\x55\xe2\x1e\xfc\xdb\x83\xd6\xb5\x36\x5b\x6b\xa7\xe6\xfb\xae\xb6\x6a\xfd\xa9\x2a\x0c\x57\x1f\xee\xa8\x08\xe8\xf9\xd6\x4f\xe5\x36\x4f\xdd\xee\x13\x54\x2e\xa4\x0b\x18\xbb\x23\x36\x5c\x6d\xf8\x93\x54\x0b\xb7\x95\x6c\x2f\x8c\x9a\x0b\x16\xa1\x1c\x79\xbf\x2b\x84\x7c\x73\x0c\xb4\x80\x85\xa4\x1a\xdd\x63\x6c\x2e\x34\x3e\x82\xf7\xb8\x18\xd8\x27\x5b\x21\x59\xbd\x70\x59\xf4\xc3\x62\x8e\xdc\x76\x13\x89\xd6\xa0\xa1\x5d\x12\x3f\xf4\xc6\xf9\x4a\xb6\xe3\x3b\x27\x58\x5d\x80\xe4\xb6\x57\x3e\x91\x45\x71\xa5\x62\xc6\xeb\xd8\xc9\xa3\x64\x3a\x15\x3b\x6d\x15\xe5\x41\x26\x8d\xd7\x82\xeb\xff\xe4\x62\xb1\x92\x88\xd2\x52\xf0\xd9\x78\x18\xda\x63\x2d\x8e\xac\x48\xb5\xed\xe4\x42\x43\x6a\x70\x2a\x2d\x44\xf4\x68\x18\x64\x83\x86\x41\x06\xd5\x60\xc0\x19\xbd\x52\xed\xb7\x75\xd3\x0f\xea\x5d\x22\xbf\xe5\xd6\xad\x98\x6a\xa1\x87\xf3\x7e\xb1\xaa\x9a\xf7\xab\x37\xf5\x2a\x4d\xc5\xd5\x44\x07\xb4\x0b\x07\x08\x83\x11\xf8\xf9\x93\xc9\x26\xe7\xb4\xb7\x62\x8e\x3c\x13\x06\x7a\xf6\x7b\x76\x61\xef\x4e\x85\xe0\xc1\x5a\x25\xf8\xf3\xb9\xa3\x37\xba\xbc\x3c\x40\xe3\xb1\x79\x01\xfb\x03\x9f\xa8\xe4\x95\xfb\x7f\x0d\xbc\xa1\xbf\x01\x9f\x87\x9f\x1d\xe0\x25\xd9\x24\xff\x89\x6c\x50\xaf\x73\x71\x7b\x56\x03\x0e\x56\x12\x3b\xc5\xa5\x86\x03\x7a\x75\xe5\xc0\xda\x97\x97\x74\x0a\x4c\x43\xfb\xfa\xc0\xe3\xb9\x11\xfa\x49\x1a\x2b\x38\xa0\x1d\x38\xbc\xba\x72\x31\x27\x13\xab\xbb\x58\xdb\xda\x73\x9e\xd4\x2a\xfa\x67\x12\x4d\xb9\xfe\x24\x0b\x35\x9b\xec\xac\x51\x31\x9e\x64\x03\x57\xa7\x26\x6a\xad\x22\xd6\x86\xee\x36\x23\x53\xb3\xad\x6e\xc9\xb1\xab\x3a\xfc\xc0\x32\x6c\xec\x8e\x61\x8c\x5c\x5b\xeb\x33\xc0\x6f\x35\xc6\xaa\x21\xcf\x17\x10\xb5\x14\x6a\xd8\xcb\x9b\x2b\xf9\x7e\x4d\x25\x86\xcd\x5e\x66\x1f\x7b\xe5\x6a\x70\x37\xd4\xf6\x0f\x0f\xff\x5c\x6d\xf6\x43\x5d\xb7\x6f\x31\xd4\xf3\xf1\x6b\x11\xda\xeb\x2e\x87\x81\x9e\x37\x0c\xcb\xd6\x43\xf6\xcf\x44\xd8\xa1\x35\x0b\x20\x33\xf6\x7d\x1a\x83\x09\xfa\x6a\xdb\xc0\x77\x44\x69\x70\xab\x9f\xfa\xa1\xc3\xa0\x86\xff\x8a\x98\xf1\x2b\x65\xf8\x9e\xc4\x58\x13\x34\x9a\x24\x11\xad\xa7\xe8\x83\x62\x89\x38\xce\x7f\xba\x5c\xab\xa3\x06\x1c\x85\xf5\x1b\x56\x4e\xe8\x17\xcc\x8d\x5e\x47\xf5\x92\xb8\x0e\xf7\x3e\x8d\x9d\xd3\xec\x03\x6c\x84\xea\x64\xba\x05\xb8\x41\xb0\xb5\x49\x65\x18\x58\xd3\xdb\xf0\xc3\xcc\x67\x5d\x6a\x84\xea\xfa\xa1\xd2\xee\x87\x41\xf6\x2c\x6c\xbc\x7e\x4d\xf1\x30\x98\x88\xe8\xc2\xfd\xe9\x83\x20\xfb\x73\x51\xff\x1b\x00\x00\xff\xff\xf0\xc7\x90\xee\x48\x6a\x00\x00") + +func templatesIndexTmplBytes() ([]byte, error) { + return bindataRead( + _templatesIndexTmpl, + "templates/index.tmpl", + ) +} + +func templatesIndexTmpl() (*asset, error) { + bytes, err := templatesIndexTmplBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "templates/index.tmpl", size: 27208, mode: os.FileMode(509), modTime: time.Unix(1509792199, 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/base-min.css": staticCssBaseMinCss, + "static/css/github-markdown.css": staticCssGithubMarkdownCss, + "static/css/highlight.css": staticCssHighlightCss, + "static/css/menus-min.css": staticCssMenusMinCss, + "static/img/cowyo/android-icon-144x144.png": staticImgCowyoAndroidIcon144x144Png, + "static/img/cowyo/android-icon-192x192.png": staticImgCowyoAndroidIcon192x192Png, + "static/img/cowyo/android-icon-36x36.png": staticImgCowyoAndroidIcon36x36Png, + "static/img/cowyo/android-icon-48x48.png": staticImgCowyoAndroidIcon48x48Png, + "static/img/cowyo/android-icon-72x72.png": staticImgCowyoAndroidIcon72x72Png, + "static/img/cowyo/android-icon-96x96.png": staticImgCowyoAndroidIcon96x96Png, + "static/img/cowyo/apple-icon-114x114.png": staticImgCowyoAppleIcon114x114Png, + "static/img/cowyo/apple-icon-120x120.png": staticImgCowyoAppleIcon120x120Png, + "static/img/cowyo/apple-icon-144x144.png": staticImgCowyoAppleIcon144x144Png, + "static/img/cowyo/apple-icon-152x152.png": staticImgCowyoAppleIcon152x152Png, + "static/img/cowyo/apple-icon-180x180.png": staticImgCowyoAppleIcon180x180Png, + "static/img/cowyo/apple-icon-57x57.png": staticImgCowyoAppleIcon57x57Png, + "static/img/cowyo/apple-icon-60x60.png": staticImgCowyoAppleIcon60x60Png, + "static/img/cowyo/apple-icon-72x72.png": staticImgCowyoAppleIcon72x72Png, + "static/img/cowyo/apple-icon-76x76.png": staticImgCowyoAppleIcon76x76Png, + "static/img/cowyo/apple-icon-precomposed.png": staticImgCowyoAppleIconPrecomposedPng, + "static/img/cowyo/apple-icon.png": staticImgCowyoAppleIconPng, + "static/img/cowyo/browserconfig.xml": staticImgCowyoBrowserconfigXml, + "static/img/cowyo/favicon-16x16.png": staticImgCowyoFavicon16x16Png, + "static/img/cowyo/favicon-32x32.png": staticImgCowyoFavicon32x32Png, + "static/img/cowyo/favicon-96x96.png": staticImgCowyoFavicon96x96Png, + "static/img/cowyo/favicon.ico": staticImgCowyoFaviconIco, + "static/img/cowyo/manifest.json": staticImgCowyoManifestJson, + "static/img/cowyo/ms-icon-144x144.png": staticImgCowyoMsIcon144x144Png, + "static/img/cowyo/ms-icon-150x150.png": staticImgCowyoMsIcon150x150Png, + "static/img/cowyo/ms-icon-310x310.png": staticImgCowyoMsIcon310x310Png, + "static/img/cowyo/ms-icon-70x70.png": staticImgCowyoMsIcon70x70Png, + "static/img/logo.png": staticImgLogoPng, + "static/js/highlight.min.js": staticJsHighlightMinJs, + "static/js/highlight.pack.js": staticJsHighlightPackJs, + "static/js/jquery-1.8.3.js": staticJsJquery183Js, + "static/text/adjectives": staticTextAdjectives, + "static/text/adjectives.old": staticTextAdjectivesOld, + "static/text/animals": staticTextAnimals, + "static/text/animals.all": staticTextAnimalsAll, + "static/text/howmany.py": staticTextHowmanyPy, + "static/text/robots.txt": staticTextRobotsTxt, + "static/text/sitemap.xml": staticTextSitemapXml, + "templates/index.tmpl": templatesIndexTmpl, +} + +// 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{ + "base-min.css": &bintree{staticCssBaseMinCss, map[string]*bintree{}}, + "github-markdown.css": &bintree{staticCssGithubMarkdownCss, map[string]*bintree{}}, + "highlight.css": &bintree{staticCssHighlightCss, map[string]*bintree{}}, + "menus-min.css": &bintree{staticCssMenusMinCss, map[string]*bintree{}}, + }}, + "img": &bintree{nil, map[string]*bintree{ + "cowyo": &bintree{nil, map[string]*bintree{ + "android-icon-144x144.png": &bintree{staticImgCowyoAndroidIcon144x144Png, map[string]*bintree{}}, + "android-icon-192x192.png": &bintree{staticImgCowyoAndroidIcon192x192Png, map[string]*bintree{}}, + "android-icon-36x36.png": &bintree{staticImgCowyoAndroidIcon36x36Png, map[string]*bintree{}}, + "android-icon-48x48.png": &bintree{staticImgCowyoAndroidIcon48x48Png, map[string]*bintree{}}, + "android-icon-72x72.png": &bintree{staticImgCowyoAndroidIcon72x72Png, map[string]*bintree{}}, + "android-icon-96x96.png": &bintree{staticImgCowyoAndroidIcon96x96Png, map[string]*bintree{}}, + "apple-icon-114x114.png": &bintree{staticImgCowyoAppleIcon114x114Png, map[string]*bintree{}}, + "apple-icon-120x120.png": &bintree{staticImgCowyoAppleIcon120x120Png, map[string]*bintree{}}, + "apple-icon-144x144.png": &bintree{staticImgCowyoAppleIcon144x144Png, map[string]*bintree{}}, + "apple-icon-152x152.png": &bintree{staticImgCowyoAppleIcon152x152Png, map[string]*bintree{}}, + "apple-icon-180x180.png": &bintree{staticImgCowyoAppleIcon180x180Png, map[string]*bintree{}}, + "apple-icon-57x57.png": &bintree{staticImgCowyoAppleIcon57x57Png, map[string]*bintree{}}, + "apple-icon-60x60.png": &bintree{staticImgCowyoAppleIcon60x60Png, map[string]*bintree{}}, + "apple-icon-72x72.png": &bintree{staticImgCowyoAppleIcon72x72Png, map[string]*bintree{}}, + "apple-icon-76x76.png": &bintree{staticImgCowyoAppleIcon76x76Png, map[string]*bintree{}}, + "apple-icon-precomposed.png": &bintree{staticImgCowyoAppleIconPrecomposedPng, map[string]*bintree{}}, + "apple-icon.png": &bintree{staticImgCowyoAppleIconPng, map[string]*bintree{}}, + "browserconfig.xml": &bintree{staticImgCowyoBrowserconfigXml, map[string]*bintree{}}, + "favicon-16x16.png": &bintree{staticImgCowyoFavicon16x16Png, map[string]*bintree{}}, + "favicon-32x32.png": &bintree{staticImgCowyoFavicon32x32Png, map[string]*bintree{}}, + "favicon-96x96.png": &bintree{staticImgCowyoFavicon96x96Png, map[string]*bintree{}}, + "favicon.ico": &bintree{staticImgCowyoFaviconIco, map[string]*bintree{}}, + "manifest.json": &bintree{staticImgCowyoManifestJson, map[string]*bintree{}}, + "ms-icon-144x144.png": &bintree{staticImgCowyoMsIcon144x144Png, map[string]*bintree{}}, + "ms-icon-150x150.png": &bintree{staticImgCowyoMsIcon150x150Png, map[string]*bintree{}}, + "ms-icon-310x310.png": &bintree{staticImgCowyoMsIcon310x310Png, map[string]*bintree{}}, + "ms-icon-70x70.png": &bintree{staticImgCowyoMsIcon70x70Png, map[string]*bintree{}}, + }}, + "logo.png": &bintree{staticImgLogoPng, map[string]*bintree{}}, + }}, + "js": &bintree{nil, map[string]*bintree{ + "highlight.min.js": &bintree{staticJsHighlightMinJs, map[string]*bintree{}}, + "highlight.pack.js": &bintree{staticJsHighlightPackJs, map[string]*bintree{}}, + "jquery-1.8.3.js": &bintree{staticJsJquery183Js, map[string]*bintree{}}, + }}, + "text": &bintree{nil, map[string]*bintree{ + "adjectives": &bintree{staticTextAdjectives, map[string]*bintree{}}, + "adjectives.old": &bintree{staticTextAdjectivesOld, map[string]*bintree{}}, + "animals": &bintree{staticTextAnimals, map[string]*bintree{}}, + "animals.all": &bintree{staticTextAnimalsAll, map[string]*bintree{}}, + "howmany.py": &bintree{staticTextHowmanyPy, map[string]*bintree{}}, + "robots.txt": &bintree{staticTextRobotsTxt, map[string]*bintree{}}, + "sitemap.xml": &bintree{staticTextSitemapXml, map[string]*bintree{}}, + }}, + }}, + "templates": &bintree{nil, map[string]*bintree{ + "index.tmpl": &bintree{templatesIndexTmpl, 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/vendor/github.com/schollz/cowyo/docker-compose.yml b/vendor/github.com/schollz/cowyo/docker-compose.yml new file mode 100644 index 0000000..3249d2b --- /dev/null +++ b/vendor/github.com/schollz/cowyo/docker-compose.yml @@ -0,0 +1,9 @@ +version: "2" + +services: + cowyo: + build: . + ports: + - 8050:8050 + volumes: + - ./data:/data \ No newline at end of file diff --git a/vendor/github.com/schollz/cowyo/encrypt/encrypt.go b/vendor/github.com/schollz/cowyo/encrypt/encrypt.go new file mode 100644 index 0000000..b59f5f8 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/encrypt/encrypt.go @@ -0,0 +1,28 @@ +package encrypt + +import ( + "crypto/sha256" + "encoding/hex" + + "github.com/schollz/cryptopasta" +) + +func EncryptString(toEncrypt string, password string) (string, error) { + key := sha256.Sum256([]byte(password)) + encrypted, err := cryptopasta.Encrypt([]byte(toEncrypt), &key) + if err != nil { + return "", err + } + + return hex.EncodeToString(encrypted), nil +} + +func DecryptString(toDecrypt string, password string) (string, error) { + key := sha256.Sum256([]byte(password)) + contentData, err := hex.DecodeString(toDecrypt) + if err != nil { + return "", err + } + bDecrypted, err := cryptopasta.Decrypt(contentData, &key) + return string(bDecrypted), err +} diff --git a/vendor/github.com/schollz/cowyo/encrypt/encrypt_test.go b/vendor/github.com/schollz/cowyo/encrypt/encrypt_test.go new file mode 100644 index 0000000..d5f379c --- /dev/null +++ b/vendor/github.com/schollz/cowyo/encrypt/encrypt_test.go @@ -0,0 +1,22 @@ +package encrypt + +import "testing" + +func TestEncryption(t *testing.T) { + s, err := EncryptString("some string", "some password") + if err != nil { + t.Errorf("What") + } + d, err := DecryptString(s, "some wrong password") + if err == nil { + t.Errorf("Should throw error for bad password") + } + d, err = DecryptString(s, "some password") + if err != nil { + t.Errorf("Should not throw password") + } + if d != "some string" { + t.Errorf("Problem decoding") + } + +} diff --git a/vendor/github.com/schollz/cowyo/handlers.go b/vendor/github.com/schollz/cowyo/handlers.go new file mode 100755 index 0000000..8e2af88 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/handlers.go @@ -0,0 +1,647 @@ +package main + +import ( + "fmt" + "html/template" + "io/ioutil" + "net/http" + "path" + "strconv" + "strings" + "time" + + // "github.com/gin-contrib/static" + "github.com/gin-contrib/multitemplate" + "github.com/gin-contrib/sessions" + "github.com/gin-gonic/gin" + "github.com/schollz/cowyo/encrypt" +) + +var customCSS []byte +var defaultLock string +var debounceTime int +var diaryMode bool + +func serve(host, port, crt_path, key_path string, TLS bool, cssFile string, defaultPage string, defaultPassword string, debounce int, diary bool) { + gin.SetMode(gin.ReleaseMode) + router := gin.Default() + store := sessions.NewCookieStore([]byte("secret")) + router.Use(sessions.Sessions("mysession", store)) + router.HTMLRender = loadTemplates("index.tmpl") + // router.Use(static.Serve("/static/", static.LocalFile("./static", true))) + router.GET("/", func(c *gin.Context) { + if defaultPage != "" { + c.Redirect(302, "/"+defaultPage+"/read") + } else { + c.Redirect(302, "/"+randomAlliterateCombo()) + } + }) + router.GET("/:page", func(c *gin.Context) { + page := c.Param("page") + c.Redirect(302, "/"+page+"/") + }) + router.GET("/:page/*command", handlePageRequest) + router.POST("/update", handlePageUpdate) + router.POST("/relinquish", handlePageRelinquish) // relinquish returns the page no matter what (and destroys if nessecary) + router.POST("/exists", handlePageExists) + router.POST("/prime", handlePrime) + router.POST("/lock", handleLock) + router.POST("/publish", handlePublish) + router.POST("/encrypt", handleEncrypt) + router.DELETE("/oldlist", handleClearOldListItems) + router.DELETE("/listitem", deleteListItem) + + // start long-processes as threads + go thread_SiteMap() + + // collect custom CSS + if len(cssFile) > 0 { + var errRead error + customCSS, errRead = ioutil.ReadFile(cssFile) + if errRead != nil { + fmt.Println(errRead.Error()) + return + } + fmt.Printf("Loaded CSS file, %d bytes\n", len(customCSS)) + } + + // lock all pages automatically + if defaultPassword != "" { + fmt.Println("running with locked pages") + defaultLock = HashPassword(defaultPassword) + } + + // set the debounce time + debounceTime = debounce + + // set diary mode + diaryMode = diary + + if TLS { + http.ListenAndServeTLS(host+":"+port, crt_path, key_path, router) + } else { + router.Run(host + ":" + port) + } +} + +func loadTemplates(list ...string) multitemplate.Render { + r := multitemplate.New() + + for _, x := range list { + templateString, err := Asset("templates/" + x) + if err != nil { + panic(err) + } + + tmplMessage, err := template.New(x).Parse(string(templateString)) + if err != nil { + panic(err) + } + + r.Add(x, tmplMessage) + } + + return r +} + +func handlePageRelinquish(c *gin.Context) { + type QueryJSON struct { + Page string `json:"page"` + } + var json QueryJSON + err := c.BindJSON(&json) + if err != nil { + log.Trace(err.Error()) + c.JSON(http.StatusOK, gin.H{"success": false, "message": "Wrong JSON"}) + return + } + if len(json.Page) == 0 { + c.JSON(http.StatusOK, gin.H{"success": false, "message": "Must specify `page`"}) + return + } + message := "Relinquished" + p := Open(json.Page) + name := p.Meta + if name == "" { + name = json.Page + } + text := p.Text.GetCurrent() + isLocked := p.IsEncrypted + isEncrypted := p.IsEncrypted + destroyed := p.IsPrimedForSelfDestruct + if !p.IsLocked && p.IsPrimedForSelfDestruct { + p.Erase() + message = "Relinquished and erased" + } + c.JSON(http.StatusOK, gin.H{"success": true, + "name": name, + "message": message, + "text": text, + "locked": isLocked, + "encrypted": isEncrypted, + "destroyed": destroyed}) +} + +func thread_SiteMap() { + for { + log.Info("Generating sitemap...") + ioutil.WriteFile(path.Join(pathToData, "sitemap.xml"), []byte(generateSiteMap()), 0644) + log.Info("..finished generating sitemap") + time.Sleep(24 * time.Hour) + } +} + +func generateSiteMap() (sitemap string) { + files, _ := ioutil.ReadDir(pathToData) + lastEdited := make([]string, len(files)) + names := make([]string, len(files)) + i := 0 + for _, f := range files { + names[i] = DecodeFileName(f.Name()) + p := Open(names[i]) + if p.IsPublished { + lastEdited[i] = time.Unix(p.Text.LastEditTime()/1000000000, 0).Format("2006-01-02") + i++ + } + } + names = names[:i] + lastEdited = lastEdited[:i] + sitemap = ` + ` + for i := range names { + sitemap += fmt.Sprintf(` + + https://cowyo.com/%s/read + %s + monthly + 0.8 + + `, names[i], lastEdited[i]) + } + sitemap += "" + return +} + +func handlePageRequest(c *gin.Context) { + page := c.Param("page") + command := c.Param("command") + + if page == "sitemap.xml" { + siteMap, err := ioutil.ReadFile(path.Join(pathToData, "sitemap.xml")) + if err != nil { + c.Data(http.StatusInternalServerError, contentType("sitemap.xml"), []byte("")) + } else { + c.Data(http.StatusOK, contentType("sitemap.xml"), siteMap) + } + return + } else if page == "favicon.ico" { + data, _ := Asset("/static/img/cowyo/favicon.ico") + c.Data(http.StatusOK, contentType("/static/img/cowyo/favicon.ico"), data) + return + } else if page == "static" { + filename := page + command + var data []byte + fmt.Println(filename) + if filename == "static/css/custom.css" { + data = customCSS + } else { + var errAssset error + data, errAssset = Asset(filename) + if errAssset != nil { + c.String(http.StatusInternalServerError, "Could not find data") + } + } + c.Data(http.StatusOK, contentType(filename), data) + return + } + p := Open(page) + fmt.Println(command) + if len(command) < 2 { + fmt.Println(p.IsPublished) + if p.IsPublished { + c.Redirect(302, "/"+page+"/read") + } else { + c.Redirect(302, "/"+page+"/edit") + } + return + } + + version := c.DefaultQuery("version", "ajksldfjl") + + // use the default lock + if defaultLock != "" && p.IsNew() { + p.IsLocked = true + p.PassphraseToUnlock = defaultLock + } + + // Disallow anything but viewing locked/encrypted pages + if (p.IsEncrypted || p.IsLocked) && + (command[0:2] != "/v" && command[0:2] != "/r") { + fmt.Println("IS LOCKED") + c.Redirect(302, "/"+page+"/view") + return + } + + // Destroy page if it is opened and primed + if p.IsPrimedForSelfDestruct && !p.IsLocked && !p.IsEncrypted { + p.Update("*This page has self-destructed. You can not return to it.*\n\n" + p.Text.GetCurrent()) + p.Erase() + command = "/view" + } + if command == "/erase" { + if !p.IsLocked && !p.IsEncrypted { + p.Erase() + c.Redirect(302, "/"+page+"/edit") + } else { + c.Redirect(302, "/"+page+"/view") + } + return + } + rawText := p.Text.GetCurrent() + rawHTML := p.RenderedPage + + // Check to see if an old version is requested + versionInt, versionErr := strconv.Atoi(version) + if versionErr == nil && versionInt > 0 { + versionText, err := p.Text.GetPreviousByTimestamp(int64(versionInt)) + if err == nil { + rawText = versionText + rawHTML = GithubMarkdownToHTML(rawText) + } + } + + // Get history + var versionsInt64 []int64 + var versionsChangeSums []int + var versionsText []string + if command[0:2] == "/h" { + versionsInt64, versionsChangeSums = p.Text.GetMajorSnapshotsAndChangeSums(60) // get snapshots 60 seconds apart + versionsText = make([]string, len(versionsInt64)) + for i, v := range versionsInt64 { + versionsText[i] = time.Unix(v/1000000000, 0).Format("Mon Jan 2 15:04:05 MST 2006") + } + versionsText = reverseSliceString(versionsText) + versionsInt64 = reverseSliceInt64(versionsInt64) + versionsChangeSums = reverseSliceInt(versionsChangeSums) + } + + if command[0:3] == "/ra" { + c.Writer.Header().Set("Content-Type", contentType(p.Name)) + c.Writer.Header().Set("Access-Control-Allow-Origin", "*") + c.Writer.Header().Set("Access-Control-Max-Age", "86400") + c.Writer.Header().Set("Access-Control-Allow-Methods", "POST, GET, OPTIONS, PUT, DELETE, UPDATE") + c.Writer.Header().Set("Access-Control-Allow-Headers", "Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, X-Max") + c.Writer.Header().Set("Access-Control-Allow-Credentials", "true") + c.Data(200, contentType(p.Name), []byte(rawText)) + return + } + log.Debug(command) + log.Debug("%v", command[0:2] != "/e" && + command[0:2] != "/v" && + command[0:2] != "/l" && + command[0:2] != "/h" && + command[0:2] != "/r") + + var FileNames, FileLastEdited []string + var FileSizes, FileNumChanges []int + if page == "ls" { + command = "/view" + FileNames, FileSizes, FileNumChanges, FileLastEdited = DirectoryList() + } + + // swap out /view for /read if it is published + if p.IsPublished { + rawHTML = strings.Replace(rawHTML, "/view", "/read", -1) + } + + c.HTML(http.StatusOK, "index.tmpl", gin.H{ + "EditPage": command[0:2] == "/e", // /edit + "ViewPage": command[0:2] == "/v", // /view + "ListPage": command[0:2] == "/l", // /list + "HistoryPage": command[0:2] == "/h", // /history + "ReadPage": command[0:2] == "/r", // /history + "DontKnowPage": command[0:2] != "/e" && + command[0:2] != "/v" && + command[0:2] != "/l" && + command[0:2] != "/h", + "DirectoryPage": page == "ls", + "FileNames": FileNames, + "FileSizes": FileSizes, + "FileNumChanges": FileNumChanges, + "FileLastEdited": FileLastEdited, + "Page": page, + "RenderedPage": template.HTML([]byte(rawHTML)), + "RawPage": rawText, + "Versions": versionsInt64, + "VersionsText": versionsText, + "VersionsChangeSums": versionsChangeSums, + "IsLocked": p.IsLocked, + "IsEncrypted": p.IsEncrypted, + "ListItems": renderList(rawText), + "Route": "/" + page + command, + "HasDotInName": strings.Contains(page, "."), + "RecentlyEdited": getRecentlyEdited(page, c), + "IsPublished": p.IsPublished, + "CustomCSS": len(customCSS) > 0, + "Debounce": debounceTime, + "DiaryMode": diaryMode, + "Date": time.Now().Format("2006-01-02"), + }) +} + +func getRecentlyEdited(title string, c *gin.Context) []string { + session := sessions.Default(c) + var recentlyEdited string + v := session.Get("recentlyEdited") + editedThings := []string{} + if v == nil { + recentlyEdited = title + } else { + editedThings = strings.Split(v.(string), "|||") + if !stringInSlice(title, editedThings) { + recentlyEdited = v.(string) + "|||" + title + } else { + recentlyEdited = v.(string) + } + } + session.Set("recentlyEdited", recentlyEdited) + session.Save() + editedThingsWithoutCurrent := make([]string, len(editedThings)) + i := 0 + for _, thing := range editedThings { + if thing == title { + continue + } + if strings.Contains(thing, "icon-") { + continue + } + editedThingsWithoutCurrent[i] = thing + i++ + } + return editedThingsWithoutCurrent[:i] +} + +func handlePageExists(c *gin.Context) { + type QueryJSON struct { + Page string `json:"page"` + } + var json QueryJSON + err := c.BindJSON(&json) + if err != nil { + log.Trace(err.Error()) + c.JSON(http.StatusOK, gin.H{"success": false, "message": "Wrong JSON", "exists": false}) + return + } + p := Open(json.Page) + if len(p.Text.GetCurrent()) > 0 { + c.JSON(http.StatusOK, gin.H{"success": true, "message": json.Page + " found", "exists": true}) + } else { + c.JSON(http.StatusOK, gin.H{"success": true, "message": json.Page + " not found", "exists": false}) + } + +} + +func handlePageUpdate(c *gin.Context) { + type QueryJSON struct { + Page string `json:"page"` + NewText string `json:"new_text"` + IsEncrypted bool `json:"is_encrypted"` + IsPrimed bool `json:"is_primed"` + Meta string `json:"meta"` + } + var json QueryJSON + err := c.BindJSON(&json) + if err != nil { + log.Trace(err.Error()) + c.JSON(http.StatusOK, gin.H{"success": false, "message": "Wrong JSON"}) + return + } + if len(json.NewText) > 100000000 { + c.JSON(http.StatusOK, gin.H{"success": false, "message": "Too much"}) + return + } + if len(json.Page) == 0 { + c.JSON(http.StatusOK, gin.H{"success": false, "message": "Must specify `page`"}) + return + } + log.Trace("Update: %v", json) + p := Open(json.Page) + var message string + success := false + if p.IsLocked { + message = "Locked, must unlock first" + } else if p.IsEncrypted { + message = "Encrypted, must decrypt first" + } else { + p.Meta = json.Meta + p.Update(json.NewText) + if json.IsEncrypted { + p.IsEncrypted = true + } + if json.IsPrimed { + p.IsPrimedForSelfDestruct = true + } + p.Save() + message = "Saved" + success = true + } + c.JSON(http.StatusOK, gin.H{"success": success, "message": message}) +} + +func handlePrime(c *gin.Context) { + type QueryJSON struct { + Page string `json:"page"` + } + var json QueryJSON + if c.BindJSON(&json) != nil { + c.String(http.StatusBadRequest, "Problem binding keys") + return + } + log.Trace("Update: %v", json) + p := Open(json.Page) + if p.IsLocked { + c.JSON(http.StatusOK, gin.H{"success": false, "message": "Locked"}) + return + } else if p.IsEncrypted { + c.JSON(http.StatusOK, gin.H{"success": false, "message": "Encrypted"}) + return + } + p.IsPrimedForSelfDestruct = true + p.Save() + c.JSON(http.StatusOK, gin.H{"success": true, "message": "Primed"}) +} + +func handleLock(c *gin.Context) { + type QueryJSON struct { + Page string `json:"page"` + Passphrase string `json:"passphrase"` + } + + var json QueryJSON + if c.BindJSON(&json) != nil { + c.String(http.StatusBadRequest, "Problem binding keys") + return + } + p := Open(json.Page) + if defaultLock != "" && p.IsNew() { + p.IsLocked = true + p.PassphraseToUnlock = defaultLock + } + + if p.IsEncrypted { + c.JSON(http.StatusOK, gin.H{"success": false, "message": "Encrypted"}) + return + } + var message string + if p.IsLocked { + err2 := CheckPasswordHash(json.Passphrase, p.PassphraseToUnlock) + if err2 != nil { + c.JSON(http.StatusOK, gin.H{"success": false, "message": "Can't unlock"}) + return + } + p.IsLocked = false + message = "Unlocked" + } else { + p.IsLocked = true + p.PassphraseToUnlock = HashPassword(json.Passphrase) + message = "Locked" + } + fmt.Println(p) + p.Save() + c.JSON(http.StatusOK, gin.H{"success": true, "message": message}) +} + +func handlePublish(c *gin.Context) { + type QueryJSON struct { + Page string `json:"page"` + Publish bool `json:"publish"` + } + + var json QueryJSON + if c.BindJSON(&json) != nil { + c.String(http.StatusBadRequest, "Problem binding keys") + return + } + p := Open(json.Page) + p.IsPublished = json.Publish + p.Save() + message := "Published" + if !p.IsPublished { + message = "Unpublished" + } + c.JSON(http.StatusOK, gin.H{"success": true, "message": message}) +} + +func handleEncrypt(c *gin.Context) { + type QueryJSON struct { + Page string `json:"page"` + Passphrase string `json:"passphrase"` + } + + var json QueryJSON + if c.BindJSON(&json) != nil { + c.String(http.StatusBadRequest, "Problem binding keys") + return + } + p := Open(json.Page) + if p.IsLocked { + c.JSON(http.StatusOK, gin.H{"success": false, "message": "Locked"}) + return + } + q := Open(json.Page) + var message string + if p.IsEncrypted { + decrypted, err2 := encrypt.DecryptString(p.Text.GetCurrent(), json.Passphrase) + if err2 != nil { + c.JSON(http.StatusOK, gin.H{"success": false, "message": "Wrong password"}) + return + } + q.Erase() + q = Open(json.Page) + q.Update(decrypted) + q.IsEncrypted = false + q.IsLocked = p.IsLocked + q.IsPrimedForSelfDestruct = p.IsPrimedForSelfDestruct + message = "Decrypted" + } else { + currentText := p.Text.GetCurrent() + encrypted, _ := encrypt.EncryptString(currentText, json.Passphrase) + q.Erase() + q = Open(json.Page) + q.Update(encrypted) + q.IsEncrypted = true + q.IsLocked = p.IsLocked + q.IsPrimedForSelfDestruct = p.IsPrimedForSelfDestruct + message = "Encrypted" + } + q.Save() + c.JSON(http.StatusOK, gin.H{"success": true, "message": message}) +} + +func deleteListItem(c *gin.Context) { + lineNum, err := strconv.Atoi(c.DefaultQuery("lineNum", "None")) + page := c.Query("page") // shortcut for c.Request.URL.Query().Get("lastname") + if err == nil { + p := Open(page) + + _, listItems := reorderList(p.Text.GetCurrent()) + newText := p.Text.GetCurrent() + for i, lineString := range listItems { + // fmt.Println(i, lineString, lineNum) + if i+1 == lineNum { + // fmt.Println("MATCHED") + if strings.Contains(lineString, "~~") == false { + // fmt.Println(p.Text, "("+lineString[2:]+"\n"+")", "~~"+lineString[2:]+"~~"+"\n") + newText = strings.Replace(newText+"\n", lineString[2:]+"\n", "~~"+strings.TrimSpace(lineString[2:])+"~~"+"\n", 1) + } else { + newText = strings.Replace(newText+"\n", lineString[2:]+"\n", lineString[4:len(lineString)-2]+"\n", 1) + } + p.Update(newText) + break + } + } + + c.JSON(200, gin.H{ + "success": true, + "message": "Done.", + }) + } else { + c.JSON(200, gin.H{ + "success": false, + "message": err.Error(), + }) + } +} + +func handleClearOldListItems(c *gin.Context) { + type QueryJSON struct { + Page string `json:"page"` + } + + var json QueryJSON + if c.BindJSON(&json) != nil { + c.String(http.StatusBadRequest, "Problem binding keys") + return + } + p := Open(json.Page) + if p.IsEncrypted { + c.JSON(http.StatusOK, gin.H{"success": false, "message": "Encrypted"}) + return + } + if p.IsLocked { + c.JSON(http.StatusOK, gin.H{"success": false, "message": "Locked"}) + return + } + lines := strings.Split(p.Text.GetCurrent(), "\n") + newLines := make([]string, len(lines)) + newLinesI := 0 + for _, line := range lines { + if strings.Count(line, "~~") != 2 { + newLines[newLinesI] = line + newLinesI++ + } + } + p.Update(strings.Join(newLines[0:newLinesI], "\n")) + p.Save() + c.JSON(http.StatusOK, gin.H{"success": true, "message": "Cleared"}) +} diff --git a/vendor/github.com/schollz/cowyo/listify.go b/vendor/github.com/schollz/cowyo/listify.go new file mode 100644 index 0000000..5fb2dfd --- /dev/null +++ b/vendor/github.com/schollz/cowyo/listify.go @@ -0,0 +1,62 @@ +package main + +import ( + "html/template" + "strconv" + "strings" +) + +func reorderList(text string) ([]template.HTML, []string) { + listItemsString := "" + for _, lineString := range strings.Split(text, "\n") { + if len(lineString) > 1 { + if string(lineString[0]) != "-" { + listItemsString += "- " + lineString + "\n" + } else { + listItemsString += lineString + "\n" + } + } + } + + // get ordering of template.HTML for rendering + renderedListString := MarkdownToHtml(listItemsString) + listItems := []template.HTML{} + endItems := []template.HTML{} + for _, lineString := range strings.Split(renderedListString, "\n") { + if len(lineString) > 1 { + if strings.Contains(lineString, "") || strings.Contains(lineString, "") { + endItems = append(endItems, template.HTML(lineString)) + } else { + listItems = append(listItems, template.HTML(lineString)) + } + } + } + + // get ordering of strings for deleting + listItemsStringArray := []string{} + endItemsStringArray := []string{} + for _, lineString := range strings.Split(listItemsString, "\n") { + if len(lineString) > 1 { + if strings.Contains(lineString, "~~") { + endItemsStringArray = append(endItemsStringArray, lineString) + } else { + listItemsStringArray = append(listItemsStringArray, lineString) + } + } + } + return append(listItems, endItems...), append(listItemsStringArray, endItemsStringArray...) +} + +func renderList(currentRawText string) []template.HTML { + listItems, _ := reorderList(currentRawText) + for i := range listItems { + newHTML := strings.Replace(string(listItems[i]), "", ""+``, -1) + newHTML = strings.Replace(newHTML, "", "
  • "+``, -1) + newHTML = strings.Replace(newHTML, "
  • ", "
    ", -1) + newHTML = strings.Replace(newHTML, "
  • "+``, "
  • "+``, -1) + newHTML = strings.Replace(newHTML, "
  • ", "
    ", -1) + listItems[i] = template.HTML([]byte(newHTML)) + } + return listItems +} diff --git a/vendor/github.com/schollz/cowyo/main.go b/vendor/github.com/schollz/cowyo/main.go new file mode 100755 index 0000000..22471b3 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/main.go @@ -0,0 +1,132 @@ +package main + +import ( + "fmt" + "os" + "time" + + "gopkg.in/urfave/cli.v1" +) + +var version string +var pathToData string + +func main() { + app := cli.NewApp() + app.Name = "cowyo" + app.Usage = "a simple wiki" + app.Version = version + app.Compiled = time.Now() + app.Action = func(c *cli.Context) error { + if !c.GlobalBool("debug") { + turnOffDebugger() + } + pathToData = c.GlobalString("data") + os.MkdirAll(pathToData, 0755) + host := c.GlobalString("host") + crt_f := c.GlobalString("cert") // crt flag + key_f := c.GlobalString("key") // key flag + if host == "" { + host = GetLocalIP() + } + TLS := false + if crt_f != "" && key_f != "" { + TLS = true + } + if TLS { + fmt.Printf("\nRunning cowyo server (version %s) at https://%s:%s\n\n", version, host, c.GlobalString("port")) + } else { + fmt.Printf("\nRunning cowyo server (version %s) at http://%s:%s\n\n", version, host, c.GlobalString("port")) + } + serve(c.GlobalString("host"), c.GlobalString("port"), c.GlobalString("cert"), c.GlobalString("key"), TLS, c.GlobalString("css"), c.GlobalString("default-page"), c.GlobalString("lock"), c.GlobalInt("debounce"), c.GlobalBool("diary")) + return nil + } + app.Flags = []cli.Flag{ + cli.StringFlag{ + Name: "data", + Value: "data", + Usage: "data folder to use", + }, + cli.StringFlag{ + Name: "olddata", + Value: "", + Usage: "data folder for migrating", + }, + cli.StringFlag{ + Name: "host", + Value: "", + Usage: "host to use", + }, + cli.StringFlag{ + Name: "port,p", + Value: "8050", + Usage: "port to use", + }, + cli.StringFlag{ + Name: "cert", + Value: "", + Usage: "absolute path to SSL public sertificate", + }, + cli.StringFlag{ + Name: "key", + Value: "", + Usage: "absolute path to SSL private key", + }, + cli.StringFlag{ + Name: "css", + Value: "", + Usage: "use a custom CSS file", + }, + cli.StringFlag{ + Name: "default-page", + Value: "", + Usage: "show default-page/read instead of editing (default: show random editing)", + }, + cli.StringFlag{ + Name: "lock", + Value: "", + Usage: "password to lock editing all files (default: all pages unlocked)", + }, + cli.IntFlag{ + Name: "debounce", + Value: 500, + Usage: "debounce time for saving data, in milliseconds", + }, + cli.BoolFlag{ + Name: "debug, d", + Usage: "turn on debugging", + }, + cli.BoolFlag{ + Name: "diary", + Usage: "turn diary mode (doing New will give a timestamped page)", + }, + } + app.Commands = []cli.Command{ + { + Name: "migrate", + Aliases: []string{"m"}, + Usage: "migrate from the old cowyo", + Action: func(c *cli.Context) error { + if !c.GlobalBool("debug") { + turnOffDebugger() + } + pathToData = c.GlobalString("data") + pathToOldData := c.GlobalString("olddata") + if len(pathToOldData) == 0 { + fmt.Printf("You need to specify folder with -olddata") + return nil + } + os.MkdirAll(pathToData, 0755) + if !exists(pathToOldData) { + fmt.Printf("Can not find '%s', does it exist?", pathToOldData) + return nil + } + migrate(pathToOldData, pathToData) + return nil + }, + }, + } + + app.Run(os.Args) + +} diff --git a/vendor/github.com/schollz/cowyo/migrate.go b/vendor/github.com/schollz/cowyo/migrate.go new file mode 100755 index 0000000..c4f314e --- /dev/null +++ b/vendor/github.com/schollz/cowyo/migrate.go @@ -0,0 +1,33 @@ +package main + +import ( + "fmt" + "io/ioutil" + "path" +) + +func migrate(pathToOldData, pathToData string) error { + files, err := ioutil.ReadDir(pathToOldData) + if len(files) == 0 { + return err + } + for _, f := range files { + if f.Mode().IsDir() { + continue + } + fmt.Printf("Migrating %s", f.Name()) + p := Open(f.Name()) + bData, err := ioutil.ReadFile(path.Join(pathToOldData, f.Name())) + if err != nil { + return err + } + err = p.Update(string(bData)) + if err != nil { + return err + } + if err = p.Save(); err != nil { + return err + } + } + return nil +} diff --git a/vendor/github.com/schollz/cowyo/page.go b/vendor/github.com/schollz/cowyo/page.go new file mode 100755 index 0000000..5cc1fd1 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/page.go @@ -0,0 +1,116 @@ +package main + +import ( + "encoding/json" + "io/ioutil" + "os" + "path" + "regexp" + "strings" + "time" + + "github.com/schollz/versionedtext" +) + +// Page is the basic struct +type Page struct { + Name string + Text versionedtext.VersionedText + Meta string + RenderedPage string + IsLocked bool + PassphraseToUnlock string + IsEncrypted bool + IsPrimedForSelfDestruct bool + IsPublished bool +} + +func Open(name string) (p *Page) { + p = new(Page) + p.Name = name + p.Text = versionedtext.NewVersionedText("") + p.Render() + bJSON, err := ioutil.ReadFile(path.Join(pathToData, encodeToBase32(strings.ToLower(name))+".json")) + if err != nil { + return + } + err = json.Unmarshal(bJSON, &p) + if err != nil { + p = new(Page) + } + return p +} + +func DirectoryList() (names []string, lengths []int, numchanges []int, lastEdited []string) { + files, _ := ioutil.ReadDir(pathToData) + names = make([]string, len(files)) + lengths = make([]int, len(files)) + numchanges = make([]int, len(files)) + lastEdited = make([]string, len(files)) + for i, f := range files { + names[i] = DecodeFileName(f.Name()) + p := Open(names[i]) + lengths[i] = len(p.Text.GetCurrent()) + numchanges[i] = p.Text.NumEdits() + lastEdited[i] = time.Unix(p.Text.LastEditTime()/1000000000, 0).Format("Mon Jan 2 15:04:05 MST 2006") + } + return +} + +func DecodeFileName(s string) string { + s2, _ := decodeFromBase32(strings.Split(s, ".")[0]) + return s2 +} + +// Update cleans the text and updates the versioned text +// and generates a new render +func (p *Page) Update(newText string) error { + // Trim space from end + newText = strings.TrimRight(newText, "\n\t ") + + // Update the versioned text + p.Text.Update(newText) + + // Render the new page + p.Render() + + return p.Save() +} + +var rBracketPage = regexp.MustCompile(`\[\[(.*?)\]\]`) + +func (p *Page) Render() { + if p.IsEncrypted { + p.RenderedPage = "" + p.Text.GetCurrent() + "" + return + } + + // Convert [[page]] to [page](/page/view) + currentText := p.Text.GetCurrent() + for _, s := range rBracketPage.FindAllString(currentText, -1) { + currentText = strings.Replace(currentText, s, "["+s[2:len(s)-2]+"](/"+s[2:len(s)-2]+"/view)", 1) + } + p.Text.Update(currentText) + p.RenderedPage = MarkdownToHtml(p.Text.GetCurrent()) +} + +func (p *Page) Save() error { + bJSON, err := json.MarshalIndent(p, "", " ") + if err != nil { + return err + } + return ioutil.WriteFile(path.Join(pathToData, encodeToBase32(strings.ToLower(p.Name))+".json"), bJSON, 0644) +} + +func (p *Page) IsNew() bool { + return !exists(path.Join(pathToData, encodeToBase32(strings.ToLower(p.Name))+".json")) +} + +func (p *Page) Erase() error { + log.Trace("Erasing " + p.Name) + return os.Remove(path.Join(pathToData, encodeToBase32(strings.ToLower(p.Name))+".json")) +} + +func (p *Page) Published() bool { + return p.IsPublished +} diff --git a/vendor/github.com/schollz/cowyo/page_test.go b/vendor/github.com/schollz/cowyo/page_test.go new file mode 100755 index 0000000..3d089c1 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/page_test.go @@ -0,0 +1,49 @@ +package main + +import ( + // "fmt" + "os" + "strings" + "testing" +) + +func TestListFiles(t *testing.T) { + pathToData = "testdata" + os.MkdirAll(pathToData, 0755) + defer os.RemoveAll(pathToData) + p := Open("testpage") + p.Update("Some data") + p = Open("testpage2") + p.Update("A different bunch of data") + p = Open("testpage3") + p.Update("Not much else") + n, l, _, _ := DirectoryList() + if strings.Join(n, " ") != "testpage testpage2 testpage3" { + t.Errorf("Names: %s, Lengths: %d", n, l) + } +} + +func TestGeneral(t *testing.T) { + pathToData = "testdata" + os.MkdirAll(pathToData, 0755) + defer os.RemoveAll(pathToData) + p := Open("testpage") + err := p.Update("**bold**") + if err != nil { + t.Error(err) + } + if strings.TrimSpace(p.RenderedPage) != "

    bold

    " { + t.Errorf("Did not render: '%s'", p.RenderedPage) + } + err = p.Update("**bold** and *italic*") + if err != nil { + t.Error(err) + } + p.Save() + + p2 := Open("testpage") + if strings.TrimSpace(p2.RenderedPage) != "

    bold and italic

    " { + t.Errorf("Did not render: '%s'", p2.RenderedPage) + } + +} diff --git a/vendor/github.com/schollz/cowyo/static/css/base-min.css b/vendor/github.com/schollz/cowyo/static/css/base-min.css new file mode 100644 index 0000000..58b5cf2 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/static/css/base-min.css @@ -0,0 +1,11 @@ +/*! +Pure v0.6.2 +Copyright 2013 Yahoo! +Licensed under the BSD License. +https://github.com/yahoo/pure/blob/master/LICENSE.md +*/ +/*! +normalize.css v^3.0 | MIT License | git.io/normalize +Copyright (c) Nicolas Gallagher and Jonathan Neal +*/ +/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */img,legend{border:0}legend,td,th{padding:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}table{border-collapse:collapse;border-spacing:0}.hidden,[hidden]{display:none!important}.pure-img{max-width:100%;height:auto;display:block} \ No newline at end of file diff --git a/vendor/github.com/schollz/cowyo/static/css/github-markdown.css b/vendor/github.com/schollz/cowyo/static/css/github-markdown.css new file mode 100644 index 0000000..539fea9 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/static/css/github-markdown.css @@ -0,0 +1 @@ +@font-face{font-family:octicons-link;src:url(data:font/woff;charset=utf-8;base64,d09GRgABAAAAAAZwABAAAAAACFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEU0lHAAAGaAAAAAgAAAAIAAAAAUdTVUIAAAZcAAAACgAAAAoAAQAAT1MvMgAAAyQAAABJAAAAYFYEU3RjbWFwAAADcAAAAEUAAACAAJThvmN2dCAAAATkAAAABAAAAAQAAAAAZnBnbQAAA7gAAACyAAABCUM+8IhnYXNwAAAGTAAAABAAAAAQABoAI2dseWYAAAFsAAABPAAAAZwcEq9taGVhZAAAAsgAAAA0AAAANgh4a91oaGVhAAADCAAAABoAAAAkCA8DRGhtdHgAAAL8AAAADAAAAAwGAACfbG9jYQAAAsAAAAAIAAAACABiATBtYXhwAAACqAAAABgAAAAgAA8ASm5hbWUAAAToAAABQgAAAlXu73sOcG9zdAAABiwAAAAeAAAAME3QpOBwcmVwAAAEbAAAAHYAAAB/aFGpk3jaTY6xa8JAGMW/O62BDi0tJLYQincXEypYIiGJjSgHniQ6umTsUEyLm5BV6NDBP8Tpts6F0v+k/0an2i+itHDw3v2+9+DBKTzsJNnWJNTgHEy4BgG3EMI9DCEDOGEXzDADU5hBKMIgNPZqoD3SilVaXZCER3/I7AtxEJLtzzuZfI+VVkprxTlXShWKb3TBecG11rwoNlmmn1P2WYcJczl32etSpKnziC7lQyWe1smVPy/Lt7Kc+0vWY/gAgIIEqAN9we0pwKXreiMasxvabDQMM4riO+qxM2ogwDGOZTXxwxDiycQIcoYFBLj5K3EIaSctAq2kTYiw+ymhce7vwM9jSqO8JyVd5RH9gyTt2+J/yUmYlIR0s04n6+7Vm1ozezUeLEaUjhaDSuXHwVRgvLJn1tQ7xiuVv/ocTRF42mNgZGBgYGbwZOBiAAFGJBIMAAizAFoAAABiAGIAznjaY2BkYGAA4in8zwXi+W2+MjCzMIDApSwvXzC97Z4Ig8N/BxYGZgcgl52BCSQKAA3jCV8CAABfAAAAAAQAAEB42mNgZGBg4f3vACQZQABIMjKgAmYAKEgBXgAAeNpjYGY6wTiBgZWBg2kmUxoDA4MPhGZMYzBi1AHygVLYQUCaawqDA4PChxhmh/8ODDEsvAwHgMKMIDnGL0x7gJQCAwMAJd4MFwAAAHjaY2BgYGaA4DAGRgYQkAHyGMF8NgYrIM3JIAGVYYDT+AEjAwuDFpBmA9KMDEwMCh9i/v8H8sH0/4dQc1iAmAkALaUKLgAAAHjaTY9LDsIgEIbtgqHUPpDi3gPoBVyRTmTddOmqTXThEXqrob2gQ1FjwpDvfwCBdmdXC5AVKFu3e5MfNFJ29KTQT48Ob9/lqYwOGZxeUelN2U2R6+cArgtCJpauW7UQBqnFkUsjAY/kOU1cP+DAgvxwn1chZDwUbd6CFimGXwzwF6tPbFIcjEl+vvmM/byA48e6tWrKArm4ZJlCbdsrxksL1AwWn/yBSJKpYbq8AXaaTb8AAHja28jAwOC00ZrBeQNDQOWO//sdBBgYGRiYWYAEELEwMTE4uzo5Zzo5b2BxdnFOcALxNjA6b2ByTswC8jYwg0VlNuoCTWAMqNzMzsoK1rEhNqByEyerg5PMJlYuVueETKcd/89uBpnpvIEVomeHLoMsAAe1Id4AAAAAAAB42oWQT07CQBTGv0JBhagk7HQzKxca2sJCE1hDt4QF+9JOS0nbaaYDCQfwCJ7Au3AHj+LO13FMmm6cl7785vven0kBjHCBhfpYuNa5Ph1c0e2Xu3jEvWG7UdPDLZ4N92nOm+EBXuAbHmIMSRMs+4aUEd4Nd3CHD8NdvOLTsA2GL8M9PODbcL+hD7C1xoaHeLJSEao0FEW14ckxC+TU8TxvsY6X0eLPmRhry2WVioLpkrbp84LLQPGI7c6sOiUzpWIWS5GzlSgUzzLBSikOPFTOXqly7rqx0Z1Q5BAIoZBSFihQYQOOBEdkCOgXTOHA07HAGjGWiIjaPZNW13/+lm6S9FT7rLHFJ6fQbkATOG1j2OFMucKJJsxIVfQORl+9Jyda6Sl1dUYhSCm1dyClfoeDve4qMYdLEbfqHf3O/AdDumsjAAB42mNgYoAAZQYjBmyAGYQZmdhL8zLdDEydARfoAqIAAAABAAMABwAKABMAB///AA8AAQAAAAAAAAAAAAAAAAABAAAAAA==) format('woff');}.markdown-body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;line-height:1.5;color:#333;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:16px;line-height:1.5;word-wrap:break-word;}.markdown-body .pl-c{color:#969896;}.markdown-body .pl-c1,.markdown-body .pl-s .pl-v{color:#0086b3;}.markdown-body .pl-e,.markdown-body .pl-en{color:#795da3;}.markdown-body .pl-smi,.markdown-body .pl-s .pl-s1{color:#333;}.markdown-body .pl-ent{color:#63a35c;}.markdown-body .pl-k{color:#a71d5d;}.markdown-body .pl-s,.markdown-body .pl-pds,.markdown-body .pl-s .pl-pse .pl-s1,.markdown-body .pl-sr,.markdown-body .pl-sr .pl-cce,.markdown-body .pl-sr .pl-sre,.markdown-body .pl-sr .pl-sra{color:#183691;}.markdown-body .pl-v{color:#ed6a43;}.markdown-body .pl-id{color:#b52a1d;}.markdown-body .pl-ii{color:#f8f8f8;background-color:#b52a1d;}.markdown-body .pl-sr .pl-cce{font-weight:bold;color:#63a35c;}.markdown-body .pl-ml{color:#693a17;}.markdown-body .pl-mh,.markdown-body .pl-mh .pl-en,.markdown-body .pl-ms{font-weight:bold;color:#1d3e81;}.markdown-body .pl-mq{color:#008080;}.markdown-body .pl-mi{font-style:italic;color:#333;}.markdown-body .pl-mb{font-weight:bold;color:#333;}.markdown-body .pl-md{color:#bd2c00;background-color:#ffecec;}.markdown-body .pl-mi1{color:#55a532;background-color:#eaffea;}.markdown-body .pl-mdr{font-weight:bold;color:#795da3;}.markdown-body .pl-mo{color:#1d3e81;}.markdown-body .octicon{display:inline-block;vertical-align:text-top;fill:currentColor;}.markdown-body a{background-color:transparent;-webkit-text-decoration-skip:objects;}.markdown-body a:active,.markdown-body a:hover{outline-width:0;}.markdown-body strong{font-weight:inherit;}.markdown-body strong{font-weight:bolder;}.markdown-body h1{font-size:2em;margin:0.67em 0;}.markdown-body img{border-style:none;}.markdown-body svg:not(:root){overflow:hidden;}.markdown-body code,.markdown-body kbd,.markdown-body pre{font-family:monospace,monospace;font-size:1em;}.markdown-body hr{box-sizing:content-box;height:0;overflow:visible;}.markdown-body input{font:inherit;margin:0;}.markdown-body input{overflow:visible;}.markdown-body [type="checkbox"]{box-sizing:border-box;padding:0;}.markdown-body *{box-sizing:border-box;}.markdown-body input{font-family:inherit;font-size:inherit;line-height:inherit;}.markdown-body a{color:#4078c0;text-decoration:none;}.markdown-body a:hover,.markdown-body a:active{text-decoration:underline;}.markdown-body strong{font-weight:600;}.markdown-body hr{height:0;margin:15px 0;overflow:hidden;background:transparent;border:0;border-bottom:1px solid #ddd;}.markdown-body hr::before{display:table;content:"";}.markdown-body hr::after{display:table;clear:both;content:"";}.markdown-body table{border-spacing:0;border-collapse:collapse;}.markdown-body td,.markdown-body th{padding:0;}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:0;margin-bottom:0;}.markdown-body h1{font-size:32px;font-weight:600;}.markdown-body h2{font-size:24px;font-weight:600;}.markdown-body h3{font-size:20px;font-weight:600;}.markdown-body h4{font-size:16px;font-weight:600;}.markdown-body h5{font-size:14px;font-weight:600;}.markdown-body h6{font-size:12px;font-weight:600;}.markdown-body p{margin-top:0;margin-bottom:10px;}.markdown-body blockquote{margin:0;}.markdown-body ul,.markdown-body ol{padding-left:0;margin-top:0;margin-bottom:0;}.markdown-body ol ol,.markdown-body ul ol{list-style-type:lower-roman;}.markdown-body ul ul ol,.markdown-body ul ol ol,.markdown-body ol ul ol,.markdown-body ol ol ol{list-style-type:lower-alpha;}.markdown-body dd{margin-left:0;}.markdown-body code{font-family:Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:12px;}.markdown-body pre{margin-top:0;margin-bottom:0;font:12px Consolas,"Liberation Mono",Menlo,Courier,monospace;}.markdown-body .octicon{vertical-align:text-bottom;}.markdown-body input{-webkit-font-feature-settings:"liga" 0;font-feature-settings:"liga" 0;}.markdown-body::before{display:table;content:"";}.markdown-body::after{display:table;clear:both;content:"";}.markdown-body>*:first-child{margin-top:0!important;}.markdown-body>*:last-child{margin-bottom:0!important;}.markdown-body a:not([href]){color:inherit;text-decoration:none;}.markdown-body .anchor{float:left;padding-right:4px;margin-left:-20px;line-height:1;}.markdown-body .anchor:focus{outline:none;}.markdown-body p,.markdown-body blockquote,.markdown-body ul,.markdown-body ol,.markdown-body dl,.markdown-body table,.markdown-body pre{margin-top:0;margin-bottom:16px;}.markdown-body hr{height:0.25em;padding:0;margin:24px 0;background-color:#e7e7e7;border:0;}.markdown-body blockquote{padding:0 1em;color:#777;border-left:0.25em solid #ddd;}.markdown-body blockquote>:first-child{margin-top:0;}.markdown-body blockquote>:last-child{margin-bottom:0;}.markdown-body kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb;}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:24px;margin-bottom:16px;font-weight:600;line-height:1.25;}.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{color:#000;vertical-align:middle;visibility:hidden;}.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none;}.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{visibility:visible;}.markdown-body h1{padding-bottom:0.3em;font-size:2em;border-bottom:1px solid #eee;}.markdown-body h2{padding-bottom:0.3em;font-size:1.5em;border-bottom:1px solid #eee;}.markdown-body h3{font-size:1.25em;}.markdown-body h4{font-size:1em;}.markdown-body h5{font-size:0.875em;}.markdown-body h6{font-size:0.85em;color:#777;}.markdown-body ul,.markdown-body ol{padding-left:2em;}.markdown-body ul ul,.markdown-body ul ol,.markdown-body ol ol,.markdown-body ol ul{margin-top:0;margin-bottom:0;}.markdown-body li>p{margin-top:16px;}.markdown-body li+li{margin-top:0.25em;}.markdown-body dl{padding:0;}.markdown-body dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:bold;}.markdown-body dl dd{padding:0 16px;margin-bottom:16px;}.markdown-body table{display:block;width:100%;overflow:auto;}.markdown-body table th{font-weight:bold;}.markdown-body table th,.markdown-body table td{padding:6px 13px;border:1px solid #ddd;}.markdown-body table tr{background-color:#fff;border-top:1px solid #ccc;}.markdown-body table tr:nth-child(2n){background-color:#f8f8f8;}.markdown-body img{max-width:100%;box-sizing:content-box;background-color:#fff;}.markdown-body code{padding:0;padding-top:0.2em;padding-bottom:0.2em;margin:0;font-size:85%;background-color:rgba(0,0,0,0.04);border-radius:3px;}.markdown-body code::before,.markdown-body code::after{letter-spacing:-0.2em;content:"\00a0";}.markdown-body pre{word-wrap:normal;}.markdown-body pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:transparent;border:0;}.markdown-body .highlight{margin-bottom:16px;}.markdown-body .highlight pre{margin-bottom:0;word-break:normal;}.markdown-body .highlight pre,.markdown-body pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f7f7f7;border-radius:3px;}.markdown-body pre code{display:inline;max-width:auto;padding:0;margin:0;overflow:visible;line-height:inherit;word-wrap:normal;background-color:transparent;border:0;}.markdown-body pre code::before,.markdown-body pre code::after{content:normal;}.markdown-body .pl-0{padding-left:0!important;}.markdown-body .pl-1{padding-left:3px!important;}.markdown-body .pl-2{padding-left:6px!important;}.markdown-body .pl-3{padding-left:12px!important;}.markdown-body .pl-4{padding-left:24px!important;}.markdown-body .pl-5{padding-left:36px!important;}.markdown-body .pl-6{padding-left:48px!important;}.markdown-body .full-commit .btn-outline:not(:disabled):hover{color:#4078c0;border:1px solid #4078c0;}.markdown-body kbd{display:inline-block;padding:3px 5px;font:11px Consolas,"Liberation Mono",Menlo,Courier,monospace;line-height:10px;color:#555;vertical-align:middle;background-color:#fcfcfc;border:solid 1px #ccc;border-bottom-color:#bbb;border-radius:3px;box-shadow:inset 0 -1px 0 #bbb;}.markdown-body :checked+.radio-label{position:relative;z-index:1;border-color:#4078c0;}.markdown-body .task-list-item{list-style-type:none;}.markdown-body .task-list-item+.task-list-item{margin-top:3px;}.markdown-body .task-list-item input{margin:0 0.2em 0.25em -1.6em;vertical-align:middle;}.markdown-body hr{border-bottom-color:#eee;} \ No newline at end of file diff --git a/vendor/github.com/schollz/cowyo/static/css/highlight.css b/vendor/github.com/schollz/cowyo/static/css/highlight.css new file mode 100644 index 0000000..7d8be18 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/static/css/highlight.css @@ -0,0 +1 @@ +.hljs{display:block;overflow-x:auto;padding:0.5em;background:#F0F0F0}.hljs,.hljs-subst{color:#444}.hljs-comment{color:#888888}.hljs-keyword,.hljs-attribute,.hljs-selector-tag,.hljs-meta-keyword,.hljs-doctag,.hljs-name{font-weight:bold}.hljs-type,.hljs-string,.hljs-number,.hljs-selector-id,.hljs-selector-class,.hljs-quote,.hljs-template-tag,.hljs-deletion{color:#880000}.hljs-title,.hljs-section{color:#880000;font-weight:bold}.hljs-regexp,.hljs-symbol,.hljs-variable,.hljs-template-variable,.hljs-link,.hljs-selector-attr,.hljs-selector-pseudo{color:#BC6060}.hljs-literal{color:#78A960}.hljs-built_in,.hljs-bullet,.hljs-code,.hljs-addition{color:#397300}.hljs-meta{color:#1f7199}.hljs-meta-string{color:#4d99bf}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:bold} \ No newline at end of file diff --git a/vendor/github.com/schollz/cowyo/static/css/menus-min.css b/vendor/github.com/schollz/cowyo/static/css/menus-min.css new file mode 100644 index 0000000..07359a3 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/static/css/menus-min.css @@ -0,0 +1,7 @@ +/*! +Pure v0.6.2 +Copyright 2013 Yahoo! +Licensed under the BSD License. +https://github.com/yahoo/pure/blob/master/LICENSE.md +*/ +.pure-menu{box-sizing:border-box}.pure-menu-fixed{position:fixed;left:0;top:0;z-index:3}.pure-menu-item,.pure-menu-list{position:relative}.pure-menu-list{list-style:none;margin:0;padding:0}.pure-menu-item{padding:0;margin:0;height:100%}.pure-menu-heading,.pure-menu-link{display:block;text-decoration:none;white-space:nowrap}.pure-menu-horizontal{width:100%;white-space:nowrap}.pure-menu-horizontal .pure-menu-list{display:inline-block}.pure-menu-horizontal .pure-menu-heading,.pure-menu-horizontal .pure-menu-item,.pure-menu-horizontal .pure-menu-separator{display:inline-block;zoom:1;vertical-align:middle}.pure-menu-item .pure-menu-item{display:block}.pure-menu-children{display:none;position:absolute;left:100%;top:0;margin:0;padding:0;z-index:3}.pure-menu-horizontal .pure-menu-children{left:0;top:auto;width:inherit}.pure-menu-active>.pure-menu-children,.pure-menu-allow-hover:hover>.pure-menu-children{display:block;position:absolute}.pure-menu-has-children>.pure-menu-link:after{padding-left:.5em;content:"\25B8";font-size:small}.pure-menu-horizontal .pure-menu-has-children>.pure-menu-link:after{content:"\25BE"}.pure-menu-scrollable{overflow-y:scroll;overflow-x:hidden}.pure-menu-scrollable .pure-menu-list{display:block}.pure-menu-horizontal.pure-menu-scrollable .pure-menu-list{display:inline-block}.pure-menu-horizontal.pure-menu-scrollable{white-space:nowrap;overflow-y:hidden;overflow-x:auto;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;padding:.5em 0}.pure-menu-horizontal.pure-menu-scrollable::-webkit-scrollbar{display:none}.pure-menu-horizontal .pure-menu-children .pure-menu-separator,.pure-menu-separator{background-color:#ccc;height:1px;margin:.3em 0}.pure-menu-horizontal .pure-menu-separator{width:1px;height:1.3em;margin:0 .3em}.pure-menu-horizontal .pure-menu-children .pure-menu-separator{display:block;width:auto}.pure-menu-heading{text-transform:uppercase;color:#565d64}.pure-menu-link{color:#777}.pure-menu-children{background-color:#fff}.pure-menu-disabled,.pure-menu-heading,.pure-menu-link{padding:.5em 1em}.pure-menu-disabled{opacity:.5}.pure-menu-disabled .pure-menu-link:hover{background-color:transparent}.pure-menu-active>.pure-menu-link,.pure-menu-link:focus,.pure-menu-link:hover{background-color:#eee}.pure-menu-selected .pure-menu-link,.pure-menu-selected .pure-menu-link:visited{color:#000} \ No newline at end of file diff --git a/vendor/github.com/schollz/cowyo/static/img/logo.png b/vendor/github.com/schollz/cowyo/static/img/logo.png new file mode 100755 index 0000000..35253a3 Binary files /dev/null and b/vendor/github.com/schollz/cowyo/static/img/logo.png differ diff --git a/vendor/github.com/schollz/cowyo/static/js/highlight.min.js b/vendor/github.com/schollz/cowyo/static/js/highlight.min.js new file mode 100644 index 0000000..7178d33 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/static/js/highlight.min.js @@ -0,0 +1,3 @@ +/*! highlight.js v9.10.0 | BSD3 License | git.io/hljslicense */ +!function(e){var t="object"==typeof window&&window||"object"==typeof self&&self;"undefined"!=typeof exports?e(exports):t&&(t.hljs=e({}),"function"==typeof define&&define.amd&&define([],function(){return t.hljs}))}(function(e){function t(e){return e.replace(/[&<>]/gm,function(e){return R[e]})}function r(e){return e.nodeName.toLowerCase()}function a(e,t){var r=e&&e.exec(t);return r&&0===r.index}function n(e){return E.test(e)}function i(e){var t,r,a,i,s=e.className+" ";if(s+=e.parentNode?e.parentNode.className:"",r=M.exec(s))return w(r[1])?r[1]:"no-highlight";for(s=s.split(/\s+/),t=0,a=s.length;a>t;t++)if(i=s[t],n(i)||w(i))return i}function s(e){var t,r={},a=Array.prototype.slice.call(arguments,1);for(t in e)r[t]=e[t];return a.forEach(function(e){for(t in e)r[t]=e[t]}),r}function c(e){var t=[];return function a(e,n){for(var i=e.firstChild;i;i=i.nextSibling)3===i.nodeType?n+=i.nodeValue.length:1===i.nodeType&&(t.push({event:"start",offset:n,node:i}),n=a(i,n),r(i).match(/br|hr|img|input/)||t.push({event:"stop",offset:n,node:i}));return n}(e,0),t}function o(e,a,n){function i(){return e.length&&a.length?e[0].offset!==a[0].offset?e[0].offset"}function c(e){u+=""}function o(e){("start"===e.event?s:c)(e.node)}for(var l=0,u="",d=[];e.length||a.length;){var b=i();if(u+=t(n.substring(l,b[0].offset)),l=b[0].offset,b===e){d.reverse().forEach(c);do o(b.splice(0,1)[0]),b=i();while(b===e&&b.length&&b[0].offset===l);d.reverse().forEach(s)}else"start"===b[0].event?d.push(b[0].node):d.pop(),o(b.splice(0,1)[0])}return u+t(n.substr(l))}function l(e){return e.v&&!e.cached_variants&&(e.cached_variants=e.v.map(function(t){return s(e,{v:null},t)})),e.cached_variants||e.eW&&[s(e)]||[e]}function u(e){function t(e){return e&&e.source||e}function r(r,a){return new RegExp(t(r),"m"+(e.cI?"i":"")+(a?"g":""))}function a(n,i){if(!n.compiled){if(n.compiled=!0,n.k=n.k||n.bK,n.k){var s={},c=function(t,r){e.cI&&(r=r.toLowerCase()),r.split(" ").forEach(function(e){var r=e.split("|");s[r[0]]=[t,r[1]?Number(r[1]):1]})};"string"==typeof n.k?c("keyword",n.k):k(n.k).forEach(function(e){c(e,n.k[e])}),n.k=s}n.lR=r(n.l||/\w+/,!0),i&&(n.bK&&(n.b="\\b("+n.bK.split(" ").join("|")+")\\b"),n.b||(n.b=/\B|\b/),n.bR=r(n.b),n.e||n.eW||(n.e=/\B|\b/),n.e&&(n.eR=r(n.e)),n.tE=t(n.e)||"",n.eW&&i.tE&&(n.tE+=(n.e?"|":"")+i.tE)),n.i&&(n.iR=r(n.i)),null==n.r&&(n.r=1),n.c||(n.c=[]),n.c=Array.prototype.concat.apply([],n.c.map(function(e){return l("self"===e?n:e)})),n.c.forEach(function(e){a(e,n)}),n.starts&&a(n.starts,i);var o=n.c.map(function(e){return e.bK?"\\.?("+e.b+")\\.?":e.b}).concat([n.tE,n.i]).map(t).filter(Boolean);n.t=o.length?r(o.join("|"),!0):{exec:function(){return null}}}}a(e)}function d(e,r,n,i){function s(e,t){var r,n;for(r=0,n=t.c.length;n>r;r++)if(a(t.c[r].bR,e))return t.c[r]}function c(e,t){if(a(e.eR,t)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?c(e.parent,t):void 0}function o(e,t){return!n&&a(t.iR,e)}function l(e,t){var r=v.cI?t[0].toLowerCase():t[0];return e.k.hasOwnProperty(r)&&e.k[r]}function p(e,t,r,a){var n=a?"":L.classPrefix,i='',i+t+s}function m(){var e,r,a,n;if(!N.k)return t(E);for(n="",r=0,N.lR.lastIndex=0,a=N.lR.exec(E);a;)n+=t(E.substring(r,a.index)),e=l(N,a),e?(M+=e[1],n+=p(e[0],t(a[0]))):n+=t(a[0]),r=N.lR.lastIndex,a=N.lR.exec(E);return n+t(E.substr(r))}function f(){var e="string"==typeof N.sL;if(e&&!x[N.sL])return t(E);var r=e?d(N.sL,E,!0,k[N.sL]):b(E,N.sL.length?N.sL:void 0);return N.r>0&&(M+=r.r),e&&(k[N.sL]=r.top),p(r.language,r.value,!1,!0)}function g(){C+=null!=N.sL?f():m(),E=""}function _(e){C+=e.cN?p(e.cN,"",!0):"",N=Object.create(e,{parent:{value:N}})}function h(e,t){if(E+=e,null==t)return g(),0;var r=s(t,N);if(r)return r.skip?E+=t:(r.eB&&(E+=t),g(),r.rB||r.eB||(E=t)),_(r,t),r.rB?0:t.length;var a=c(N,t);if(a){var n=N;n.skip?E+=t:(n.rE||n.eE||(E+=t),g(),n.eE&&(E=t));do N.cN&&(C+=S),N.skip||(M+=N.r),N=N.parent;while(N!==a.parent);return a.starts&&_(a.starts,""),n.rE?0:t.length}if(o(t,N))throw new Error('Illegal lexeme "'+t+'" for mode "'+(N.cN||"")+'"');return E+=t,t.length||1}var v=w(e);if(!v)throw new Error('Unknown language: "'+e+'"');u(v);var y,N=i||v,k={},C="";for(y=N;y!==v;y=y.parent)y.cN&&(C=p(y.cN,"",!0)+C);var E="",M=0;try{for(var B,R,A=0;;){if(N.t.lastIndex=A,B=N.t.exec(r),!B)break;R=h(r.substring(A,B.index),B[0]),A=B.index+R}for(h(r.substr(A)),y=N;y.parent;y=y.parent)y.cN&&(C+=S);return{r:M,value:C,language:e,top:N}}catch($){if($.message&&-1!==$.message.indexOf("Illegal"))return{r:0,value:t(r)};throw $}}function b(e,r){r=r||L.languages||k(x);var a={r:0,value:t(e)},n=a;return r.filter(w).forEach(function(t){var r=d(t,e,!1);r.language=t,r.r>n.r&&(n=r),r.r>a.r&&(n=a,a=r)}),n.language&&(a.second_best=n),a}function p(e){return L.tabReplace||L.useBR?e.replace(B,function(e,t){return L.useBR&&"\n"===e?"
    ":L.tabReplace?t.replace(/\t/g,L.tabReplace):""}):e}function m(e,t,r){var a=t?C[t]:r,n=[e.trim()];return e.match(/\bhljs\b/)||n.push("hljs"),-1===e.indexOf(a)&&n.push(a),n.join(" ").trim()}function f(e){var t,r,a,s,l,u=i(e);n(u)||(L.useBR?(t=document.createElementNS("http://www.w3.org/1999/xhtml","div"),t.innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n")):t=e,l=t.textContent,a=u?d(u,l,!0):b(l),r=c(t),r.length&&(s=document.createElementNS("http://www.w3.org/1999/xhtml","div"),s.innerHTML=a.value,a.value=o(r,c(s),l)),a.value=p(a.value),e.innerHTML=a.value,e.className=m(e.className,u,a.language),e.result={language:a.language,re:a.r},a.second_best&&(e.second_best={language:a.second_best.language,re:a.second_best.r}))}function g(e){L=s(L,e)}function _(){if(!_.called){_.called=!0;var e=document.querySelectorAll("pre code");N.forEach.call(e,f)}}function h(){addEventListener("DOMContentLoaded",_,!1),addEventListener("load",_,!1)}function v(t,r){var a=x[t]=r(e);a.aliases&&a.aliases.forEach(function(e){C[e]=t})}function y(){return k(x)}function w(e){return e=(e||"").toLowerCase(),x[e]||x[C[e]]}var N=[],k=Object.keys,x={},C={},E=/^(no-?highlight|plain|text)$/i,M=/\blang(?:uage)?-([\w-]+)\b/i,B=/((^(<[^>]+>|\t|)+|(?:\n)))/gm,S="
    ",L={classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:void 0},R={"&":"&","<":"<",">":">"};return e.highlight=d,e.highlightAuto=b,e.fixMarkup=p,e.highlightBlock=f,e.configure=g,e.initHighlighting=_,e.initHighlightingOnLoad=h,e.registerLanguage=v,e.listLanguages=y,e.getLanguage=w,e.inherit=s,e.IR="[a-zA-Z]\\w*",e.UIR="[a-zA-Z_]\\w*",e.NR="\\b\\d+(\\.\\d+)?",e.CNR="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",e.BNR="\\b(0b[01]+)",e.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",e.BE={b:"\\\\[\\s\\S]",r:0},e.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[e.BE]},e.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[e.BE]},e.PWM={b:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|like)\b/},e.C=function(t,r,a){var n=e.inherit({cN:"comment",b:t,e:r,c:[]},a||{});return n.c.push(e.PWM),n.c.push({cN:"doctag",b:"(?:TODO|FIXME|NOTE|BUG|XXX):",r:0}),n},e.CLCM=e.C("//","$"),e.CBCM=e.C("/\\*","\\*/"),e.HCM=e.C("#","$"),e.NM={cN:"number",b:e.NR,r:0},e.CNM={cN:"number",b:e.CNR,r:0},e.BNM={cN:"number",b:e.BNR,r:0},e.CSSNM={cN:"number",b:e.NR+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",r:0},e.RM={cN:"regexp",b:/\//,e:/\/[gimuy]*/,i:/\n/,c:[e.BE,{b:/\[/,e:/\]/,r:0,c:[e.BE]}]},e.TM={cN:"title",b:e.IR,r:0},e.UTM={cN:"title",b:e.UIR,r:0},e.METHOD_GUARD={b:"\\.\\s*"+e.UIR,r:0},e.registerLanguage("apache",function(e){var t={cN:"number",b:"[\\$%]\\d+"};return{aliases:["apacheconf"],cI:!0,c:[e.HCM,{cN:"section",b:""},{cN:"attribute",b:/\w+/,r:0,k:{nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{e:/$/,r:0,k:{literal:"on off all"},c:[{cN:"meta",b:"\\s\\[",e:"\\]$"},{cN:"variable",b:"[\\$%]\\{",e:"\\}",c:["self",t]},t,e.QSM]}}],i:/\S/}}),e.registerLanguage("bash",function(e){var t={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)}/}]},r={cN:"string",b:/"/,e:/"/,c:[e.BE,t,{cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]}]},a={cN:"string",b:/'/,e:/'/};return{aliases:["sh","zsh"],l:/-?[a-z\._]+/,k:{keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp",_:"-ne -eq -lt -gt -f -d -e -s -l -a"},c:[{cN:"meta",b:/^#![^\n]+sh\s*$/,r:10},{cN:"function",b:/\w[\w\d_]*\s*\(\s*\)\s*\{/,rB:!0,c:[e.inherit(e.TM,{b:/\w[\w\d_]*/})],r:0},e.HCM,r,a,t]}}),e.registerLanguage("coffeescript",function(e){var t={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super yield import export from as default await then unless until loop of by when and or is isnt not",literal:"true false null undefined yes no on off",built_in:"npm require console print module global window document"},r="[A-Za-z$_][0-9A-Za-z$_]*",a={cN:"subst",b:/#\{/,e:/}/,k:t},n=[e.BNM,e.inherit(e.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,a]},{b:/"/,e:/"/,c:[e.BE,a]}]},{cN:"regexp",v:[{b:"///",e:"///",c:[a,e.HCM]},{b:"//[gim]*",r:0},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{b:"@"+r},{sL:"javascript",eB:!0,eE:!0,v:[{b:"```",e:"```"},{b:"`",e:"`"}]}];a.c=n;var i=e.inherit(e.TM,{b:r}),s="(\\(.*\\))?\\s*\\B[-=]>",c={cN:"params",b:"\\([^\\(]",rB:!0,c:[{b:/\(/,e:/\)/,k:t,c:["self"].concat(n)}]};return{aliases:["coffee","cson","iced"],k:t,i:/\/\*/,c:n.concat([e.C("###","###"),e.HCM,{cN:"function",b:"^\\s*"+r+"\\s*=\\s*"+s,e:"[-=]>",rB:!0,c:[i,c]},{b:/[:\(,=]\s*/,r:0,c:[{cN:"function",b:s,e:"[-=]>",rB:!0,c:[c]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[i]},i]},{b:r+":",e:":",rB:!0,rE:!0,r:0}])}}),e.registerLanguage("cpp",function(e){var t={cN:"keyword",b:"\\b[a-z\\d_]*_t\\b"},r={cN:"string",v:[{b:'(u8?|U)?L?"',e:'"',i:"\\n",c:[e.BE]},{b:'(u8?|U)?R"',e:'"',c:[e.BE]},{b:"'\\\\?.",e:"'",i:"."}]},a={cN:"number",v:[{b:"\\b(0b[01']+)"},{b:"\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{b:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],r:0},n={cN:"meta",b:/#\s*[a-z]+\b/,e:/$/,k:{"meta-keyword":"if else elif endif define undef warning error line pragma ifdef ifndef include"},c:[{b:/\\\n/,r:0},e.inherit(r,{cN:"meta-string"}),{cN:"meta-string",b:/<[^\n>]*>/,e:/$/,i:"\\n"},e.CLCM,e.CBCM]},i=e.IR+"\\s*\\(",s={keyword:"int float while private char catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return",built_in:"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr",literal:"true false nullptr NULL"},c=[t,e.CLCM,e.CBCM,a,r];return{aliases:["c","cc","h","c++","h++","hpp"],k:s,i:"",k:s,c:["self",t]},{b:e.IR+"::",k:s},{v:[{b:/=/,e:/;/},{b:/\(/,e:/\)/},{bK:"new throw return else",e:/;/}],k:s,c:c.concat([{b:/\(/,e:/\)/,k:s,c:c.concat(["self"]),r:0}]),r:0},{cN:"function",b:"("+e.IR+"[\\*&\\s]+)+"+i,rB:!0,e:/[{;=]/,eE:!0,k:s,i:/[^\w\s\*&]/,c:[{b:i,rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,k:s,r:0,c:[e.CLCM,e.CBCM,r,a,t]},e.CLCM,e.CBCM,n]}]),exports:{preprocessor:n,strings:r,k:s}}}),e.registerLanguage("cs",function(e){var t={keyword:"abstract as base bool break byte case catch char checked const continue decimal default delegate do double else enum event explicit extern finally fixed float for foreach goto if implicit in int interface internal is lock long object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this try typeof uint ulong unchecked unsafe ushort using virtual void volatile while nameof add alias ascending async await by descending dynamic equals from get global group into join let on orderby partial remove select set value var where yield",literal:"null false true"},r={cN:"string",b:'@"',e:'"',c:[{b:'""'}]},a=e.inherit(r,{i:/\n/}),n={cN:"subst",b:"{",e:"}",k:t},i=e.inherit(n,{i:/\n/}),s={cN:"string",b:/\$"/,e:'"',i:/\n/,c:[{b:"{{"},{b:"}}"},e.BE,i]},c={cN:"string",b:/\$@"/,e:'"',c:[{b:"{{"},{b:"}}"},{b:'""'},n]},o=e.inherit(c,{i:/\n/,c:[{b:"{{"},{b:"}}"},{b:'""'},i]});n.c=[c,s,r,e.ASM,e.QSM,e.CNM,e.CBCM],i.c=[o,s,a,e.ASM,e.QSM,e.CNM,e.inherit(e.CBCM,{i:/\n/})];var l={v:[c,s,r,e.ASM,e.QSM]},u=e.IR+"(<"+e.IR+"(\\s*,\\s*"+e.IR+")*>)?(\\[\\])?";return{aliases:["csharp"],k:t,i:/::/,c:[e.C("///","$",{rB:!0,c:[{cN:"doctag",v:[{b:"///",r:0},{b:""},{b:""}]}]}),e.CLCM,e.CBCM,{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum"}},l,e.CNM,{bK:"class interface",e:/[{;=]/,i:/[^\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:"namespace",e:/[{;=]/,i:/[^\s:]/,c:[e.inherit(e.TM,{b:"[a-zA-Z](\\.?\\w)*"}),e.CLCM,e.CBCM]},{bK:"new return throw await",r:0},{cN:"function",b:"("+u+"\\s+)+"+e.IR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.IR+"\\s*\\(",rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,r:0,c:[l,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}}),e.registerLanguage("css",function(e){var t="[a-zA-Z-][a-zA-Z0-9_-]*",r={b:/[A-Z\_\.\-]+\s*:/,rB:!0,e:";",eW:!0,c:[{cN:"attribute",b:/\S/,e:":",eE:!0,starts:{eW:!0,eE:!0,c:[{b:/[\w-]+\(/,rB:!0,c:[{cN:"built_in",b:/[\w-]+/},{b:/\(/,e:/\)/,c:[e.ASM,e.QSM]}]},e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"number",b:"#[0-9A-Fa-f]+"},{cN:"meta",b:"!important"}]}}]};return{cI:!0,i:/[=\/|'\$]/,c:[e.CBCM,{cN:"selector-id",b:/#[A-Za-z0-9_-]+/},{cN:"selector-class",b:/\.[A-Za-z0-9_-]+/},{cN:"selector-attr",b:/\[/,e:/\]/,i:"$"},{cN:"selector-pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{b:"@",e:"[{;]",i:/:/,c:[{cN:"keyword",b:/\w+/},{b:/\s/,eW:!0,eE:!0,r:0,c:[e.ASM,e.QSM,e.CSSNM]}]},{cN:"selector-tag",b:t,r:0},{b:"{",e:"}",i:/\S/,c:[e.CBCM,r]}]}}),e.registerLanguage("diff",function(e){return{aliases:["patch"],c:[{cN:"meta",r:10,v:[{b:/^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/},{b:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{b:/^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{cN:"comment",v:[{b:/Index: /,e:/$/},{b:/={3,}/,e:/$/},{b:/^\-{3}/,e:/$/},{b:/^\*{3} /,e:/$/},{b:/^\+{3}/,e:/$/},{b:/\*{5}/,e:/\*{5}$/}]},{cN:"addition",b:"^\\+",e:"$"},{cN:"deletion",b:"^\\-",e:"$"},{cN:"addition",b:"^\\!",e:"$"}]}}),e.registerLanguage("http",function(e){var t="HTTP/[0-9\\.]+";return{aliases:["https"],i:"\\S",c:[{b:"^"+t,e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{b:"^[A-Z]+ (.*?) "+t+"$",rB:!0,e:"$",c:[{cN:"string",b:" ",e:" ",eB:!0,eE:!0},{b:t},{cN:"keyword",b:"[A-Z]+"}]},{cN:"attribute",b:"^\\w",e:": ",eE:!0,i:"\\n|\\s|=",starts:{e:"$",r:0}},{b:"\\n\\n",starts:{sL:[],eW:!0}}]}}),e.registerLanguage("ini",function(e){var t={cN:"string",c:[e.BE],v:[{b:"'''",e:"'''",r:10},{b:'"""',e:'"""',r:10},{b:'"',e:'"'},{b:"'",e:"'"}]};return{aliases:["toml"],cI:!0,i:/\S/,c:[e.C(";","$"),e.HCM,{cN:"section",b:/^\s*\[+/,e:/\]+/},{b:/^[a-z0-9\[\]_-]+\s*=\s*/,e:"$",rB:!0,c:[{cN:"attr",b:/[a-z0-9\[\]_-]+/},{b:/=/,eW:!0,r:0,c:[{cN:"literal",b:/\bon|off|true|false|yes|no\b/},{cN:"variable",v:[{b:/\$[\w\d"][\w\d_]*/},{b:/\$\{(.*?)}/}]},t,{cN:"number",b:/([\+\-]+)?[\d]+_[\d_]+/},e.NM]}]}]}}),e.registerLanguage("java",function(e){var t="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",r=t+"(<"+t+"(\\s*,\\s*"+t+")*>)?",a="false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",n="\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",i={cN:"number",b:n,r:0};return{aliases:["jsp"],k:a,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{b:/\w+@/,r:0},{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"new throw return else",r:0},{cN:"function",b:"("+r+"\\s+)+"+e.UIR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:a,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,k:a,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},i,{cN:"meta",b:"@[A-Za-z]+"}]}}),e.registerLanguage("javascript",function(e){var t="[A-Za-z$_][0-9A-Za-z$_]*",r={keyword:"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await static import from as",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise"},a={cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},n={cN:"subst",b:"\\$\\{",e:"\\}",k:r,c:[]},i={cN:"string",b:"`",e:"`",c:[e.BE,n]};n.c=[e.ASM,e.QSM,i,a,e.RM];var s=n.c.concat([e.CBCM,e.CLCM]);return{aliases:["js","jsx"],k:r,c:[{cN:"meta",r:10,b:/^\s*['"]use (strict|asm)['"]/},{cN:"meta",b:/^#!/,e:/$/},e.ASM,e.QSM,i,e.CLCM,e.CBCM,a,{b:/[{,]\s*/,r:0,c:[{b:t+"\\s*:",rB:!0,r:0,c:[{cN:"attr",b:t,r:0}]}]},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{cN:"function",b:"(\\(.*?\\)|"+t+")\\s*=>",rB:!0,e:"\\s*=>",c:[{cN:"params",v:[{b:t},{b:/\(\s*\)/},{b:/\(/,e:/\)/,eB:!0,eE:!0,k:r,c:s}]}]},{b://,sL:"xml",c:[{b:/<\w+\s*\/>/,skip:!0},{b:/<\w+/,e:/(\/\w+|\w+\/)>/,skip:!0,c:[{b:/<\w+\s*\/>/,skip:!0},"self"]}]}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:t}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,c:s}],i:/\[|%/},{b:/\$[(.]/},e.METHOD_GUARD,{cN:"class",bK:"class",e:/[{;=]/,eE:!0,i:/[:"\[\]]/,c:[{bK:"extends"},e.UTM]},{bK:"constructor",e:/\{/,eE:!0}],i:/#(?!!)/}}),e.registerLanguage("json",function(e){var t={literal:"true false null"},r=[e.QSM,e.CNM],a={e:",",eW:!0,eE:!0,c:r,k:t},n={b:"{",e:"}",c:[{cN:"attr",b:/"/,e:/"/,c:[e.BE],i:"\\n"},e.inherit(a,{b:/:/})],i:"\\S"},i={b:"\\[",e:"\\]",c:[e.inherit(a)],i:"\\S"};return r.splice(r.length,0,n,i),{c:r,k:t,i:"\\S"}}),e.registerLanguage("makefile",function(e){var t={cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]};return{aliases:["mk","mak"],c:[e.HCM,{b:/^\w+\s*\W*=/,rB:!0,r:0,starts:{e:/\s*\W*=/,eE:!0,starts:{e:/$/,r:0,c:[t]}}},{cN:"section",b:/^[\w]+:\s*$/},{cN:"meta",b:/^\.PHONY:/,e:/$/,k:{"meta-keyword":".PHONY"},l:/[\.\w]+/},{b:/^\t+/,e:/$/,r:0,c:[e.QSM,t]}]}}),e.registerLanguage("xml",function(e){var t="[A-Za-z0-9\\._:-]+",r={eW:!0,i:/`]+/}]}]}]};return{aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist"],cI:!0,c:[{cN:"meta",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},e.C("",{r:10}),{b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{b:/<\?(php)?/,e:/\?>/,sL:"php",c:[{b:"/\\*",e:"\\*/",skip:!0}]},{cN:"tag",b:"|$)",e:">",k:{name:"style"},c:[r],starts:{e:"",rE:!0,sL:["css","xml"]}},{cN:"tag",b:"|$)",e:">",k:{name:"script"},c:[r],starts:{e:"",rE:!0,sL:["actionscript","javascript","handlebars","xml"]}},{cN:"meta",v:[{b:/<\?xml/,e:/\?>/,r:10},{b:/<\?\w+/,e:/\?>/}]},{cN:"tag",b:"",c:[{cN:"name",b:/[^\/><\s]+/,r:0},r]}]}}),e.registerLanguage("markdown",function(e){return{aliases:["md","mkdown","mkd"],c:[{cN:"section",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"quote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"^```w*s*$",e:"^```s*$"},{b:"`.+?`"},{b:"^( {4}| )",e:"$",r:0}]},{b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].*?[\\)\\]]",rB:!0,c:[{cN:"string",b:"\\[",e:"\\]",eB:!0,rE:!0,r:0},{cN:"link",b:"\\]\\(",e:"\\)",eB:!0,eE:!0},{cN:"symbol",b:"\\]\\[",e:"\\]",eB:!0,eE:!0}],r:10},{b:/^\[[^\n]+\]:/,rB:!0,c:[{cN:"symbol",b:/\[/,e:/\]/,eB:!0,eE:!0},{cN:"link",b:/:\s*/,e:/$/,eB:!0}]}]}}),e.registerLanguage("nginx",function(e){var t={cN:"variable",v:[{b:/\$\d+/},{b:/\$\{/,e:/}/},{b:"[\\$\\@]"+e.UIR}]},r={eW:!0,l:"[a-z/_]+",k:{literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},r:0,i:"=>",c:[e.HCM,{cN:"string",c:[e.BE,t],v:[{b:/"/,e:/"/},{b:/'/,e:/'/}]},{b:"([a-z]+):/",e:"\\s",eW:!0,eE:!0,c:[t]},{cN:"regexp",c:[e.BE,t],v:[{b:"\\s\\^",e:"\\s|{|;",rE:!0},{b:"~\\*?\\s+",e:"\\s|{|;",rE:!0},{b:"\\*(\\.[a-z\\-]+)+"},{b:"([a-z\\-]+\\.)+\\*"}]},{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+[kKmMgGdshdwy]*\\b",r:0},t]};return{aliases:["nginxconf"],c:[e.HCM,{b:e.UIR+"\\s+{",rB:!0,e:"{",c:[{cN:"section",b:e.UIR}],r:0},{b:e.UIR+"\\s",e:";|{",rB:!0,c:[{cN:"attribute",b:e.UIR,starts:r}],r:0}],i:"[^\\s\\}]"}}),e.registerLanguage("objectivec",function(e){var t={cN:"built_in",b:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},r={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},a=/[a-zA-Z@][a-zA-Z0-9_]*/,n="@interface @class @protocol @implementation";return{aliases:["mm","objc","obj-c"],k:r,l:a,i:""}]}]},{cN:"class",b:"("+n.split(" ").join("|")+")\\b",e:"({|$)",eE:!0,k:n,l:a,c:[e.UTM]},{b:"\\."+e.UIR,r:0}]}}),e.registerLanguage("perl",function(e){var t="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when",r={cN:"subst",b:"[$@]\\{",e:"\\}",k:t},a={b:"->{",e:"}"},n={v:[{b:/\$\d/},{b:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{b:/[\$%@][^\s\w{]/,r:0}]},i=[e.BE,r,n],s=[n,e.HCM,e.C("^\\=\\w","\\=cut",{eW:!0}),a,{cN:"string",c:i,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[e.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[e.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+e.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[e.HCM,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[e.BE],r:0}]},{cN:"function",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",eE:!0,r:5,c:[e.TM]},{b:"-\\w\\b",r:0},{b:"^__DATA__$",e:"^__END__$",sL:"mojolicious",c:[{b:"^@@.*",e:"$",cN:"comment"}]}];return r.c=s,a.c=s,{aliases:["pl","pm"],l:/[\w\.]+/,k:t,c:s}}),e.registerLanguage("php",function(e){var t={b:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},r={cN:"meta",b:/<\?(php)?|\?>/},a={cN:"string",c:[e.BE,r],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:["php3","php4","php5","php6"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[e.HCM,e.C("//","$",{c:[r]}),e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:/<<<['"]?\w+['"]?$/,e:/^\w+;?$/,c:[e.BE,{cN:"subst",v:[{b:/\$\w+/},{b:/\{\$/,e:/\}/}]}]},r,{cN:"keyword",b:/\$this\b/},t,{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",t,e.CBCM,a,n]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},a,n]}}),e.registerLanguage("python",function(e){var t={keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},r={cN:"meta",b:/^(>>>|\.\.\.) /},a={cN:"subst",b:/\{/,e:/\}/,k:t,i:/#/},n={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[r],r:10},{b:/(fr|rf|f)'''/,e:/'''/,c:[r,a]},{b:/(fr|rf|f)"""/,e:/"""/,c:[r,a]},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},{b:/(fr|rf|f)'/,e:/'/,c:[a]},{b:/(fr|rf|f)"/,e:/"/,c:[a]},e.ASM,e.QSM]},i={cN:"number",r:0,v:[{b:e.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:e.CNR+"[lLjJ]?"}]},s={cN:"params",b:/\(/,e:/\)/,c:["self",r,i,n]};return a.c=[n,i,r],{aliases:["py","gyp"],k:t,i:/(<\/|->|\?)|=>/,c:[r,i,n,e.HCM,{v:[{cN:"function",bK:"def"},{cN:"class",bK:"class"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,s,{b:/->/,eW:!0,k:"None"}]},{cN:"meta",b:/^[\t ]*@/,e:/$/},{b:/\b(print|exec)\(/}]}}),e.registerLanguage("ruby",function(e){var t="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",r={keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",literal:"true false nil"},a={cN:"doctag",b:"@[A-Za-z]+"},n={b:"#<",e:">"},i=[e.C("#","$",{c:[a]}),e.C("^\\=begin","^\\=end",{c:[a],r:10}),e.C("^__END__","\\n$")],s={cN:"subst",b:"#\\{",e:"}",k:r},c={cN:"string",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%[qQwWx]?\\(",e:"\\)"},{b:"%[qQwWx]?\\[",e:"\\]"},{b:"%[qQwWx]?{", +e:"}"},{b:"%[qQwWx]?<",e:">"},{b:"%[qQwWx]?/",e:"/"},{b:"%[qQwWx]?%",e:"%"},{b:"%[qQwWx]?-",e:"-"},{b:"%[qQwWx]?\\|",e:"\\|"},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/},{b:/<<(-?)\w+$/,e:/^\s*\w+$/}]},o={cN:"params",b:"\\(",e:"\\)",endsParent:!0,k:r},l=[c,n,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{b:"<\\s*",c:[{b:"("+e.IR+"::)?"+e.IR}]}].concat(i)},{cN:"function",bK:"def",e:"$|;",c:[e.inherit(e.TM,{b:t}),o].concat(i)},{b:e.IR+"::"},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":(?!\\s)",c:[c,{b:t}],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{cN:"params",b:/\|/,e:/\|/,k:r},{b:"("+e.RSR+"|unless)\\s*",c:[n,{cN:"regexp",c:[e.BE,s],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}].concat(i),r:0}].concat(i);s.c=l,o.c=l;var u="[>?]>",d="[\\w#]+\\(\\w+\\):\\d+:\\d+>",b="(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>",p=[{b:/^\s*=>/,starts:{e:"$",c:l}},{cN:"meta",b:"^("+u+"|"+d+"|"+b+")",starts:{e:"$",c:l}}];return{aliases:["rb","gemspec","podspec","thor","irb"],k:r,i:/\/\*/,c:i.concat(p).concat(l)}}),e.registerLanguage("sql",function(e){var t=e.C("--","$");return{cI:!0,i:/[<>{}*#]/,c:[{bK:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment",e:/;/,eW:!0,l:/[\w\.]+/,k:{keyword:"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null",built_in:"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}}),e}); \ No newline at end of file diff --git a/vendor/github.com/schollz/cowyo/static/js/highlight.pack.js b/vendor/github.com/schollz/cowyo/static/js/highlight.pack.js new file mode 100755 index 0000000..4c19c80 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/static/js/highlight.pack.js @@ -0,0 +1,2 @@ +/*! highlight.js v9.10.0 | BSD3 License | git.io/hljslicense */ +!function(e){var n="object"==typeof window&&window||"object"==typeof self&&self;"undefined"!=typeof exports?e(exports):n&&(n.hljs=e({}),"function"==typeof define&&define.amd&&define([],function(){return n.hljs}))}(function(e){function n(e){return e.replace(/[&<>]/gm,function(e){return j[e]})}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0===t.index}function a(e){return k.test(e)}function i(e){var n,t,r,i,o=e.className+" ";if(o+=e.parentNode?e.parentNode.className:"",t=B.exec(o))return w(t[1])?t[1]:"no-highlight";for(o=o.split(/\s+/),n=0,r=o.length;r>n;n++)if(i=o[n],a(i)||w(i))return i}function o(e){var n,t={},r=Array.prototype.slice.call(arguments,1);for(n in e)t[n]=e[n];return r.forEach(function(e){for(n in e)t[n]=e[n]}),t}function u(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3===i.nodeType?a+=i.nodeValue.length:1===i.nodeType&&(n.push({event:"start",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:"stop",offset:a,node:i}));return a}(e,0),n}function c(e,r,a){function i(){return e.length&&r.length?e[0].offset!==r[0].offset?e[0].offset"}function u(e){l+=""}function c(e){("start"===e.event?o:u)(e.node)}for(var s=0,l="",f=[];e.length||r.length;){var g=i();if(l+=n(a.substring(s,g[0].offset)),s=g[0].offset,g===e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g===e&&g.length&&g[0].offset===s);f.reverse().forEach(o)}else"start"===g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return l+n(a.substr(s))}function s(e){return e.v&&!e.cached_variants&&(e.cached_variants=e.v.map(function(n){return o(e,{v:null},n)})),e.cached_variants||e.eW&&[o(e)]||[e]}function l(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),"m"+(e.cI?"i":"")+(r?"g":""))}function r(a,i){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var o={},u=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(" ").forEach(function(e){var t=e.split("|");o[t[0]]=[n,t[1]?Number(t[1]):1]})};"string"==typeof a.k?u("keyword",a.k):x(a.k).forEach(function(e){u(e,a.k[e])}),a.k=o}a.lR=t(a.l||/\w+/,!0),i&&(a.bK&&(a.b="\\b("+a.bK.split(" ").join("|")+")\\b"),a.b||(a.b=/\B|\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\B|\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||"",a.eW&&i.tE&&(a.tE+=(a.e?"|":"")+i.tE)),a.i&&(a.iR=t(a.i)),null==a.r&&(a.r=1),a.c||(a.c=[]),a.c=Array.prototype.concat.apply([],a.c.map(function(e){return s("self"===e?a:e)})),a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,i);var c=a.c.map(function(e){return e.bK?"\\.?("+e.b+")\\.?":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=c.length?t(c.join("|"),!0):{exec:function(){return null}}}}r(e)}function f(e,t,a,i){function o(e,n){var t,a;for(t=0,a=n.c.length;a>t;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function c(e,n){return!a&&r(n.iR,e)}function s(e,n){var t=N.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function p(e,n,t,r){var a=r?"":I.classPrefix,i='',i+n+o}function h(){var e,t,r,a;if(!E.k)return n(k);for(a="",t=0,E.lR.lastIndex=0,r=E.lR.exec(k);r;)a+=n(k.substring(t,r.index)),e=s(E,r),e?(B+=e[1],a+=p(e[0],n(r[0]))):a+=n(r[0]),t=E.lR.lastIndex,r=E.lR.exec(k);return a+n(k.substr(t))}function d(){var e="string"==typeof E.sL;if(e&&!L[E.sL])return n(k);var t=e?f(E.sL,k,!0,x[E.sL]):g(k,E.sL.length?E.sL:void 0);return E.r>0&&(B+=t.r),e&&(x[E.sL]=t.top),p(t.language,t.value,!1,!0)}function b(){y+=null!=E.sL?d():h(),k=""}function v(e){y+=e.cN?p(e.cN,"",!0):"",E=Object.create(e,{parent:{value:E}})}function m(e,n){if(k+=e,null==n)return b(),0;var t=o(n,E);if(t)return t.skip?k+=n:(t.eB&&(k+=n),b(),t.rB||t.eB||(k=n)),v(t,n),t.rB?0:n.length;var r=u(E,n);if(r){var a=E;a.skip?k+=n:(a.rE||a.eE||(k+=n),b(),a.eE&&(k=n));do E.cN&&(y+=C),E.skip||(B+=E.r),E=E.parent;while(E!==r.parent);return r.starts&&v(r.starts,""),a.rE?0:n.length}if(c(n,E))throw new Error('Illegal lexeme "'+n+'" for mode "'+(E.cN||"")+'"');return k+=n,n.length||1}var N=w(e);if(!N)throw new Error('Unknown language: "'+e+'"');l(N);var R,E=i||N,x={},y="";for(R=E;R!==N;R=R.parent)R.cN&&(y=p(R.cN,"",!0)+y);var k="",B=0;try{for(var M,j,O=0;;){if(E.t.lastIndex=O,M=E.t.exec(t),!M)break;j=m(t.substring(O,M.index),M[0]),O=M.index+j}for(m(t.substr(O)),R=E;R.parent;R=R.parent)R.cN&&(y+=C);return{r:B,value:y,language:e,top:E}}catch(T){if(T.message&&-1!==T.message.indexOf("Illegal"))return{r:0,value:n(t)};throw T}}function g(e,t){t=t||I.languages||x(L);var r={r:0,value:n(e)},a=r;return t.filter(w).forEach(function(n){var t=f(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}),a.language&&(r.second_best=a),r}function p(e){return I.tabReplace||I.useBR?e.replace(M,function(e,n){return I.useBR&&"\n"===e?"
    ":I.tabReplace?n.replace(/\t/g,I.tabReplace):""}):e}function h(e,n,t){var r=n?y[n]:t,a=[e.trim()];return e.match(/\bhljs\b/)||a.push("hljs"),-1===e.indexOf(r)&&a.push(r),a.join(" ").trim()}function d(e){var n,t,r,o,s,l=i(e);a(l)||(I.useBR?(n=document.createElementNS("http://www.w3.org/1999/xhtml","div"),n.innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n")):n=e,s=n.textContent,r=l?f(l,s,!0):g(s),t=u(n),t.length&&(o=document.createElementNS("http://www.w3.org/1999/xhtml","div"),o.innerHTML=r.value,r.value=c(t,u(o),s)),r.value=p(r.value),e.innerHTML=r.value,e.className=h(e.className,l,r.language),e.result={language:r.language,re:r.r},r.second_best&&(e.second_best={language:r.second_best.language,re:r.second_best.r}))}function b(e){I=o(I,e)}function v(){if(!v.called){v.called=!0;var e=document.querySelectorAll("pre code");E.forEach.call(e,d)}}function m(){addEventListener("DOMContentLoaded",v,!1),addEventListener("load",v,!1)}function N(n,t){var r=L[n]=t(e);r.aliases&&r.aliases.forEach(function(e){y[e]=n})}function R(){return x(L)}function w(e){return e=(e||"").toLowerCase(),L[e]||L[y[e]]}var E=[],x=Object.keys,L={},y={},k=/^(no-?highlight|plain|text)$/i,B=/\blang(?:uage)?-([\w-]+)\b/i,M=/((^(<[^>]+>|\t|)+|(?:\n)))/gm,C="
    ",I={classPrefix:"hljs-",tabReplace:null,useBR:!1,languages:void 0},j={"&":"&","<":"<",">":">"};return e.highlight=f,e.highlightAuto=g,e.fixMarkup=p,e.highlightBlock=d,e.configure=b,e.initHighlighting=v,e.initHighlightingOnLoad=m,e.registerLanguage=N,e.listLanguages=R,e.getLanguage=w,e.inherit=o,e.IR="[a-zA-Z]\\w*",e.UIR="[a-zA-Z_]\\w*",e.NR="\\b\\d+(\\.\\d+)?",e.CNR="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",e.BNR="\\b(0b[01]+)",e.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",e.BE={b:"\\\\[\\s\\S]",r:0},e.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[e.BE]},e.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[e.BE]},e.PWM={b:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|like)\b/},e.C=function(n,t,r){var a=e.inherit({cN:"comment",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a.c.push({cN:"doctag",b:"(?:TODO|FIXME|NOTE|BUG|XXX):",r:0}),a},e.CLCM=e.C("//","$"),e.CBCM=e.C("/\\*","\\*/"),e.HCM=e.C("#","$"),e.NM={cN:"number",b:e.NR,r:0},e.CNM={cN:"number",b:e.CNR,r:0},e.BNM={cN:"number",b:e.BNR,r:0},e.CSSNM={cN:"number",b:e.NR+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",r:0},e.RM={cN:"regexp",b:/\//,e:/\/[gimuy]*/,i:/\n/,c:[e.BE,{b:/\[/,e:/\]/,r:0,c:[e.BE]}]},e.TM={cN:"title",b:e.IR,r:0},e.UTM={cN:"title",b:e.UIR,r:0},e.METHOD_GUARD={b:"\\.\\s*"+e.UIR,r:0},e});hljs.registerLanguage("xml",function(s){var e="[A-Za-z0-9\\._:-]+",t={eW:!0,i:/`]+/}]}]}]};return{aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist"],cI:!0,c:[{cN:"meta",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},s.C("",{r:10}),{b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{b:/<\?(php)?/,e:/\?>/,sL:"php",c:[{b:"/\\*",e:"\\*/",skip:!0}]},{cN:"tag",b:"|$)",e:">",k:{name:"style"},c:[t],starts:{e:"",rE:!0,sL:["css","xml"]}},{cN:"tag",b:"|$)",e:">",k:{name:"script"},c:[t],starts:{e:"",rE:!0,sL:["actionscript","javascript","handlebars","xml"]}},{cN:"meta",v:[{b:/<\?xml/,e:/\?>/,r:10},{b:/<\?\w+/,e:/\?>/}]},{cN:"tag",b:"",c:[{cN:"name",b:/[^\/><\s]+/,r:0},t]}]}});hljs.registerLanguage("css",function(e){var c="[a-zA-Z-][a-zA-Z0-9_-]*",t={b:/[A-Z\_\.\-]+\s*:/,rB:!0,e:";",eW:!0,c:[{cN:"attribute",b:/\S/,e:":",eE:!0,starts:{eW:!0,eE:!0,c:[{b:/[\w-]+\(/,rB:!0,c:[{cN:"built_in",b:/[\w-]+/},{b:/\(/,e:/\)/,c:[e.ASM,e.QSM]}]},e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:"number",b:"#[0-9A-Fa-f]+"},{cN:"meta",b:"!important"}]}}]};return{cI:!0,i:/[=\/|'\$]/,c:[e.CBCM,{cN:"selector-id",b:/#[A-Za-z0-9_-]+/},{cN:"selector-class",b:/\.[A-Za-z0-9_-]+/},{cN:"selector-attr",b:/\[/,e:/\]/,i:"$"},{cN:"selector-pseudo",b:/:(:)?[a-zA-Z0-9\_\-\+\(\)"'.]+/},{b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{b:"@",e:"[{;]",i:/:/,c:[{cN:"keyword",b:/\w+/},{b:/\s/,eW:!0,eE:!0,r:0,c:[e.ASM,e.QSM,e.CSSNM]}]},{cN:"selector-tag",b:c,r:0},{b:"{",e:"}",i:/\S/,c:[e.CBCM,t]}]}});hljs.registerLanguage("makefile",function(e){var a={cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]};return{aliases:["mk","mak"],c:[e.HCM,{b:/^\w+\s*\W*=/,rB:!0,r:0,starts:{e:/\s*\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:"section",b:/^[\w]+:\s*$/},{cN:"meta",b:/^\.PHONY:/,e:/$/,k:{"meta-keyword":".PHONY"},l:/[\.\w]+/},{b:/^\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage("nginx",function(e){var r={cN:"variable",v:[{b:/\$\d+/},{b:/\$\{/,e:/}/},{b:"[\\$\\@]"+e.UIR}]},b={eW:!0,l:"[a-z/_]+",k:{literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},r:0,i:"=>",c:[e.HCM,{cN:"string",c:[e.BE,r],v:[{b:/"/,e:/"/},{b:/'/,e:/'/}]},{b:"([a-z]+):/",e:"\\s",eW:!0,eE:!0,c:[r]},{cN:"regexp",c:[e.BE,r],v:[{b:"\\s\\^",e:"\\s|{|;",rE:!0},{b:"~\\*?\\s+",e:"\\s|{|;",rE:!0},{b:"\\*(\\.[a-z\\-]+)+"},{b:"([a-z\\-]+\\.)+\\*"}]},{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+[kKmMgGdshdwy]*\\b",r:0},r]};return{aliases:["nginxconf"],c:[e.HCM,{b:e.UIR+"\\s+{",rB:!0,e:"{",c:[{cN:"section",b:e.UIR}],r:0},{b:e.UIR+"\\s",e:";|{",rB:!0,c:[{cN:"attribute",b:e.UIR,starts:b}],r:0}],i:"[^\\s\\}]"}});hljs.registerLanguage("markdown",function(e){return{aliases:["md","mkdown","mkd"],c:[{cN:"section",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"quote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"^```w*s*$",e:"^```s*$"},{b:"`.+?`"},{b:"^( {4}| )",e:"$",r:0}]},{b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].*?[\\)\\]]",rB:!0,c:[{cN:"string",b:"\\[",e:"\\]",eB:!0,rE:!0,r:0},{cN:"link",b:"\\]\\(",e:"\\)",eB:!0,eE:!0},{cN:"symbol",b:"\\]\\[",e:"\\]",eB:!0,eE:!0}],r:10},{b:/^\[[^\n]+\]:/,rB:!0,c:[{cN:"symbol",b:/\[/,e:/\]/,eB:!0,eE:!0},{cN:"link",b:/:\s*/,e:/$/,eB:!0}]}]}});hljs.registerLanguage("diff",function(e){return{aliases:["patch"],c:[{cN:"meta",r:10,v:[{b:/^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/},{b:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{b:/^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{cN:"comment",v:[{b:/Index: /,e:/$/},{b:/={3,}/,e:/$/},{b:/^\-{3}/,e:/$/},{b:/^\*{3} /,e:/$/},{b:/^\+{3}/,e:/$/},{b:/\*{5}/,e:/\*{5}$/}]},{cN:"addition",b:"^\\+",e:"$"},{cN:"deletion",b:"^\\-",e:"$"},{cN:"addition",b:"^\\!",e:"$"}]}});hljs.registerLanguage("php",function(e){var c={b:"\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*"},i={cN:"meta",b:/<\?(php)?|\?>/},t={cN:"string",c:[e.BE,i],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},a={v:[e.BNM,e.CNM]};return{aliases:["php3","php4","php5","php6"],cI:!0,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[e.HCM,e.C("//","$",{c:[i]}),e.C("/\\*","\\*/",{c:[{cN:"doctag",b:"@[A-Za-z]+"}]}),e.C("__halt_compiler.+?;",!1,{eW:!0,k:"__halt_compiler",l:e.UIR}),{cN:"string",b:/<<<['"]?\w+['"]?$/,e:/^\w+;?$/,c:[e.BE,{cN:"subst",v:[{b:/\$\w+/},{b:/\{\$/,e:/\}/}]}]},i,{cN:"keyword",b:/\$this\b/},c,{b:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{cN:"function",bK:"function",e:/[;{]/,eE:!0,i:"\\$|\\[|%",c:[e.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",c,e.CBCM,t,a]}]},{cN:"class",bK:"class interface",e:"{",eE:!0,i:/[:\(\$"]/,c:[{bK:"extends implements"},e.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[e.UTM]},{bK:"use",e:";",c:[e.UTM]},{b:"=>"},t,a]}});hljs.registerLanguage("bash",function(e){var t={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)}/}]},s={cN:"string",b:/"/,e:/"/,c:[e.BE,t,{cN:"variable",b:/\$\(/,e:/\)/,c:[e.BE]}]},a={cN:"string",b:/'/,e:/'/};return{aliases:["sh","zsh"],l:/-?[a-z\._]+/,k:{keyword:"if then else elif fi for while in do done case esac function",literal:"true false",built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp",_:"-ne -eq -lt -gt -f -d -e -s -l -a"},c:[{cN:"meta",b:/^#![^\n]+sh\s*$/,r:10},{cN:"function",b:/\w[\w\d_]*\s*\(\s*\)\s*\{/,rB:!0,c:[e.inherit(e.TM,{b:/\w[\w\d_]*/})],r:0},e.HCM,s,a,t]}});hljs.registerLanguage("json",function(e){var i={literal:"true false null"},n=[e.QSM,e.CNM],r={e:",",eW:!0,eE:!0,c:n,k:i},t={b:"{",e:"}",c:[{cN:"attr",b:/"/,e:/"/,c:[e.BE],i:"\\n"},e.inherit(r,{b:/:/})],i:"\\S"},c={b:"\\[",e:"\\]",c:[e.inherit(r)],i:"\\S"};return n.splice(n.length,0,t,c),{c:n,k:i,i:"\\S"}});hljs.registerLanguage("apache",function(e){var r={cN:"number",b:"[\\$%]\\d+"};return{aliases:["apacheconf"],cI:!0,c:[e.HCM,{cN:"section",b:""},{cN:"attribute",b:/\w+/,r:0,k:{nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{e:/$/,r:0,k:{literal:"on off all"},c:[{cN:"meta",b:"\\s\\[",e:"\\]$"},{cN:"variable",b:"[\\$%]\\{",e:"\\}",c:["self",r]},r,e.QSM]}}],i:/\S/}});hljs.registerLanguage("ruby",function(e){var b="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?",r={keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor",literal:"true false nil"},c={cN:"doctag",b:"@[A-Za-z]+"},a={b:"#<",e:">"},s=[e.C("#","$",{c:[c]}),e.C("^\\=begin","^\\=end",{c:[c],r:10}),e.C("^__END__","\\n$")],n={cN:"subst",b:"#\\{",e:"}",k:r},t={cN:"string",c:[e.BE,n],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:/`/,e:/`/},{b:"%[qQwWx]?\\(",e:"\\)"},{b:"%[qQwWx]?\\[",e:"\\]"},{b:"%[qQwWx]?{",e:"}"},{b:"%[qQwWx]?<",e:">"},{b:"%[qQwWx]?/",e:"/"},{b:"%[qQwWx]?%",e:"%"},{b:"%[qQwWx]?-",e:"-"},{b:"%[qQwWx]?\\|",e:"\\|"},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/},{b:/<<(-?)\w+$/,e:/^\s*\w+$/}]},i={cN:"params",b:"\\(",e:"\\)",endsParent:!0,k:r},d=[t,a,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{b:"<\\s*",c:[{b:"("+e.IR+"::)?"+e.IR}]}].concat(s)},{cN:"function",bK:"def",e:"$|;",c:[e.inherit(e.TM,{b:b}),i].concat(s)},{b:e.IR+"::"},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"symbol",b:":(?!\\s)",c:[t,{b:b}],r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{cN:"params",b:/\|/,e:/\|/,k:r},{b:"("+e.RSR+"|unless)\\s*",c:[a,{cN:"regexp",c:[e.BE,n],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}].concat(s),r:0}].concat(s);n.c=d,i.c=d;var l="[>?]>",o="[\\w#]+\\(\\w+\\):\\d+:\\d+>",u="(\\w+-)?\\d+\\.\\d+\\.\\d(p\\d+)?[^>]+>",w=[{b:/^\s*=>/,starts:{e:"$",c:d}},{cN:"meta",b:"^("+l+"|"+o+"|"+u+")",starts:{e:"$",c:d}}];return{aliases:["rb","gemspec","podspec","thor","irb"],k:r,i:/\/\*/,c:s.concat(w).concat(d)}});hljs.registerLanguage("javascript",function(e){var r="[A-Za-z$_][0-9A-Za-z$_]*",t={keyword:"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await static import from as",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise"},a={cN:"number",v:[{b:"\\b(0[bB][01]+)"},{b:"\\b(0[oO][0-7]+)"},{b:e.CNR}],r:0},n={cN:"subst",b:"\\$\\{",e:"\\}",k:t,c:[]},c={cN:"string",b:"`",e:"`",c:[e.BE,n]};n.c=[e.ASM,e.QSM,c,a,e.RM];var s=n.c.concat([e.CBCM,e.CLCM]);return{aliases:["js","jsx"],k:t,c:[{cN:"meta",r:10,b:/^\s*['"]use (strict|asm)['"]/},{cN:"meta",b:/^#!/,e:/$/},e.ASM,e.QSM,c,e.CLCM,e.CBCM,a,{b:/[{,]\s*/,r:0,c:[{b:r+"\\s*:",rB:!0,r:0,c:[{cN:"attr",b:r,r:0}]}]},{b:"("+e.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[e.CLCM,e.CBCM,e.RM,{cN:"function",b:"(\\(.*?\\)|"+r+")\\s*=>",rB:!0,e:"\\s*=>",c:[{cN:"params",v:[{b:r},{b:/\(\s*\)/},{b:/\(/,e:/\)/,eB:!0,eE:!0,k:t,c:s}]}]},{b://,sL:"xml",c:[{b:/<\w+\s*\/>/,skip:!0},{b:/<\w+/,e:/(\/\w+|\w+\/)>/,skip:!0,c:[{b:/<\w+\s*\/>/,skip:!0},"self"]}]}],r:0},{cN:"function",bK:"function",e:/\{/,eE:!0,c:[e.inherit(e.TM,{b:r}),{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,c:s}],i:/\[|%/},{b:/\$[(.]/},e.METHOD_GUARD,{cN:"class",bK:"class",e:/[{;=]/,eE:!0,i:/[:"\[\]]/,c:[{bK:"extends"},e.UTM]},{bK:"constructor",e:/\{/,eE:!0}],i:/#(?!!)/}});hljs.registerLanguage("cpp",function(t){var e={cN:"keyword",b:"\\b[a-z\\d_]*_t\\b"},r={cN:"string",v:[{b:'(u8?|U)?L?"',e:'"',i:"\\n",c:[t.BE]},{b:'(u8?|U)?R"',e:'"',c:[t.BE]},{b:"'\\\\?.",e:"'",i:"."}]},s={cN:"number",v:[{b:"\\b(0b[01']+)"},{b:"\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{b:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],r:0},i={cN:"meta",b:/#\s*[a-z]+\b/,e:/$/,k:{"meta-keyword":"if else elif endif define undef warning error line pragma ifdef ifndef include"},c:[{b:/\\\n/,r:0},t.inherit(r,{cN:"meta-string"}),{cN:"meta-string",b:/<[^\n>]*>/,e:/$/,i:"\\n"},t.CLCM,t.CBCM]},a=t.IR+"\\s*\\(",c={keyword:"int float while private char catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return",built_in:"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr",literal:"true false nullptr NULL"},n=[e,t.CLCM,t.CBCM,s,r];return{aliases:["c","cc","h","c++","h++","hpp"],k:c,i:"",k:c,c:["self",e]},{b:t.IR+"::",k:c},{v:[{b:/=/,e:/;/},{b:/\(/,e:/\)/},{bK:"new throw return else",e:/;/}],k:c,c:n.concat([{b:/\(/,e:/\)/,k:c,c:n.concat(["self"]),r:0}]),r:0},{cN:"function",b:"("+t.IR+"[\\*&\\s]+)+"+a,rB:!0,e:/[{;=]/,eE:!0,k:c,i:/[^\w\s\*&]/,c:[{b:a,rB:!0,c:[t.TM],r:0},{cN:"params",b:/\(/,e:/\)/,k:c,r:0,c:[t.CLCM,t.CBCM,r,s,e]},t.CLCM,t.CBCM,i]}]),exports:{preprocessor:i,strings:r,k:c}}});hljs.registerLanguage("http",function(e){var t="HTTP/[0-9\\.]+";return{aliases:["https"],i:"\\S",c:[{b:"^"+t,e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{b:"^[A-Z]+ (.*?) "+t+"$",rB:!0,e:"$",c:[{cN:"string",b:" ",e:" ",eB:!0,eE:!0},{b:t},{cN:"keyword",b:"[A-Z]+"}]},{cN:"attribute",b:"^\\w",e:": ",eE:!0,i:"\\n|\\s|=",starts:{e:"$",r:0}},{b:"\\n\\n",starts:{sL:[],eW:!0}}]}});hljs.registerLanguage("python",function(e){var r={keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},b={cN:"meta",b:/^(>>>|\.\.\.) /},c={cN:"subst",b:/\{/,e:/\}/,k:r,i:/#/},a={cN:"string",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[b],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[b],r:10},{b:/(fr|rf|f)'''/,e:/'''/,c:[b,c]},{b:/(fr|rf|f)"""/,e:/"""/,c:[b,c]},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)"/,e:/"/},{b:/(fr|rf|f)'/,e:/'/,c:[c]},{b:/(fr|rf|f)"/,e:/"/,c:[c]},e.ASM,e.QSM]},s={cN:"number",r:0,v:[{b:e.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:e.CNR+"[lLjJ]?"}]},i={cN:"params",b:/\(/,e:/\)/,c:["self",b,s,a]};return c.c=[a,s,b],{aliases:["py","gyp"],k:r,i:/(<\/|->|\?)|=>/,c:[b,s,a,e.HCM,{v:[{cN:"function",bK:"def"},{cN:"class",bK:"class"}],e:/:/,i:/[${=;\n,]/,c:[e.UTM,i,{b:/->/,eW:!0,k:"None"}]},{cN:"meta",b:/^[\t ]*@/,e:/$/},{b:/\b(print|exec)\(/}]}});hljs.registerLanguage("ini",function(e){var b={cN:"string",c:[e.BE],v:[{b:"'''",e:"'''",r:10},{b:'"""',e:'"""',r:10},{b:'"',e:'"'},{b:"'",e:"'"}]};return{aliases:["toml"],cI:!0,i:/\S/,c:[e.C(";","$"),e.HCM,{cN:"section",b:/^\s*\[+/,e:/\]+/},{b:/^[a-z0-9\[\]_-]+\s*=\s*/,e:"$",rB:!0,c:[{cN:"attr",b:/[a-z0-9\[\]_-]+/},{b:/=/,eW:!0,r:0,c:[{cN:"literal",b:/\bon|off|true|false|yes|no\b/},{cN:"variable",v:[{b:/\$[\w\d"][\w\d_]*/},{b:/\$\{(.*?)}/}]},b,{cN:"number",b:/([\+\-]+)?[\d]+_[\d_]+/},e.NM]}]}]}});hljs.registerLanguage("java",function(e){var a="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",t=a+"(<"+a+"(\\s*,\\s*"+a+")*>)?",r="false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",s="\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?|\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))([eE][-+]?\\d+)?)[lLfF]?",c={cN:"number",b:s,r:0};return{aliases:["jsp"],k:r,i:/<\/|#/,c:[e.C("/\\*\\*","\\*/",{r:0,c:[{b:/\w+@/,r:0},{cN:"doctag",b:"@[A-Za-z]+"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:"class",bK:"class interface",e:/[{;=]/,eE:!0,k:"class interface",i:/[:"\[\]]/,c:[{bK:"extends implements"},e.UTM]},{bK:"new throw return else",r:0},{cN:"function",b:"("+t+"\\s+)+"+e.UIR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.UIR+"\\s*\\(",rB:!0,r:0,c:[e.UTM]},{cN:"params",b:/\(/,e:/\)/,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},c,{cN:"meta",b:"@[A-Za-z]+"}]}});hljs.registerLanguage("coffeescript",function(e){var c={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super yield import export from as default await then unless until loop of by when and or is isnt not",literal:"true false null undefined yes no on off",built_in:"npm require console print module global window document"},n="[A-Za-z$_][0-9A-Za-z$_]*",r={cN:"subst",b:/#\{/,e:/}/,k:c},i=[e.BNM,e.inherit(e.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/"""/,e:/"""/,c:[e.BE,r]},{b:/"/,e:/"/,c:[e.BE,r]}]},{cN:"regexp",v:[{b:"///",e:"///",c:[r,e.HCM]},{b:"//[gim]*",r:0},{b:/\/(?![ *])(\\\/|.)*?\/[gim]*(?=\W|$)/}]},{b:"@"+n},{sL:"javascript",eB:!0,eE:!0,v:[{b:"```",e:"```"},{b:"`",e:"`"}]}];r.c=i;var s=e.inherit(e.TM,{b:n}),t="(\\(.*\\))?\\s*\\B[-=]>",o={cN:"params",b:"\\([^\\(]",rB:!0,c:[{b:/\(/,e:/\)/,k:c,c:["self"].concat(i)}]};return{aliases:["coffee","cson","iced"],k:c,i:/\/\*/,c:i.concat([e.C("###","###"),e.HCM,{cN:"function",b:"^\\s*"+n+"\\s*=\\s*"+t,e:"[-=]>",rB:!0,c:[s,o]},{b:/[:\(,=]\s*/,r:0,c:[{cN:"function",b:t,e:"[-=]>",rB:!0,c:[o]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:!0,i:/[:="\[\]]/,c:[s]},s]},{b:n+":",e:":",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage("cs",function(e){var i={keyword:"abstract as base bool break byte case catch char checked const continue decimal default delegate do double else enum event explicit extern finally fixed float for foreach goto if implicit in int interface internal is lock long object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this try typeof uint ulong unchecked unsafe ushort using virtual void volatile while nameof add alias ascending async await by descending dynamic equals from get global group into join let on orderby partial remove select set value var where yield",literal:"null false true"},r={cN:"string",b:'@"',e:'"',c:[{b:'""'}]},t=e.inherit(r,{i:/\n/}),a={cN:"subst",b:"{",e:"}",k:i},n=e.inherit(a,{i:/\n/}),c={cN:"string",b:/\$"/,e:'"',i:/\n/,c:[{b:"{{"},{b:"}}"},e.BE,n]},s={cN:"string",b:/\$@"/,e:'"',c:[{b:"{{"},{b:"}}"},{b:'""'},a]},o=e.inherit(s,{i:/\n/,c:[{b:"{{"},{b:"}}"},{b:'""'},n]});a.c=[s,c,r,e.ASM,e.QSM,e.CNM,e.CBCM],n.c=[o,c,t,e.ASM,e.QSM,e.CNM,e.inherit(e.CBCM,{i:/\n/})];var l={v:[s,c,r,e.ASM,e.QSM]},b=e.IR+"(<"+e.IR+"(\\s*,\\s*"+e.IR+")*>)?(\\[\\])?";return{aliases:["csharp"],k:i,i:/::/,c:[e.C("///","$",{rB:!0,c:[{cN:"doctag",v:[{b:"///",r:0},{b:""},{b:""}]}]}),e.CLCM,e.CBCM,{cN:"meta",b:"#",e:"$",k:{"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum"}},l,e.CNM,{bK:"class interface",e:/[{;=]/,i:/[^\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:"namespace",e:/[{;=]/,i:/[^\s:]/,c:[e.inherit(e.TM,{b:"[a-zA-Z](\\.?\\w)*"}),e.CLCM,e.CBCM]},{bK:"new return throw await",r:0},{cN:"function",b:"("+b+"\\s+)+"+e.IR+"\\s*\\(",rB:!0,e:/[{;=]/,eE:!0,k:i,c:[{b:e.IR+"\\s*\\(",rB:!0,c:[e.TM],r:0},{cN:"params",b:/\(/,e:/\)/,eB:!0,eE:!0,k:i,r:0,c:[l,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage("sql",function(e){var t=e.C("--","$");return{cI:!0,i:/[<>{}*#]/,c:[{bK:"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke comment",e:/;/,eW:!0,l:/[\w\.]+/,k:{keyword:"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists keep keep_duplicates key keys kill language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek",literal:"true false null",built_in:"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void"},c:[{cN:"string",b:"'",e:"'",c:[e.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[e.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage("perl",function(e){var t="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when",r={cN:"subst",b:"[$@]\\{",e:"\\}",k:t},s={b:"->{",e:"}"},n={v:[{b:/\$\d/},{b:/[\$%@](\^\w\b|#\w+(::\w+)*|{\w+}|\w+(::\w*)*)/},{b:/[\$%@][^\s\w{]/,r:0}]},i=[e.BE,r,n],o=[n,e.HCM,e.C("^\\=\\w","\\=cut",{eW:!0}),s,{cN:"string",c:i,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[e.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[e.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+e.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[e.HCM,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[e.BE],r:0}]},{cN:"function",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",eE:!0,r:5,c:[e.TM]},{b:"-\\w\\b",r:0},{b:"^__DATA__$",e:"^__END__$",sL:"mojolicious",c:[{b:"^@@.*",e:"$",cN:"comment"}]}];return r.c=o,s.c=o,{aliases:["pl","pm"],l:/[\w\.]+/,k:t,c:o}});hljs.registerLanguage("objectivec",function(e){var t={cN:"built_in",b:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},_={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"},i=/[a-zA-Z@][a-zA-Z0-9_]*/,n="@interface @class @protocol @implementation";return{aliases:["mm","objc","obj-c"],k:_,l:i,i:""}]}]},{cN:"class",b:"("+n.split(" ").join("|")+")\\b",e:"({|$)",eE:!0,k:n,l:i,c:[e.UTM]},{b:"\\."+e.UIR,r:0}]}}); \ No newline at end of file diff --git a/vendor/github.com/schollz/cowyo/static/js/jquery-1.8.3.js b/vendor/github.com/schollz/cowyo/static/js/jquery-1.8.3.js new file mode 100644 index 0000000..8c24ffc --- /dev/null +++ b/vendor/github.com/schollz/cowyo/static/js/jquery-1.8.3.js @@ -0,0 +1,9472 @@ +/*! + * jQuery JavaScript Library v1.8.3 + * http://jquery.com/ + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * + * Copyright 2012 jQuery Foundation and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: Tue Nov 13 2012 08:20:33 GMT-0500 (Eastern Standard Time) + */ +(function( window, undefined ) { +var + // A central reference to the root jQuery(document) + rootjQuery, + + // The deferred used on DOM ready + readyList, + + // Use the correct document accordingly with window argument (sandbox) + document = window.document, + location = window.location, + navigator = window.navigator, + + // Map over jQuery in case of overwrite + _jQuery = window.jQuery, + + // Map over the $ in case of overwrite + _$ = window.$, + + // Save a reference to some core methods + core_push = Array.prototype.push, + core_slice = Array.prototype.slice, + core_indexOf = Array.prototype.indexOf, + core_toString = Object.prototype.toString, + core_hasOwn = Object.prototype.hasOwnProperty, + core_trim = String.prototype.trim, + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + // The jQuery object is actually just the init constructor 'enhanced' + return new jQuery.fn.init( selector, context, rootjQuery ); + }, + + // Used for matching numbers + core_pnum = /[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source, + + // Used for detecting and trimming whitespace + core_rnotwhite = /\S/, + core_rspace = /\s+/, + + // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE) + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + rquickExpr = /^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/, + + // Match a standalone tag + rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/, + + // JSON RegExp + rvalidchars = /^[\],:{}\s]*$/, + rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, + rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g, + rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g, + + // Matches dashed string for camelizing + rmsPrefix = /^-ms-/, + rdashAlpha = /-([\da-z])/gi, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return ( letter + "" ).toUpperCase(); + }, + + // The ready event handler and self cleanup method + DOMContentLoaded = function() { + if ( document.addEventListener ) { + document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); + jQuery.ready(); + } else if ( document.readyState === "complete" ) { + // we're here because readyState === "complete" in oldIE + // which is good enough for us to call the dom ready! + document.detachEvent( "onreadystatechange", DOMContentLoaded ); + jQuery.ready(); + } + }, + + // [[Class]] -> type pairs + class2type = {}; + +jQuery.fn = jQuery.prototype = { + constructor: jQuery, + init: function( selector, context, rootjQuery ) { + var match, elem, ret, doc; + + // Handle $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Handle $(DOMElement) + if ( selector.nodeType ) { + this.context = this[0] = selector; + this.length = 1; + return this; + } + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && (match[1] || !context) ) { + + // HANDLE: $(html) -> $(array) + if ( match[1] ) { + context = context instanceof jQuery ? context[0] : context; + doc = ( context && context.nodeType ? context.ownerDocument || context : document ); + + // scripts is true for back-compat + selector = jQuery.parseHTML( match[1], doc, true ); + if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { + this.attr.call( selector, context, true ); + } + + return jQuery.merge( this, selector ); + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[2] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id !== match[2] ) { + return rootjQuery.find( selector ); + } + + // Otherwise, we inject the element directly into the jQuery object + this.length = 1; + this[0] = elem; + } + + this.context = document; + this.selector = selector; + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || rootjQuery ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return rootjQuery.ready( selector ); + } + + if ( selector.selector !== undefined ) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }, + + // Start with an empty selector + selector: "", + + // The current version of jQuery being used + jquery: "1.8.3", + + // The default length of a jQuery object is 0 + length: 0, + + // The number of elements contained in the matched element set + size: function() { + return this.length; + }, + + toArray: function() { + return core_slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num == null ? + + // Return a 'clean' array + this.toArray() : + + // Return just the object + ( num < 0 ? this[ this.length + num ] : this[ num ] ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems, name, selector ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + ret.context = this.context; + + if ( name === "find" ) { + ret.selector = this.selector + ( this.selector ? " " : "" ) + selector; + } else if ( name ) { + ret.selector = this.selector + "." + name + "(" + selector + ")"; + } + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); + }, + + ready: function( fn ) { + // Add the callback + jQuery.ready.promise().done( fn ); + + return this; + }, + + eq: function( i ) { + i = +i; + return i === -1 ? + this.slice( i ) : + this.slice( i, i + 1 ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + slice: function() { + return this.pushStack( core_slice.apply( this, arguments ), + "slice", core_slice.call(arguments).join(",") ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map(this, function( elem, i ) { + return callback.call( elem, i, elem ); + })); + }, + + end: function() { + return this.prevObject || this.constructor(null); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: core_push, + sort: [].sort, + splice: [].splice +}; + +// Give the init function the jQuery prototype for later instantiation +jQuery.fn.init.prototype = jQuery.fn; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[0] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + target = arguments[1] || {}; + // skip the boolean and the target + i = 2; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction(target) ) { + target = {}; + } + + // extend jQuery itself if only one argument is passed + if ( length === i ) { + target = this; + --i; + } + + for ( ; i < length; i++ ) { + // Only deal with non-null/undefined values + if ( (options = arguments[ i ]) != null ) { + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray(src) ? src : []; + + } else { + clone = src && jQuery.isPlainObject(src) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend({ + noConflict: function( deep ) { + if ( window.$ === jQuery ) { + window.$ = _$; + } + + if ( deep && window.jQuery === jQuery ) { + window.jQuery = _jQuery; + } + + return jQuery; + }, + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Hold (or release) the ready event + holdReady: function( hold ) { + if ( hold ) { + jQuery.readyWait++; + } else { + jQuery.ready( true ); + } + }, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( !document.body ) { + return setTimeout( jQuery.ready, 1 ); + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + + // Trigger any bound ready events + if ( jQuery.fn.trigger ) { + jQuery( document ).trigger("ready").off("ready"); + } + }, + + // See test/unit/core.js for details concerning isFunction. + // Since version 1.3, DOM methods and functions like alert + // aren't supported. They return false on IE (#2968). + isFunction: function( obj ) { + return jQuery.type(obj) === "function"; + }, + + isArray: Array.isArray || function( obj ) { + return jQuery.type(obj) === "array"; + }, + + isWindow: function( obj ) { + return obj != null && obj == obj.window; + }, + + isNumeric: function( obj ) { + return !isNaN( parseFloat(obj) ) && isFinite( obj ); + }, + + type: function( obj ) { + return obj == null ? + String( obj ) : + class2type[ core_toString.call(obj) ] || "object"; + }, + + isPlainObject: function( obj ) { + // Must be an Object. + // Because of IE, we also have to check the presence of the constructor property. + // Make sure that DOM nodes and window objects don't pass through, as well + if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { + return false; + } + + try { + // Not own constructor property must be Object + if ( obj.constructor && + !core_hasOwn.call(obj, "constructor") && + !core_hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { + return false; + } + } catch ( e ) { + // IE8,9 Will throw exceptions on certain host objects #9897 + return false; + } + + // Own properties are enumerated firstly, so to speed up, + // if last one is own, then all properties are own. + + var key; + for ( key in obj ) {} + + return key === undefined || core_hasOwn.call( obj, key ); + }, + + isEmptyObject: function( obj ) { + var name; + for ( name in obj ) { + return false; + } + return true; + }, + + error: function( msg ) { + throw new Error( msg ); + }, + + // data: string of html + // context (optional): If specified, the fragment will be created in this context, defaults to document + // scripts (optional): If true, will include scripts passed in the html string + parseHTML: function( data, context, scripts ) { + var parsed; + if ( !data || typeof data !== "string" ) { + return null; + } + if ( typeof context === "boolean" ) { + scripts = context; + context = 0; + } + context = context || document; + + // Single tag + if ( (parsed = rsingleTag.exec( data )) ) { + return [ context.createElement( parsed[1] ) ]; + } + + parsed = jQuery.buildFragment( [ data ], context, scripts ? null : [] ); + return jQuery.merge( [], + (parsed.cacheable ? jQuery.clone( parsed.fragment ) : parsed.fragment).childNodes ); + }, + + parseJSON: function( data ) { + if ( !data || typeof data !== "string") { + return null; + } + + // Make sure leading/trailing whitespace is removed (IE can't handle it) + data = jQuery.trim( data ); + + // Attempt to parse using the native JSON parser first + if ( window.JSON && window.JSON.parse ) { + return window.JSON.parse( data ); + } + + // Make sure the incoming data is actual JSON + // Logic borrowed from http://json.org/json2.js + if ( rvalidchars.test( data.replace( rvalidescape, "@" ) + .replace( rvalidtokens, "]" ) + .replace( rvalidbraces, "")) ) { + + return ( new Function( "return " + data ) )(); + + } + jQuery.error( "Invalid JSON: " + data ); + }, + + // Cross-browser xml parsing + parseXML: function( data ) { + var xml, tmp; + if ( !data || typeof data !== "string" ) { + return null; + } + try { + if ( window.DOMParser ) { // Standard + tmp = new DOMParser(); + xml = tmp.parseFromString( data , "text/xml" ); + } else { // IE + xml = new ActiveXObject( "Microsoft.XMLDOM" ); + xml.async = "false"; + xml.loadXML( data ); + } + } catch( e ) { + xml = undefined; + } + if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; + }, + + noop: function() {}, + + // Evaluates a script in a global context + // Workarounds based on findings by Jim Driscoll + // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context + globalEval: function( data ) { + if ( data && core_rnotwhite.test( data ) ) { + // We use execScript on Internet Explorer + // We use an anonymous function so that context is window + // rather than jQuery in Firefox + ( window.execScript || function( data ) { + window[ "eval" ].call( window, data ); + } )( data ); + } + }, + + // Convert dashed to camelCase; used by the css and data modules + // Microsoft forgot to hump their vendor prefix (#9572) + camelCase: function( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + }, + + // args is for internal usage only + each: function( obj, callback, args ) { + var name, + i = 0, + length = obj.length, + isObj = length === undefined || jQuery.isFunction( obj ); + + if ( args ) { + if ( isObj ) { + for ( name in obj ) { + if ( callback.apply( obj[ name ], args ) === false ) { + break; + } + } + } else { + for ( ; i < length; ) { + if ( callback.apply( obj[ i++ ], args ) === false ) { + break; + } + } + } + + // A special, fast, case for the most common use of each + } else { + if ( isObj ) { + for ( name in obj ) { + if ( callback.call( obj[ name ], name, obj[ name ] ) === false ) { + break; + } + } + } else { + for ( ; i < length; ) { + if ( callback.call( obj[ i ], i, obj[ i++ ] ) === false ) { + break; + } + } + } + } + + return obj; + }, + + // Use native String.trim function wherever possible + trim: core_trim && !core_trim.call("\uFEFF\xA0") ? + function( text ) { + return text == null ? + "" : + core_trim.call( text ); + } : + + // Otherwise use our own trimming functionality + function( text ) { + return text == null ? + "" : + ( text + "" ).replace( rtrim, "" ); + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var type, + ret = results || []; + + if ( arr != null ) { + // The window, strings (and functions) also have 'length' + // Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930 + type = jQuery.type( arr ); + + if ( arr.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( arr ) ) { + core_push.call( ret, arr ); + } else { + jQuery.merge( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + var len; + + if ( arr ) { + if ( core_indexOf ) { + return core_indexOf.call( arr, elem, i ); + } + + len = arr.length; + i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; + + for ( ; i < len; i++ ) { + // Skip accessing in sparse arrays + if ( i in arr && arr[ i ] === elem ) { + return i; + } + } + } + + return -1; + }, + + merge: function( first, second ) { + var l = second.length, + i = first.length, + j = 0; + + if ( typeof l === "number" ) { + for ( ; j < l; j++ ) { + first[ i++ ] = second[ j ]; + } + + } else { + while ( second[j] !== undefined ) { + first[ i++ ] = second[ j++ ]; + } + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, inv ) { + var retVal, + ret = [], + i = 0, + length = elems.length; + inv = !!inv; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + retVal = !!callback( elems[ i ], i ); + if ( inv !== retVal ) { + ret.push( elems[ i ] ); + } + } + + return ret; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var value, key, + ret = [], + i = 0, + length = elems.length, + // jquery objects are treated as arrays + isArray = elems instanceof jQuery || length !== undefined && typeof length === "number" && ( ( length > 0 && elems[ 0 ] && elems[ length -1 ] ) || length === 0 || jQuery.isArray( elems ) ) ; + + // Go through the array, translating each of the items to their + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + + // Go through every key on the object, + } else { + for ( key in elems ) { + value = callback( elems[ key ], key, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + } + + // Flatten any nested arrays + return ret.concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // Bind a function to a context, optionally partially applying any + // arguments. + proxy: function( fn, context ) { + var tmp, args, proxy; + + if ( typeof context === "string" ) { + tmp = fn[ context ]; + context = fn; + fn = tmp; + } + + // Quick check to determine if target is callable, in the spec + // this throws a TypeError, but we will just return undefined. + if ( !jQuery.isFunction( fn ) ) { + return undefined; + } + + // Simulated bind + args = core_slice.call( arguments, 2 ); + proxy = function() { + return fn.apply( context, args.concat( core_slice.call( arguments ) ) ); + }; + + // Set the guid of unique handler to the same of original handler, so it can be removed + proxy.guid = fn.guid = fn.guid || jQuery.guid++; + + return proxy; + }, + + // Multifunctional method to get and set values of a collection + // The value/s can optionally be executed if it's a function + access: function( elems, fn, key, value, chainable, emptyGet, pass ) { + var exec, + bulk = key == null, + i = 0, + length = elems.length; + + // Sets many values + if ( key && typeof key === "object" ) { + for ( i in key ) { + jQuery.access( elems, fn, i, key[i], 1, emptyGet, value ); + } + chainable = 1; + + // Sets one value + } else if ( value !== undefined ) { + // Optionally, function values get executed if exec is true + exec = pass === undefined && jQuery.isFunction( value ); + + if ( bulk ) { + // Bulk operations only iterate when executing function values + if ( exec ) { + exec = fn; + fn = function( elem, key, value ) { + return exec.call( jQuery( elem ), value ); + }; + + // Otherwise they run against the entire set + } else { + fn.call( elems, value ); + fn = null; + } + } + + if ( fn ) { + for (; i < length; i++ ) { + fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass ); + } + } + + chainable = 1; + } + + return chainable ? + elems : + + // Gets + bulk ? + fn.call( elems ) : + length ? fn( elems[0], key ) : emptyGet; + }, + + now: function() { + return ( new Date() ).getTime(); + } +}); + +jQuery.ready.promise = function( obj ) { + if ( !readyList ) { + + readyList = jQuery.Deferred(); + + // Catch cases where $(document).ready() is called after the browser event has already occurred. + // we once tried to use readyState "interactive" here, but it caused issues like the one + // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 + if ( document.readyState === "complete" ) { + // Handle it asynchronously to allow scripts the opportunity to delay ready + setTimeout( jQuery.ready, 1 ); + + // Standards-based browsers support DOMContentLoaded + } else if ( document.addEventListener ) { + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", jQuery.ready, false ); + + // If IE event model is used + } else { + // Ensure firing before onload, maybe late but safe also for iframes + document.attachEvent( "onreadystatechange", DOMContentLoaded ); + + // A fallback to window.onload, that will always work + window.attachEvent( "onload", jQuery.ready ); + + // If IE and not a frame + // continually check to see if the document is ready + var top = false; + + try { + top = window.frameElement == null && document.documentElement; + } catch(e) {} + + if ( top && top.doScroll ) { + (function doScrollCheck() { + if ( !jQuery.isReady ) { + + try { + // Use the trick by Diego Perini + // http://javascript.nwbox.com/IEContentLoaded/ + top.doScroll("left"); + } catch(e) { + return setTimeout( doScrollCheck, 50 ); + } + + // and execute any waiting functions + jQuery.ready(); + } + })(); + } + } + } + return readyList.promise( obj ); +}; + +// Populate the class2type map +jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +}); + +// All jQuery objects should point back to these +rootjQuery = jQuery(document); +// String to Object options format cache +var optionsCache = {}; + +// Convert String-formatted options into Object-formatted ones and store in cache +function createOptions( options ) { + var object = optionsCache[ options ] = {}; + jQuery.each( options.split( core_rspace ), function( _, flag ) { + object[ flag ] = true; + }); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + ( optionsCache[ options ] || createOptions( options ) ) : + jQuery.extend( {}, options ); + + var // Last fire value (for non-forgettable lists) + memory, + // Flag to know if list was already fired + fired, + // Flag to know if list is currently firing + firing, + // First callback to fire (used internally by add and fireWith) + firingStart, + // End of the loop when firing + firingLength, + // Index of currently firing callback (modified by remove if needed) + firingIndex, + // Actual callback list + list = [], + // Stack of fire calls for repeatable lists + stack = !options.once && [], + // Fire callbacks + fire = function( data ) { + memory = options.memory && data; + fired = true; + firingIndex = firingStart || 0; + firingStart = 0; + firingLength = list.length; + firing = true; + for ( ; list && firingIndex < firingLength; firingIndex++ ) { + if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { + memory = false; // To prevent further calls using add + break; + } + } + firing = false; + if ( list ) { + if ( stack ) { + if ( stack.length ) { + fire( stack.shift() ); + } + } else if ( memory ) { + list = []; + } else { + self.disable(); + } + } + }, + // Actual Callbacks object + self = { + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + // First, we save the current length + var start = list.length; + (function add( args ) { + jQuery.each( args, function( _, arg ) { + var type = jQuery.type( arg ); + if ( type === "function" ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && type !== "string" ) { + // Inspect recursively + add( arg ); + } + }); + })( arguments ); + // Do we need to add the callbacks to the + // current firing batch? + if ( firing ) { + firingLength = list.length; + // With memory, if we're not firing then + // we should call right away + } else if ( memory ) { + firingStart = start; + fire( memory ); + } + } + return this; + }, + // Remove a callback from the list + remove: function() { + if ( list ) { + jQuery.each( arguments, function( _, arg ) { + var index; + while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + // Handle firing indexes + if ( firing ) { + if ( index <= firingLength ) { + firingLength--; + } + if ( index <= firingIndex ) { + firingIndex--; + } + } + } + }); + } + return this; + }, + // Control if a given callback is in the list + has: function( fn ) { + return jQuery.inArray( fn, list ) > -1; + }, + // Remove all callbacks from the list + empty: function() { + list = []; + return this; + }, + // Have the list do nothing anymore + disable: function() { + list = stack = memory = undefined; + return this; + }, + // Is it disabled? + disabled: function() { + return !list; + }, + // Lock the list in its current state + lock: function() { + stack = undefined; + if ( !memory ) { + self.disable(); + } + return this; + }, + // Is it locked? + locked: function() { + return !stack; + }, + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + if ( list && ( !fired || stack ) ) { + if ( firing ) { + stack.push( args ); + } else { + fire( args ); + } + } + return this; + }, + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; +jQuery.extend({ + + Deferred: function( func ) { + var tuples = [ + // action, add listener, listener list, final state + [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], + [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], + [ "notify", "progress", jQuery.Callbacks("memory") ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + then: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + return jQuery.Deferred(function( newDefer ) { + jQuery.each( tuples, function( i, tuple ) { + var action = tuple[ 0 ], + fn = fns[ i ]; + // deferred[ done | fail | progress ] for forwarding actions to newDefer + deferred[ tuple[1] ]( jQuery.isFunction( fn ) ? + function() { + var returned = fn.apply( this, arguments ); + if ( returned && jQuery.isFunction( returned.promise ) ) { + returned.promise() + .done( newDefer.resolve ) + .fail( newDefer.reject ) + .progress( newDefer.notify ); + } else { + newDefer[ action + "With" ]( this === deferred ? newDefer : this, [ returned ] ); + } + } : + newDefer[ action ] + ); + }); + fns = null; + }).promise(); + }, + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Keep pipe for back-compat + promise.pipe = promise.then; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 3 ]; + + // promise[ done | fail | progress ] = list.add + promise[ tuple[1] ] = list.add; + + // Handle state + if ( stateString ) { + list.add(function() { + // state = [ resolved | rejected ] + state = stateString; + + // [ reject_list | resolve_list ].disable; progress_list.lock + }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); + } + + // deferred[ resolve | reject | notify ] = list.fire + deferred[ tuple[0] ] = list.fire; + deferred[ tuple[0] + "With" ] = list.fireWith; + }); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( subordinate /* , ..., subordinateN */ ) { + var i = 0, + resolveValues = core_slice.call( arguments ), + length = resolveValues.length, + + // the count of uncompleted subordinates + remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, + + // the master Deferred. If resolveValues consist of only a single Deferred, just use that. + deferred = remaining === 1 ? subordinate : jQuery.Deferred(), + + // Update function for both resolve and progress values + updateFunc = function( i, contexts, values ) { + return function( value ) { + contexts[ i ] = this; + values[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value; + if( values === progressValues ) { + deferred.notifyWith( contexts, values ); + } else if ( !( --remaining ) ) { + deferred.resolveWith( contexts, values ); + } + }; + }, + + progressValues, progressContexts, resolveContexts; + + // add listeners to Deferred subordinates; treat others as resolved + if ( length > 1 ) { + progressValues = new Array( length ); + progressContexts = new Array( length ); + resolveContexts = new Array( length ); + for ( ; i < length; i++ ) { + if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { + resolveValues[ i ].promise() + .done( updateFunc( i, resolveContexts, resolveValues ) ) + .fail( deferred.reject ) + .progress( updateFunc( i, progressContexts, progressValues ) ); + } else { + --remaining; + } + } + } + + // if we're not waiting on anything, resolve the master + if ( !remaining ) { + deferred.resolveWith( resolveContexts, resolveValues ); + } + + return deferred.promise(); + } +}); +jQuery.support = (function() { + + var support, + all, + a, + select, + opt, + input, + fragment, + eventName, + i, + isSupported, + clickFn, + div = document.createElement("div"); + + // Setup + div.setAttribute( "className", "t" ); + div.innerHTML = "
    a"; + + // Support tests won't run in some limited or non-browser environments + all = div.getElementsByTagName("*"); + a = div.getElementsByTagName("a")[ 0 ]; + if ( !all || !a || !all.length ) { + return {}; + } + + // First batch of tests + select = document.createElement("select"); + opt = select.appendChild( document.createElement("option") ); + input = div.getElementsByTagName("input")[ 0 ]; + + a.style.cssText = "top:1px;float:left;opacity:.5"; + support = { + // IE strips leading whitespace when .innerHTML is used + leadingWhitespace: ( div.firstChild.nodeType === 3 ), + + // Make sure that tbody elements aren't automatically inserted + // IE will insert them into empty tables + tbody: !div.getElementsByTagName("tbody").length, + + // Make sure that link elements get serialized correctly by innerHTML + // This requires a wrapper element in IE + htmlSerialize: !!div.getElementsByTagName("link").length, + + // Get the style information from getAttribute + // (IE uses .cssText instead) + style: /top/.test( a.getAttribute("style") ), + + // Make sure that URLs aren't manipulated + // (IE normalizes it by default) + hrefNormalized: ( a.getAttribute("href") === "/a" ), + + // Make sure that element opacity exists + // (IE uses filter instead) + // Use a regex to work around a WebKit issue. See #5145 + opacity: /^0.5/.test( a.style.opacity ), + + // Verify style float existence + // (IE uses styleFloat instead of cssFloat) + cssFloat: !!a.style.cssFloat, + + // Make sure that if no value is specified for a checkbox + // that it defaults to "on". + // (WebKit defaults to "" instead) + checkOn: ( input.value === "on" ), + + // Make sure that a selected-by-default option has a working selected property. + // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) + optSelected: opt.selected, + + // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) + getSetAttribute: div.className !== "t", + + // Tests for enctype support on a form (#6743) + enctype: !!document.createElement("form").enctype, + + // Makes sure cloning an html5 element does not cause problems + // Where outerHTML is undefined, this still works + html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav>", + + // jQuery.support.boxModel DEPRECATED in 1.8 since we don't support Quirks Mode + boxModel: ( document.compatMode === "CSS1Compat" ), + + // Will be defined later + submitBubbles: true, + changeBubbles: true, + focusinBubbles: false, + deleteExpando: true, + noCloneEvent: true, + inlineBlockNeedsLayout: false, + shrinkWrapBlocks: false, + reliableMarginRight: true, + boxSizingReliable: true, + pixelPosition: false + }; + + // Make sure checked status is properly cloned + input.checked = true; + support.noCloneChecked = input.cloneNode( true ).checked; + + // Make sure that the options inside disabled selects aren't marked as disabled + // (WebKit marks them as disabled) + select.disabled = true; + support.optDisabled = !opt.disabled; + + // Test to see if it's possible to delete an expando from an element + // Fails in Internet Explorer + try { + delete div.test; + } catch( e ) { + support.deleteExpando = false; + } + + if ( !div.addEventListener && div.attachEvent && div.fireEvent ) { + div.attachEvent( "onclick", clickFn = function() { + // Cloning a node shouldn't copy over any + // bound event handlers (IE does this) + support.noCloneEvent = false; + }); + div.cloneNode( true ).fireEvent("onclick"); + div.detachEvent( "onclick", clickFn ); + } + + // Check if a radio maintains its value + // after being appended to the DOM + input = document.createElement("input"); + input.value = "t"; + input.setAttribute( "type", "radio" ); + support.radioValue = input.value === "t"; + + input.setAttribute( "checked", "checked" ); + + // #11217 - WebKit loses check when the name is after the checked attribute + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + fragment = document.createDocumentFragment(); + fragment.appendChild( div.lastChild ); + + // WebKit doesn't clone checked state correctly in fragments + support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Check if a disconnected checkbox will retain its checked + // value of true after appended to the DOM (IE6/7) + support.appendChecked = input.checked; + + fragment.removeChild( input ); + fragment.appendChild( div ); + + // Technique from Juriy Zaytsev + // http://perfectionkills.com/detecting-event-support-without-browser-sniffing/ + // We only care about the case where non-standard event systems + // are used, namely in IE. Short-circuiting here helps us to + // avoid an eval call (in setAttribute) which can cause CSP + // to go haywire. See: https://developer.mozilla.org/en/Security/CSP + if ( div.attachEvent ) { + for ( i in { + submit: true, + change: true, + focusin: true + }) { + eventName = "on" + i; + isSupported = ( eventName in div ); + if ( !isSupported ) { + div.setAttribute( eventName, "return;" ); + isSupported = ( typeof div[ eventName ] === "function" ); + } + support[ i + "Bubbles" ] = isSupported; + } + } + + // Run tests that need a body at doc ready + jQuery(function() { + var container, div, tds, marginDiv, + divReset = "padding:0;margin:0;border:0;display:block;overflow:hidden;", + body = document.getElementsByTagName("body")[0]; + + if ( !body ) { + // Return for frameset docs that don't have a body + return; + } + + container = document.createElement("div"); + container.style.cssText = "visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px"; + body.insertBefore( container, body.firstChild ); + + // Construct the test element + div = document.createElement("div"); + container.appendChild( div ); + + // Check if table cells still have offsetWidth/Height when they are set + // to display:none and there are still other visible table cells in a + // table row; if so, offsetWidth/Height are not reliable for use when + // determining if an element has been hidden directly using + // display:none (it is still safe to use offsets if a parent element is + // hidden; don safety goggles and see bug #4512 for more information). + // (only IE 8 fails this test) + div.innerHTML = "
    t
    "; + tds = div.getElementsByTagName("td"); + tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none"; + isSupported = ( tds[ 0 ].offsetHeight === 0 ); + + tds[ 0 ].style.display = ""; + tds[ 1 ].style.display = "none"; + + // Check if empty table cells still have offsetWidth/Height + // (IE <= 8 fail this test) + support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); + + // Check box-sizing and margin behavior + div.innerHTML = ""; + div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;"; + support.boxSizing = ( div.offsetWidth === 4 ); + support.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== 1 ); + + // NOTE: To any future maintainer, we've window.getComputedStyle + // because jsdom on node.js will break without it. + if ( window.getComputedStyle ) { + support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%"; + support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px"; + + // Check if div with explicit width and no margin-right incorrectly + // gets computed margin-right based on width of container. For more + // info see bug #3333 + // Fails in WebKit before Feb 2011 nightlies + // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right + marginDiv = document.createElement("div"); + marginDiv.style.cssText = div.style.cssText = divReset; + marginDiv.style.marginRight = marginDiv.style.width = "0"; + div.style.width = "1px"; + div.appendChild( marginDiv ); + support.reliableMarginRight = + !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight ); + } + + if ( typeof div.style.zoom !== "undefined" ) { + // Check if natively block-level elements act like inline-block + // elements when setting their display to 'inline' and giving + // them layout + // (IE < 8 does this) + div.innerHTML = ""; + div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1"; + support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); + + // Check if elements with layout shrink-wrap their children + // (IE 6 does this) + div.style.display = "block"; + div.style.overflow = "visible"; + div.innerHTML = "
    "; + div.firstChild.style.width = "5px"; + support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); + + container.style.zoom = 1; + } + + // Null elements to avoid leaks in IE + body.removeChild( container ); + container = div = tds = marginDiv = null; + }); + + // Null elements to avoid leaks in IE + fragment.removeChild( div ); + all = a = select = opt = input = fragment = div = null; + + return support; +})(); +var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/, + rmultiDash = /([A-Z])/g; + +jQuery.extend({ + cache: {}, + + deletedIds: [], + + // Remove at next major release (1.9/2.0) + uuid: 0, + + // Unique for each copy of jQuery on the page + // Non-digits removed to match rinlinejQuery + expando: "jQuery" + ( jQuery.fn.jquery + Math.random() ).replace( /\D/g, "" ), + + // The following elements throw uncatchable exceptions if you + // attempt to add expando properties to them. + noData: { + "embed": true, + // Ban all objects except for Flash (which handle expandos) + "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", + "applet": true + }, + + hasData: function( elem ) { + elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; + return !!elem && !isEmptyDataObject( elem ); + }, + + data: function( elem, name, data, pvt /* Internal Use Only */ ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var thisCache, ret, + internalKey = jQuery.expando, + getByName = typeof name === "string", + + // We have to handle DOM nodes and JS objects differently because IE6-7 + // can't GC object references properly across the DOM-JS boundary + isNode = elem.nodeType, + + // Only DOM nodes need the global jQuery cache; JS object data is + // attached directly to the object so GC can occur automatically + cache = isNode ? jQuery.cache : elem, + + // Only defining an ID for JS objects if its cache already exists allows + // the code to shortcut on the same path as a DOM node with no cache + id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; + + // Avoid doing any more work than we need to when trying to get data on an + // object that has no data at all + if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && getByName && data === undefined ) { + return; + } + + if ( !id ) { + // Only DOM nodes need a new unique ID for each element since their data + // ends up in the global cache + if ( isNode ) { + elem[ internalKey ] = id = jQuery.deletedIds.pop() || jQuery.guid++; + } else { + id = internalKey; + } + } + + if ( !cache[ id ] ) { + cache[ id ] = {}; + + // Avoids exposing jQuery metadata on plain JS objects when the object + // is serialized using JSON.stringify + if ( !isNode ) { + cache[ id ].toJSON = jQuery.noop; + } + } + + // An object can be passed to jQuery.data instead of a key/value pair; this gets + // shallow copied over onto the existing cache + if ( typeof name === "object" || typeof name === "function" ) { + if ( pvt ) { + cache[ id ] = jQuery.extend( cache[ id ], name ); + } else { + cache[ id ].data = jQuery.extend( cache[ id ].data, name ); + } + } + + thisCache = cache[ id ]; + + // jQuery data() is stored in a separate object inside the object's internal data + // cache in order to avoid key collisions between internal data and user-defined + // data. + if ( !pvt ) { + if ( !thisCache.data ) { + thisCache.data = {}; + } + + thisCache = thisCache.data; + } + + if ( data !== undefined ) { + thisCache[ jQuery.camelCase( name ) ] = data; + } + + // Check for both converted-to-camel and non-converted data property names + // If a data property was specified + if ( getByName ) { + + // First Try to find as-is property data + ret = thisCache[ name ]; + + // Test for null|undefined property data + if ( ret == null ) { + + // Try to find the camelCased property + ret = thisCache[ jQuery.camelCase( name ) ]; + } + } else { + ret = thisCache; + } + + return ret; + }, + + removeData: function( elem, name, pvt /* Internal Use Only */ ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var thisCache, i, l, + + isNode = elem.nodeType, + + // See jQuery.data for more information + cache = isNode ? jQuery.cache : elem, + id = isNode ? elem[ jQuery.expando ] : jQuery.expando; + + // If there is already no cache entry for this object, there is no + // purpose in continuing + if ( !cache[ id ] ) { + return; + } + + if ( name ) { + + thisCache = pvt ? cache[ id ] : cache[ id ].data; + + if ( thisCache ) { + + // Support array or space separated string names for data keys + if ( !jQuery.isArray( name ) ) { + + // try the string as a key before any manipulation + if ( name in thisCache ) { + name = [ name ]; + } else { + + // split the camel cased version by spaces unless a key with the spaces exists + name = jQuery.camelCase( name ); + if ( name in thisCache ) { + name = [ name ]; + } else { + name = name.split(" "); + } + } + } + + for ( i = 0, l = name.length; i < l; i++ ) { + delete thisCache[ name[i] ]; + } + + // If there is no data left in the cache, we want to continue + // and let the cache object itself get destroyed + if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) { + return; + } + } + } + + // See jQuery.data for more information + if ( !pvt ) { + delete cache[ id ].data; + + // Don't destroy the parent cache unless the internal data object + // had been the only thing left in it + if ( !isEmptyDataObject( cache[ id ] ) ) { + return; + } + } + + // Destroy the cache + if ( isNode ) { + jQuery.cleanData( [ elem ], true ); + + // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) + } else if ( jQuery.support.deleteExpando || cache != cache.window ) { + delete cache[ id ]; + + // When all else fails, null + } else { + cache[ id ] = null; + } + }, + + // For internal use only. + _data: function( elem, name, data ) { + return jQuery.data( elem, name, data, true ); + }, + + // A method for determining if a DOM node can handle the data expando + acceptData: function( elem ) { + var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ]; + + // nodes accept data unless otherwise specified; rejection can be conditional + return !noData || noData !== true && elem.getAttribute("classid") === noData; + } +}); + +jQuery.fn.extend({ + data: function( key, value ) { + var parts, part, attr, name, l, + elem = this[0], + i = 0, + data = null; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = jQuery.data( elem ); + + if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { + attr = elem.attributes; + for ( l = attr.length; i < l; i++ ) { + name = attr[i].name; + + if ( !name.indexOf( "data-" ) ) { + name = jQuery.camelCase( name.substring(5) ); + + dataAttr( elem, name, data[ name ] ); + } + } + jQuery._data( elem, "parsedAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each(function() { + jQuery.data( this, key ); + }); + } + + parts = key.split( ".", 2 ); + parts[1] = parts[1] ? "." + parts[1] : ""; + part = parts[1] + "!"; + + return jQuery.access( this, function( value ) { + + if ( value === undefined ) { + data = this.triggerHandler( "getData" + part, [ parts[0] ] ); + + // Try to fetch any internally stored data first + if ( data === undefined && elem ) { + data = jQuery.data( elem, key ); + data = dataAttr( elem, key, data ); + } + + return data === undefined && parts[1] ? + this.data( parts[0] ) : + data; + } + + parts[1] = value; + this.each(function() { + var self = jQuery( this ); + + self.triggerHandler( "setData" + part, parts ); + jQuery.data( this, key, value ); + self.triggerHandler( "changeData" + part, parts ); + }); + }, null, value, arguments.length > 1, null, false ); + }, + + removeData: function( key ) { + return this.each(function() { + jQuery.removeData( this, key ); + }); + } +}); + +function dataAttr( elem, key, data ) { + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + + var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); + + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + // Only convert to a number if it doesn't change the string + +data + "" === data ? +data : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch( e ) {} + + // Make sure we set the data so it isn't changed later + jQuery.data( elem, key, data ); + + } else { + data = undefined; + } + } + + return data; +} + +// checks a cache object for emptiness +function isEmptyDataObject( obj ) { + var name; + for ( name in obj ) { + + // if the public data object is empty, the private is still empty + if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { + continue; + } + if ( name !== "toJSON" ) { + return false; + } + } + + return true; +} +jQuery.extend({ + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = jQuery._data( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || jQuery.isArray(data) ) { + queue = jQuery._data( elem, type, jQuery.makeArray(data) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // not intended for public consumption - generates a queueHooks object, or returns the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return jQuery._data( elem, key ) || jQuery._data( elem, key, { + empty: jQuery.Callbacks("once memory").add(function() { + jQuery.removeData( elem, type + "queue", true ); + jQuery.removeData( elem, key, true ); + }) + }); + } +}); + +jQuery.fn.extend({ + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[0], type ); + } + + return data === undefined ? + this : + this.each(function() { + var queue = jQuery.queue( this, type, data ); + + // ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[0] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + }); + }, + dequeue: function( type ) { + return this.each(function() { + jQuery.dequeue( this, type ); + }); + }, + // Based off of the plugin by Clint Helfers, with permission. + // http://blindsignals.com/index.php/2009/07/jquery-delay/ + delay: function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = setTimeout( next, time ); + hooks.stop = function() { + clearTimeout( timeout ); + }; + }); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while( i-- ) { + tmp = jQuery._data( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +}); +var nodeHook, boolHook, fixSpecified, + rclass = /[\t\r\n]/g, + rreturn = /\r/g, + rtype = /^(?:button|input)$/i, + rfocusable = /^(?:button|input|object|select|textarea)$/i, + rclickable = /^a(?:rea|)$/i, + rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i, + getSetAttribute = jQuery.support.getSetAttribute; + +jQuery.fn.extend({ + attr: function( name, value ) { + return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each(function() { + jQuery.removeAttr( this, name ); + }); + }, + + prop: function( name, value ) { + return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + name = jQuery.propFix[ name ] || name; + return this.each(function() { + // try/catch handles cases where IE balks (such as removing a property on window) + try { + this[ name ] = undefined; + delete this[ name ]; + } catch( e ) {} + }); + }, + + addClass: function( value ) { + var classNames, i, l, elem, + setClass, c, cl; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).addClass( value.call(this, j, this.className) ); + }); + } + + if ( value && typeof value === "string" ) { + classNames = value.split( core_rspace ); + + for ( i = 0, l = this.length; i < l; i++ ) { + elem = this[ i ]; + + if ( elem.nodeType === 1 ) { + if ( !elem.className && classNames.length === 1 ) { + elem.className = value; + + } else { + setClass = " " + elem.className + " "; + + for ( c = 0, cl = classNames.length; c < cl; c++ ) { + if ( setClass.indexOf( " " + classNames[ c ] + " " ) < 0 ) { + setClass += classNames[ c ] + " "; + } + } + elem.className = jQuery.trim( setClass ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var removes, className, elem, c, cl, i, l; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).removeClass( value.call(this, j, this.className) ); + }); + } + if ( (value && typeof value === "string") || value === undefined ) { + removes = ( value || "" ).split( core_rspace ); + + for ( i = 0, l = this.length; i < l; i++ ) { + elem = this[ i ]; + if ( elem.nodeType === 1 && elem.className ) { + + className = (" " + elem.className + " ").replace( rclass, " " ); + + // loop over each item in the removal list + for ( c = 0, cl = removes.length; c < cl; c++ ) { + // Remove until there is nothing to remove, + while ( className.indexOf(" " + removes[ c ] + " ") >= 0 ) { + className = className.replace( " " + removes[ c ] + " " , " " ); + } + } + elem.className = value ? jQuery.trim( className ) : ""; + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isBool = typeof stateVal === "boolean"; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( i ) { + jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); + }); + } + + return this.each(function() { + if ( type === "string" ) { + // toggle individual class names + var className, + i = 0, + self = jQuery( this ), + state = stateVal, + classNames = value.split( core_rspace ); + + while ( (className = classNames[ i++ ]) ) { + // check each className given, space separated list + state = isBool ? state : !self.hasClass( className ); + self[ state ? "addClass" : "removeClass" ]( className ); + } + + } else if ( type === "undefined" || type === "boolean" ) { + if ( this.className ) { + // store className if set + jQuery._data( this, "__className__", this.className ); + } + + // toggle whole className + this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; + } + }); + }, + + hasClass: function( selector ) { + var className = " " + selector + " ", + i = 0, + l = this.length; + for ( ; i < l; i++ ) { + if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) { + return true; + } + } + + return false; + }, + + val: function( value ) { + var hooks, ret, isFunction, + elem = this[0]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { + return ret; + } + + ret = elem.value; + + return typeof ret === "string" ? + // handle most common string cases + ret.replace(rreturn, "") : + // handle cases where value is null/undef or number + ret == null ? "" : ret; + } + + return; + } + + isFunction = jQuery.isFunction( value ); + + return this.each(function( i ) { + var val, + self = jQuery(this); + + if ( this.nodeType !== 1 ) { + return; + } + + if ( isFunction ) { + val = value.call( this, i, self.val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + } else if ( typeof val === "number" ) { + val += ""; + } else if ( jQuery.isArray( val ) ) { + val = jQuery.map(val, function ( value ) { + return value == null ? "" : value + ""; + }); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + }); + } +}); + +jQuery.extend({ + valHooks: { + option: { + get: function( elem ) { + // attributes.value is undefined in Blackberry 4.7 but + // uses .value. See #6932 + var val = elem.attributes.value; + return !val || val.specified ? elem.value : elem.text; + } + }, + select: { + get: function( elem ) { + var value, option, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one" || index < 0, + values = one ? null : [], + max = one ? index + 1 : options.length, + i = index < 0 ? + max : + one ? index : 0; + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // oldIE doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + // Don't return options that are disabled or in a disabled optgroup + ( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) && + ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var values = jQuery.makeArray( value ); + + jQuery(elem).find("option").each(function() { + this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; + }); + + if ( !values.length ) { + elem.selectedIndex = -1; + } + return values; + } + } + }, + + // Unused in 1.8, left in so attrFn-stabbers won't die; remove in 1.9 + attrFn: {}, + + attr: function( elem, name, value, pass ) { + var ret, hooks, notxml, + nType = elem.nodeType; + + // don't get/set attributes on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( pass && jQuery.isFunction( jQuery.fn[ name ] ) ) { + return jQuery( elem )[ name ]( value ); + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + // All attributes are lowercase + // Grab necessary hook if one is defined + if ( notxml ) { + name = name.toLowerCase(); + hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook ); + } + + if ( value !== undefined ) { + + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + + } else if ( hooks && "set" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + elem.setAttribute( name, value + "" ); + return value; + } + + } else if ( hooks && "get" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + + ret = elem.getAttribute( name ); + + // Non-existent attributes return null, we normalize to undefined + return ret === null ? + undefined : + ret; + } + }, + + removeAttr: function( elem, value ) { + var propName, attrNames, name, isBool, + i = 0; + + if ( value && elem.nodeType === 1 ) { + + attrNames = value.split( core_rspace ); + + for ( ; i < attrNames.length; i++ ) { + name = attrNames[ i ]; + + if ( name ) { + propName = jQuery.propFix[ name ] || name; + isBool = rboolean.test( name ); + + // See #9699 for explanation of this approach (setting first, then removal) + // Do not do this for boolean attributes (see #10870) + if ( !isBool ) { + jQuery.attr( elem, name, "" ); + } + elem.removeAttribute( getSetAttribute ? name : propName ); + + // Set corresponding property to false for boolean attributes + if ( isBool && propName in elem ) { + elem[ propName ] = false; + } + } + } + } + }, + + attrHooks: { + type: { + set: function( elem, value ) { + // We can't allow the type property to be changed (since it causes problems in IE) + if ( rtype.test( elem.nodeName ) && elem.parentNode ) { + jQuery.error( "type property can't be changed" ); + } else if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { + // Setting the type on a radio button after the value resets the value in IE6-9 + // Reset value to it's default in case type is set after value + // This is for element creation + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + }, + // Use the value property for back compat + // Use the nodeHook for button elements in IE6/7 (#1954) + value: { + get: function( elem, name ) { + if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { + return nodeHook.get( elem, name ); + } + return name in elem ? + elem.value : + null; + }, + set: function( elem, value, name ) { + if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { + return nodeHook.set( elem, value, name ); + } + // Does not return so that setAttribute is also used + elem.value = value; + } + } + }, + + propFix: { + tabindex: "tabIndex", + readonly: "readOnly", + "for": "htmlFor", + "class": "className", + maxlength: "maxLength", + cellspacing: "cellSpacing", + cellpadding: "cellPadding", + rowspan: "rowSpan", + colspan: "colSpan", + usemap: "useMap", + frameborder: "frameBorder", + contenteditable: "contentEditable" + }, + + prop: function( elem, name, value ) { + var ret, hooks, notxml, + nType = elem.nodeType; + + // don't get/set properties on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + if ( notxml ) { + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + return ( elem[ name ] = value ); + } + + } else { + if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + return elem[ name ]; + } + } + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set + // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + var attributeNode = elem.getAttributeNode("tabindex"); + + return attributeNode && attributeNode.specified ? + parseInt( attributeNode.value, 10 ) : + rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? + 0 : + undefined; + } + } + } +}); + +// Hook for boolean attributes +boolHook = { + get: function( elem, name ) { + // Align boolean attributes with corresponding properties + // Fall back to attribute presence where some booleans are not supported + var attrNode, + property = jQuery.prop( elem, name ); + return property === true || typeof property !== "boolean" && ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ? + name.toLowerCase() : + undefined; + }, + set: function( elem, value, name ) { + var propName; + if ( value === false ) { + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + // value is true since we know at this point it's type boolean and not false + // Set boolean attributes to the same name and set the DOM property + propName = jQuery.propFix[ name ] || name; + if ( propName in elem ) { + // Only set the IDL specifically if it already exists on the element + elem[ propName ] = true; + } + + elem.setAttribute( name, name.toLowerCase() ); + } + return name; + } +}; + +// IE6/7 do not support getting/setting some attributes with get/setAttribute +if ( !getSetAttribute ) { + + fixSpecified = { + name: true, + id: true, + coords: true + }; + + // Use this for any attribute in IE6/7 + // This fixes almost every IE6/7 issue + nodeHook = jQuery.valHooks.button = { + get: function( elem, name ) { + var ret; + ret = elem.getAttributeNode( name ); + return ret && ( fixSpecified[ name ] ? ret.value !== "" : ret.specified ) ? + ret.value : + undefined; + }, + set: function( elem, value, name ) { + // Set the existing or create a new attribute node + var ret = elem.getAttributeNode( name ); + if ( !ret ) { + ret = document.createAttribute( name ); + elem.setAttributeNode( ret ); + } + return ( ret.value = value + "" ); + } + }; + + // Set width and height to auto instead of 0 on empty string( Bug #8150 ) + // This is for removals + jQuery.each([ "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { + set: function( elem, value ) { + if ( value === "" ) { + elem.setAttribute( name, "auto" ); + return value; + } + } + }); + }); + + // Set contenteditable to false on removals(#10429) + // Setting to empty string throws an error as an invalid value + jQuery.attrHooks.contenteditable = { + get: nodeHook.get, + set: function( elem, value, name ) { + if ( value === "" ) { + value = "false"; + } + nodeHook.set( elem, value, name ); + } + }; +} + + +// Some attributes require a special call on IE +if ( !jQuery.support.hrefNormalized ) { + jQuery.each([ "href", "src", "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { + get: function( elem ) { + var ret = elem.getAttribute( name, 2 ); + return ret === null ? undefined : ret; + } + }); + }); +} + +if ( !jQuery.support.style ) { + jQuery.attrHooks.style = { + get: function( elem ) { + // Return undefined in the case of empty string + // Normalize to lowercase since IE uppercases css property names + return elem.style.cssText.toLowerCase() || undefined; + }, + set: function( elem, value ) { + return ( elem.style.cssText = value + "" ); + } + }; +} + +// Safari mis-reports the default selected property of an option +// Accessing the parent's selectedIndex property fixes it +if ( !jQuery.support.optSelected ) { + jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, { + get: function( elem ) { + var parent = elem.parentNode; + + if ( parent ) { + parent.selectedIndex; + + // Make sure that it also works with optgroups, see #5701 + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + return null; + } + }); +} + +// IE6/7 call enctype encoding +if ( !jQuery.support.enctype ) { + jQuery.propFix.enctype = "encoding"; +} + +// Radios and checkboxes getter/setter +if ( !jQuery.support.checkOn ) { + jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + get: function( elem ) { + // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified + return elem.getAttribute("value") === null ? "on" : elem.value; + } + }; + }); +} +jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], { + set: function( elem, value ) { + if ( jQuery.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); + } + } + }); +}); +var rformElems = /^(?:textarea|input|select)$/i, + rtypenamespace = /^([^\.]*|)(?:\.(.+)|)$/, + rhoverHack = /(?:^|\s)hover(\.\S+|)\b/, + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|contextmenu)|click/, + rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + hoverHack = function( events ) { + return jQuery.event.special.hover ? events : events.replace( rhoverHack, "mouseenter$1 mouseleave$1" ); + }; + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + add: function( elem, types, handler, data, selector ) { + + var elemData, eventHandle, events, + t, tns, type, namespaces, handleObj, + handleObjIn, handlers, special; + + // Don't attach events to noData or text/comment nodes (allow plain objects tho) + if ( elem.nodeType === 3 || elem.nodeType === 8 || !types || !handler || !(elemData = jQuery._data( elem )) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + events = elemData.events; + if ( !events ) { + elemData.events = events = {}; + } + eventHandle = elemData.handle; + if ( !eventHandle ) { + elemData.handle = eventHandle = function( e ) { + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && (!e || jQuery.event.triggered !== e.type) ? + jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : + undefined; + }; + // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events + eventHandle.elem = elem; + } + + // Handle multiple events separated by a space + // jQuery(...).bind("mouseover mouseout", fn); + types = jQuery.trim( hoverHack(types) ).split( " " ); + for ( t = 0; t < types.length; t++ ) { + + tns = rtypenamespace.exec( types[t] ) || []; + type = tns[1]; + namespaces = ( tns[2] || "" ).split( "." ).sort(); + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend({ + type: type, + origType: tns[1], + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join(".") + }, handleObjIn ); + + // Init the event handler queue if we're the first + handlers = events[ type ]; + if ( !handlers ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener/attachEvent if the special events handler returns false + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + // Bind the global event handler to the element + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle, false ); + + } else if ( elem.attachEvent ) { + elem.attachEvent( "on" + type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + // Nullify elem to prevent memory leaks in IE + elem = null; + }, + + global: {}, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var t, tns, type, origType, namespaces, origCount, + j, events, special, eventType, handleObj, + elemData = jQuery.hasData( elem ) && jQuery._data( elem ); + + if ( !elemData || !(events = elemData.events) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = jQuery.trim( hoverHack( types || "" ) ).split(" "); + for ( t = 0; t < types.length; t++ ) { + tns = rtypenamespace.exec( types[t] ) || []; + type = origType = tns[1]; + namespaces = tns[2]; + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector? special.delegateType : special.bindType ) || type; + eventType = events[ type ] || []; + origCount = eventType.length; + namespaces = namespaces ? new RegExp("(^|\\.)" + namespaces.split(".").sort().join("\\.(?:.*\\.|)") + "(\\.|$)") : null; + + // Remove matching events + for ( j = 0; j < eventType.length; j++ ) { + handleObj = eventType[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !namespaces || namespaces.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { + eventType.splice( j--, 1 ); + + if ( handleObj.selector ) { + eventType.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( eventType.length === 0 && origCount !== eventType.length ) { + if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + delete elemData.handle; + + // removeData also checks for emptiness and clears the expando if empty + // so use it instead of delete + jQuery.removeData( elem, "events", true ); + } + }, + + // Events that are safe to short-circuit if no handlers are attached. + // Native DOM events should not be added, they may have inline handlers. + customEvent: { + "getData": true, + "setData": true, + "changeData": true + }, + + trigger: function( event, data, elem, onlyHandlers ) { + // Don't do events on text and comment nodes + if ( elem && (elem.nodeType === 3 || elem.nodeType === 8) ) { + return; + } + + // Event object or event type + var cache, exclusive, i, cur, old, ontype, special, handle, eventPath, bubbleType, + type = event.type || event, + namespaces = []; + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "!" ) >= 0 ) { + // Exclusive events trigger only for the exact event (no namespaces) + type = type.slice(0, -1); + exclusive = true; + } + + if ( type.indexOf( "." ) >= 0 ) { + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split("."); + type = namespaces.shift(); + namespaces.sort(); + } + + if ( (!elem || jQuery.event.customEvent[ type ]) && !jQuery.event.global[ type ] ) { + // No jQuery handlers for this event type, and it can't have inline handlers + return; + } + + // Caller can pass in an Event, Object, or just an event type string + event = typeof event === "object" ? + // jQuery.Event object + event[ jQuery.expando ] ? event : + // Object literal + new jQuery.Event( type, event ) : + // Just the event type (string) + new jQuery.Event( type ); + + event.type = type; + event.isTrigger = true; + event.exclusive = exclusive; + event.namespace = namespaces.join( "." ); + event.namespace_re = event.namespace? new RegExp("(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)") : null; + ontype = type.indexOf( ":" ) < 0 ? "on" + type : ""; + + // Handle a global trigger + if ( !elem ) { + + // TODO: Stop taunting the data cache; remove global events and always attach to document + cache = jQuery.cache; + for ( i in cache ) { + if ( cache[ i ].events && cache[ i ].events[ type ] ) { + jQuery.event.trigger( event, data, cache[ i ].handle.elem, true ); + } + } + return; + } + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data != null ? jQuery.makeArray( data ) : []; + data.unshift( event ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + eventPath = [[ elem, special.bindType || type ]]; + if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + cur = rfocusMorph.test( bubbleType + type ) ? elem : elem.parentNode; + for ( old = elem; cur; cur = cur.parentNode ) { + eventPath.push([ cur, bubbleType ]); + old = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( old === (elem.ownerDocument || document) ) { + eventPath.push([ old.defaultView || old.parentWindow || window, bubbleType ]); + } + } + + // Fire handlers on the event path + for ( i = 0; i < eventPath.length && !event.isPropagationStopped(); i++ ) { + + cur = eventPath[i][0]; + event.type = eventPath[i][1]; + + handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + // Note that this is a bare JS function and not a jQuery handler + handle = ontype && cur[ ontype ]; + if ( handle && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === false ) { + event.preventDefault(); + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) && + !(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name name as the event. + // Can't use an .isFunction() check here because IE6/7 fails that test. + // Don't do default actions on window, that's where global variables be (#6170) + // IE<9 dies on focus/blur to hidden element (#1486) + if ( ontype && elem[ type ] && ((type !== "focus" && type !== "blur") || event.target.offsetWidth !== 0) && !jQuery.isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + old = elem[ ontype ]; + + if ( old ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + elem[ type ](); + jQuery.event.triggered = undefined; + + if ( old ) { + elem[ ontype ] = old; + } + } + } + } + + return event.result; + }, + + dispatch: function( event ) { + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( event || window.event ); + + var i, j, cur, ret, selMatch, matched, matches, handleObj, sel, related, + handlers = ( (jQuery._data( this, "events" ) || {} )[ event.type ] || []), + delegateCount = handlers.delegateCount, + args = core_slice.call( arguments ), + run_all = !event.exclusive && !event.namespace, + special = jQuery.event.special[ event.type ] || {}, + handlerQueue = []; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[0] = event; + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers that should run if there are delegated events + // Avoid non-left-click bubbling in Firefox (#3861) + if ( delegateCount && !(event.button && event.type === "click") ) { + + for ( cur = event.target; cur != this; cur = cur.parentNode || this ) { + + // Don't process clicks (ONLY) on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.disabled !== true || event.type !== "click" ) { + selMatch = {}; + matches = []; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + sel = handleObj.selector; + + if ( selMatch[ sel ] === undefined ) { + selMatch[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) >= 0 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( selMatch[ sel ] ) { + matches.push( handleObj ); + } + } + if ( matches.length ) { + handlerQueue.push({ elem: cur, matches: matches }); + } + } + } + } + + // Add the remaining (directly-bound) handlers + if ( handlers.length > delegateCount ) { + handlerQueue.push({ elem: this, matches: handlers.slice( delegateCount ) }); + } + + // Run delegates first; they may want to stop propagation beneath us + for ( i = 0; i < handlerQueue.length && !event.isPropagationStopped(); i++ ) { + matched = handlerQueue[ i ]; + event.currentTarget = matched.elem; + + for ( j = 0; j < matched.matches.length && !event.isImmediatePropagationStopped(); j++ ) { + handleObj = matched.matches[ j ]; + + // Triggered event must either 1) be non-exclusive and have no namespace, or + // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). + if ( run_all || (!event.namespace && !handleObj.namespace) || event.namespace_re && event.namespace_re.test( handleObj.namespace ) ) { + + event.data = handleObj.data; + event.handleObj = handleObj; + + ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) + .apply( matched.elem, args ); + + if ( ret !== undefined ) { + event.result = ret; + if ( ret === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + // Includes some event props shared by KeyEvent and MouseEvent + // *** attrChange attrName relatedNode srcElement are not normalized, non-W3C, deprecated, will be removed in 1.8 *** + props: "attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), + + fixHooks: {}, + + keyHooks: { + props: "char charCode key keyCode".split(" "), + filter: function( event, original ) { + + // Add which for key events + if ( event.which == null ) { + event.which = original.charCode != null ? original.charCode : original.keyCode; + } + + return event; + } + }, + + mouseHooks: { + props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), + filter: function( event, original ) { + var eventDoc, doc, body, + button = original.button, + fromElement = original.fromElement; + + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && original.clientX != null ) { + eventDoc = event.target.ownerDocument || document; + doc = eventDoc.documentElement; + body = eventDoc.body; + + event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); + event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); + } + + // Add relatedTarget, if necessary + if ( !event.relatedTarget && fromElement ) { + event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && button !== undefined ) { + event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); + } + + return event; + } + }, + + fix: function( event ) { + if ( event[ jQuery.expando ] ) { + return event; + } + + // Create a writable copy of the event object and normalize some properties + var i, prop, + originalEvent = event, + fixHook = jQuery.event.fixHooks[ event.type ] || {}, + copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; + + event = jQuery.Event( originalEvent ); + + for ( i = copy.length; i; ) { + prop = copy[ --i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Fix target property, if necessary (#1925, IE 6/7/8 & Safari2) + if ( !event.target ) { + event.target = originalEvent.srcElement || document; + } + + // Target should not be a text node (#504, Safari) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + // For mouse/key events, metaKey==false if it's undefined (#3368, #11328; IE6/7/8) + event.metaKey = !!event.metaKey; + + return fixHook.filter? fixHook.filter( event, originalEvent ) : event; + }, + + special: { + load: { + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + + focus: { + delegateType: "focusin" + }, + blur: { + delegateType: "focusout" + }, + + beforeunload: { + setup: function( data, namespaces, eventHandle ) { + // We only want to do this special case on windows + if ( jQuery.isWindow( this ) ) { + this.onbeforeunload = eventHandle; + } + }, + + teardown: function( namespaces, eventHandle ) { + if ( this.onbeforeunload === eventHandle ) { + this.onbeforeunload = null; + } + } + } + }, + + simulate: function( type, elem, event, bubble ) { + // Piggyback on a donor event to simulate a different one. + // Fake originalEvent to avoid donor's stopPropagation, but if the + // simulated event prevents default then we do the same on the donor. + var e = jQuery.extend( + new jQuery.Event(), + event, + { type: type, + isSimulated: true, + originalEvent: {} + } + ); + if ( bubble ) { + jQuery.event.trigger( e, null, elem ); + } else { + jQuery.event.dispatch.call( elem, e ); + } + if ( e.isDefaultPrevented() ) { + event.preventDefault(); + } + } +}; + +// Some plugins are using, but it's undocumented/deprecated and will be removed. +// The 1.7 special event interface should provide all the hooks needed now. +jQuery.event.handle = jQuery.event.dispatch; + +jQuery.removeEvent = document.removeEventListener ? + function( elem, type, handle ) { + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle, false ); + } + } : + function( elem, type, handle ) { + var name = "on" + type; + + if ( elem.detachEvent ) { + + // #8545, #7054, preventing memory leaks for custom events in IE6-8 + // detachEvent needed property on element, by name of that event, to properly expose it to GC + if ( typeof elem[ name ] === "undefined" ) { + elem[ name ] = null; + } + + elem.detachEvent( name, handle ); + } + }; + +jQuery.Event = function( src, props ) { + // Allow instantiation without the 'new' keyword + if ( !(this instanceof jQuery.Event) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || + src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +function returnFalse() { + return false; +} +function returnTrue() { + return true; +} + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + preventDefault: function() { + this.isDefaultPrevented = returnTrue; + + var e = this.originalEvent; + if ( !e ) { + return; + } + + // if preventDefault exists run it on the original event + if ( e.preventDefault ) { + e.preventDefault(); + + // otherwise set the returnValue property of the original event to false (IE) + } else { + e.returnValue = false; + } + }, + stopPropagation: function() { + this.isPropagationStopped = returnTrue; + + var e = this.originalEvent; + if ( !e ) { + return; + } + // if stopPropagation exists run it on the original event + if ( e.stopPropagation ) { + e.stopPropagation(); + } + // otherwise set the cancelBubble property of the original event to true (IE) + e.cancelBubble = true; + }, + stopImmediatePropagation: function() { + this.isImmediatePropagationStopped = returnTrue; + this.stopPropagation(); + }, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse +}; + +// Create mouseenter/leave events using mouseover/out and event-time checks +jQuery.each({ + mouseenter: "mouseover", + mouseleave: "mouseout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj, + selector = handleObj.selector; + + // For mousenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || (related !== target && !jQuery.contains( target, related )) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +}); + +// IE submit delegation +if ( !jQuery.support.submitBubbles ) { + + jQuery.event.special.submit = { + setup: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Lazy-add a submit handler when a descendant form may potentially be submitted + jQuery.event.add( this, "click._submit keypress._submit", function( e ) { + // Node name check avoids a VML-related crash in IE (#9807) + var elem = e.target, + form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; + if ( form && !jQuery._data( form, "_submit_attached" ) ) { + jQuery.event.add( form, "submit._submit", function( event ) { + event._submit_bubble = true; + }); + jQuery._data( form, "_submit_attached", true ); + } + }); + // return undefined since we don't need an event listener + }, + + postDispatch: function( event ) { + // If form was submitted by the user, bubble the event up the tree + if ( event._submit_bubble ) { + delete event._submit_bubble; + if ( this.parentNode && !event.isTrigger ) { + jQuery.event.simulate( "submit", this.parentNode, event, true ); + } + } + }, + + teardown: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Remove delegated handlers; cleanData eventually reaps submit handlers attached above + jQuery.event.remove( this, "._submit" ); + } + }; +} + +// IE change delegation and checkbox/radio fix +if ( !jQuery.support.changeBubbles ) { + + jQuery.event.special.change = { + + setup: function() { + + if ( rformElems.test( this.nodeName ) ) { + // IE doesn't fire change on a check/radio until blur; trigger it on click + // after a propertychange. Eat the blur-change in special.change.handle. + // This still fires onchange a second time for check/radio after blur. + if ( this.type === "checkbox" || this.type === "radio" ) { + jQuery.event.add( this, "propertychange._change", function( event ) { + if ( event.originalEvent.propertyName === "checked" ) { + this._just_changed = true; + } + }); + jQuery.event.add( this, "click._change", function( event ) { + if ( this._just_changed && !event.isTrigger ) { + this._just_changed = false; + } + // Allow triggered, simulated change events (#11500) + jQuery.event.simulate( "change", this, event, true ); + }); + } + return false; + } + // Delegated event; lazy-add a change handler on descendant inputs + jQuery.event.add( this, "beforeactivate._change", function( e ) { + var elem = e.target; + + if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "_change_attached" ) ) { + jQuery.event.add( elem, "change._change", function( event ) { + if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { + jQuery.event.simulate( "change", this.parentNode, event, true ); + } + }); + jQuery._data( elem, "_change_attached", true ); + } + }); + }, + + handle: function( event ) { + var elem = event.target; + + // Swallow native change events from checkbox/radio, we already triggered them above + if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { + return event.handleObj.handler.apply( this, arguments ); + } + }, + + teardown: function() { + jQuery.event.remove( this, "._change" ); + + return !rformElems.test( this.nodeName ); + } + }; +} + +// Create "bubbling" focus and blur events +if ( !jQuery.support.focusinBubbles ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler while someone wants focusin/focusout + var attaches = 0, + handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + if ( attaches++ === 0 ) { + document.addEventListener( orig, handler, true ); + } + }, + teardown: function() { + if ( --attaches === 0 ) { + document.removeEventListener( orig, handler, true ); + } + } + }; + }); +} + +jQuery.fn.extend({ + + on: function( types, selector, data, fn, /*INTERNAL*/ one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { // && selector != null + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + this.on( type, selector, data, types[ type ], one ); + } + return this; + } + + if ( data == null && fn == null ) { + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return this; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return this.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + }); + }, + one: function( types, selector, data, fn ) { + return this.on( types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each(function() { + jQuery.event.remove( this, types, fn, selector ); + }); + }, + + bind: function( types, data, fn ) { + return this.on( types, null, data, fn ); + }, + unbind: function( types, fn ) { + return this.off( types, null, fn ); + }, + + live: function( types, data, fn ) { + jQuery( this.context ).on( types, this.selector, data, fn ); + return this; + }, + die: function( types, fn ) { + jQuery( this.context ).off( types, this.selector || "**", fn ); + return this; + }, + + delegate: function( selector, types, data, fn ) { + return this.on( types, selector, data, fn ); + }, + undelegate: function( selector, types, fn ) { + // ( namespace ) or ( selector, types [, fn] ) + return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn ); + }, + + trigger: function( type, data ) { + return this.each(function() { + jQuery.event.trigger( type, data, this ); + }); + }, + triggerHandler: function( type, data ) { + if ( this[0] ) { + return jQuery.event.trigger( type, data, this[0], true ); + } + }, + + toggle: function( fn ) { + // Save reference to arguments for access in closure + var args = arguments, + guid = fn.guid || jQuery.guid++, + i = 0, + toggler = function( event ) { + // Figure out which function to execute + var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i; + jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 ); + + // Make sure that clicks stop + event.preventDefault(); + + // and execute the function + return args[ lastToggle ].apply( this, arguments ) || false; + }; + + // link all the functions, so any of them can unbind this click handler + toggler.guid = guid; + while ( i < args.length ) { + args[ i++ ].guid = guid; + } + + return this.click( toggler ); + }, + + hover: function( fnOver, fnOut ) { + return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); + } +}); + +jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + + "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) { + + // Handle event binding + jQuery.fn[ name ] = function( data, fn ) { + if ( fn == null ) { + fn = data; + data = null; + } + + return arguments.length > 0 ? + this.on( name, null, data, fn ) : + this.trigger( name ); + }; + + if ( rkeyEvent.test( name ) ) { + jQuery.event.fixHooks[ name ] = jQuery.event.keyHooks; + } + + if ( rmouseEvent.test( name ) ) { + jQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks; + } +}); +/*! + * Sizzle CSS Selector Engine + * Copyright 2012 jQuery Foundation and other contributors + * Released under the MIT license + * http://sizzlejs.com/ + */ +(function( window, undefined ) { + +var cachedruns, + assertGetIdNotName, + Expr, + getText, + isXML, + contains, + compile, + sortOrder, + hasDuplicate, + outermostContext, + + baseHasDuplicate = true, + strundefined = "undefined", + + expando = ( "sizcache" + Math.random() ).replace( ".", "" ), + + Token = String, + document = window.document, + docElem = document.documentElement, + dirruns = 0, + done = 0, + pop = [].pop, + push = [].push, + slice = [].slice, + // Use a stripped-down indexOf if a native one is unavailable + indexOf = [].indexOf || function( elem ) { + var i = 0, + len = this.length; + for ( ; i < len; i++ ) { + if ( this[i] === elem ) { + return i; + } + } + return -1; + }, + + // Augment a function for special use by Sizzle + markFunction = function( fn, value ) { + fn[ expando ] = value == null || value; + return fn; + }, + + createCache = function() { + var cache = {}, + keys = []; + + return markFunction(function( key, value ) { + // Only keep the most recent entries + if ( keys.push( key ) > Expr.cacheLength ) { + delete cache[ keys.shift() ]; + } + + // Retrieve with (key + " ") to avoid collision with native Object.prototype properties (see Issue #157) + return (cache[ key + " " ] = value); + }, cache ); + }, + + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + + // Regex + + // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + // http://www.w3.org/TR/css3-syntax/#characters + characterEncoding = "(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+", + + // Loosely modeled on CSS identifier characters + // An unquoted value should be a CSS identifier (http://www.w3.org/TR/css3-selectors/#attribute-selectors) + // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier + identifier = characterEncoding.replace( "w", "w#" ), + + // Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors + operators = "([*^$|!~]?=)", + attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace + + "*(?:" + operators + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]", + + // Prefer arguments not in parens/brackets, + // then attribute selectors and non-pseudos (denoted by :), + // then anything else + // These preferences are here to reduce the number of selectors + // needing tokenize in the PSEUDO preFilter + pseudos = ":(" + characterEncoding + ")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:" + attributes + ")|[^:]|\\\\.)*|.*))\\)|)", + + // For matchExpr.POS and matchExpr.needsContext + pos = ":(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([\\x20\\t\\r\\n\\f>+~])" + whitespace + "*" ), + rpseudo = new RegExp( pseudos ), + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/, + + rnot = /^:not/, + rsibling = /[\x20\t\r\n\f]*[+~]/, + rendsWithNot = /:not\($/, + + rheader = /h\d/i, + rinputs = /input|select|textarea|button/i, + + rbackslash = /\\(?!\\)/g, + + matchExpr = { + "ID": new RegExp( "^#(" + characterEncoding + ")" ), + "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), + "NAME": new RegExp( "^\\[name=['\"]?(" + characterEncoding + ")['\"]?\\]" ), + "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "POS": new RegExp( pos, "i" ), + "CHILD": new RegExp( "^:(only|nth|first|last)-child(?:\\(" + whitespace + + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + // For use in libraries implementing .is() + "needsContext": new RegExp( "^" + whitespace + "*[>+~]|" + pos, "i" ) + }, + + // Support + + // Used for testing something on an element + assert = function( fn ) { + var div = document.createElement("div"); + + try { + return fn( div ); + } catch (e) { + return false; + } finally { + // release memory in IE + div = null; + } + }, + + // Check if getElementsByTagName("*") returns only elements + assertTagNameNoComments = assert(function( div ) { + div.appendChild( document.createComment("") ); + return !div.getElementsByTagName("*").length; + }), + + // Check if getAttribute returns normalized href attributes + assertHrefNotNormalized = assert(function( div ) { + div.innerHTML = ""; + return div.firstChild && typeof div.firstChild.getAttribute !== strundefined && + div.firstChild.getAttribute("href") === "#"; + }), + + // Check if attributes should be retrieved by attribute nodes + assertAttributes = assert(function( div ) { + div.innerHTML = ""; + var type = typeof div.lastChild.getAttribute("multiple"); + // IE8 returns a string for some attributes even when not present + return type !== "boolean" && type !== "string"; + }), + + // Check if getElementsByClassName can be trusted + assertUsableClassName = assert(function( div ) { + // Opera can't find a second classname (in 9.6) + div.innerHTML = ""; + if ( !div.getElementsByClassName || !div.getElementsByClassName("e").length ) { + return false; + } + + // Safari 3.2 caches class attributes and doesn't catch changes + div.lastChild.className = "e"; + return div.getElementsByClassName("e").length === 2; + }), + + // Check if getElementById returns elements by name + // Check if getElementsByName privileges form controls or returns elements by ID + assertUsableName = assert(function( div ) { + // Inject content + div.id = expando + 0; + div.innerHTML = "
    "; + docElem.insertBefore( div, docElem.firstChild ); + + // Test + var pass = document.getElementsByName && + // buggy browsers will return fewer than the correct 2 + document.getElementsByName( expando ).length === 2 + + // buggy browsers will return more than the correct 0 + document.getElementsByName( expando + 0 ).length; + assertGetIdNotName = !document.getElementById( expando ); + + // Cleanup + docElem.removeChild( div ); + + return pass; + }); + +// If slice is not available, provide a backup +try { + slice.call( docElem.childNodes, 0 )[0].nodeType; +} catch ( e ) { + slice = function( i ) { + var elem, + results = []; + for ( ; (elem = this[i]); i++ ) { + results.push( elem ); + } + return results; + }; +} + +function Sizzle( selector, context, results, seed ) { + results = results || []; + context = context || document; + var match, elem, xml, m, + nodeType = context.nodeType; + + if ( !selector || typeof selector !== "string" ) { + return results; + } + + if ( nodeType !== 1 && nodeType !== 9 ) { + return []; + } + + xml = isXML( context ); + + if ( !xml && !seed ) { + if ( (match = rquickExpr.exec( selector )) ) { + // Speed-up: Sizzle("#ID") + if ( (m = match[1]) ) { + if ( nodeType === 9 ) { + elem = context.getElementById( m ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE, Opera, and Webkit return items + // by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + } else { + // Context is not a document + if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && + contains( context, elem ) && elem.id === m ) { + results.push( elem ); + return results; + } + } + + // Speed-up: Sizzle("TAG") + } else if ( match[2] ) { + push.apply( results, slice.call(context.getElementsByTagName( selector ), 0) ); + return results; + + // Speed-up: Sizzle(".CLASS") + } else if ( (m = match[3]) && assertUsableClassName && context.getElementsByClassName ) { + push.apply( results, slice.call(context.getElementsByClassName( m ), 0) ); + return results; + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed, xml ); +} + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + return Sizzle( expr, null, null, [ elem ] ).length > 0; +}; + +// Returns a function to use in pseudos for input types +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +// Returns a function to use in pseudos for buttons +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && elem.type === type; + }; +} + +// Returns a function to use in pseudos for positionals +function createPositionalPseudo( fn ) { + return markFunction(function( argument ) { + argument = +argument; + return markFunction(function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ (j = matchIndexes[i]) ] ) { + seed[j] = !(matches[j] = seed[j]); + } + } + }); + }); +} + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( nodeType ) { + if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + // Use textContent for elements + // innerText usage removed for consistency of new lines (see #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + // Do not include comment or processing instruction nodes + } else { + + // If no nodeType, this is expected to be an array + for ( ; (node = elem[i]); i++ ) { + // Do not traverse comment nodes + ret += getText( node ); + } + } + return ret; +}; + +isXML = Sizzle.isXML = function( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = elem && (elem.ownerDocument || elem).documentElement; + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +// Element contains another +contains = Sizzle.contains = docElem.contains ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && adown.contains && adown.contains(bup) ); + } : + docElem.compareDocumentPosition ? + function( a, b ) { + return b && !!( a.compareDocumentPosition( b ) & 16 ); + } : + function( a, b ) { + while ( (b = b.parentNode) ) { + if ( b === a ) { + return true; + } + } + return false; + }; + +Sizzle.attr = function( elem, name ) { + var val, + xml = isXML( elem ); + + if ( !xml ) { + name = name.toLowerCase(); + } + if ( (val = Expr.attrHandle[ name ]) ) { + return val( elem ); + } + if ( xml || assertAttributes ) { + return elem.getAttribute( name ); + } + val = elem.getAttributeNode( name ); + return val ? + typeof elem[ name ] === "boolean" ? + elem[ name ] ? name : null : + val.specified ? val.value : null : + null; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + // IE6/7 return a modified href + attrHandle: assertHrefNotNormalized ? + {} : + { + "href": function( elem ) { + return elem.getAttribute( "href", 2 ); + }, + "type": function( elem ) { + return elem.getAttribute("type"); + } + }, + + find: { + "ID": assertGetIdNotName ? + function( id, context, xml ) { + if ( typeof context.getElementById !== strundefined && !xml ) { + var m = context.getElementById( id ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + return m && m.parentNode ? [m] : []; + } + } : + function( id, context, xml ) { + if ( typeof context.getElementById !== strundefined && !xml ) { + var m = context.getElementById( id ); + + return m ? + m.id === id || typeof m.getAttributeNode !== strundefined && m.getAttributeNode("id").value === id ? + [m] : + undefined : + []; + } + }, + + "TAG": assertTagNameNoComments ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== strundefined ) { + return context.getElementsByTagName( tag ); + } + } : + function( tag, context ) { + var results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + var elem, + tmp = [], + i = 0; + + for ( ; (elem = results[i]); i++ ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }, + + "NAME": assertUsableName && function( tag, context ) { + if ( typeof context.getElementsByName !== strundefined ) { + return context.getElementsByName( name ); + } + }, + + "CLASS": assertUsableClassName && function( className, context, xml ) { + if ( typeof context.getElementsByClassName !== strundefined && !xml ) { + return context.getElementsByClassName( className ); + } + } + }, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[1] = match[1].replace( rbackslash, "" ); + + // Move the given value to match[3] whether quoted or unquoted + match[3] = ( match[4] || match[5] || "" ).replace( rbackslash, "" ); + + if ( match[2] === "~=" ) { + match[3] = " " + match[3] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 3 xn-component of xn+y argument ([+-]?\d*n|) + 4 sign of xn-component + 5 x of xn-component + 6 sign of y-component + 7 y of y-component + */ + match[1] = match[1].toLowerCase(); + + if ( match[1] === "nth" ) { + // nth-child requires argument + if ( !match[2] ) { + Sizzle.error( match[0] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[3] = +( match[3] ? match[4] + (match[5] || 1) : 2 * ( match[2] === "even" || match[2] === "odd" ) ); + match[4] = +( ( match[6] + match[7] ) || match[2] === "odd" ); + + // other types prohibit arguments + } else if ( match[2] ) { + Sizzle.error( match[0] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var unquoted, excess; + if ( matchExpr["CHILD"].test( match[0] ) ) { + return null; + } + + if ( match[3] ) { + match[2] = match[3]; + } else if ( (unquoted = match[4]) ) { + // Only check arguments that contain a pseudo + if ( rpseudo.test(unquoted) && + // Get excess from tokenize (recursively) + (excess = tokenize( unquoted, true )) && + // advance to the next closing parenthesis + (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { + + // excess is a negative index + unquoted = unquoted.slice( 0, excess ); + match[0] = match[0].slice( 0, excess ); + } + match[2] = unquoted; + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + "ID": assertGetIdNotName ? + function( id ) { + id = id.replace( rbackslash, "" ); + return function( elem ) { + return elem.getAttribute("id") === id; + }; + } : + function( id ) { + id = id.replace( rbackslash, "" ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id"); + return node && node.value === id; + }; + }, + + "TAG": function( nodeName ) { + if ( nodeName === "*" ) { + return function() { return true; }; + } + nodeName = nodeName.replace( rbackslash, "" ).toLowerCase(); + + return function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ expando ][ className + " " ]; + + return pattern || + (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && + classCache( className, function( elem ) { + return pattern.test( elem.className || (typeof elem.getAttribute !== strundefined && elem.getAttribute("class")) || "" ); + }); + }, + + "ATTR": function( name, operator, check ) { + return function( elem, context ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.substr( result.length - check.length ) === check : + operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.substr( 0, check.length + 1 ) === check + "-" : + false; + }; + }, + + "CHILD": function( type, argument, first, last ) { + + if ( type === "nth" ) { + return function( elem ) { + var node, diff, + parent = elem.parentNode; + + if ( first === 1 && last === 0 ) { + return true; + } + + if ( parent ) { + diff = 0; + for ( node = parent.firstChild; node; node = node.nextSibling ) { + if ( node.nodeType === 1 ) { + diff++; + if ( elem === node ) { + break; + } + } + } + } + + // Incorporate the offset (or cast to NaN), then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + }; + } + + return function( elem ) { + var node = elem; + + switch ( type ) { + case "only": + case "first": + while ( (node = node.previousSibling) ) { + if ( node.nodeType === 1 ) { + return false; + } + } + + if ( type === "first" ) { + return true; + } + + node = elem; + + /* falls through */ + case "last": + while ( (node = node.nextSibling) ) { + if ( node.nodeType === 1 ) { + return false; + } + } + + return true; + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction(function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf.call( seed, matched[i] ); + seed[ idx ] = !( matches[ idx ] = matched[i] ); + } + }) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + "not": markFunction(function( selector ) { + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction(function( seed, matches, context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( (elem = unmatched[i]) ) { + seed[i] = !(matches[i] = elem); + } + } + }) : + function( elem, context, xml ) { + input[0] = elem; + matcher( input, null, xml, results ); + return !results.pop(); + }; + }), + + "has": markFunction(function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + }), + + "contains": markFunction(function( text ) { + return function( elem ) { + return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; + }; + }), + + "enabled": function( elem ) { + return elem.disabled === false; + }, + + "disabled": function( elem ) { + return elem.disabled === true; + }, + + "checked": function( elem ) { + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); + }, + + "selected": function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + "parent": function( elem ) { + return !Expr.pseudos["empty"]( elem ); + }, + + "empty": function( elem ) { + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is only affected by element nodes and content nodes(including text(3), cdata(4)), + // not comment, processing instructions, or others + // Thanks to Diego Perini for the nodeName shortcut + // Greater than "@" means alpha characters (specifically not starting with "#" or "?") + var nodeType; + elem = elem.firstChild; + while ( elem ) { + if ( elem.nodeName > "@" || (nodeType = elem.nodeType) === 3 || nodeType === 4 ) { + return false; + } + elem = elem.nextSibling; + } + return true; + }, + + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "text": function( elem ) { + var type, attr; + // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) + // use getAttribute instead to test this case + return elem.nodeName.toLowerCase() === "input" && + (type = elem.type) === "text" && + ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === type ); + }, + + // Input types + "radio": createInputPseudo("radio"), + "checkbox": createInputPseudo("checkbox"), + "file": createInputPseudo("file"), + "password": createInputPseudo("password"), + "image": createInputPseudo("image"), + + "submit": createButtonPseudo("submit"), + "reset": createButtonPseudo("reset"), + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "focus": function( elem ) { + var doc = elem.ownerDocument; + return elem === doc.activeElement && (!doc.hasFocus || doc.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); + }, + + "active": function( elem ) { + return elem === elem.ownerDocument.activeElement; + }, + + // Positional types + "first": createPositionalPseudo(function() { + return [ 0 ]; + }), + + "last": createPositionalPseudo(function( matchIndexes, length ) { + return [ length - 1 ]; + }), + + "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + }), + + "even": createPositionalPseudo(function( matchIndexes, length ) { + for ( var i = 0; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "odd": createPositionalPseudo(function( matchIndexes, length ) { + for ( var i = 1; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { + for ( var i = argument < 0 ? argument + length : argument; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { + for ( var i = argument < 0 ? argument + length : argument; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }) + } +}; + +function siblingCheck( a, b, ret ) { + if ( a === b ) { + return ret; + } + + var cur = a.nextSibling; + + while ( cur ) { + if ( cur === b ) { + return -1; + } + + cur = cur.nextSibling; + } + + return 1; +} + +sortOrder = docElem.compareDocumentPosition ? + function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + return ( !a.compareDocumentPosition || !b.compareDocumentPosition ? + a.compareDocumentPosition : + a.compareDocumentPosition(b) & 4 + ) ? -1 : 1; + } : + function( a, b ) { + // The nodes are identical, we can exit early + if ( a === b ) { + hasDuplicate = true; + return 0; + + // Fallback to using sourceIndex (in IE) if it's available on both nodes + } else if ( a.sourceIndex && b.sourceIndex ) { + return a.sourceIndex - b.sourceIndex; + } + + var al, bl, + ap = [], + bp = [], + aup = a.parentNode, + bup = b.parentNode, + cur = aup; + + // If the nodes are siblings (or identical) we can do a quick check + if ( aup === bup ) { + return siblingCheck( a, b ); + + // If no parents were found then the nodes are disconnected + } else if ( !aup ) { + return -1; + + } else if ( !bup ) { + return 1; + } + + // Otherwise they're somewhere else in the tree so we need + // to build up a full list of the parentNodes for comparison + while ( cur ) { + ap.unshift( cur ); + cur = cur.parentNode; + } + + cur = bup; + + while ( cur ) { + bp.unshift( cur ); + cur = cur.parentNode; + } + + al = ap.length; + bl = bp.length; + + // Start walking down the tree looking for a discrepancy + for ( var i = 0; i < al && i < bl; i++ ) { + if ( ap[i] !== bp[i] ) { + return siblingCheck( ap[i], bp[i] ); + } + } + + // We ended someplace up the tree so do a sibling check + return i === al ? + siblingCheck( a, bp[i], -1 ) : + siblingCheck( ap[i], b, 1 ); + }; + +// Always assume the presence of duplicates if sort doesn't +// pass them to our comparison function (as in Google Chrome). +[0, 0].sort( sortOrder ); +baseHasDuplicate = !hasDuplicate; + +// Document sorting and removing duplicates +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + i = 1, + j = 0; + + hasDuplicate = baseHasDuplicate; + results.sort( sortOrder ); + + if ( hasDuplicate ) { + for ( ; (elem = results[i]); i++ ) { + if ( elem === results[ i - 1 ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + return results; +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +function tokenize( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ expando ][ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || (match = rcomma.exec( soFar )) ) { + if ( match ) { + // Don't consume trailing commas as valid + soFar = soFar.slice( match[0].length ) || soFar; + } + groups.push( tokens = [] ); + } + + matched = false; + + // Combinators + if ( (match = rcombinators.exec( soFar )) ) { + tokens.push( matched = new Token( match.shift() ) ); + soFar = soFar.slice( matched.length ); + + // Cast descendant combinators to space + matched.type = match[0].replace( rtrim, " " ); + } + + // Filters + for ( type in Expr.filter ) { + if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || + (match = preFilters[ type ]( match ))) ) { + + tokens.push( matched = new Token( match.shift() ) ); + soFar = soFar.slice( matched.length ); + matched.type = type; + matched.matches = match; + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + checkNonElements = base && combinator.dir === "parentNode", + doneName = done++; + + return combinator.first ? + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( (elem = elem[ dir ]) ) { + if ( checkNonElements || elem.nodeType === 1 ) { + return matcher( elem, context, xml ); + } + } + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching + if ( !xml ) { + var cache, + dirkey = dirruns + " " + doneName + " ", + cachedkey = dirkey + cachedruns; + while ( (elem = elem[ dir ]) ) { + if ( checkNonElements || elem.nodeType === 1 ) { + if ( (cache = elem[ expando ]) === cachedkey ) { + return elem.sizset; + } else if ( typeof cache === "string" && cache.indexOf(dirkey) === 0 ) { + if ( elem.sizset ) { + return elem; + } + } else { + elem[ expando ] = cachedkey; + if ( matcher( elem, context, xml ) ) { + elem.sizset = true; + return elem; + } + elem.sizset = false; + } + } + } + } else { + while ( (elem = elem[ dir ]) ) { + if ( checkNonElements || elem.nodeType === 1 ) { + if ( matcher( elem, context, xml ) ) { + return elem; + } + } + } + } + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[i]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[0]; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( (elem = unmatched[i]) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction(function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( (elem = temp[i]) ) { + matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) ) { + // Restore matcherIn since elem is not yet a final match + temp.push( (matcherIn[i] = elem) ); + } + } + postFinder( null, (matcherOut = []), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) && + (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) { + + seed[temp] = !(results[temp] = elem); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + }); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[0].type ], + implicitRelative = leadingRelative || Expr.relative[" "], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf.call( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + return ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + (checkContext = context).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + } ]; + + for ( ; i < len; i++ ) { + if ( (matcher = Expr.relative[ tokens[i].type ]) ) { + matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; + } else { + matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[j].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && tokens.slice( 0, i - 1 ).join("").replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), + j < len && tokens.join("") + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, expandContext ) { + var elem, j, matcher, + setMatched = [], + matchedCount = 0, + i = "0", + unmatched = seed && [], + outermost = expandContext != null, + contextBackup = outermostContext, + // We must always have either seed elements or context + elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ), + // Nested matchers should use non-integer dirruns + dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.E); + + if ( outermost ) { + outermostContext = context !== document && context; + cachedruns = superMatcher.el; + } + + // Add elements passing elementMatchers directly to results + for ( ; (elem = elems[i]) != null; i++ ) { + if ( byElement && elem ) { + for ( j = 0; (matcher = elementMatchers[j]); j++ ) { + if ( matcher( elem, context, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + cachedruns = ++superMatcher.el; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + // They will have gone through all possible matchers + if ( (elem = !matcher && elem) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // Apply set filters to unmatched elements + matchedCount += i; + if ( bySet && i !== matchedCount ) { + for ( j = 0; (matcher = setMatchers[j]); j++ ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !(unmatched[i] || setMatched[i]) ) { + setMatched[i] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + superMatcher.el = 0; + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ expando ][ selector + " " ]; + + if ( !cached ) { + // Generate a function of recursive functions that can be used to check each element + if ( !group ) { + group = tokenize( selector ); + } + i = group.length; + while ( i-- ) { + cached = matcherFromTokens( group[i] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + } + return cached; +}; + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[i], results ); + } + return results; +} + +function select( selector, context, results, seed, xml ) { + var i, tokens, token, type, find, + match = tokenize( selector ), + j = match.length; + + if ( !seed ) { + // Try to minimize operations if there is only one group + if ( match.length === 1 ) { + + // Take a shortcut and set the context if the root selector is an ID + tokens = match[0] = match[0].slice( 0 ); + if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && + context.nodeType === 9 && !xml && + Expr.relative[ tokens[1].type ] ) { + + context = Expr.find["ID"]( token.matches[0].replace( rbackslash, "" ), context, xml )[0]; + if ( !context ) { + return results; + } + + selector = selector.slice( tokens.shift().length ); + } + + // Fetch a seed set for right-to-left matching + for ( i = matchExpr["POS"].test( selector ) ? -1 : tokens.length - 1; i >= 0; i-- ) { + token = tokens[i]; + + // Abort if we hit a combinator + if ( Expr.relative[ (type = token.type) ] ) { + break; + } + if ( (find = Expr.find[ type ]) ) { + // Search, expanding context for leading sibling combinators + if ( (seed = find( + token.matches[0].replace( rbackslash, "" ), + rsibling.test( tokens[0].type ) && context.parentNode || context, + xml + )) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && tokens.join(""); + if ( !selector ) { + push.apply( results, slice.call( seed, 0 ) ); + return results; + } + + break; + } + } + } + } + } + + // Compile and execute a filtering function + // Provide `match` to avoid retokenization if we modified the selector above + compile( selector, match )( + seed, + context, + xml, + results, + rsibling.test( selector ) + ); + return results; +} + +if ( document.querySelectorAll ) { + (function() { + var disconnectedMatch, + oldSelect = select, + rescape = /'|\\/g, + rattributeQuotes = /\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g, + + // qSa(:focus) reports false when true (Chrome 21), no need to also add to buggyMatches since matches checks buggyQSA + // A support test would require too much code (would include document ready) + rbuggyQSA = [ ":focus" ], + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + // A support test would require too much code (would include document ready) + // just skip matchesSelector for :active + rbuggyMatches = [ ":active" ], + matches = docElem.matchesSelector || + docElem.mozMatchesSelector || + docElem.webkitMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector; + + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert(function( div ) { + // Select is set to empty string on purpose + // This is to test IE's treatment of not explictly + // setting a boolean content attribute, + // since its presence should be enough + // http://bugs.jquery.com/ticket/12359 + div.innerHTML = ""; + + // IE8 - Some boolean attributes are not treated correctly + if ( !div.querySelectorAll("[selected]").length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:checked|disabled|ismap|multiple|readonly|selected|value)" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here (do not put tests after this one) + if ( !div.querySelectorAll(":checked").length ) { + rbuggyQSA.push(":checked"); + } + }); + + assert(function( div ) { + + // Opera 10-12/IE9 - ^= $= *= and empty values + // Should not select anything + div.innerHTML = "

    "; + if ( div.querySelectorAll("[test^='']").length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:\"\"|'')" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here (do not put tests after this one) + div.innerHTML = ""; + if ( !div.querySelectorAll(":enabled").length ) { + rbuggyQSA.push(":enabled", ":disabled"); + } + }); + + // rbuggyQSA always contains :focus, so no need for a length check + rbuggyQSA = /* rbuggyQSA.length && */ new RegExp( rbuggyQSA.join("|") ); + + select = function( selector, context, results, seed, xml ) { + // Only use querySelectorAll when not filtering, + // when this is not xml, + // and when no QSA bugs apply + if ( !seed && !xml && !rbuggyQSA.test( selector ) ) { + var groups, i, + old = true, + nid = expando, + newContext = context, + newSelector = context.nodeType === 9 && selector; + + // qSA works strangely on Element-rooted queries + // We can work around this by specifying an extra ID on the root + // and working up from there (Thanks to Andrew Dupont for the technique) + // IE 8 doesn't work on object elements + if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { + groups = tokenize( selector ); + + if ( (old = context.getAttribute("id")) ) { + nid = old.replace( rescape, "\\$&" ); + } else { + context.setAttribute( "id", nid ); + } + nid = "[id='" + nid + "'] "; + + i = groups.length; + while ( i-- ) { + groups[i] = nid + groups[i].join(""); + } + newContext = rsibling.test( selector ) && context.parentNode || context; + newSelector = groups.join(","); + } + + if ( newSelector ) { + try { + push.apply( results, slice.call( newContext.querySelectorAll( + newSelector + ), 0 ) ); + return results; + } catch(qsaError) { + } finally { + if ( !old ) { + context.removeAttribute("id"); + } + } + } + } + + return oldSelect( selector, context, results, seed, xml ); + }; + + if ( matches ) { + assert(function( div ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + disconnectedMatch = matches.call( div, "div" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + try { + matches.call( div, "[test!='']:sizzle" ); + rbuggyMatches.push( "!=", pseudos ); + } catch ( e ) {} + }); + + // rbuggyMatches always contains :active and :focus, so no need for a length check + rbuggyMatches = /* rbuggyMatches.length && */ new RegExp( rbuggyMatches.join("|") ); + + Sizzle.matchesSelector = function( elem, expr ) { + // Make sure that attribute selectors are quoted + expr = expr.replace( rattributeQuotes, "='$1']" ); + + // rbuggyMatches always contains :active, so no need for an existence check + if ( !isXML( elem ) && !rbuggyMatches.test( expr ) && !rbuggyQSA.test( expr ) ) { + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch(e) {} + } + + return Sizzle( expr, null, null, [ elem ] ).length > 0; + }; + } + })(); +} + +// Deprecated +Expr.pseudos["nth"] = Expr.pseudos["eq"]; + +// Back-compat +function setFilters() {} +Expr.filters = setFilters.prototype = Expr.pseudos; +Expr.setFilters = new setFilters(); + +// Override sizzle attribute retrieval +Sizzle.attr = jQuery.attr; +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[":"] = jQuery.expr.pseudos; +jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; + + +})( window ); +var runtil = /Until$/, + rparentsprev = /^(?:parents|prev(?:Until|All))/, + isSimple = /^.[^:#\[\.,]*$/, + rneedsContext = jQuery.expr.match.needsContext, + // methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend({ + find: function( selector ) { + var i, l, length, n, r, ret, + self = this; + + if ( typeof selector !== "string" ) { + return jQuery( selector ).filter(function() { + for ( i = 0, l = self.length; i < l; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + }); + } + + ret = this.pushStack( "", "find", selector ); + + for ( i = 0, l = this.length; i < l; i++ ) { + length = ret.length; + jQuery.find( selector, this[i], ret ); + + if ( i > 0 ) { + // Make sure that the results are unique + for ( n = length; n < ret.length; n++ ) { + for ( r = 0; r < length; r++ ) { + if ( ret[r] === ret[n] ) { + ret.splice(n--, 1); + break; + } + } + } + } + } + + return ret; + }, + + has: function( target ) { + var i, + targets = jQuery( target, this ), + len = targets.length; + + return this.filter(function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( this, targets[i] ) ) { + return true; + } + } + }); + }, + + not: function( selector ) { + return this.pushStack( winnow(this, selector, false), "not", selector); + }, + + filter: function( selector ) { + return this.pushStack( winnow(this, selector, true), "filter", selector ); + }, + + is: function( selector ) { + return !!selector && ( + typeof selector === "string" ? + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + rneedsContext.test( selector ) ? + jQuery( selector, this.context ).index( this[0] ) >= 0 : + jQuery.filter( selector, this ).length > 0 : + this.filter( selector ).length > 0 ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + ret = [], + pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? + jQuery( selectors, context || this.context ) : + 0; + + for ( ; i < l; i++ ) { + cur = this[i]; + + while ( cur && cur.ownerDocument && cur !== context && cur.nodeType !== 11 ) { + if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { + ret.push( cur ); + break; + } + cur = cur.parentNode; + } + } + + ret = ret.length > 1 ? jQuery.unique( ret ) : ret; + + return this.pushStack( ret, "closest", selectors ); + }, + + // Determine the position of an element within + // the matched set of elements + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[0] && this[0].parentNode ) ? this.prevAll().length : -1; + } + + // index in selector + if ( typeof elem === "string" ) { + return jQuery.inArray( this[0], jQuery( elem ) ); + } + + // Locate the position of the desired element + return jQuery.inArray( + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[0] : elem, this ); + }, + + add: function( selector, context ) { + var set = typeof selector === "string" ? + jQuery( selector, context ) : + jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), + all = jQuery.merge( this.get(), set ); + + return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ? + all : + jQuery.unique( all ) ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter(selector) + ); + } +}); + +jQuery.fn.andSelf = jQuery.fn.addBack; + +// A painfully simple check to see if an element is disconnected +// from a document (should be improved, where feasible). +function isDisconnected( node ) { + return !node || !node.parentNode || node.parentNode.nodeType === 11; +} + +function sibling( cur, dir ) { + do { + cur = cur[ dir ]; + } while ( cur && cur.nodeType !== 1 ); + + return cur; +} + +jQuery.each({ + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return jQuery.dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return jQuery.dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return jQuery.dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return jQuery.dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return jQuery.dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return jQuery.dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return jQuery.sibling( elem.firstChild ); + }, + contents: function( elem ) { + return jQuery.nodeName( elem, "iframe" ) ? + elem.contentDocument || elem.contentWindow.document : + jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var ret = jQuery.map( this, fn, until ); + + if ( !runtil.test( name ) ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + ret = jQuery.filter( selector, ret ); + } + + ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; + + if ( this.length > 1 && rparentsprev.test( name ) ) { + ret = ret.reverse(); + } + + return this.pushStack( ret, name, core_slice.call( arguments ).join(",") ); + }; +}); + +jQuery.extend({ + filter: function( expr, elems, not ) { + if ( not ) { + expr = ":not(" + expr + ")"; + } + + return elems.length === 1 ? + jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : + jQuery.find.matches(expr, elems); + }, + + dir: function( elem, dir, until ) { + var matched = [], + cur = elem[ dir ]; + + while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { + if ( cur.nodeType === 1 ) { + matched.push( cur ); + } + cur = cur[dir]; + } + return matched; + }, + + sibling: function( n, elem ) { + var r = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + r.push( n ); + } + } + + return r; + } +}); + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, keep ) { + + // Can't pass null or undefined to indexOf in Firefox 4 + // Set to 0 to skip string check + qualifier = qualifier || 0; + + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep(elements, function( elem, i ) { + var retVal = !!qualifier.call( elem, i, elem ); + return retVal === keep; + }); + + } else if ( qualifier.nodeType ) { + return jQuery.grep(elements, function( elem, i ) { + return ( elem === qualifier ) === keep; + }); + + } else if ( typeof qualifier === "string" ) { + var filtered = jQuery.grep(elements, function( elem ) { + return elem.nodeType === 1; + }); + + if ( isSimple.test( qualifier ) ) { + return jQuery.filter(qualifier, filtered, !keep); + } else { + qualifier = jQuery.filter( qualifier, filtered ); + } + } + + return jQuery.grep(elements, function( elem, i ) { + return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep; + }); +} +function createSafeFragment( document ) { + var list = nodeNames.split( "|" ), + safeFrag = document.createDocumentFragment(); + + if ( safeFrag.createElement ) { + while ( list.length ) { + safeFrag.createElement( + list.pop() + ); + } + } + return safeFrag; +} + +var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + + "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", + rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, + rleadingWhitespace = /^\s+/, + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, + rtagName = /<([\w:]+)/, + rtbody = /]", "i"), + rcheckableType = /^(?:checkbox|radio)$/, + // checked="checked" or checked + rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, + rscriptType = /\/(java|ecma)script/i, + rcleanScript = /^\s*\s*$/g, + wrapMap = { + option: [ 1, "" ], + legend: [ 1, "
    ", "
    " ], + thead: [ 1, "", "
    " ], + tr: [ 2, "", "
    " ], + td: [ 3, "", "
    " ], + col: [ 2, "", "
    " ], + area: [ 1, "", "" ], + _default: [ 0, "", "" ] + }, + safeFragment = createSafeFragment( document ), + fragmentDiv = safeFragment.appendChild( document.createElement("div") ); + +wrapMap.optgroup = wrapMap.option; +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, +// unless wrapped in a div with non-breaking characters in front of it. +if ( !jQuery.support.htmlSerialize ) { + wrapMap._default = [ 1, "X
    ", "
    " ]; +} + +jQuery.fn.extend({ + text: function( value ) { + return jQuery.access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); + }, null, value, arguments.length ); + }, + + wrapAll: function( html ) { + if ( jQuery.isFunction( html ) ) { + return this.each(function(i) { + jQuery(this).wrapAll( html.call(this, i) ); + }); + } + + if ( this[0] ) { + // The elements to wrap the target around + var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); + + if ( this[0].parentNode ) { + wrap.insertBefore( this[0] ); + } + + wrap.map(function() { + var elem = this; + + while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { + elem = elem.firstChild; + } + + return elem; + }).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( jQuery.isFunction( html ) ) { + return this.each(function(i) { + jQuery(this).wrapInner( html.call(this, i) ); + }); + } + + return this.each(function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + }); + }, + + wrap: function( html ) { + var isFunction = jQuery.isFunction( html ); + + return this.each(function(i) { + jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); + }); + }, + + unwrap: function() { + return this.parent().each(function() { + if ( !jQuery.nodeName( this, "body" ) ) { + jQuery( this ).replaceWith( this.childNodes ); + } + }).end(); + }, + + append: function() { + return this.domManip(arguments, true, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 ) { + this.appendChild( elem ); + } + }); + }, + + prepend: function() { + return this.domManip(arguments, true, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 ) { + this.insertBefore( elem, this.firstChild ); + } + }); + }, + + before: function() { + if ( !isDisconnected( this[0] ) ) { + return this.domManip(arguments, false, function( elem ) { + this.parentNode.insertBefore( elem, this ); + }); + } + + if ( arguments.length ) { + var set = jQuery.clean( arguments ); + return this.pushStack( jQuery.merge( set, this ), "before", this.selector ); + } + }, + + after: function() { + if ( !isDisconnected( this[0] ) ) { + return this.domManip(arguments, false, function( elem ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + }); + } + + if ( arguments.length ) { + var set = jQuery.clean( arguments ); + return this.pushStack( jQuery.merge( this, set ), "after", this.selector ); + } + }, + + // keepData is for internal use only--do not document + remove: function( selector, keepData ) { + var elem, + i = 0; + + for ( ; (elem = this[i]) != null; i++ ) { + if ( !selector || jQuery.filter( selector, [ elem ] ).length ) { + if ( !keepData && elem.nodeType === 1 ) { + jQuery.cleanData( elem.getElementsByTagName("*") ); + jQuery.cleanData( [ elem ] ); + } + + if ( elem.parentNode ) { + elem.parentNode.removeChild( elem ); + } + } + } + + return this; + }, + + empty: function() { + var elem, + i = 0; + + for ( ; (elem = this[i]) != null; i++ ) { + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( elem.getElementsByTagName("*") ); + } + + // Remove any remaining nodes + while ( elem.firstChild ) { + elem.removeChild( elem.firstChild ); + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function () { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + }); + }, + + html: function( value ) { + return jQuery.access( this, function( value ) { + var elem = this[0] || {}, + i = 0, + l = this.length; + + if ( value === undefined ) { + return elem.nodeType === 1 ? + elem.innerHTML.replace( rinlinejQuery, "" ) : + undefined; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + ( jQuery.support.htmlSerialize || !rnoshimcache.test( value ) ) && + ( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && + !wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) { + + value = value.replace( rxhtmlTag, "<$1>" ); + + try { + for (; i < l; i++ ) { + // Remove element nodes and prevent memory leaks + elem = this[i] || {}; + if ( elem.nodeType === 1 ) { + jQuery.cleanData( elem.getElementsByTagName( "*" ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch(e) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function( value ) { + if ( !isDisconnected( this[0] ) ) { + // Make sure that the elements are removed from the DOM before they are inserted + // this can help fix replacing a parent with child elements + if ( jQuery.isFunction( value ) ) { + return this.each(function(i) { + var self = jQuery(this), old = self.html(); + self.replaceWith( value.call( this, i, old ) ); + }); + } + + if ( typeof value !== "string" ) { + value = jQuery( value ).detach(); + } + + return this.each(function() { + var next = this.nextSibling, + parent = this.parentNode; + + jQuery( this ).remove(); + + if ( next ) { + jQuery(next).before( value ); + } else { + jQuery(parent).append( value ); + } + }); + } + + return this.length ? + this.pushStack( jQuery(jQuery.isFunction(value) ? value() : value), "replaceWith", value ) : + this; + }, + + detach: function( selector ) { + return this.remove( selector, true ); + }, + + domManip: function( args, table, callback ) { + + // Flatten any nested arrays + args = [].concat.apply( [], args ); + + var results, first, fragment, iNoClone, + i = 0, + value = args[0], + scripts = [], + l = this.length; + + // We can't cloneNode fragments that contain checked, in WebKit + if ( !jQuery.support.checkClone && l > 1 && typeof value === "string" && rchecked.test( value ) ) { + return this.each(function() { + jQuery(this).domManip( args, table, callback ); + }); + } + + if ( jQuery.isFunction(value) ) { + return this.each(function(i) { + var self = jQuery(this); + args[0] = value.call( this, i, table ? self.html() : undefined ); + self.domManip( args, table, callback ); + }); + } + + if ( this[0] ) { + results = jQuery.buildFragment( args, this, scripts ); + fragment = results.fragment; + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + if ( first ) { + table = table && jQuery.nodeName( first, "tr" ); + + // Use the original fragment for the last item instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + // Fragments from the fragment cache must always be cloned and never used in place. + for ( iNoClone = results.cacheable || l - 1; i < l; i++ ) { + callback.call( + table && jQuery.nodeName( this[i], "table" ) ? + findOrAppend( this[i], "tbody" ) : + this[i], + i === iNoClone ? + fragment : + jQuery.clone( fragment, true, true ) + ); + } + } + + // Fix #11809: Avoid leaking memory + fragment = first = null; + + if ( scripts.length ) { + jQuery.each( scripts, function( i, elem ) { + if ( elem.src ) { + if ( jQuery.ajax ) { + jQuery.ajax({ + url: elem.src, + type: "GET", + dataType: "script", + async: false, + global: false, + "throws": true + }); + } else { + jQuery.error("no ajax"); + } + } else { + jQuery.globalEval( ( elem.text || elem.textContent || elem.innerHTML || "" ).replace( rcleanScript, "" ) ); + } + + if ( elem.parentNode ) { + elem.parentNode.removeChild( elem ); + } + }); + } + } + + return this; + } +}); + +function findOrAppend( elem, tag ) { + return elem.getElementsByTagName( tag )[0] || elem.appendChild( elem.ownerDocument.createElement( tag ) ); +} + +function cloneCopyEvent( src, dest ) { + + if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { + return; + } + + var type, i, l, + oldData = jQuery._data( src ), + curData = jQuery._data( dest, oldData ), + events = oldData.events; + + if ( events ) { + delete curData.handle; + curData.events = {}; + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + + // make the cloned public data object a copy from the original + if ( curData.data ) { + curData.data = jQuery.extend( {}, curData.data ); + } +} + +function cloneFixAttributes( src, dest ) { + var nodeName; + + // We do not need to do anything for non-Elements + if ( dest.nodeType !== 1 ) { + return; + } + + // clearAttributes removes the attributes, which we don't want, + // but also removes the attachEvent events, which we *do* want + if ( dest.clearAttributes ) { + dest.clearAttributes(); + } + + // mergeAttributes, in contrast, only merges back on the + // original attributes, not the events + if ( dest.mergeAttributes ) { + dest.mergeAttributes( src ); + } + + nodeName = dest.nodeName.toLowerCase(); + + if ( nodeName === "object" ) { + // IE6-10 improperly clones children of object elements using classid. + // IE10 throws NoModificationAllowedError if parent is null, #12132. + if ( dest.parentNode ) { + dest.outerHTML = src.outerHTML; + } + + // This path appears unavoidable for IE9. When cloning an object + // element in IE9, the outerHTML strategy above is not sufficient. + // If the src has innerHTML and the destination does not, + // copy the src.innerHTML into the dest.innerHTML. #10324 + if ( jQuery.support.html5Clone && (src.innerHTML && !jQuery.trim(dest.innerHTML)) ) { + dest.innerHTML = src.innerHTML; + } + + } else if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + // IE6-8 fails to persist the checked state of a cloned checkbox + // or radio button. Worse, IE6-7 fail to give the cloned element + // a checked appearance if the defaultChecked value isn't also set + + dest.defaultChecked = dest.checked = src.checked; + + // IE6-7 get confused and end up setting the value of a cloned + // checkbox/radio button to an empty string instead of "on" + if ( dest.value !== src.value ) { + dest.value = src.value; + } + + // IE6-8 fails to return the selected option to the default selected + // state when cloning options + } else if ( nodeName === "option" ) { + dest.selected = src.defaultSelected; + + // IE6-8 fails to set the defaultValue to the correct value when + // cloning other types of input fields + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + + // IE blanks contents when cloning scripts + } else if ( nodeName === "script" && dest.text !== src.text ) { + dest.text = src.text; + } + + // Event data gets referenced instead of copied if the expando + // gets copied too + dest.removeAttribute( jQuery.expando ); +} + +jQuery.buildFragment = function( args, context, scripts ) { + var fragment, cacheable, cachehit, + first = args[ 0 ]; + + // Set context from what may come in as undefined or a jQuery collection or a node + // Updated to fix #12266 where accessing context[0] could throw an exception in IE9/10 & + // also doubles as fix for #8950 where plain objects caused createDocumentFragment exception + context = context || document; + context = !context.nodeType && context[0] || context; + context = context.ownerDocument || context; + + // Only cache "small" (1/2 KB) HTML strings that are associated with the main document + // Cloning options loses the selected state, so don't cache them + // IE 6 doesn't like it when you put or elements in a fragment + // Also, WebKit does not clone 'checked' attributes on cloneNode, so don't cache + // Lastly, IE6,7,8 will not correctly reuse cached fragments that were created from unknown elems #10501 + if ( args.length === 1 && typeof first === "string" && first.length < 512 && context === document && + first.charAt(0) === "<" && !rnocache.test( first ) && + (jQuery.support.checkClone || !rchecked.test( first )) && + (jQuery.support.html5Clone || !rnoshimcache.test( first )) ) { + + // Mark cacheable and look for a hit + cacheable = true; + fragment = jQuery.fragments[ first ]; + cachehit = fragment !== undefined; + } + + if ( !fragment ) { + fragment = context.createDocumentFragment(); + jQuery.clean( args, context, fragment, scripts ); + + // Update the cache, but only store false + // unless this is a second parsing of the same content + if ( cacheable ) { + jQuery.fragments[ first ] = cachehit && fragment; + } + } + + return { fragment: fragment, cacheable: cacheable }; +}; + +jQuery.fragments = {}; + +jQuery.each({ + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + i = 0, + ret = [], + insert = jQuery( selector ), + l = insert.length, + parent = this.length === 1 && this[0].parentNode; + + if ( (parent == null || parent && parent.nodeType === 11 && parent.childNodes.length === 1) && l === 1 ) { + insert[ original ]( this[0] ); + return this; + } else { + for ( ; i < l; i++ ) { + elems = ( i > 0 ? this.clone(true) : this ).get(); + jQuery( insert[i] )[ original ]( elems ); + ret = ret.concat( elems ); + } + + return this.pushStack( ret, name, insert.selector ); + } + }; +}); + +function getAll( elem ) { + if ( typeof elem.getElementsByTagName !== "undefined" ) { + return elem.getElementsByTagName( "*" ); + + } else if ( typeof elem.querySelectorAll !== "undefined" ) { + return elem.querySelectorAll( "*" ); + + } else { + return []; + } +} + +// Used in clean, fixes the defaultChecked property +function fixDefaultChecked( elem ) { + if ( rcheckableType.test( elem.type ) ) { + elem.defaultChecked = elem.checked; + } +} + +jQuery.extend({ + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var srcElements, + destElements, + i, + clone; + + if ( jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { + clone = elem.cloneNode( true ); + + // IE<=8 does not properly clone detached, unknown element nodes + } else { + fragmentDiv.innerHTML = elem.outerHTML; + fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); + } + + if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) && + (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { + // IE copies events bound via attachEvent when using cloneNode. + // Calling detachEvent on the clone will also remove the events + // from the original. In order to get around this, we use some + // proprietary methods to clear the events. Thanks to MooTools + // guys for this hotness. + + cloneFixAttributes( elem, clone ); + + // Using Sizzle here is crazy slow, so we use getElementsByTagName instead + srcElements = getAll( elem ); + destElements = getAll( clone ); + + // Weird iteration because IE will replace the length property + // with an element if you are cloning the body and one of the + // elements on the page has a name or id of "length" + for ( i = 0; srcElements[i]; ++i ) { + // Ensure that the destination node is not null; Fixes #9587 + if ( destElements[i] ) { + cloneFixAttributes( srcElements[i], destElements[i] ); + } + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + cloneCopyEvent( elem, clone ); + + if ( deepDataAndEvents ) { + srcElements = getAll( elem ); + destElements = getAll( clone ); + + for ( i = 0; srcElements[i]; ++i ) { + cloneCopyEvent( srcElements[i], destElements[i] ); + } + } + } + + srcElements = destElements = null; + + // Return the cloned set + return clone; + }, + + clean: function( elems, context, fragment, scripts ) { + var i, j, elem, tag, wrap, depth, div, hasBody, tbody, len, handleScript, jsTags, + safe = context === document && safeFragment, + ret = []; + + // Ensure that context is a document + if ( !context || typeof context.createDocumentFragment === "undefined" ) { + context = document; + } + + // Use the already-created safe fragment if context permits + for ( i = 0; (elem = elems[i]) != null; i++ ) { + if ( typeof elem === "number" ) { + elem += ""; + } + + if ( !elem ) { + continue; + } + + // Convert html string into DOM nodes + if ( typeof elem === "string" ) { + if ( !rhtml.test( elem ) ) { + elem = context.createTextNode( elem ); + } else { + // Ensure a safe container in which to render the html + safe = safe || createSafeFragment( context ); + div = context.createElement("div"); + safe.appendChild( div ); + + // Fix "XHTML"-style tags in all browsers + elem = elem.replace(rxhtmlTag, "<$1>"); + + // Go to html and back, then peel off extra wrappers + tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + depth = wrap[0]; + div.innerHTML = wrap[1] + elem + wrap[2]; + + // Move to the right depth + while ( depth-- ) { + div = div.lastChild; + } + + // Remove IE's autoinserted from table fragments + if ( !jQuery.support.tbody ) { + + // String was a , *may* have spurious + hasBody = rtbody.test(elem); + tbody = tag === "table" && !hasBody ? + div.firstChild && div.firstChild.childNodes : + + // String was a bare or + wrap[1] === "
    " && !hasBody ? + div.childNodes : + []; + + for ( j = tbody.length - 1; j >= 0 ; --j ) { + if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length ) { + tbody[ j ].parentNode.removeChild( tbody[ j ] ); + } + } + } + + // IE completely kills leading whitespace when innerHTML is used + if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { + div.insertBefore( context.createTextNode( rleadingWhitespace.exec(elem)[0] ), div.firstChild ); + } + + elem = div.childNodes; + + // Take out of fragment container (we need a fresh div each time) + div.parentNode.removeChild( div ); + } + } + + if ( elem.nodeType ) { + ret.push( elem ); + } else { + jQuery.merge( ret, elem ); + } + } + + // Fix #11356: Clear elements from safeFragment + if ( div ) { + elem = div = safe = null; + } + + // Reset defaultChecked for any radios and checkboxes + // about to be appended to the DOM in IE 6/7 (#8060) + if ( !jQuery.support.appendChecked ) { + for ( i = 0; (elem = ret[i]) != null; i++ ) { + if ( jQuery.nodeName( elem, "input" ) ) { + fixDefaultChecked( elem ); + } else if ( typeof elem.getElementsByTagName !== "undefined" ) { + jQuery.grep( elem.getElementsByTagName("input"), fixDefaultChecked ); + } + } + } + + // Append elements to a provided document fragment + if ( fragment ) { + // Special handling of each script element + handleScript = function( elem ) { + // Check if we consider it executable + if ( !elem.type || rscriptType.test( elem.type ) ) { + // Detach the script and store it in the scripts array (if provided) or the fragment + // Return truthy to indicate that it has been handled + return scripts ? + scripts.push( elem.parentNode ? elem.parentNode.removeChild( elem ) : elem ) : + fragment.appendChild( elem ); + } + }; + + for ( i = 0; (elem = ret[i]) != null; i++ ) { + // Check if we're done after handling an executable script + if ( !( jQuery.nodeName( elem, "script" ) && handleScript( elem ) ) ) { + // Append to fragment and handle embedded scripts + fragment.appendChild( elem ); + if ( typeof elem.getElementsByTagName !== "undefined" ) { + // handleScript alters the DOM, so use jQuery.merge to ensure snapshot iteration + jsTags = jQuery.grep( jQuery.merge( [], elem.getElementsByTagName("script") ), handleScript ); + + // Splice the scripts into ret after their former ancestor and advance our index beyond them + ret.splice.apply( ret, [i + 1, 0].concat( jsTags ) ); + i += jsTags.length; + } + } + } + } + + return ret; + }, + + cleanData: function( elems, /* internal */ acceptData ) { + var data, id, elem, type, + i = 0, + internalKey = jQuery.expando, + cache = jQuery.cache, + deleteExpando = jQuery.support.deleteExpando, + special = jQuery.event.special; + + for ( ; (elem = elems[i]) != null; i++ ) { + + if ( acceptData || jQuery.acceptData( elem ) ) { + + id = elem[ internalKey ]; + data = id && cache[ id ]; + + if ( data ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Remove cache only if it was not already removed by jQuery.event.remove + if ( cache[ id ] ) { + + delete cache[ id ]; + + // IE does not allow us to delete expando properties from nodes, + // nor does it have a removeAttribute function on Document nodes; + // we must handle all of these cases + if ( deleteExpando ) { + delete elem[ internalKey ]; + + } else if ( elem.removeAttribute ) { + elem.removeAttribute( internalKey ); + + } else { + elem[ internalKey ] = null; + } + + jQuery.deletedIds.push( id ); + } + } + } + } + } +}); +// Limit scope pollution from any deprecated API +(function() { + +var matched, browser; + +// Use of jQuery.browser is frowned upon. +// More details: http://api.jquery.com/jQuery.browser +// jQuery.uaMatch maintained for back-compat +jQuery.uaMatch = function( ua ) { + ua = ua.toLowerCase(); + + var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) || + /(webkit)[ \/]([\w.]+)/.exec( ua ) || + /(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) || + /(msie) ([\w.]+)/.exec( ua ) || + ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) || + []; + + return { + browser: match[ 1 ] || "", + version: match[ 2 ] || "0" + }; +}; + +matched = jQuery.uaMatch( navigator.userAgent ); +browser = {}; + +if ( matched.browser ) { + browser[ matched.browser ] = true; + browser.version = matched.version; +} + +// Chrome is Webkit, but Webkit is also Safari. +if ( browser.chrome ) { + browser.webkit = true; +} else if ( browser.webkit ) { + browser.safari = true; +} + +jQuery.browser = browser; + +jQuery.sub = function() { + function jQuerySub( selector, context ) { + return new jQuerySub.fn.init( selector, context ); + } + jQuery.extend( true, jQuerySub, this ); + jQuerySub.superclass = this; + jQuerySub.fn = jQuerySub.prototype = this(); + jQuerySub.fn.constructor = jQuerySub; + jQuerySub.sub = this.sub; + jQuerySub.fn.init = function init( selector, context ) { + if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) { + context = jQuerySub( context ); + } + + return jQuery.fn.init.call( this, selector, context, rootjQuerySub ); + }; + jQuerySub.fn.init.prototype = jQuerySub.fn; + var rootjQuerySub = jQuerySub(document); + return jQuerySub; +}; + +})(); +var curCSS, iframe, iframeDoc, + ralpha = /alpha\([^)]*\)/i, + ropacity = /opacity=([^)]*)/, + rposition = /^(top|right|bottom|left)$/, + // swappable if display is none or starts with table except "table", "table-cell", or "table-caption" + // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rmargin = /^margin/, + rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ), + rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ), + rrelNum = new RegExp( "^([-+])=(" + core_pnum + ")", "i" ), + elemdisplay = { BODY: "block" }, + + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: 0, + fontWeight: 400 + }, + + cssExpand = [ "Top", "Right", "Bottom", "Left" ], + cssPrefixes = [ "Webkit", "O", "Moz", "ms" ], + + eventsToggle = jQuery.fn.toggle; + +// return a css property mapped to a potentially vendor prefixed property +function vendorPropName( style, name ) { + + // shortcut for names that are not vendor prefixed + if ( name in style ) { + return name; + } + + // check for vendor prefixed names + var capName = name.charAt(0).toUpperCase() + name.slice(1), + origName = name, + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in style ) { + return name; + } + } + + return origName; +} + +function isHidden( elem, el ) { + elem = el || elem; + return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); +} + +function showHide( elements, show ) { + var elem, display, + values = [], + index = 0, + length = elements.length; + + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + values[ index ] = jQuery._data( elem, "olddisplay" ); + if ( show ) { + // Reset the inline display of this element to learn if it is + // being hidden by cascaded rules or not + if ( !values[ index ] && elem.style.display === "none" ) { + elem.style.display = ""; + } + + // Set elements which have been overridden with display: none + // in a stylesheet to whatever the default browser style is + // for such an element + if ( elem.style.display === "" && isHidden( elem ) ) { + values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) ); + } + } else { + display = curCSS( elem, "display" ); + + if ( !values[ index ] && display !== "none" ) { + jQuery._data( elem, "olddisplay", display ); + } + } + } + + // Set the display of most of the elements in a second loop + // to avoid the constant reflow + for ( index = 0; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + if ( !show || elem.style.display === "none" || elem.style.display === "" ) { + elem.style.display = show ? values[ index ] || "" : "none"; + } + } + + return elements; +} + +jQuery.fn.extend({ + css: function( name, value ) { + return jQuery.access( this, function( elem, name, value ) { + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + }, + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state, fn2 ) { + var bool = typeof state === "boolean"; + + if ( jQuery.isFunction( state ) && jQuery.isFunction( fn2 ) ) { + return eventsToggle.apply( this, arguments ); + } + + return this.each(function() { + if ( bool ? state : isHidden( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + }); + } +}); + +jQuery.extend({ + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + + } + } + } + }, + + // Exclude the following css properties to add px + cssNumber: { + "fillOpacity": true, + "fontWeight": true, + "lineHeight": true, + "opacity": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: { + // normalize float css property + "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" + }, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = jQuery.camelCase( name ), + style = elem.style; + + name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) ); + + // gets hook for the prefixed version + // followed by the unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // convert relative number strings (+= or -=) to relative numbers. #7345 + if ( type === "string" && (ret = rrelNum.exec( value )) ) { + value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) ); + // Fixes bug #9237 + type = "number"; + } + + // Make sure that NaN and null values aren't set. See: #7116 + if ( value == null || type === "number" && isNaN( value ) ) { + return; + } + + // If a number was passed in, add 'px' to the (except for certain CSS properties) + if ( type === "number" && !jQuery.cssNumber[ origName ] ) { + value += "px"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) { + // Wrapped to prevent IE from throwing errors when 'invalid' values are provided + // Fixes bug #5509 + try { + style[ name ] = value; + } catch(e) {} + } + + } else { + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, numeric, extra ) { + var val, num, hooks, + origName = jQuery.camelCase( name ); + + // Make sure that we're working with the right name + name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) ); + + // gets hook for the prefixed version + // followed by the unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name ); + } + + //convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Return, converting to number if forced or a qualifier was provided and val looks numeric + if ( numeric || extra !== undefined ) { + num = parseFloat( val ); + return numeric || jQuery.isNumeric( num ) ? num || 0 : val; + } + return val; + }, + + // A method for quickly swapping in/out CSS properties to get correct calculations + swap: function( elem, options, callback ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.call( elem ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; + } +}); + +// NOTE: To any future maintainer, we've window.getComputedStyle +// because jsdom on node.js will break without it. +if ( window.getComputedStyle ) { + curCSS = function( elem, name ) { + var ret, width, minWidth, maxWidth, + computed = window.getComputedStyle( elem, null ), + style = elem.style; + + if ( computed ) { + + // getPropertyValue is only needed for .css('filter') in IE9, see #12537 + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right + // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels + // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values + if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) { + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret; + }; +} else if ( document.documentElement.currentStyle ) { + curCSS = function( elem, name ) { + var left, rsLeft, + ret = elem.currentStyle && elem.currentStyle[ name ], + style = elem.style; + + // Avoid setting ret to empty string here + // so we don't default to auto + if ( ret == null && style && style[ name ] ) { + ret = style[ name ]; + } + + // From the awesome hack by Dean Edwards + // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 + + // If we're not dealing with a regular pixel number + // but a number that has a weird ending, we need to convert it to pixels + // but not position css attributes, as those are proportional to the parent element instead + // and we can't measure the parent instead because it might trigger a "stacking dolls" problem + if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { + + // Remember the original values + left = style.left; + rsLeft = elem.runtimeStyle && elem.runtimeStyle.left; + + // Put in the new values to get a computed value out + if ( rsLeft ) { + elem.runtimeStyle.left = elem.currentStyle.left; + } + style.left = name === "fontSize" ? "1em" : ret; + ret = style.pixelLeft + "px"; + + // Revert the changed values + style.left = left; + if ( rsLeft ) { + elem.runtimeStyle.left = rsLeft; + } + } + + return ret === "" ? "auto" : ret; + }; +} + +function setPositiveNumber( elem, value, subtract ) { + var matches = rnumsplit.exec( value ); + return matches ? + Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : + value; +} + +function augmentWidthOrHeight( elem, name, extra, isBorderBox ) { + var i = extra === ( isBorderBox ? "border" : "content" ) ? + // If we already have the right measurement, avoid augmentation + 4 : + // Otherwise initialize for horizontal or vertical properties + name === "width" ? 1 : 0, + + val = 0; + + for ( ; i < 4; i += 2 ) { + // both box models exclude margin, so add it if we want it + if ( extra === "margin" ) { + // we use jQuery.css instead of curCSS here + // because of the reliableMarginRight CSS hook! + val += jQuery.css( elem, extra + cssExpand[ i ], true ); + } + + // From this point on we use curCSS for maximum performance (relevant in animations) + if ( isBorderBox ) { + // border-box includes padding, so remove it if we want content + if ( extra === "content" ) { + val -= parseFloat( curCSS( elem, "padding" + cssExpand[ i ] ) ) || 0; + } + + // at this point, extra isn't border nor margin, so remove border + if ( extra !== "margin" ) { + val -= parseFloat( curCSS( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0; + } + } else { + // at this point, extra isn't content, so add padding + val += parseFloat( curCSS( elem, "padding" + cssExpand[ i ] ) ) || 0; + + // at this point, extra isn't content nor padding, so add border + if ( extra !== "padding" ) { + val += parseFloat( curCSS( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0; + } + } + } + + return val; +} + +function getWidthOrHeight( elem, name, extra ) { + + // Start with offset property, which is equivalent to the border-box value + var val = name === "width" ? elem.offsetWidth : elem.offsetHeight, + valueIsBorderBox = true, + isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing" ) === "border-box"; + + // some non-html elements return undefined for offsetWidth, so check for null/undefined + // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 + // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 + if ( val <= 0 || val == null ) { + // Fall back to computed then uncomputed css if necessary + val = curCSS( elem, name ); + if ( val < 0 || val == null ) { + val = elem.style[ name ]; + } + + // Computed unit is not pixels. Stop here and return. + if ( rnumnonpx.test(val) ) { + return val; + } + + // we need the check for style in case a browser which returns unreliable values + // for getComputedStyle silently falls back to the reliable elem.style + valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] ); + + // Normalize "", auto, and prepare for extra + val = parseFloat( val ) || 0; + } + + // use the active box-sizing model to add/subtract irrelevant styles + return ( val + + augmentWidthOrHeight( + elem, + name, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox + ) + ) + "px"; +} + + +// Try to determine the default display value of an element +function css_defaultDisplay( nodeName ) { + if ( elemdisplay[ nodeName ] ) { + return elemdisplay[ nodeName ]; + } + + var elem = jQuery( "<" + nodeName + ">" ).appendTo( document.body ), + display = elem.css("display"); + elem.remove(); + + // If the simple way fails, + // get element's real default display by attaching it to a temp iframe + if ( display === "none" || display === "" ) { + // Use the already-created iframe if possible + iframe = document.body.appendChild( + iframe || jQuery.extend( document.createElement("iframe"), { + frameBorder: 0, + width: 0, + height: 0 + }) + ); + + // Create a cacheable copy of the iframe document on first call. + // IE and Opera will allow us to reuse the iframeDoc without re-writing the fake HTML + // document to it; WebKit & Firefox won't allow reusing the iframe document. + if ( !iframeDoc || !iframe.createElement ) { + iframeDoc = ( iframe.contentWindow || iframe.contentDocument ).document; + iframeDoc.write(""); + iframeDoc.close(); + } + + elem = iframeDoc.body.appendChild( iframeDoc.createElement(nodeName) ); + + display = curCSS( elem, "display" ); + document.body.removeChild( iframe ); + } + + // Store the correct default display + elemdisplay[ nodeName ] = display; + + return display; +} + +jQuery.each([ "height", "width" ], function( i, name ) { + jQuery.cssHooks[ name ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + // certain elements can have dimension info if we invisibly show them + // however, it must have a current display style that would benefit from this + if ( elem.offsetWidth === 0 && rdisplayswap.test( curCSS( elem, "display" ) ) ) { + return jQuery.swap( elem, cssShow, function() { + return getWidthOrHeight( elem, name, extra ); + }); + } else { + return getWidthOrHeight( elem, name, extra ); + } + } + }, + + set: function( elem, value, extra ) { + return setPositiveNumber( elem, value, extra ? + augmentWidthOrHeight( + elem, + name, + extra, + jQuery.support.boxSizing && jQuery.css( elem, "boxSizing" ) === "border-box" + ) : 0 + ); + } + }; +}); + +if ( !jQuery.support.opacity ) { + jQuery.cssHooks.opacity = { + get: function( elem, computed ) { + // IE uses filters for opacity + return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "" ) ? + ( 0.01 * parseFloat( RegExp.$1 ) ) + "" : + computed ? "1" : ""; + }, + + set: function( elem, value ) { + var style = elem.style, + currentStyle = elem.currentStyle, + opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "", + filter = currentStyle && currentStyle.filter || style.filter || ""; + + // IE has trouble with opacity if it does not have layout + // Force it by setting the zoom level + style.zoom = 1; + + // if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652 + if ( value >= 1 && jQuery.trim( filter.replace( ralpha, "" ) ) === "" && + style.removeAttribute ) { + + // Setting style.filter to null, "" & " " still leave "filter:" in the cssText + // if "filter:" is present at all, clearType is disabled, we want to avoid this + // style.removeAttribute is IE Only, but so apparently is this code path... + style.removeAttribute( "filter" ); + + // if there there is no filter style applied in a css rule, we are done + if ( currentStyle && !currentStyle.filter ) { + return; + } + } + + // otherwise, set new filter values + style.filter = ralpha.test( filter ) ? + filter.replace( ralpha, opacity ) : + filter + " " + opacity; + } + }; +} + +// These hooks cannot be added until DOM ready because the support test +// for it is not run until after DOM ready +jQuery(function() { + if ( !jQuery.support.reliableMarginRight ) { + jQuery.cssHooks.marginRight = { + get: function( elem, computed ) { + // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right + // Work around by temporarily setting element display to inline-block + return jQuery.swap( elem, { "display": "inline-block" }, function() { + if ( computed ) { + return curCSS( elem, "marginRight" ); + } + }); + } + }; + } + + // Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084 + // getComputedStyle returns percent when specified for top/left/bottom/right + // rather than make the css module depend on the offset module, we just check for it here + if ( !jQuery.support.pixelPosition && jQuery.fn.position ) { + jQuery.each( [ "top", "left" ], function( i, prop ) { + jQuery.cssHooks[ prop ] = { + get: function( elem, computed ) { + if ( computed ) { + var ret = curCSS( elem, prop ); + // if curCSS returns percentage, fallback to offset + return rnumnonpx.test( ret ) ? jQuery( elem ).position()[ prop ] + "px" : ret; + } + } + }; + }); + } + +}); + +if ( jQuery.expr && jQuery.expr.filters ) { + jQuery.expr.filters.hidden = function( elem ) { + return ( elem.offsetWidth === 0 && elem.offsetHeight === 0 ) || (!jQuery.support.reliableHiddenOffsets && ((elem.style && elem.style.display) || curCSS( elem, "display" )) === "none"); + }; + + jQuery.expr.filters.visible = function( elem ) { + return !jQuery.expr.filters.hidden( elem ); + }; +} + +// These hooks are used by animate to expand properties +jQuery.each({ + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i, + + // assumes a single number if not a string + parts = typeof value === "string" ? value.split(" ") : [ value ], + expanded = {}; + + for ( i = 0; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( !rmargin.test( prefix ) ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +}); +var r20 = /%20/g, + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rinput = /^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i, + rselectTextarea = /^(?:select|textarea)/i; + +jQuery.fn.extend({ + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map(function(){ + return this.elements ? jQuery.makeArray( this.elements ) : this; + }) + .filter(function(){ + return this.name && !this.disabled && + ( this.checked || rselectTextarea.test( this.nodeName ) || + rinput.test( this.type ) ); + }) + .map(function( i, elem ){ + var val = jQuery( this ).val(); + + return val == null ? + null : + jQuery.isArray( val ) ? + jQuery.map( val, function( val, i ){ + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + }) : + { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + }).get(); + } +}); + +//Serialize an array of form elements or a set of +//key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, value ) { + // If value is a function, invoke it and return its value + value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); + s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); + }; + + // Set traditional to true for jQuery <= 1.3.2 behavior. + if ( traditional === undefined ) { + traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + }); + + } else { + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ).replace( r20, "+" ); +}; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( jQuery.isArray( obj ) ) { + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + // If array item is non-scalar (array or object), encode its + // numeric index to resolve deserialization ambiguity issues. + // Note that rack (as of 1.0.0) can't currently deserialize + // nested arrays properly, and attempting to do so may cause + // a server error. Possible fixes are to modify rack's + // deserialization algorithm or to provide an option or flag + // to force array serialization to be shallow. + buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add ); + } + }); + + } else if ( !traditional && jQuery.type( obj ) === "object" ) { + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + // Serialize scalar item. + add( prefix, obj ); + } +} +var + // Document location + ajaxLocParts, + ajaxLocation, + + rhash = /#.*$/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + rquery = /\?/, + rscript = /)<[^<]*)*<\/script>/gi, + rts = /([?&])_=[^&]*/, + rurl = /^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/, + + // Keep a copy of the old load method + _load = jQuery.fn.load, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = ["*/"] + ["*"]; + +// #8138, IE may throw an exception when accessing +// a field from window.location if document.domain has been set +try { + ajaxLocation = location.href; +} catch( e ) { + // Use the href attribute of an A element + // since IE will modify it given document.location + ajaxLocation = document.createElement( "a" ); + ajaxLocation.href = ""; + ajaxLocation = ajaxLocation.href; +} + +// Segment location into parts +ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || []; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, list, placeBefore, + dataTypes = dataTypeExpression.toLowerCase().split( core_rspace ), + i = 0, + length = dataTypes.length; + + if ( jQuery.isFunction( func ) ) { + // For each dataType in the dataTypeExpression + for ( ; i < length; i++ ) { + dataType = dataTypes[ i ]; + // We control if we're asked to add before + // any existing element + placeBefore = /^\+/.test( dataType ); + if ( placeBefore ) { + dataType = dataType.substr( 1 ) || "*"; + } + list = structure[ dataType ] = structure[ dataType ] || []; + // then we add to the structure accordingly + list[ placeBefore ? "unshift" : "push" ]( func ); + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR, + dataType /* internal */, inspected /* internal */ ) { + + dataType = dataType || options.dataTypes[ 0 ]; + inspected = inspected || {}; + + inspected[ dataType ] = true; + + var selection, + list = structure[ dataType ], + i = 0, + length = list ? list.length : 0, + executeOnly = ( structure === prefilters ); + + for ( ; i < length && ( executeOnly || !selection ); i++ ) { + selection = list[ i ]( options, originalOptions, jqXHR ); + // If we got redirected to another dataType + // we try there if executing only and not done already + if ( typeof selection === "string" ) { + if ( !executeOnly || inspected[ selection ] ) { + selection = undefined; + } else { + options.dataTypes.unshift( selection ); + selection = inspectPrefiltersOrTransports( + structure, options, originalOptions, jqXHR, selection, inspected ); + } + } + } + // If we're only executing or nothing was selected + // we try the catchall dataType if not done already + if ( ( executeOnly || !selection ) && !inspected[ "*" ] ) { + selection = inspectPrefiltersOrTransports( + structure, options, originalOptions, jqXHR, "*", inspected ); + } + // unnecessary when only executing (prefilters) + // but it'll be ignored by the caller in that case + return selection; +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } +} + +jQuery.fn.load = function( url, params, callback ) { + if ( typeof url !== "string" && _load ) { + return _load.apply( this, arguments ); + } + + // Don't do a request if no elements are being requested + if ( !this.length ) { + return this; + } + + var selector, type, response, + self = this, + off = url.indexOf(" "); + + if ( off >= 0 ) { + selector = url.slice( off, url.length ); + url = url.slice( 0, off ); + } + + // If it's a function + if ( jQuery.isFunction( params ) ) { + + // We assume that it's the callback + callback = params; + params = undefined; + + // Otherwise, build a param string + } else if ( params && typeof params === "object" ) { + type = "POST"; + } + + // Request the remote document + jQuery.ajax({ + url: url, + + // if "type" variable is undefined, then "GET" method will be used + type: type, + dataType: "html", + data: params, + complete: function( jqXHR, status ) { + if ( callback ) { + self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] ); + } + } + }).done(function( responseText ) { + + // Save response for use in complete callback + response = arguments; + + // See if a selector was specified + self.html( selector ? + + // Create a dummy div to hold the results + jQuery("
    ") + + // inject the contents of the document in, removing the scripts + // to avoid any 'Permission Denied' errors in IE + .append( responseText.replace( rscript, "" ) ) + + // Locate the specified elements + .find( selector ) : + + // If not, just inject the full result + responseText ); + + }); + + return this; +}; + +// Attach a bunch of functions for handling common AJAX events +jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split( " " ), function( i, o ){ + jQuery.fn[ o ] = function( f ){ + return this.on( o, f ); + }; +}); + +jQuery.each( [ "get", "post" ], function( i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + // shift arguments if data argument was omitted + if ( jQuery.isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + return jQuery.ajax({ + type: method, + url: url, + data: data, + success: callback, + dataType: type + }); + }; +}); + +jQuery.extend({ + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + if ( settings ) { + // Building a settings object + ajaxExtend( target, jQuery.ajaxSettings ); + } else { + // Extending ajaxSettings + settings = target; + target = jQuery.ajaxSettings; + } + ajaxExtend( target, settings ); + return target; + }, + + ajaxSettings: { + url: ajaxLocation, + isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ), + global: true, + type: "GET", + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + processData: true, + async: true, + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + xml: "application/xml, text/xml", + html: "text/html", + text: "text/plain", + json: "application/json, text/javascript", + "*": allTypes + }, + + contents: { + xml: /xml/, + html: /html/, + json: /json/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText" + }, + + // List of data converters + // 1) key format is "source_type destination_type" (a single space in-between) + // 2) the catchall symbol "*" can be used for source_type + converters: { + + // Convert anything to text + "* text": window.String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": jQuery.parseJSON, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + context: true, + url: true + } + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var // ifModified key + ifModifiedKey, + // Response headers + responseHeadersString, + responseHeaders, + // transport + transport, + // timeout handle + timeoutTimer, + // Cross-domain detection vars + parts, + // To know if global events are to be dispatched + fireGlobals, + // Loop variable + i, + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + // Callbacks context + callbackContext = s.context || s, + // Context for global events + // It's the callbackContext if one was provided in the options + // and if it's a DOM node or a jQuery collection + globalEventContext = callbackContext !== s && + ( callbackContext.nodeType || callbackContext instanceof jQuery ) ? + jQuery( callbackContext ) : jQuery.event, + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + // Status-dependent callbacks + statusCode = s.statusCode || {}, + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + // The jqXHR state + state = 0, + // Default abort message + strAbort = "canceled", + // Fake xhr + jqXHR = { + + readyState: 0, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( !state ) { + var lname = name.toLowerCase(); + name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Raw string + getAllResponseHeaders: function() { + return state === 2 ? responseHeadersString : null; + }, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( state === 2 ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[1].toLowerCase() ] = match[ 2 ]; + } + } + match = responseHeaders[ key.toLowerCase() ]; + } + return match === undefined ? null : match; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( !state ) { + s.mimeType = type; + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + statusText = statusText || strAbort; + if ( transport ) { + transport.abort( statusText ); + } + done( 0, statusText ); + return this; + } + }; + + // Callback for when everything is done + // It is defined here because jslint complains if it is declared + // at the end of the function (which would be more logical and readable) + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Called once + if ( state === 2 ) { + return; + } + + // State is "done" now + state = 2; + + // Clear timeout if it exists + if ( timeoutTimer ) { + clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // If successful, handle type chaining + if ( status >= 200 && status < 300 || status === 304 ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + + modified = jqXHR.getResponseHeader("Last-Modified"); + if ( modified ) { + jQuery.lastModified[ ifModifiedKey ] = modified; + } + modified = jqXHR.getResponseHeader("Etag"); + if ( modified ) { + jQuery.etag[ ifModifiedKey ] = modified; + } + } + + // If not modified + if ( status === 304 ) { + + statusText = "notmodified"; + isSuccess = true; + + // If we have data + } else { + + isSuccess = ajaxConvert( s, response ); + statusText = isSuccess.state; + success = isSuccess.data; + error = isSuccess.error; + isSuccess = !error; + } + } else { + // We extract error from statusText + // then normalize statusText and status for non-aborts + error = statusText; + if ( !statusText || status ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( "ajax" + ( isSuccess ? "Success" : "Error" ), + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + // Attach deferreds + deferred.promise( jqXHR ); + jqXHR.success = jqXHR.done; + jqXHR.error = jqXHR.fail; + jqXHR.complete = completeDeferred.add; + + // Status-dependent callbacks + jqXHR.statusCode = function( map ) { + if ( map ) { + var tmp; + if ( state < 2 ) { + for ( tmp in map ) { + statusCode[ tmp ] = [ statusCode[tmp], map[tmp] ]; + } + } else { + tmp = map[ jqXHR.status ]; + jqXHR.always( tmp ); + } + } + return this; + }; + + // Remove hash character (#7531: and string promotion) + // Add protocol if not provided (#5866: IE7 issue with protocol-less urls) + // We also use the url parameter if available + s.url = ( ( url || s.url ) + "" ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" ); + + // Extract dataTypes list + s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().split( core_rspace ); + + // A cross-domain request is in order when we have a protocol:host:port mismatch + if ( s.crossDomain == null ) { + parts = rurl.exec( s.url.toLowerCase() ); + s.crossDomain = !!( parts && + ( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] || + ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? 80 : 443 ) ) != + ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? 80 : 443 ) ) ) + ); + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( state === 2 ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + fireGlobals = s.global; + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // If data is available, append data to url + if ( s.data ) { + s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.data; + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Get ifModifiedKey before adding the anti-cache parameter + ifModifiedKey = s.url; + + // Add anti-cache in url if needed + if ( s.cache === false ) { + + var ts = jQuery.now(), + // try replacing _= if it is there + ret = s.url.replace( rts, "$1_=" + ts ); + + // if nothing was replaced, add timestamp to the end + s.url = ret + ( ( ret === s.url ) ? ( rquery.test( s.url ) ? "&" : "?" ) + "_=" + ts : "" ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + ifModifiedKey = ifModifiedKey || s.url; + if ( jQuery.lastModified[ ifModifiedKey ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ ifModifiedKey ] ); + } + if ( jQuery.etag[ ifModifiedKey ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ ifModifiedKey ] ); + } + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ? + s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) { + // Abort if not done already and return + return jqXHR.abort(); + + } + + // aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + for ( i in { success: 1, error: 1, complete: 1 } ) { + jqXHR[ i ]( s[ i ] ); + } + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = setTimeout( function(){ + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + state = 1; + transport.send( requestHeaders, done ); + } catch (e) { + // Propagate exception as error if not done + if ( state < 2 ) { + done( -1, e ); + // Simply rethrow otherwise + } else { + throw e; + } + } + } + + return jqXHR; + }, + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {} + +}); + +/* Handles responses to an ajax request: + * - sets all responseXXX fields accordingly + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes, + responseFields = s.responseFields; + + // Fill responseXXX fields + for ( type in responseFields ) { + if ( type in responses ) { + jqXHR[ responseFields[type] ] = responses[ type ]; + } + } + + // Remove auto dataType and get content-type in the process + while( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "content-type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +// Chain conversions given the request and the original response +function ajaxConvert( s, response ) { + + var conv, conv2, current, tmp, + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(), + prev = dataTypes[ 0 ], + converters = {}, + i = 0; + + // Apply the dataFilter if provided + if ( s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + // Convert to each sequential dataType, tolerating list modification + for ( ; (current = dataTypes[++i]); ) { + + // There's only work to do if current dataType is non-auto + if ( current !== "*" ) { + + // Convert response if prev dataType is non-auto and differs from current + if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split(" "); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.splice( i--, 0, current ); + } + + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s["throws"] ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current }; + } + } + } + } + + // Update prev for next iteration + prev = current; + } + } + + return { state: "success", data: response }; +} +var oldCallbacks = [], + rquestion = /\?/, + rjsonp = /(=)\?(?=&|$)|\?\?/, + nonce = jQuery.now(); + +// Default jsonp settings +jQuery.ajaxSetup({ + jsonp: "callback", + jsonpCallback: function() { + var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) ); + this[ callback ] = true; + return callback; + } +}); + +// Detect, normalize options and install callbacks for jsonp requests +jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) { + + var callbackName, overwritten, responseContainer, + data = s.data, + url = s.url, + hasCallback = s.jsonp !== false, + replaceInUrl = hasCallback && rjsonp.test( url ), + replaceInData = hasCallback && !replaceInUrl && typeof data === "string" && + !( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") && + rjsonp.test( data ); + + // Handle iff the expected data type is "jsonp" or we have a parameter to set + if ( s.dataTypes[ 0 ] === "jsonp" || replaceInUrl || replaceInData ) { + + // Get callback name, remembering preexisting value associated with it + callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ? + s.jsonpCallback() : + s.jsonpCallback; + overwritten = window[ callbackName ]; + + // Insert callback into url or form data + if ( replaceInUrl ) { + s.url = url.replace( rjsonp, "$1" + callbackName ); + } else if ( replaceInData ) { + s.data = data.replace( rjsonp, "$1" + callbackName ); + } else if ( hasCallback ) { + s.url += ( rquestion.test( url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName; + } + + // Use data converter to retrieve json after script execution + s.converters["script json"] = function() { + if ( !responseContainer ) { + jQuery.error( callbackName + " was not called" ); + } + return responseContainer[ 0 ]; + }; + + // force json dataType + s.dataTypes[ 0 ] = "json"; + + // Install callback + window[ callbackName ] = function() { + responseContainer = arguments; + }; + + // Clean-up function (fires after converters) + jqXHR.always(function() { + // Restore preexisting value + window[ callbackName ] = overwritten; + + // Save back as free + if ( s[ callbackName ] ) { + // make sure that re-using the options doesn't screw things around + s.jsonpCallback = originalSettings.jsonpCallback; + + // save the callback name for future use + oldCallbacks.push( callbackName ); + } + + // Call if it was a function and we have a response + if ( responseContainer && jQuery.isFunction( overwritten ) ) { + overwritten( responseContainer[ 0 ] ); + } + + responseContainer = overwritten = undefined; + }); + + // Delegate to script + return "script"; + } +}); +// Install script dataType +jQuery.ajaxSetup({ + accepts: { + script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /javascript|ecmascript/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +}); + +// Handle cache's special case and global +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + s.global = false; + } +}); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function(s) { + + // This transport only deals with cross domain requests + if ( s.crossDomain ) { + + var script, + head = document.head || document.getElementsByTagName( "head" )[0] || document.documentElement; + + return { + + send: function( _, callback ) { + + script = document.createElement( "script" ); + + script.async = "async"; + + if ( s.scriptCharset ) { + script.charset = s.scriptCharset; + } + + script.src = s.url; + + // Attach handlers for all browsers + script.onload = script.onreadystatechange = function( _, isAbort ) { + + if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) { + + // Handle memory leak in IE + script.onload = script.onreadystatechange = null; + + // Remove the script + if ( head && script.parentNode ) { + head.removeChild( script ); + } + + // Dereference the script + script = undefined; + + // Callback if not abort + if ( !isAbort ) { + callback( 200, "success" ); + } + } + }; + // Use insertBefore instead of appendChild to circumvent an IE6 bug. + // This arises when a base node is used (#2709 and #4378). + head.insertBefore( script, head.firstChild ); + }, + + abort: function() { + if ( script ) { + script.onload( 0, 1 ); + } + } + }; + } +}); +var xhrCallbacks, + // #5280: Internet Explorer will keep connections alive if we don't abort on unload + xhrOnUnloadAbort = window.ActiveXObject ? function() { + // Abort all pending requests + for ( var key in xhrCallbacks ) { + xhrCallbacks[ key ]( 0, 1 ); + } + } : false, + xhrId = 0; + +// Functions to create xhrs +function createStandardXHR() { + try { + return new window.XMLHttpRequest(); + } catch( e ) {} +} + +function createActiveXHR() { + try { + return new window.ActiveXObject( "Microsoft.XMLHTTP" ); + } catch( e ) {} +} + +// Create the request object +// (This is still attached to ajaxSettings for backward compatibility) +jQuery.ajaxSettings.xhr = window.ActiveXObject ? + /* Microsoft failed to properly + * implement the XMLHttpRequest in IE7 (can't request local files), + * so we use the ActiveXObject when it is available + * Additionally XMLHttpRequest can be disabled in IE7/IE8 so + * we need a fallback. + */ + function() { + return !this.isLocal && createStandardXHR() || createActiveXHR(); + } : + // For all other browsers, use the standard XMLHttpRequest object + createStandardXHR; + +// Determine support properties +(function( xhr ) { + jQuery.extend( jQuery.support, { + ajax: !!xhr, + cors: !!xhr && ( "withCredentials" in xhr ) + }); +})( jQuery.ajaxSettings.xhr() ); + +// Create transport if the browser can provide an xhr +if ( jQuery.support.ajax ) { + + jQuery.ajaxTransport(function( s ) { + // Cross domain only allowed if supported through XMLHttpRequest + if ( !s.crossDomain || jQuery.support.cors ) { + + var callback; + + return { + send: function( headers, complete ) { + + // Get a new xhr + var handle, i, + xhr = s.xhr(); + + // Open the socket + // Passing null username, generates a login popup on Opera (#2865) + if ( s.username ) { + xhr.open( s.type, s.url, s.async, s.username, s.password ); + } else { + xhr.open( s.type, s.url, s.async ); + } + + // Apply custom fields if provided + if ( s.xhrFields ) { + for ( i in s.xhrFields ) { + xhr[ i ] = s.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( s.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( s.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !s.crossDomain && !headers["X-Requested-With"] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Need an extra try/catch for cross domain requests in Firefox 3 + try { + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + } catch( _ ) {} + + // Do send the request + // This may raise an exception which is actually + // handled in jQuery.ajax (so no try/catch here) + xhr.send( ( s.hasContent && s.data ) || null ); + + // Listener + callback = function( _, isAbort ) { + + var status, + statusText, + responseHeaders, + responses, + xml; + + // Firefox throws exceptions when accessing properties + // of an xhr when a network error occurred + // http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE) + try { + + // Was never called and is aborted or complete + if ( callback && ( isAbort || xhr.readyState === 4 ) ) { + + // Only called once + callback = undefined; + + // Do not keep as active anymore + if ( handle ) { + xhr.onreadystatechange = jQuery.noop; + if ( xhrOnUnloadAbort ) { + delete xhrCallbacks[ handle ]; + } + } + + // If it's an abort + if ( isAbort ) { + // Abort it manually if needed + if ( xhr.readyState !== 4 ) { + xhr.abort(); + } + } else { + status = xhr.status; + responseHeaders = xhr.getAllResponseHeaders(); + responses = {}; + xml = xhr.responseXML; + + // Construct response list + if ( xml && xml.documentElement /* #4958 */ ) { + responses.xml = xml; + } + + // When requesting binary data, IE6-9 will throw an exception + // on any attempt to access responseText (#11426) + try { + responses.text = xhr.responseText; + } catch( e ) { + } + + // Firefox throws an exception when accessing + // statusText for faulty cross-domain requests + try { + statusText = xhr.statusText; + } catch( e ) { + // We normalize with Webkit giving an empty statusText + statusText = ""; + } + + // Filter status for non standard behaviors + + // If the request is local and we have data: assume a success + // (success with no data won't get notified, that's the best we + // can do given current implementations) + if ( !status && s.isLocal && !s.crossDomain ) { + status = responses.text ? 200 : 404; + // IE - #1450: sometimes returns 1223 when it should be 204 + } else if ( status === 1223 ) { + status = 204; + } + } + } + } catch( firefoxAccessException ) { + if ( !isAbort ) { + complete( -1, firefoxAccessException ); + } + } + + // Call complete if needed + if ( responses ) { + complete( status, statusText, responses, responseHeaders ); + } + }; + + if ( !s.async ) { + // if we're in sync mode we fire the callback + callback(); + } else if ( xhr.readyState === 4 ) { + // (IE6 & IE7) if it's in cache and has been + // retrieved directly we need to fire the callback + setTimeout( callback, 0 ); + } else { + handle = ++xhrId; + if ( xhrOnUnloadAbort ) { + // Create the active xhrs callbacks list if needed + // and attach the unload handler + if ( !xhrCallbacks ) { + xhrCallbacks = {}; + jQuery( window ).unload( xhrOnUnloadAbort ); + } + // Add to list of active xhrs callbacks + xhrCallbacks[ handle ] = callback; + } + xhr.onreadystatechange = callback; + } + }, + + abort: function() { + if ( callback ) { + callback(0,1); + } + } + }; + } + }); +} +var fxNow, timerId, + rfxtypes = /^(?:toggle|show|hide)$/, + rfxnum = new RegExp( "^(?:([-+])=|)(" + core_pnum + ")([a-z%]*)$", "i" ), + rrun = /queueHooks$/, + animationPrefilters = [ defaultPrefilter ], + tweeners = { + "*": [function( prop, value ) { + var end, unit, + tween = this.createTween( prop, value ), + parts = rfxnum.exec( value ), + target = tween.cur(), + start = +target || 0, + scale = 1, + maxIterations = 20; + + if ( parts ) { + end = +parts[2]; + unit = parts[3] || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + + // We need to compute starting value + if ( unit !== "px" && start ) { + // Iteratively approximate from a nonzero starting point + // Prefer the current property, because this process will be trivial if it uses the same units + // Fallback to end or a simple constant + start = jQuery.css( tween.elem, prop, true ) || end || 1; + + do { + // If previous iteration zeroed out, double until we get *something* + // Use a string for doubling factor so we don't accidentally see scale as unchanged below + scale = scale || ".5"; + + // Adjust and apply + start = start / scale; + jQuery.style( tween.elem, prop, start + unit ); + + // Update scale, tolerating zero or NaN from tween.cur() + // And breaking the loop if scale is unchanged or perfect, or if we've just had enough + } while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations ); + } + + tween.unit = unit; + tween.start = start; + // If a +=/-= token was provided, we're doing a relative animation + tween.end = parts[1] ? start + ( parts[1] + 1 ) * end : end; + } + return tween; + }] + }; + +// Animations created synchronously will run synchronously +function createFxNow() { + setTimeout(function() { + fxNow = undefined; + }, 0 ); + return ( fxNow = jQuery.now() ); +} + +function createTweens( animation, props ) { + jQuery.each( props, function( prop, value ) { + var collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( collection[ index ].call( animation, prop, value ) ) { + + // we're done with this property + return; + } + } + }); +} + +function Animation( elem, properties, options ) { + var result, + index = 0, + tweenerIndex = 0, + length = animationPrefilters.length, + deferred = jQuery.Deferred().always( function() { + // don't match elem in the :animated selector + delete tick.elem; + }), + tick = function() { + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + // archaic crash bug won't allow us to use 1 - ( 0.5 || 0 ) (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length ; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ]); + + if ( percent < 1 && length ) { + return remaining; + } else { + deferred.resolveWith( elem, [ animation ] ); + return false; + } + }, + animation = deferred.promise({ + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { specialEasing: {} }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end, easing ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + // if we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + + for ( ; index < length ; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // resolve when we played the last frame + // otherwise, reject + if ( gotoEnd ) { + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + }), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length ; index++ ) { + result = animationPrefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + return result; + } + } + + createTweens( animation, props ); + + if ( jQuery.isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + jQuery.fx.timer( + jQuery.extend( tick, { + anim: animation, + queue: animation.opts.queue, + elem: elem + }) + ); + + // attach callbacks from options + return animation.progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = jQuery.camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( jQuery.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // not quite $.extend, this wont overwrite keys already present. + // also - reusing 'index' from above because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweener: function( props, callback ) { + if ( jQuery.isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.split(" "); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length ; index++ ) { + prop = props[ index ]; + tweeners[ prop ] = tweeners[ prop ] || []; + tweeners[ prop ].unshift( callback ); + } + }, + + prefilter: function( callback, prepend ) { + if ( prepend ) { + animationPrefilters.unshift( callback ); + } else { + animationPrefilters.push( callback ); + } + } +}); + +function defaultPrefilter( elem, props, opts ) { + var index, prop, value, length, dataShow, toggle, tween, hooks, oldfire, + anim = this, + style = elem.style, + orig = {}, + handled = [], + hidden = elem.nodeType && isHidden( elem ); + + // handle queue: false promises + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always(function() { + // doing this makes sure that the complete handler will be called + // before this completes + anim.always(function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + }); + }); + } + + // height/width overflow pass + if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) { + // Make sure that nothing sneaks out + // Record all 3 overflow attributes because IE does not + // change the overflow attribute when overflowX and + // overflowY are set to the same value + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Set display property to inline-block for height/width + // animations on inline elements that are having width/height animated + if ( jQuery.css( elem, "display" ) === "inline" && + jQuery.css( elem, "float" ) === "none" ) { + + // inline-level elements accept inline-block; + // block-level elements need to be inline with layout + if ( !jQuery.support.inlineBlockNeedsLayout || css_defaultDisplay( elem.nodeName ) === "inline" ) { + style.display = "inline-block"; + + } else { + style.zoom = 1; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + if ( !jQuery.support.shrinkWrapBlocks ) { + anim.done(function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + }); + } + } + + + // show/hide pass + for ( index in props ) { + value = props[ index ]; + if ( rfxtypes.exec( value ) ) { + delete props[ index ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + continue; + } + handled.push( index ); + } + } + + length = handled.length; + if ( length ) { + dataShow = jQuery._data( elem, "fxshow" ) || jQuery._data( elem, "fxshow", {} ); + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + + // store state if its toggle - enables .stop().toggle() to "reverse" + if ( toggle ) { + dataShow.hidden = !hidden; + } + if ( hidden ) { + jQuery( elem ).show(); + } else { + anim.done(function() { + jQuery( elem ).hide(); + }); + } + anim.done(function() { + var prop; + jQuery.removeData( elem, "fxshow", true ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + }); + for ( index = 0 ; index < length ; index++ ) { + prop = handled[ index ]; + tween = anim.createTween( prop, hidden ? dataShow[ prop ] : 0 ); + orig[ prop ] = dataShow[ prop ] || jQuery.style( elem, prop ); + + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = tween.start; + if ( hidden ) { + tween.end = tween.start; + tween.start = prop === "width" || prop === "height" ? 1 : 0; + } + } + } + } +} + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || "swing"; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + if ( tween.elem[ tween.prop ] != null && + (!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) { + return tween.elem[ tween.prop ]; + } + + // passing any value as a 4th parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails + // so, simple values such as "10px" are parsed to Float. + // complex values such as "rotate(1rad)" are returned as is. + result = jQuery.css( tween.elem, tween.prop, false, "" ); + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + // use step hook for back compat - use cssHook if its there - use .style if its + // available and use plain properties where available + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Remove in 2.0 - this supports IE8's panic based approach +// to setting things on disconnected nodes + +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.each([ "toggle", "show", "hide" ], function( i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" || + // special check for .toggle( handler, handler, ... ) + ( !i && jQuery.isFunction( speed ) && jQuery.isFunction( easing ) ) ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +}); + +jQuery.fn.extend({ + fadeTo: function( speed, to, easing, callback ) { + + // show any hidden elements after setting opacity to 0 + return this.filter( isHidden ).css( "opacity", 0 ).show() + + // animate to the value specified + .end().animate({ opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations resolve immediately + if ( empty ) { + anim.stop( true ); + } + }; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue && type !== false ) { + this.queue( type || "fx", [] ); + } + + return this.each(function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = jQuery._data( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) { + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // start the next in the queue if the last step wasn't forced + // timers currently will call their complete callbacks, which will dequeue + // but only if they were gotoEnd + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + }); + } +}); + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + attrs = { height: type }, + i = 0; + + // if we include width, step value is 1 to do all cssExpand values, + // if we don't include width, step value is 2 to skip over Left and Right + includeWidth = includeWidth? 1 : 0; + for( ; i < 4 ; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +// Generate shortcuts for custom animations +jQuery.each({ + slideDown: genFx("show"), + slideUp: genFx("hide"), + slideToggle: genFx("toggle"), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +}); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + jQuery.isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing + }; + + opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration : + opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default; + + // normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( jQuery.isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p*Math.PI ) / 2; + } +}; + +jQuery.timers = []; +jQuery.fx = Tween.prototype.init; +jQuery.fx.tick = function() { + var timer, + timers = jQuery.timers, + i = 0; + + fxNow = jQuery.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + // Checks the timer has not already been removed + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + if ( timer() && jQuery.timers.push( timer ) && !timerId ) { + timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval ); + } +}; + +jQuery.fx.interval = 13; + +jQuery.fx.stop = function() { + clearInterval( timerId ); + timerId = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + // Default speed + _default: 400 +}; + +// Back Compat <1.8 extension point +jQuery.fx.step = {}; + +if ( jQuery.expr && jQuery.expr.filters ) { + jQuery.expr.filters.animated = function( elem ) { + return jQuery.grep(jQuery.timers, function( fn ) { + return elem === fn.elem; + }).length; + }; +} +var rroot = /^(?:body|html)$/i; + +jQuery.fn.offset = function( options ) { + if ( arguments.length ) { + return options === undefined ? + this : + this.each(function( i ) { + jQuery.offset.setOffset( this, options, i ); + }); + } + + var docElem, body, win, clientTop, clientLeft, scrollTop, scrollLeft, + box = { top: 0, left: 0 }, + elem = this[ 0 ], + doc = elem && elem.ownerDocument; + + if ( !doc ) { + return; + } + + if ( (body = doc.body) === elem ) { + return jQuery.offset.bodyOffset( elem ); + } + + docElem = doc.documentElement; + + // Make sure it's not a disconnected DOM node + if ( !jQuery.contains( docElem, elem ) ) { + return box; + } + + // If we don't have gBCR, just use 0,0 rather than error + // BlackBerry 5, iOS 3 (original iPhone) + if ( typeof elem.getBoundingClientRect !== "undefined" ) { + box = elem.getBoundingClientRect(); + } + win = getWindow( doc ); + clientTop = docElem.clientTop || body.clientTop || 0; + clientLeft = docElem.clientLeft || body.clientLeft || 0; + scrollTop = win.pageYOffset || docElem.scrollTop; + scrollLeft = win.pageXOffset || docElem.scrollLeft; + return { + top: box.top + scrollTop - clientTop, + left: box.left + scrollLeft - clientLeft + }; +}; + +jQuery.offset = { + + bodyOffset: function( body ) { + var top = body.offsetTop, + left = body.offsetLeft; + + if ( jQuery.support.doesNotIncludeMarginInBodyOffset ) { + top += parseFloat( jQuery.css(body, "marginTop") ) || 0; + left += parseFloat( jQuery.css(body, "marginLeft") ) || 0; + } + + return { top: top, left: left }; + }, + + setOffset: function( elem, options, i ) { + var position = jQuery.css( elem, "position" ); + + // set position first, in-case top/left are set even on static elem + if ( position === "static" ) { + elem.style.position = "relative"; + } + + var curElem = jQuery( elem ), + curOffset = curElem.offset(), + curCSSTop = jQuery.css( elem, "top" ), + curCSSLeft = jQuery.css( elem, "left" ), + calculatePosition = ( position === "absolute" || position === "fixed" ) && jQuery.inArray("auto", [curCSSTop, curCSSLeft]) > -1, + props = {}, curPosition = {}, curTop, curLeft; + + // need to be able to calculate position if either top or left is auto and position is either absolute or fixed + if ( calculatePosition ) { + curPosition = curElem.position(); + curTop = curPosition.top; + curLeft = curPosition.left; + } else { + curTop = parseFloat( curCSSTop ) || 0; + curLeft = parseFloat( curCSSLeft ) || 0; + } + + if ( jQuery.isFunction( options ) ) { + options = options.call( elem, i, curOffset ); + } + + if ( options.top != null ) { + props.top = ( options.top - curOffset.top ) + curTop; + } + if ( options.left != null ) { + props.left = ( options.left - curOffset.left ) + curLeft; + } + + if ( "using" in options ) { + options.using.call( elem, props ); + } else { + curElem.css( props ); + } + } +}; + + +jQuery.fn.extend({ + + position: function() { + if ( !this[0] ) { + return; + } + + var elem = this[0], + + // Get *real* offsetParent + offsetParent = this.offsetParent(), + + // Get correct offsets + offset = this.offset(), + parentOffset = rroot.test(offsetParent[0].nodeName) ? { top: 0, left: 0 } : offsetParent.offset(); + + // Subtract element margins + // note: when an element has margin: auto the offsetLeft and marginLeft + // are the same in Safari causing offset.left to incorrectly be 0 + offset.top -= parseFloat( jQuery.css(elem, "marginTop") ) || 0; + offset.left -= parseFloat( jQuery.css(elem, "marginLeft") ) || 0; + + // Add offsetParent borders + parentOffset.top += parseFloat( jQuery.css(offsetParent[0], "borderTopWidth") ) || 0; + parentOffset.left += parseFloat( jQuery.css(offsetParent[0], "borderLeftWidth") ) || 0; + + // Subtract the two offsets + return { + top: offset.top - parentOffset.top, + left: offset.left - parentOffset.left + }; + }, + + offsetParent: function() { + return this.map(function() { + var offsetParent = this.offsetParent || document.body; + while ( offsetParent && (!rroot.test(offsetParent.nodeName) && jQuery.css(offsetParent, "position") === "static") ) { + offsetParent = offsetParent.offsetParent; + } + return offsetParent || document.body; + }); + } +}); + + +// Create scrollLeft and scrollTop methods +jQuery.each( {scrollLeft: "pageXOffset", scrollTop: "pageYOffset"}, function( method, prop ) { + var top = /Y/.test( prop ); + + jQuery.fn[ method ] = function( val ) { + return jQuery.access( this, function( elem, method, val ) { + var win = getWindow( elem ); + + if ( val === undefined ) { + return win ? (prop in win) ? win[ prop ] : + win.document.documentElement[ method ] : + elem[ method ]; + } + + if ( win ) { + win.scrollTo( + !top ? val : jQuery( win ).scrollLeft(), + top ? val : jQuery( win ).scrollTop() + ); + + } else { + elem[ method ] = val; + } + }, method, val, arguments.length, null ); + }; +}); + +function getWindow( elem ) { + return jQuery.isWindow( elem ) ? + elem : + elem.nodeType === 9 ? + elem.defaultView || elem.parentWindow : + false; +} +// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods +jQuery.each( { Height: "height", Width: "width" }, function( name, type ) { + jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) { + // margin is only for outerHeight, outerWidth + jQuery.fn[ funcName ] = function( margin, value ) { + var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ), + extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" ); + + return jQuery.access( this, function( elem, type, value ) { + var doc; + + if ( jQuery.isWindow( elem ) ) { + // As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there + // isn't a whole lot we can do. See pull request at this URL for discussion: + // https://github.com/jquery/jquery/pull/764 + return elem.document.documentElement[ "client" + name ]; + } + + // Get document width or height + if ( elem.nodeType === 9 ) { + doc = elem.documentElement; + + // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest + // unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it. + return Math.max( + elem.body[ "scroll" + name ], doc[ "scroll" + name ], + elem.body[ "offset" + name ], doc[ "offset" + name ], + doc[ "client" + name ] + ); + } + + return value === undefined ? + // Get width or height on the element, requesting but not forcing parseFloat + jQuery.css( elem, type, value, extra ) : + + // Set width or height on the element + jQuery.style( elem, type, value, extra ); + }, type, chainable ? margin : undefined, chainable, null ); + }; + }); +}); +// Expose jQuery to the global object +window.jQuery = window.$ = jQuery; + +// Expose jQuery as an AMD module, but only for AMD loaders that +// understand the issues with loading multiple versions of jQuery +// in a page that all might call define(). The loader will indicate +// they have special allowances for multiple jQuery versions by +// specifying define.amd.jQuery = true. Register as a named module, +// since jQuery can be concatenated with other files that may use define, +// but not use a proper concatenation script that understands anonymous +// AMD modules. A named AMD is safest and most robust way to register. +// Lowercase jquery is used because AMD module names are derived from +// file names, and jQuery is normally delivered in a lowercase file name. +// Do this after creating the global so that if an AMD module wants to call +// noConflict to hide this version of jQuery, it will work. +if ( typeof define === "function" && define.amd && define.amd.jQuery ) { + define( "jquery", [], function () { return jQuery; } ); +} + +})( window ); diff --git a/vendor/github.com/schollz/cowyo/static/text/adjectives b/vendor/github.com/schollz/cowyo/static/text/adjectives new file mode 100644 index 0000000..56f9661 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/static/text/adjectives @@ -0,0 +1,16027 @@ +abducent +adducent +nascent +emergent +dissilient +parturient +dying +moribund +last +abridged +cut +potted +unabridged +absolute +direct +implicit +infinite +living +relative +relational +absorbent +absorbefacient +assimilating +hygroscopic +receptive +spongy +thirsty +nonabsorbent +repellent +adsorbent +chemisorptive +nonadsorbent +absorbable +adsorbable +abstemious +abstinent +ascetic +gluttonous +crapulous +crapulent +edacious +greedy +hoggish +overgreedy +abstract +conceptional +conceptual +ideal +ideological +concrete +objective +real +abundant +abounding +ample +copious +easy +exuberant +thick +long +overabundant +plentiful +rampant +rank +superabundant +teeming +torrential +verdant +scarce +rare +tight +abused +battered +unabused +acceptable +bankable +unexceptionable +unobjectionable +unacceptable +exceptionable +accessible +approachable +handy +inaccessible +outback +pathless +unapproachable +accommodating +complaisant +unaccommodating +disobliging +accurate +close +surgical +straight +true +veracious +inaccurate +away +faulty +unfaithful +wide +accustomed +unaccustomed +new +unused +acidic +acid +alkaline +alkalescent +basic +saltlike +amphoteric +acidophilic +acknowledged +accepted +assumptive +declarable +given +putative +unacknowledged +unappreciated +unavowed +unconfessed +unrecognized +acquisitive +accumulative +avaricious +possessive +plundering +predaceous +rapacious +sordid +unacquisitive +acropetal +basipetal +active +about +acrobatic +agile +hot +hyperactive +sporty +inactive +abeyant +hypoactive +inert +sedentary +active +activated +inactive +off +retired +active +brisk +bustling +busy +open +springy +inactive +dark +dead +dull +idle +strikebound +active +progressive +inactive +flat +indolent +latent +quiescent +active +activist +proactive +passive +resistless +active +eruptive +dormant +quiescent +extinct +dead +active +alive +active +stative +active +passive +active +activated +counteractive +inactive +quiescent +active +quiet +actual +effective +potential +latent +acute +subacute +chronic +degenerative +virulent +deadly +avirulent +adaptive +accommodative +adaptational +adjustive +maladaptive +dysfunctional +maladjustive +addicted +alcoholic +dependent +unaddicted +clean +addictive +nonaddictive +additive +accumulative +addable +extra +complemental +incremental +intercalary +summational +supplementary +subtractive +ablative +reductive +addressed +unaddressed +adequate +competent +inadequate +deficient +incapable +adhesive +adherent +agglutinate +bondable +coherent +cohesive +gluey +gooey +gummed +pitchy +sticky +nonadhesive +nonglutinous +nonresinous +ungummed +adjective +substantive +adoptable +unadoptable +adorned +beady +bedaubed +bespectacled +brocaded +buttony +carbuncled +champleve +clinquant +crested +crested +crested +crocketed +feathery +frilled +fringed +inflamed +inlaid +inwrought +tessellated +mounted +paneled +studded +tapestried +tasseled +tufted +unadorned +plain +untufted +cholinergic +anticholinergic +adroit +clean +clever +coordinated +deft +handy +maladroit +bumbling +inept +uncoordinated +unmechanical +advantageous +beneficial +plus +discriminatory +disadvantageous +minus +adventurous +audacious +sporting +swaggering +unadventurous +safe +advisable +inadvisable +considered +aerobic +aerobiotic +oxidative +anaerobic +aerobic +anaerobic +aesthetic +artistic +cosmetic +painterly +sensuous +inaesthetic +inartistic +affected +smitten +subject +taken +unaffected +immune +unimpressed +uninfluenced +affected +agonistic +artificial +constrained +elocutionary +mannered +plummy +unaffected +lifelike +unmannered +unselfconscious +unstilted +affirmative +assentient +negative +dissentient +acceptive +accepting +rejective +dismissive +repudiative +agoraphobic +alarmed +algophobic +apprehensive +hangdog +claustrophobic +fearful +frightened +horrified +hunted +hydrophobic +mysophobic +panicky +numb +shitless +triskaidekaphobic +unnerved +xenophobic +unafraid +unapprehensive +unblinking +unfrightened +aggressive +battleful +competitive +hostile +obstreperous +predatory +pugnacious +scrappy +truculent +unaggressive +agitated +aroused +distraught +jolted +feverish +frantic +hysterical +psychedelic +unagitated +agitated +churning +churning +jolted +rippled +seething +stirred +unagitated +nonturbulent +unstirred +agreeable +disagreeable +annoying +harsh +unsweet +alert +fly +lidless +unalert +algorithmic +recursive +heuristic +alienable +appropriable +assignable +inalienable +absolute +nontransferable +alive +liveborn +viable +vital +dead +asleep +assassinated +bloodless +breathless +cold +d.o.a. +deathlike +defunct +doomed +executed +fallen +late +lifeless +murdered +nonviable +slain +stillborn +apocrine +eccrine +artesian +subartesian +live +living +dead +extinct +lifeless +alphabetic +abecedarian +alphabetized +analphabetic +altricial +precocial +altruistic +egoistic +ambiguous +enigmatic +multivalent +polysemous +uncertain +unambiguous +monosemous +ambitious +pushful +aspirant +compulsive +manque +overambitious +unambitious +shiftless +ametropic +emmetropic +ample +full +generous +wide +meager +bare +exiguous +hardscrabble +measly +anabolic +catabolic +anaclinal +cataclinal +anastigmatic +astigmatic +anticlinal +synclinal +anadromous +catadromous +diadromous +anabatic +katabatic +anal +oral +analogue +digital +analytic +synthetic +analytic +isolating +synthetic +agglutinative +analytic +synthetic +inflectional +derivational +apocarpous +syncarpous +angry +aggravated +angered +black +choleric +huffy +indignant +irate +livid +smoldering +wrathful +unangry +resentful +acrimonious +rancorous +unresentful +unbitter +sentient +sensate +insentient +unfeeling +animate +inanimate +nonconscious +animated +enlivened +reanimated +unanimated +lifeless +wan +enlivened +unenlivened +animate +inanimate +anonymous +nameless +onymous +binomial +pseudonymous +antemortem +postmortem +antecedent +anterior +anticipatory +preexistent +subsequent +attendant +later +antrorse +retrorse +decurved +aquatic +marine +semiaquatic +subaqueous +terrestrial +onshore +overland +amphibious +amphibiotic +preceding +above +foregoing +introductory +precedent +premedical +preparatory +previous +succeeding +ensuing +following +following +postmortem +precedented +unprecedented +new +prehensile +nonprehensile +prenatal +perinatal +postnatal +preprandial +postprandial +prewar +postwar +retrograde +anterograde +antemeridian +postmeridian +anterior +frontal +frontal +prefrontal +posterior +back +caudal +retral +dorsal +ventral +dorsoventral +appealable +unappealable +appendaged +unappendaged +appetizing +unappetizing +approachable +accessible +unapproachable +offish +appropriate +befitting +pat +proper +inappropriate +unbefitting +improper +due +callable +collect +collectible +delinquent +receivable +repayable +undue +due +undue +apropos +apposite +malapropos +inapposite +apteral +amphiprostylar +prostyle +peripteral +monopteral +peristylar +arbitrable +nonarbitrable +columned +amphistylar +columnar +columniform +colonnaded +pillared +noncolumned +astylar +unpillared +arboreal +nonarboreal +arenaceous +argillaceous +armed +equipped +militarized +unarmed +barehanded +clean +defenseless +weaponless +armored +bulletproof +scaled +unarmored +armed +barbed +bristlelike +brushlike +thistlelike +clawed +unarmed +thornless +armed +armlike +brachiate +armless +armored +scaly +unarmored +scaleless +artful +crafty +cute +designing +deep +elusive +manipulative +pawky +artless +careless +articulate +eloquent +inarticulate +aphasic +aphonic +dumb +dumb +incoherent +mute +speechless +unarticulated +speaking +tongued +nonspeaking +articulated +jointed +unarticulated +unjointed +ashamed +discredited +embarrassed +guilty +shamefaced +unashamed +audacious +shameless +unabashed +assertive +cocky +emphatic +unassertive +nonassertive +reticent +associative +associable +nonassociative +attached +bespoken +intended +involved +unattached +unengaged +affixed +appendant +basifixed +glued +mounted +unaffixed +sessile +pedunculate +sessile +vagile +attached +detached +freestanding +semidetached +stuck +cragfast +unstuck +attachable +bindable +detachable +clastic +wary +shy +unwary +gullible +unguarded +attentive +captive +advertent +observant +oversolicitous +solicitous +inattentive +absent +distracted +dreamy +drowsy +forgetful +attractive +bewitching +charismatic +cunning +dinky +engaging +fetching +glossy +hypnotic +irresistible +personable +photogenic +prepossessing +winsome +unattractive +homely +subfusc +unprepossessing +attractive +repulsive +appealing +attractive +unappealing +unattractive +attributable +ascribable +credited +traceable +unattributable +attributive +predicative +pregnant +big +nonpregnant +audible +clunky +sonic +sounding +inaudible +breathed +infrasonic +silent +silent +supersonic +unheard +sonic +subsonic +supersonic +auspicious +bright +fortunate +inauspicious +unpromising +propitious +golden +gracious +unpropitious +ill +thunderous +authorized +accredited +approved +canonized +empowered +unauthorized +unaccredited +constitutional +unconstitutional +autochthonous +allochthonous +autoecious +heteroecious +autogenous +heterogenous +automatic +autoloading +automated +semiautomatic +smart +manual +available +accessible +acquirable +addressable +easy +forthcoming +gettable +lendable +visible +open +purchasable +ready +unavailable +inaccessible +awake +astir +awakened +insomniac +unsleeping +waking +asleep +dormant +drowsy +hypnoid +sleepy +slumberous +unawakened +astringent +styptic +nonastringent +aware +alert +conscious +sensible +unaware +oblivious +unconscious +unsuspecting +witting +unwitting +alarming +appalling +atrocious +awful +baleful +bloodcurdling +chilling +creepy +formidable +ghastly +hairy +petrifying +stupefying +terrific +unalarming +anemophilous +entomophilous +reassuring +assuasive +assuring +comforting +unreassuring +back +backmost +rear +front +advance +foremost +frontal +leading +directing +guiding +following +pursuing +backed +hardbacked +razorback +backless +backward +backswept +cacuminal +converse +inverse +rearward +receding +reflexive +regardant +retracted +retral +retroflex +returning +forward +guardant +headfirst +forward +reverse +backward +bashful +forward +brash +bumptious +overfamiliar +fresh +assumptive +balconied +unbalconied +barreled +unbarreled +beaked +beaklike +billed +duckbill +rostrate +beakless +bedded +bedless +beneficed +unbeneficed +stratified +foliate +laminar +layered +sheetlike +unstratified +ferned +braky +fernlike +fernless +grassy +grasslike +rushlike +sedgy +grassless +gusseted +ungusseted +hairless +bald +balding +beardless +depilatory +depilous +glabrescent +glabrous +nonhairy +tonsured +hairy +canescent +comate +downy +floccose +furlike +furred +fuzzed +hispid +lanate +pappose +pilous +tomentose +wiry +wooly +awned +bearded +awnless +bearing +nonbearing +beautiful +beauteous +bonny +dishy +exquisite +glorious +gorgeous +lovely +picturesque +pretty +pulchritudinous +ravishing +scenic +stunning +ugly +disfigured +fugly +grotesque +hideous +scrofulous +unlovely +unsightly +bellied +bellyless +banded +unbanded +belted +banded +beltlike +unbelted +beneficent +benefic +maleficent +baleful +malefic +malicious +despiteful +leering +malevolent +bitchy +poisonous +venomed +vixenish +unmalicious +benign +kindly +malign +cancerous +best +champion +first +optimum +primo +superfine +unexcelled +unsurpassable +worst +bottom +last +pessimal +better +amended +finer +improved +worse +worsened +better +fitter +worse +bettering +ameliorating +amendatory +corrective +remedial +worsening +bicameral +unicameral +bidirectional +biface +duplex +unidirectional +simplex +unifacial +faced +featured +visaged +faceless +anonymous +bibbed +bibless +unilateral +multilateral +bilateral +bipartite +joint +multipartite +quadrilateral +quadripartite +tetramerous +trilateral +tripartite +bimodal +unimodal +binaural +stereophonic +monaural +mono +binucleate +mononuclear +trinucleate +bipedal +quadrupedal +black +colored +negro +negroid +white +Caucasian +blond +fair +flaxen +nordic +redheaded +brunet +adust +bronzed +brown +dark +grizzled +nutbrown +blemished +acned +blebbed +blotchy +flyblown +marred +pocked +unblemished +stainless +bloody +bloodstained +bloodsucking +bloodthirsty +crimson +homicidal +gory +internecine +bloodless +nonviolent +bold +audacious +daredevil +emboldened +foolhardy +heroic +nervy +overreaching +overvaliant +timid +bashful +coy +fearful +intimidated +mousy +bound +chained +fettered +furled +pinioned +tethered +trussed +wired +unbound +unchained +untethered +laced +unlaced +tied +knotted +untied +tangled +afoul +enmeshed +entangled +knotty +matted +rootbound +thrown +untangled +disentangled +bound +brassbound +cased +paperback +unbound +looseleaf +bordered +boxed +deckled +edged +fringed +lined +seagirt +unbordered +lotic +lentic +proletarian +propertyless +bourgeois +bourgeois +quality +propertied +u +tweedy +wellborn +brachycephalic +dolichocephalic +brave +desperate +gallant +game +lionhearted +stalwart +undaunted +valiant +cowardly +caitiff +chicken +craven +dastard +faint +funky +poltroon +pusillanimous +gutsy +gutless +nursed +breathing +breathless +asphyxiating +smothering +blown +crystalline +crystallized +microcrystalline +polycrystalline +noncrystalline +amorphous +landed +landless +light +ablaze +autofluorescent +bioluminescent +bright +candescent +floodlit +fluorescent +illuminated +incandescent +lamplit +livid +luminescent +phosphorescent +sunlit +white +dark +Acheronian +aphotic +black +caliginous +Cimmerian +crepuscular +darkened +darkening +darkling +darkling +dim +dusky +glooming +lightless +semidark +tenebrous +shaded +murky +shady +unshaded +unshadowed +shaded +hatched +unshaded +moonlit +moonless +bridgeable +unbridgeable +bright +agleam +aglow +aglitter +beady +beaming +blazing +brilliant +ardent +glimmery +glistening +iridescent +lurid +noctilucent +satiny +shimmery +silver +twinkling +dull +flat +lackluster +soft +dimmed +undimmed +prejudiced +homophobic +jaundiced +loaded +racist +sexist +unprejudiced +broad +catholic +dogmatic +illiberal +opinionated +petty +reconstructed +unreconstructed +broken +unbroken +broken +unbroken +broken +dashed +fitful +halting +unbroken +solid +uninterrupted +brotherly +sisterly +exergonic +endergonic +fraternal +identical +buried +belowground +unburied +busy +drudging +engaged +overbusy +idle +faineant +lackadaisical +leisured +unengaged +bony +bone +boned +bonelike +boneless +boned +buttoned +botonee +unbuttoned +capitalistic +bourgeois +competitive +individualistic +socialistic +collective +collectivist +cacophonous +cackly +croaky +grating +gruff +jangling +jarring +raucous +rending +euphonious +golden +silvern +calculable +computable +countable +incalculable +countless +incomputable +indeterminable +calm +placid +settled +windless +stormy +angry +billowy +blustering +boisterous +blowy +choppy +dirty +gusty +squally +thundery +camphorated +uncamphorated +capable +able +confident +resourceful +incapable +unable +capable +incapable +attended +neglected +untended +careful +certain +close +conscientious +detailed +minute +overcareful +particular +protective +studious +thorough +careless +casual +haphazard +heedless +incautious +offhand +carnivorous +piscivorous +predacious +herbivorous +anthophagous +baccivorous +carpophagous +saprophagous +saprophytic +omnivorous +insectivorous +apivorous +myrmecophagous +holozoic +holophytic +carpellate +acarpelous +carpeted +uncarpeted +carved +engraved +graven +lapidarian +sliced +uncarved +acatalectic +catalectic +hypercatalectic +cauline +radical +censored +expurgated +uncensored +unexpurgated +caudate +bobtail +caudal +tailed +acaudate +anurous +caulescent +acaulescent +causative +abortifacient +activating +anorectic +causal +conducive +errhine +fast +inductive +motivative +motive +precipitating +responsible +sternutatory +noncausative +cautious +cagey +fabian +gingerly +guarded +overcautious +incautious +hotheaded +cellular +cancellate +alveolate +multicellular +noncellular +coherent +incoherent +compartmented +compartmental +uncompartmented +porous +porose +nonporous +central +amidship +bicentric +bifocal +center +centered +centric +focal +median +middlemost +nuclear +peripheral +circumferential +fringy +encircling +centrifugal +centripetal +afferent +centripetal +corticoafferent +efferent +centrifugal +corticoefferent +neuromotor +centralizing +centripetal +consolidative +decentralizing +centrifugal +certain +definite +indisputable +uncertain +indefinite +certain +convinced +uncertain +ambivalent +doubtful +groping +convinced +unconvinced +dubious +confident +assured +cocksure +reassured +diffident +certain +bound +doomed +foreordained +uncertain +chancy +contingent +certified +certifiable +certificated +credentialled +uncertified +inevitable +fatal +ineluctable +necessary +evitable +preventable +unpreventable +changeable +adjustable +astatic +checkered +distortable +erratic +fluid +fluid +jittering +kaleidoscopic +mobile +reversible +volatile +unchangeable +changeless +confirmed +fixed +static +commutable +alterable +convertible +incommutable +inconvertible +unalterable +alterable +unalterable +incurable +final +modifiable +unmodifiable +adjusted +focused +weighted +unadjusted +maladjusted +adjusted +maladjusted +unadapted +altered +adjusted +changed +emended +paraphrastic +revised +unaltered +dateless +unedited +unreduced +unrevised +amended +revised +unamended +changed +denatured +exchanged +transformed +varied +unchanged +idempotent +same +isometric +isotonic +ionized +nonionized +mutable +immutable +characteristic +diagnostic +distinctive +peculiar +uncharacteristic +charged +hot +negative +positive +polar +uncharged +neutral +dead +charitable +beneficent +uncharitable +chartered +unchartered +owned +unowned +chaste +celibate +pure +unchaste +cyprian +easy +fallen +licentious +cheerful +beaming +beamish +blithe +buoyant +cheery +chipper +depressing +blue +somber +chlamydeous +achlamydeous +chondritic +achondritic +monoclinic +triclinic +monochromatic +polychromatic +chromatic +amber +amethyst +auburn +aureate +avocado +azure +beige +blae +blue +blushful +bronze +brown +buff +canary +caramel +carnation +chartreuse +chestnut +coppery +coral +creamy +dun +earthlike +fuscous +green +hazel +honey +jade +khaki +lavender +magenta +maroon +mauve +mousy +ocher +olive +orange +peachy +pink +purple +red +rose +russet +rust +sage +sapphire +snuff +sorrel +stone +straw +tan +tannish +tangerine +tawny +ultramarine +umber +vermilion +vinaceous +yellow +achromatic +argent +blackish +canescent +chalky +charcoal +ebon +grey +hueless +pearly +sable +whitish +black +white +albescent +saturated +intense +unsaturated +dull +color +colored +crimson +bay +bicolor +black +ginger +indigo +monochromatic +motley +polychromatic +roan +trichromatic +uncolored +achromatous +achromic +stained +unstained +untreated +colorful +ablaze +bright +changeable +deep +fluorescent +prismatic +psychedelic +shrill +vibrant +colorless +ashen +bleached +drab +dulled +etiolate +lurid +pale +pasty +prefaded +waxen +white +colorful +brave +flashy +noisy +picturesque +colorless +neutral +pale +light +pale +palish +pastel +powdery +dark +darkish +chromatic +diatonic +cismontane +cisalpine +tramontane +transalpine +christian +christianly +christlike +unchristian +christless +unchristianly +civilized +advanced +civil +humane +noncivilized +barbarian +barbarous +preliterate +primitive +classical +classical +neoclassic +nonclassical +modern +popular +classified +categorized +grouped +unclassified +uncategorized +classified +confidential +restricted +secret +sensitive +unclassified +declassified +nonsensitive +analyzed +unanalyzed +crude +clean +cleanable +cleanly +fresh +immaculate +pristine +scrubbed +unsoiled +unsullied +washed +dirty +Augean +bedraggled +befouled +begrimed +black +buggy +cobwebby +feculent +filthy +flyblown +greasy +lousy +maculate +mucky +ratty +scummy +smudgy +snotty +sooty +uncleanly +unswept +unwashed +clean +antiseptic +dirty +bawdy +blasphemous +cruddy +lewd +scabrous +scatological +clean +dirty +radioactive +hot +nonradioactive +clean +halal +kosher +unclean +nonkosher +untouchable +clear +broad +limpid +unmistakable +vivid +unclear +blurred +confusing +obscure +clear +crystalline +hyaline +liquid +translucent +unclouded +unfrosted +opaque +cloudy +fogged +frosted +glaucous +lightproof +milky +semiopaque +solid +radiolucent +radiopaque +clearheaded +clear +unclouded +confused +addlebrained +addled +befogged +clouded +dazed +dazzled +trancelike +clement +lenient +inclement +unsparing +clement +balmy +inclement +smart +astute +cagey +streetwise +stupid +anserine +blockheaded +cloddish +dense +gaumless +lumpish +nitwitted +weak +clockwise +dextrorotary +counterclockwise +levorotary +far +cold +distant +distant +faraway +farther +farthermost +further +outlying +near +adjacent +nearby +warm +hot +distant +deep +extreme +nonadjacent +yonder +close +adjacent +ambient +appressed +approximate +contiguous +encompassing +enveloping +juxtaposed +nestled +proximate +scalelike +distant +faraway +removed +ulterior +close +approximate +boon +chummy +confidential +cozy +dear +familiar +intimate +cousinly +uncousinly +clothed +appareled +arrayed +breeched +caparisoned +cassocked +coated +costumed +cowled +dighted +dressed +gowned +habited +overdressed +petticoated +suited +surpliced +togged +tuxedoed +underdressed +uniformed +vestmented +unclothed +bare +bareheaded +barelegged +bottomless +clothesless +exposed +seminude +starkers +stripped +unappareled +saddled +unsaddled +bareback +clear +cloudless +fair +serene +cloudy +brumous +fogbound +cloudlike +dull +heavy +miasmal +smoggy +coastal +coastwise +inshore +maritime +seaward +inland +interior +landlocked +inshore +offshore +coherent +seamless +incoherent +confused +fuzzy +collapsible +foldable +telescopic +noncollapsible +nontelescopic +crannied +uncrannied +collective +agglomerate +aggregate +collectivized +knockdown +distributive +allocable +diffusing +immanent +permeant +separative +suffusive +publicized +advertised +heralded +promulgated +suppressed +burked +quelled +unreleased +published +unpublished +publishable +unpublishable +reported +according +notifiable +reportable +unreported +reportable +unreportable +combinative +combinatorial +combinable +noncombinative +noncombining +combustible +burnable +comburent +flammable +ignescent +incendiary +noncombustible +fireproof +flameproof +nonflammable +explosive +detonative +nonexplosive +lighted +ablaze +ignited +unlighted +unkindled +commodious +roomy +incommodious +cramped +comfortable +cozy +easy +homelike +soothing +uncomfortable +bad +comfortless +irritating +miserable +uneasy +warm +comfortable +comforted +uncomfortable +awkward +disquieting +commensurate +coextensive +commensurable +proportionate +incommensurate +disproportionate +incommensurable +proportionate +proportionable +proportional +proportional +disproportionate +commercial +commercialized +mercantile +mercantile +technical +noncommercial +nonprofit +uncommercial +uncommercialized +residential +nonresidential +commissioned +noncommissioned +common +average +democratic +demotic +frequent +general +grassroots +standard +uncommon +especial +rare +unusual +unwonted +usual +accustomed +chronic +regular +unusual +different +extraordinary +odd +peculiar +unaccustomed +unique +hydrophobic +hydrophilic +deliquescent +oleophilic +lipophilic +oleophobic +common +communal +public +individual +idiosyncratic +individualist +respective +singular +communicative +anecdotic +blabbermouthed +chatty +communicable +communicational +expansive +expressive +gesticulating +gestural +gestural +heraldic +narrative +nonverbal +nonverbal +openhearted +outspoken +verbal +uncommunicative +blank +close +deadpan +incommunicado +inexpressive +mum +unpronounceable +compact +clayey +consolidated +impacted +packed +serried +tight +loose +light +shifting +silty +unconsolidated +comparable +incomparable +incommensurable +matchless +alone +compassionate +caring +nurturant +tenderhearted +uncompassionate +hardhearted +compatible +congenial +congruous +harmonious +incompatible +antagonistic +clashing +contradictory +uncongenial +compatible +incompatible +miscible +compatible +immiscible +incompatible +competent +able +effective +workmanlike +incompetent +feckless +ineffective +unworkmanlike +competent +incompetent +competitive +agonistic +emulous +matched +noncompetitive +accommodative +monopolistic +uncompetitive +complaining +fretful +protestant +uncomplaining +compressible +compressed +incompressible +whole +entire +integral +livelong +undivided +fractional +aliquot +divisional +fragmental +half +halfway +whole +half +committed +pledged +uncommitted +floating +undecided +dedicated +devoted +devoted +sacred +undedicated +complete +absolute +accomplished +all +allover +clean +completed +dead +exhaustive +full +good +hearty +sound +incomplete +broken +half +neither +partial +rudimentary +sketchy +uncompleted +comprehensive +citywide +countywide +countrywide +cosmopolitan +encyclopedic +large +omnibus +plenary +spatiotemporal +schoolwide +statewide +super +umbrella +noncomprehensive +limited +composed +calm +imperturbable +collected +cool +unflurried +discomposed +abashed +blushful +bothered +discombobulated +flustered +unstrung +comprehensible +accessible +apprehensible +fathomable +incomprehensible +dark +enigmatic +unfathomable +impenetrable +indecipherable +lost +opaque +concave +acetabular +biconcave +bursiform +cuplike +cupular +dished +planoconcave +recessed +umbilicate +convex +biconvex +gibbous +planoconvex +umbellate +concentrated +bunchy +thick +cumulous +single +thickset +distributed +apportioned +broken +diffuse +diffused +dispensed +dispersed +divided +encyclical +fanned +rationed +scattered +separated +sparse +splashed +straggly +unfocused +concentric +coaxial +eccentric +acentric +concerned +afraid +afraid +haunted +solicitous +unconcerned +blase +blithe +casual +degage +indifferent +concise +aphoristic +brief +compendious +crisp +cryptic +elliptic +pithy +telegraphic +prolix +diffuse +verbal +pleonastic +conclusive +definitive +inconclusive +equivocal +indeterminate +nisi +consummated +completed +fulfilled +unconsummated +coordinating +subordinating +accordant +according +agreeable +concordant +consensual +consentaneous +discordant +dissentious +contracted +contractile +expanded +atrophied +hypertrophied +conditional +counterfactual +contingent +dependent +probationary +provisory +unconditional +blunt +vested +enforceable +unenforceable +enforced +unenforced +conductive +semiconducting +nonconductive +confined +claustrophobic +close +homebound +pent +snowbound +stormbound +unconfined +crowded +huddled +jammed +thronged +uncrowded +congenial +sociable +uncongenial +disagreeable +congruent +coincident +identical +incongruent +congruous +harmonious +incongruous +discrepant +inappropriate +inharmonious +ironic +conjunctive +copulative +connective +disjunctive +adversative +alternative +contrastive +divisional +partitive +separative +conjunct +disjunct +connected +adjacent +adjunctive +affined +conterminous +coupled +engaged +unconnected +apart +asternal +detached +disjoined +exploded +unattached +uncoupled +conquerable +beatable +subduable +unconquerable +impregnable +indomitable +insuperable +invincible +conscious +semiconscious +sentient +unconscious +cold +comatose +innocent +insensible +nonconscious +semicomatose +subconscious +consecrated +ordained +votive +desecrated +deconsecrated +profaned +priestly +unpriestly +conservative +blimpish +fusty +hidebound +ultraconservative +liberal +liberalistic +neoliberal +progressive +socialized +welfarist +consistent +accordant +pursuant +reconciled +unchanging +inconsistent +discrepant +spotty +unconformable +unreconciled +conspicuous +big +bold +crying +featured +marked +outstanding +inconspicuous +obscure +discernible +indiscernible +distinguishable +differentiable +discriminable +indistinguishable +constant +steadfast +unfailing +inconstant +false +fickle +constructive +creative +formative +formative +inferential +reconstructive +structural +destructive +annihilative +blasting +cataclysmal +caustic +crushing +damaging +erosive +iconoclastic +ravaging +wasteful +contented +complacent +satisfied +smug +discontented +disaffected +disgruntled +restless +contestable +challengeable +debatable +shakable +incontestable +demonstrable +demonstrated +inarguable +unassailable +unanswerable +continent +incontinent +leaky +continual +insistent +running +perennial +persistent +recurring +sporadic +fitful +intermittent +periodic +irregular +isolated +continuous +ceaseless +continual +dogging +endless +straight +sustained +discontinuous +disrupted +disjunct +continuous +discontinuous +continued +continuing +discontinued +interrupted +controlled +contained +disciplined +dominated +harnessed +obsessed +regimented +uncontrolled +anarchic +errant +irrepressible +loose +lordless +rampant +runaway +torrential +undisciplined +wild +controversial +arguable +contentious +disputed +polemic +uncontroversial +unchallengeable +undisputed +argumentative +quarrelsome +contentious +eristic +unargumentative +noncontentious +convenient +handy +favorable +inconvenient +awkward +conventional +received +customary +formulaic +stodgy +unconventional +bohemian +irregular +conventional +square +stereotyped +unconventional +alternative +bizarre +funky +conformist +nonconformist +nuclear +thermonuclear +conventional +traditional +conventional +traditionalistic +nontraditional +convergent +confluent +focused +divergent +branching +radiating +branchy +arboreal +brachiate +branched +bushy +maplelike +branchless +palmlike +unbranched +convincing +credible +disenchanting +unconvincing +unpersuasive +cooked +baked +barbecued +boiled +braised +broiled +burned +done +fried +lyonnaise +medium +overdone +parched +roast +saute +seared +steamed +toasted +raw +rare +uncooked +untoasted +cooperative +collaborative +synergetic +uncooperative +corrupt +corrupted +corruptible +depraved +dirty +Praetorian +putrid +incorrupt +antiseptic +incorruptible +uncorrupted +uncorrupted +synergistic +antagonistic +antacid +antiphlogistic +considerable +appreciable +goodly +significant +inconsiderable +substantial +insubstantial +aeriform +shadowy +stringy +material +physical +physical +immaterial +intangible +bodied +incarnate +unbodied +bodiless +formless +brainwashed +unbrainwashed +corporeal +bodily +bodied +reincarnate +incorporeal +discorporate +spiritual +correct +accurate +straight +incorrect +erroneous +fallacious +false +right +wrong +wrongheaded +corrected +aplanatic +apochromatic +rectified +uncorrected +unremedied +corrigible +amendable +improvable +redeemable +incorrigible +unreformable +uncontrollable +cosmopolitan +traveled +provincial +bumpkinly +insular +jerkwater +costive +laxative +aperient +cathartic +constipated +bound +unconstipated +diarrheal +lax +considerate +thoughtful +inconsiderate +thoughtless +courteous +chivalrous +discourteous +abrupt +brusque +caddish +unceremonious +polite +mannerly +courteous +impolite +bratty +discourteous +unparliamentary +civil +uncivil +civil +sidereal +creative +fanciful +fictive +imaginative +yeasty +uncreative +sterile +credible +likely +presumptive +incredible +astounding +fabulous +improbable +undreamed +credulous +credible +overcredulous +unquestioning +incredulous +disbelieving +critical +captious +censorious +deprecative +hypercritical +searing +scathing +uncritical +judgmental +faultfinding +nonjudgmental +critical +appraising +discriminative +uncritical +critical +acute +dangerous +desperate +noncritical +acritical +critical +supercritical +noncritical +crossed +crosstown +decussate +uncrossed +crossed +uncrossed +walleyed +crowned +capped +chapleted +comate +royal +uncrowned +crowned +capped +uncrowned +uncapped +crucial +critical +pivotal +noncrucial +crystallized +uncrystallized +cubic +blockish +boxlike +cubelike +isometric +solid +linear +collinear +lineal +linelike +rectilinear +planar +coplanar +flat +placoid +planate +tabular +unidimensional +multidimensional +dimensional +cut +chopped +incised +perforated +pierced +severed +split +uncut +imperforate +unpierced +cut +uncut +cut +hewn +sheared +slashed +uncut +unsheared +curious +inquisitive +nosy +overcurious +incurious +uninterested +uninquiring +current +actual +afoot +circulating +contemporary +incumbent +live +live +occurrent +ongoing +topical +noncurrent +back +dead +disused +outdated +obsolescent +cursed +accursed +blasted +damn +damnable +blessed +fortunate +endowed +dowered +unendowed +dowerless +unblessed +curtained +draped +curtainless +bespoke +made +prefab +handmade +handsewn +overhand +homemade +homespun +boughten +manufactured +cyclic +alternate +alternate +circular +noncyclic +cyclic +bicyclic +heterocyclic +homocyclic +acyclic +aliphatic +cyclic +verticillate +acyclic +annual +biennial +perennial +diurnal +nocturnal +damaged +battered +bedraggled +bent +broken +hurt +riddled +undamaged +intact +datable +undatable +dateless +dateless +deaf +deafened +hearing +decent +indecent +crude +Hollywood +indelicate +obscene +suggestive +decisive +deciding +fateful +peremptory +indecisive +decisive +unhesitating +indecisive +hesitant +suspensive +declarative +interrogative +declared +alleged +announced +asserted +avowed +professed +undeclared +unacknowledged +unavowed +decorous +sedate +indecorous +deductible +allowable +nondeductible +deep +abysmal +bottomless +profound +shallow +fordable +neritic +reefy +deep +heavy +profound +shallow +light +defeasible +indefeasible +unforfeitable +defeated +licked +subjugated +undefeated +triumphant +unbeaten +unbowed +defiant +insubordinate +obstreperous +recalcitrant +compliant +amenable +lamblike +nonresistant +defined +undefined +indefinable +derived +derivable +derivative +plagiaristic +underived +original +primary +inflected +uninflected +inflected +modulated +uninflected +definite +certain +decisive +distinct +indefinite +coy +indecisive +nebulous +noncommittal +one +dehiscent +indehiscent +dejected +amort +chapfallen +gloomy +glum +lonely +elated +exultant +gladdened +high +sublime +uplifted +delicate +dainty +ethereal +fragile +overdelicate +pastel +tender +rugged +knockabout +sturdy +breakable +brittle +crumbly +short +delicate +frangible +splintery +unbreakable +infrangible +shatterproof +demanding +exigent +needy +rigorous +stern +undemanding +lenient +easygoing +light +unexacting +imperative +adjuratory +clamant +peremptory +desperate +pressing +strident +beseeching +adjuratory +importunate +mendicant +petitionary +precatory +suppliant +democratic +antiauthoritarian +classless +parliamentary +parliamentary +participatory +popular +representative +republican +undemocratic +authoritarian +despotic +monarchal +totalitarian +arbitrary +absolute +capricious +discretionary +nonarbitrary +prescribed +demonstrative +effusive +epideictic +undemonstrative +restrained +deniable +disavowable +questionable +undeniable +incontestable +incontrovertible +denotative +appellative +designative +extensional +referent +referential +connotative +connotational +implicative +inferential +intensional +reliable +certain +tested +undeviating +unreliable +erratic +uncertain +unsound +dependent +babelike +helpless +interdependent +myrmecophilous +parasitic +reliant +symbiotic +underage +independent +autarkic +autonomous +autonomous +breakaway +commutative +indie +individual +unaffiliated +unconditional +independent +dependent +partisan +tendentious +nonpartisan +bipartisan +independent +unbiased +aligned +allied +nonaligned +neutral +descriptive +prescriptive +descriptive +undescriptive +desirable +coveted +delectable +enviable +plummy +preferable +undesirable +unenviable +destroyed +annihilated +blighted +broken +burned +demolished +despoiled +extinguished +fallen +finished +scorched +shattered +totaled +wrecked +preserved +conserved +preservable +protected +retained +destructible +abolishable +destroyable +indestructible +undestroyable +determinable +ascertainable +definable +judicable +indeterminable +indeterminate +unascertainable +unpredictable +determinate +fixed +indeterminate +determinate +cymose +indeterminate +racemose +developed +formulated +mature +undeveloped +budding +vestigial +dextral +dexter +dextrorse +sinistral +sinister +sinistrorse +diabatic +adiabatic +differentiated +undifferentiated +dedifferentiated +difficult +ambitious +arduous +awkward +baffling +catchy +delicate +fractious +herculean +nasty +rocky +rugged +serious +tall +thorny +troublesome +trying +vexed +easy +casual +clean +cushy +elementary +painless +simplified +smooth +digitigrade +plantigrade +dignified +courtly +distinguished +undignified +demeaning +pathetic +statesmanlike +unstatesmanlike +presidential +unpresidential +dicotyledonous +monocotyledonous +diligent +assiduous +hardworking +negligent +derelict +lax +inattentive +diluted +cut +watery +white +undiluted +black +concentrated +neat +saturated +unsaturated +monounsaturated +polyunsaturated +saturated +supersaturated +unsaturated +diplomatic +politic +tactful +undiplomatic +conciliatory +appeasing +pacific +propitiative +soft +antagonistic +alienating +direct +nonstop +straightforward +undeviating +through +indirect +askance +devious +diversionary +meandering +direct +alternating +direct +bluff +blunt +brutal +plain +pointed +square +upfront +indirect +allusive +backhanded +circuitous +circumlocutious +devious +digressive +hearsay +mealymouthed +tortuous +direct +inverse +reciprocal +direct +retrograde +immediate +direct +mediate +indirect +mediated +discerning +clear +prescient +undiscerning +obtuse +uncomprehending +discreet +indiscreet +bigmouthed +imprudent +discriminate +indiscriminate +promiscuous +sweeping +discriminating +appreciative +diacritic +discerning +discriminative +eclectic +good +selective +undiscriminating +indiscriminate +scattershot +unperceptive +unselective +disposable +throwaway +nondisposable +returnable +revertible +nonreturnable +disposable +available +expendable +fluid +nondisposable +frozen +distal +proximal +distal +lateral +mesial +medial +sagittal +distinct +chiseled +clear +crisp +crystalline +defined +knifelike +indistinct +bedimmed +bleary +cloudy +dim +faint +veiled +focused +unfocused +diversified +varied +undiversified +general +monolithic +solid +undistributed +divisible +cleavable +dissociable +dissociative +dividable +partible +indivisible +indiscrete +undividable +inseparable +documented +referenced +registered +undocumented +unregistered +domineering +authoritarian +autocratic +blustery +cavalier +oppressive +submissive +abject +bowed +meek +cringing +dominated +servile +bootlicking +obsequious +slavish +slavelike +unservile +dominant +ascendant +controlling +governing +overriding +possessive +sovereign +superior +subordinate +adjunct +associate +secondary +under +dominant +recessive +dramatic +melodramatic +spectacular +hammy +undramatic +unspectacular +actable +unactable +theatrical +histrionic +showy +stagy +untheatrical +drinkable +undrinkable +intoxicated +bacchanalian +beery +besotted +potty +bibulous +doped +high +sober +dry +uninebriated +dull +blunt +blunted +edgeless +unsharpened +sharp +carnassial +edged +incisive +keen +knifelike +penetrative +sharpened +sharp +acute +cutting +fulgurating +salt +dull +deadened +eventful +lively +uneventful +lively +alive +bouncing +breezy +bubbly +bubbling +burbling +live +warm +dull +arid +bovine +drab +heavy +humdrum +lackluster +dynamic +changing +driving +energizing +projectile +propellant +slashing +undynamic +backward +stagnant +eager +anxious +hot +impatient +overeager +uneager +reluctant +eared +auriculate +earless +early +aboriginal +advance +archean +archeozoic +azoic +earlier +earlyish +premature +previous +proterozoic +proto +wee +middle +intervening +mid +late +advanced +latish +posthumous +early +archaic +new +crude +embryonic +incipient +precocious +late +advanced +tardive +early +Old +middle +late +Modern +New +earned +attained +unearned +honorary +easy +uneasy +apprehensive +precarious +east +eastbound +easterly +easterly +eastern +easternmost +eastside +west +westbound +western +westerly +westernmost +westside +western +occidental +eastern +oriental +western +southwestern +midwestern +northwestern +eastern +northeastern +southeastern +ectomorphic +asthenic +endomorphic +mesomorphic +athletic +edible +killable +nonpoisonous +pareve +inedible +poisonous +educated +knowing +literate +semiliterate +uneducated +ignorant +ignorant +undereducated +unschooled +unstudied +numerate +innumerate +operative +operant +effective +operational +working +inoperative +down +dead +defunct +effective +impelling +impressive +ineffective +toothless +unproductive +effortful +arduous +dragging +exhausting +heavy +leaden +Sisyphean +arduous +effortless +facile +unforced +efficacious +effective +inefficacious +efficient +businesslike +economic +expeditious +streamlined +inefficient +uneconomical +forceful +bruising +drastic +emphatic +firm +forcible +impellent +impetuous +sharp +forceless +wimpish +elastic +bouncy +chewy +elasticized +expandable +fictile +flexible +rubbery +springlike +stretch +stretchable +viscoelastic +inelastic +dead +nonresilient +springless +elective +electoral +nonappointive +appointive +nominated +nonelective +assigned +allotted +appointed +unassigned +optional +elective +facultative +nonmandatory +obligatory +bounden +compulsory +imposed +indispensable +prerequisite +elegant +dandified +deluxe +fine +exquisite +neat +ritzy +soigne +inelegant +gauche +homely +eligible +bailable +desirable +entitled +legal +pensionable +ineligible +disqualified +disqualified +undesirable +unentitled +emotional +affectional +bathetic +cathartic +charged +funky +little +lyric +moody +overemotional +soulful +unemotional +chilly +dry +impassive +philosophical +phlegmatic +stoic +unblinking +empirical +confirmable +experiential +experimental +experimental +semiempirical +theoretical +abstractive +conjectural +notional +metaphysical +theoretical +abstract +academic +pure +applied +forensic +practical +salaried +freelance +employed +engaged +hired +working +unemployed +discharged +idle +employable +unemployable +enchanted +beguiled +bewitched +fascinated +disenchanted +disabused +disillusioned +encouraging +exhortative +heartening +promotive +rallying +discouraging +daunting +demoralizing +frustrating +unencouraging +encumbered +burdened +clogged +involved +mortgaged +unencumbered +burdenless +clear +burdened +laden +saddled +unburdened +unencumbered +endocentric +exocentric +endogamous +exogamous +autogamous +endogamous +exogamous +endoergic +exoergic +endothermic +decalescent +exothermic +endogenous +exogenous +energetic +physical +alert +canty +driving +indefatigable +strenuous +vigorous +lethargic +dazed +dreamy +listless +enfranchised +disenfranchised +exportable +marketable +unexportable +exploratory +alpha +beta +preliminary +searching +wildcat +nonexploratory +inquiring +inquisitive +inquisitorial +inquisitorial +inquisitory +uninquiring +increased +accrued +augmented +enhanced +hyperbolic +exaggerated +multiplied +raised +redoubled +decreased +ablated +attenuate +attenuated +bated +belittled +cut +diminished +minimized +remittent +shriveled +reducible +irreducible +enlightened +edified +unenlightened +benighted +enterprising +energetic +entrepreneurial +unenterprising +slowgoing +enthusiastic +ardent +avid +crazy +evangelical +glowing +overenthusiastic +unenthusiastic +cold +halfhearted +desirous +appetent +athirst +avid +covetous +nostalgic +homesick +undesirous +entozoic +epizoic +equal +equivalent +close +coequal +coordinate +equidistant +equilateral +even +isochronal +isoclinal +isometric +isothermal +quits +tied +unequal +anisometric +mismatched +nonequivalent +unbalanced +unequalized +balanced +counterbalanced +harmonious +poised +stable +unbalanced +labile +isotonic +hypertonic +hypotonic +equivocal +double +evasive +indeterminate +unequivocal +absolute +straightforward +unquestionable +eradicable +delible +effaceable +exterminable +obliterable +ineradicable +indelible +inexpungible +inexterminable +esoteric +abstruse +arcane +cabalistic +mysterious +exoteric +essential +basal +biogenic +constituent +must +staple +substantial +virtual +vital +inessential +accessorial +adscititious +incidental +dispensable +indispensable +critical +estimable +admirable +contemptible +abject +bastardly +pathetic +ethical +unethical +complimentary +encomiastic +laudatory +uncomplimentary +belittling +derogative +dyslogistic +supercilious +flattering +adulatory +becoming +ingratiating +unflattering +euphemistic +dysphemistic +euphoric +euphoriant +expansive +dysphoric +even +flat +flatbottom +flush +justified +level +true +uneven +crinkled +irregular +jagged +lumpy +patchy +ragged +unparallel +even +odd +evergreen +coniferous +deciduous +broadleaf +exact +direct +literal +mathematical +perfect +photographic +rigorous +inexact +approximate +free +odd +round +convertible +cashable +inconvertible +irredeemable +exchangeable +commutable +fungible +transposable +vicarious +unexchangeable +incommutable +excitable +quick +skittish +unexcitable +steady +excited +aflutter +agog +crazy +fevered +intoxicated +overexcited +stimulated +teased +thrilled +thrillful +unexcited +exciting +breathless +elating +electric +electrifying +glamorous +heady +titillating +tickling +unexciting +commonplace +uninspired +tame +exculpatory +absolvitory +extenuating +justificative +inculpatory +accusative +comminatory +condemnatory +criminative +damnatory +recriminative +exhaustible +depletable +inexhaustible +renewable +unfailing +exhausted +unexhausted +leftover +unconsumed +unspent +existent +active +nonexistent +lacking +barren +nonextant +vanished +extant +living +surviving +extinct +dead +expected +anticipated +due +expectable +unexpected +unannounced +unanticipated +unhoped +upset +expedient +advantageous +opportunist +carpetbag +inexpedient +inadvisable +expendable +consumable +sacrificeable +unexpendable +expensive +costly +overpriced +cheap +catchpenny +sixpenny +experienced +intimate +old +practiced +seasoned +inexperienced +fledgling +raw +uninitiate +unpracticed +unseasoned +expired +invalid +terminated +unexpired +valid +explicable +explainable +inexplicable +cryptic +paradoxical +unaccountable +unexplained +explicit +declared +definitive +express +graphic +implicit +silent +unexpressed +exploited +employed +unexploited +fallow +untapped +expressible +describable +representable +speakable +inexpressible +indefinable +extensile +protractile +protrusile +nonextensile +extricable +inextricable +unresolvable +bowed +arco +plucked +pizzicato +fingered +digitate +fingerless +expansive +distensible +erectile +expandable +inflatable +unexpansive +extinguishable +inextinguishable +external +outer +outside +internal +inner +interior +internecine +intrinsic +outer +out +outermost +outside +satellite +inner +inmost +inside +outward +external +outer +inward +indwelling +inmost +inner +secret +exterior +out +outside +interior +indoor +inside +eyed +eyelike +popeyed +eyeless +playable +unplayable +fair +foul +fair +antimonopoly +clean +unfair +cheating +raw +equitable +honest +evenhanded +inequitable +faithful +firm +true +unfaithful +apostate +punic +untrue +faithful +unfaithful +adulterous +loyal +allegiant +doglike +leal +liege +disloyal +faithless +insurgent +mutinous +rebellious +recreant +fallible +errant +erring +undependable +weak +infallible +foolproof +inerrable +familiar +acquainted +beaten +old +unfamiliar +strange +unacquainted +strange +antic +crazy +curious +eerie +exotic +freaky +gothic +oddish +other +quaint +quaint +weird +familiar +common +everyday +fashionable +latest +cool +dapper +faddish +groovy +in +mod +swank +trendsetting +trendy +unfashionable +antique +dated +dowdy +fogyish +out +prehistoric +stylish +chic +chichi +classy +snazzy +styleless +dowdy +fast +accelerated +alacritous +blistering +express +fleet +hurrying +immediate +instantaneous +meteoric +quick +rapid +rapid +smart +winged +windy +slow +dilatory +lazy +sluggish +fast +allegro +allegretto +andantino +presto +prestissimo +vivace +slow +adagio +andante +lento +lentissimo +largo +larghetto +larghissimo +moderato +fast +slow +fastidious +choosy +dainty +finical +meticulous +pernickety +unfastidious +fastidious +unfastidious +fat +abdominous +blubbery +chubby +buxom +corpulent +dumpy +fattish +fleshy +gross +portly +thin +anorexic +bony +gangling +lank +rawboned +reedy +twiggy +scarecrowish +scraggy +shriveled +slender +spare +stringy +wisplike +fatty +adipose +buttery +greasy +suety +superfatted +nonfat +light +skim +fatal +deadly +deadly +terminal +nonfatal +nonlethal +curable +incurable +fathomable +unfathomable +unsoundable +favorable +following +unfavorable +adverse +favorable +approving +indulgent +unfavorable +admonitory +adverse +disapproving +discriminatory +feathered +aftershafted +feathery +featherlike +fledged +flighted +pennate +plumaged +plumate +plumed +plumelike +unfeathered +plucked +unfledged +felicitous +congratulatory +happy +infelicitous +awkward +unfortunate +fertile +conceptive +fecund +fertilizable +rank +sterile +barren +sterilized +unfertilized +finished +complete +done +up +unfinished +incomplete +pending +undone +unended +finished +dressed +fattened +fattening +unfinished +raw +roughhewn +undressed +unfattened +unhewn +finite +bounded +exhaustible +impermanent +limited +infinite +boundless +dateless +endless +inexhaustible +finite +tensed +infinite +opening +beginning +inaugural +introductory +starting +closing +concluding +terminative +first +archetypal +basic +initial +firstborn +freshman +original +premier +premier +prime +last +senior +sunset +ultimate +intermediate +grey +halfway +junior +penultimate +sophomore +subterminal +antepenultimate +terminal +first +second +fissile +nonfissile +fissionable +nonfissionable +fit +able +conditioned +unfit +afflicted +apractic +bandy +crippled +crookback +disabled +gammy +soft +spavined +dipped +maimed +fit +acceptable +suitable +worthy +unfit +subhuman +unsuitable +flat +contrasty +flexible +bendable +limber +limber +spinnable +stretched +inflexible +rigid +semirigid +flexible +limber +negotiable +inflexible +adamant +fossilized +ironclad +uncompromising +compromising +yielding +rigid +semirigid +nonrigid +adaptable +adjustable +convertible +elastic +filmable +universal +variable +unadaptable +inflexible +campylotropous +orthotropous +anatropous +amphitropous +curly +curled +crisp +permed +ringleted +wavy +straight +uncurled +unpermed +footed +pedate +footless +apodal +toed +toeless +splayfooted +splay +fore +foremost +aft +after +aftermost +forehand +backhand +native +connatural +adopted +foreign +adventive +alien +nonnative +established +imported +tramontane +unnaturalized +native +autochthonal +domestic +homegrown +native +nonnative +foreign +abroad +external +domestic +home +municipal +domestic +domesticated +housewifely +husbandly +undomestic +undomesticated +forgettable +unmemorable +unforgettable +haunting +memorable +forgiving +kind +unvindictive +unforgiving +revengeful +formal +ceremonial +ceremonious +dress +nominal +positive +semiformal +starchy +informal +casual +folksy +unceremonious +formal +literary +informal +colloquial +common +epistolary +slangy +subliterary +unliterary +former +latter +fortunate +felicitous +fortuitous +good +lucky +unfortunate +abject +black +dispossessed +hapless +doomed +downtrodden +infelicitous +regrettable +fragrant +aromatic +odoriferous +perfumed +musky +malodorous +bilgy +fetid +fusty +gamey +miasmic +niffy +odoriferous +reeking +sour +odorous +alliaceous +redolent +scented +odorless +scentless +scented +scentless +free +liberated +unbound +bound +conjugate +conjugate +fixed +fast +geostationary +geosynchronous +leaded +stationary +taped +unadjustable +unfixed +detached +floating +unfirm +free +autonomous +available +aweigh +clear +emancipated +footloose +unconfined +unconstrained +unhampered +unrestricted +unfree +adscript +apprenticed +captive +entangled +nonautonomous +prisonlike +serflike +free +freeborn +unfree +servile +slaveholding +frequent +prevailing +regular +infrequent +occasional +rare +fresh +caller +crisp +good +hot +strong +stale +addled +bad +cold +hard +flyblown +limp +moldy +rancid +rotten +corrupt +putrid +putrescent +fresh +unprocessed +preserved +aged +candied +canned +corned +cured +dried +lyophilized +pickled +potted +salted +smoked +fresh +salty +brackish +saliferous +saline +saltish +friendly +affable +chummy +companionate +comradely +couthie +cozy +neighborly +social +unfriendly +chilly +uncordial +unneighborly +friendly +hostile +friendly +unfriendly +frozen +frostbitten +glaciated +icebound +icy +sleety +unthawed +unfrozen +liquescent +slushy +thawed +fruitful +berried +bountiful +breeding +fat +generative +prolific +unfruitful +abortive +acarpous +childless +full +afloat +brimful +chockablock +congested +filled +fraught +glutted +heavy +instinct +laden +overladen +riddled +stuffed +stuffed +untouched +empty +bare +blank +glassy +lifeless +looted +vacant +vacant +vacuous +void +drained +empty +exhausted +undrained +regular +irregular +underemployed +functional +structural +utilitarian +nonfunctional +nonstructural +cosmetic +functioning +running +up +malfunctioning +amiss +bad +functional +organic +rigged +lateen +outrigged +unrigged +equipped +accoutered +armored +helmeted +outfitted +prepared +transistorized +visored +unequipped +fledged +fledgling +unfledged +unfeathered +framed +unframed +furnished +appointed +stocked +volumed +unfurnished +funded +unfunded +fueled +unfueled +unfed +specified +mere +nominative +specific +unspecified +geared +engaged +ungeared +general +broad +generic +gross +overall +pandemic +universal +widespread +specific +circumstantial +limited +particular +particular +particularized +proper +unique +specific +nonspecific +national +federal +local +cosmopolitan +endemic +branchiate +abranchiate +federal +unitary +centralized +decentralized +localized +redistributed +suburbanized +technical +nontechnical +nonproprietary +generic +unpatented +proprietary +branded +copyrighted +patented +trademarked +generous +benevolent +big +lavish +unselfish +stingy +beggarly +cheap +cheeseparing +closefisted +grudging +mean +parsimonious +generous +big +ungrudging +ungenerous +genuine +authentic +attested +good +counterfeit +assumed +bad +base +bogus +inauthentic +mock +ostensible +pinchbeck +pseudo +synthetic +geocentric +Ptolemaic +heliocentric +Copernican +talented +untalented +glazed +glassy +glossy +icy +unglazed +unvitrified +glazed +unglazed +glorious +bright +celebrated +divine +empyreal +illustrious +incandescent +lustrous +inglorious +obscure +go +good +goodish +hot +redeeming +satisfactory +solid +superb +bad +atrocious +corked +deplorable +fearful +hard +hopeless +horrid +icky +ill +incompetent +mediocre +naughty +negative +poor +pretty +rubber +severe +swingeing +uncool +unfavorable +unsuitable +good +angelic +redemptive +white +evil +atrocious +bad +black +corruptive +demonic +despicable +devilish +amiable +equable +atrabilious +bristly +cantankerous +choleric +churlish +crabbed +cranky +crusty +currish +dark +disagreeable +huffish +misanthropic +misogynous +shirty +shrewish +snappish +spoiled +surly +vinegary +graceful +elegant +fluent +gainly +gracile +lissome +awkward +gawky +graceless +labored +wooden +gracious +elegant +merciful +ungracious +churlish +graceless +gradual +gradational +sudden +abrupt +choppy +emergent +explosive +fulminant +sharp +gradual +easy +sloping +steep +abrupt +bluff +heavy +perpendicular +steepish +grammatical +ungrammatical +incorrect +grateful +appreciative +glad +ungrateful +unappreciative +haploid +diploid +polyploid +triploid +happy +blessed +blissful +bright +golden +laughing +unhappy +lovesick +miserable +regretful +unregretful +hard +adamantine +corneous +tumid +firm +granitic +hardened +woody +petrous +semihard +steely +unyielding +soft +brushed +cheeselike +compressible +cottony +cushioned +demulcent +downy +flaccid +flocculent +yielding +mushy +overstuffed +softish +spongy +velvet +hard +calculating +steely +soft +mellow +hard +velar +soft +fricative +palatal +hard +soft +hardhearted +flinty +softhearted +alcoholic +dry +hard +intoxicant +spirituous +wet +nonalcoholic +harmless +innocent +harmful +abusive +bad +bruising +deleterious +calumniatory +catastrophic +counterproductive +damaging +ill +insidious +mischievous +nocent +stabbing +harmonious +consonant +harmonic +pure +symphonic +inharmonious +discordant +false +unresolved +healthful +anthelmintic +antimicrobial +carminative +cathartic +curative +drugless +good +medicative +organic +orthomolecular +preventive +recuperative +unhealthful +crippling +cytopathogenic +infective +unmedicinal +unhealthy +medical +surgical +preoperative +postoperative +operable +inoperable +pyretic +antipyretic +healthy +flushed +bouncing +firm +good +hale +hearty +hearty +anicteric +rubicund +wholesome +unhealthy +angry +arthritic +asthmatic +bad +blebby +puffy +bloodshot +cankerous +carbuncled +carious +caseous +chilblained +colicky +cytomegalic +dehydrated +diseased +edematous +enlarged +foaming +gangrenous +inflamed +inflammatory +ingrowing +jaundiced +membranous +mental +proinflammatory +sallow +sunburned +varicose +windburned +dry +phlegmy +heavenly +ambrosial +celestial +divine +divine +paradisiacal +providential +translunar +earthly +earthborn +earthbound +earthlike +mundane +sublunar +temporal +digestible +assimilable +light +predigested +indigestible +flatulent +heavy +nondigestible +undigested +stodgy +headed +bicephalous +headlike +headless +acephalous +beheaded +headed +unheaded +heavy +dense +doughy +hefty +massive +ponderous +light +lightweight +airy +buoyant +weighty +weightless +light +heavy +industrial +heavy +burdensome +distressing +leaden +oppressive +weighty +light +fooling +heavy +harsh +light +heavy +light +heavy +big +light +easy +light +heavy +light +heavy +heedless +careless +deaf +heedful +enabling +facultative +sanctionative +disabling +helpful +accommodating +adjuvant +assistive +facilitative +facilitatory +implemental +laborsaving +ministrant +reformative +stabilizing +steadying +unhelpful +unaccommodating +unconstructive +heterodactyl +zygodactyl +heterogeneous +assorted +disparate +inhomogeneous +homogeneous +consistent +solid +solid +homogenized +homozygous +heterozygous +heterosexual +straight +homosexual +butch +gay +homoerotic +lesbian +pederastic +transgender +transsexual +transvestic +tribadistic +bisexual +hierarchical +gradable +graded +vertical +nonhierarchical +ungraded +high +altitudinous +commanding +eminent +steep +upper +low +deep +lowset +nether +squat +raised +elevated +up +upraised +lowered +down +advanced +necked +decollete +necklike +throated +neckless +ceilinged +raftered +floored +high +advanced +broad +graduate +higher +higher +last +soaring +low +debased +depressed +reduced +high +adenoidal +altissimo +alto +countertenor +falsetto +peaky +shrill +screaky +soprano +sopranino +tenor +tenor +low +alto +baritone +bass +contrabass +throaty +imitative +apish +mimetic +mimic +parrotlike +simulated +nonimitative +echoic +nonechoic +multistory +storied +upland +alpestrine +alpine +mountainous +lowland +home +away +homologous +heterologous +autologous +homologous +homologic +heterologous +analogous +gabled +hipped +mansard +hipped +hipless +honest +downright +dishonest +ambidextrous +beguiling +deceitful +deceptive +false +picaresque +rascally +thieving +truthful +honest +veracious +untruthful +mendacious +honorable +august +laureate +dishonorable +black +debasing +shabby +unprincipled +yellow +hopeful +anticipant +hopeless +abject +black +despairing +despondent +forlorn +futureless +helpless +insoluble +institutionalized +noninstitutionalized +institutional +institutionalized +uninteresting +noninstitutional +iodinating +consolable +inconsolable +desolate +horizontal +crosswise +flat +level +naiant +vertical +plumb +upended +upright +inclined +atilt +aslant +monoclinal +pitched +salient +sidelong +skew +erect +erectile +fastigiate +orthostatic +passant +rampant +standing +statant +straight +unerect +accumbent +bended +cernuous +couchant +dormant +flat +hunched +procumbent +prone +supine +standing +seated +standing +running +running +gushing +jetting +standing +dead +slack +still +running +passing +hospitable +kind +inhospitable +bare +godforsaken +hostile +windswept +hospitable +welcoming +inhospitable +hostile +aggressive +antagonistic +bitter +dirty +ill +opponent +unfriendly +amicable +friendly +hot +baking +blistering +calefacient +calefactory +calorifacient +calorific +fervent +fiery +heatable +heated +hottish +overheated +scorching +sizzling +sultry +sweltering +thermal +torrid +tropical +white +cold +acold +algid +arctic +bleak +chilly +crisp +frigorific +frore +frosty +heatless +refrigerant +refrigerated +shivery +unheated +vernal +summery +aestival +autumnal +wintry +brumal +hot +fiery +heated +sensual +torrid +cold +emotionless +frigid +human +anthropoid +anthropomorphic +earthborn +fallible +hominal +hominian +hominine +nonhuman +anthropoid +bloodless +dehumanized +inhuman +superhuman +divine +herculean +subhuman +infrahuman +humane +inhumane +barbarous +beastly +cannibalic +cold +pitiless +humorous +bantering +buffoonish +amusing +droll +dry +farcical +Gilbertian +hilarious +jesting +killing +seriocomic +slapstick +tragicomic +waggish +witty +humorless +sobersided +unfunny +hungry +empty +famished +peckish +supperless +thirsty +hurried +flying +hasty +hasty +rush +unhurried +careful +easy +identifiable +acknowledgeable +classifiable +diagnosable +recognizable +specifiable +unidentifiable +elusive +intangible +unclassifiable +undiagnosable +unrecognizable +immanent +transeunt +impaired +anosmic +broken +dicky +diminished +dysfunctional +dyslectic +unimpaired +important +alpha +beta +big +burning +cardinal +chief +consequential +Copernican +distinguished +grand +grave +great +historic +measurable +serious +strategic +unimportant +inconsequent +immaterial +fiddling +lightweight +potty +impressive +amazing +arresting +astonishing +baronial +dazzling +dramatic +expansive +formidable +gallant +brilliant +grandiose +palatial +signal +thundering +unimpressive +unimposing +noticeable +broad +detectable +discernible +marked +noted +unnoticeable +insignificant +improved +built +developed +landscaped +unimproved +dirt +scrub +cleared +improved +uncleared +unimproved +inaugural +exaugural +valedictory +inboard +outboard +portable +inbred +interbred +outbred +inclined +apt +fond +prone +disinclined +afraid +antipathetic +reluctant +incoming +outgoing +incoming +inbound +designate +elect +future +in +inflowing +inpouring +outgoing +outbound +effluent +out +past +inductive +deductive +deducible +illative +illative +inferential +indulgent +decadent +dissipated +epicurean +gay +hedonic +intemperate +overindulgent +pampering +nonindulgent +austere +blue +corrective +monkish +renunciant +severe +industrial +developed +industrialized +postindustrial +nonindustrial +developing +unindustrialized +infectious +catching +contagious +corrupting +noninfectious +noncommunicable +infernal +chthonian +Hadean +Stygian +supernal +informative +advisory +exemplifying +newsy +revealing +uninformative +newsless +gnostic +agnostic +nescient +informed +abreast +advised +conversant +educated +hep +knowing +knowledgeable +privy +uninformed +clueless +ignorant +innocent +newsless +unadvised +uninstructed +unread +ingenuous +candid +undistorted +disingenuous +distorted +inhabited +colonized +haunted +occupied +peopled +populated +populous +underpopulated +uninhabited +abandoned +depopulated +unoccupied +unpeopled +lonely +unsettled +inheritable +ancestral +familial +monogenic +polygenic +inheriting +nee +noninheritable +acquired +congenital +nonhereditary +nurtural +inhibited +smothered +uninhibited +abandoned +earthy +unrepressed +unsuppressed +injectable +uninjectable +injured +disjointed +eviscerate +hurt +lacerate +raw +uninjured +intact +uncut +unharmed +unwounded +innocent +absolved +acquitted +blameless +guilty +blameworthy +bloodguilty +chargeable +criminal +delinquent +finable +punishable +inspiring +ennobling +uninspiring +instructive +clarifying +demonstrative +didactic +doctrinaire +educative +educational +explanatory +expository +interpretative +ostensive +preachy +uninstructive +edifying +unedifying +enlightening +unenlightening +integrated +desegrated +interracial +mainstreamed +segregated +isolated +separate +sequestered +white +integrated +coordinated +embedded +incorporated +introjected +nonintegrated +blended +alloyed +homogenized +unblended +unhomogenized +combined +compounded +conglomerate +occluded +one +uncombined +uncompounded +integrative +combinative +compositional +consolidative +endogenic +disintegrative +clastic +decompositional +intellectual +highbrow +rational +reflective +good +sophisticated +nonintellectual +lowbrow +mindless +intelligent +agile +apt +brainy +bright +natural +quick +prehensile +scintillating +searching +unintelligent +brainless +intelligible +unintelligible +slurred +intended +conscious +deliberate +intentional +unintended +accidental +causeless +unintentional +designed +fashioned +undesigned +intensifying +aggravating +augmentative +deepening +heightening +moderating +alleviative +analgesic +tempering +weakening +interspecies +intraspecies +interested +curious +uninterested +apathetic +blase +dismissive +dulled +interesting +absorbing +entertaining +amusing +intriguing +newsworthy +uninteresting +boring +insipid +narcotic +pedestrian +ponderous +putdownable +intramural +internal +extramural +intercollegiate +intermural +interscholastic +outside +intrinsic +inner +extrinsic +adventitious +adscititious +alien +external +extraneous +introspective +extrospective +introversive +introvertish +extroversive +extrovert +extrovertish +ambiversive +intrusive +encroaching +interfering +unintrusive +intrusive +intruding +protrusive +beetle +bellied +obtrusive +jutting +overshot +starting +underhung +ventricose +igneous +aqueous +intrusive +irruptive +extrusive +volcanic +invasive +aggressive +confined +invasive +noninvasive +invigorating +animating +bracing +corroborant +exhilarating +renewing +debilitating +debilitative +draining +inviting +invitatory +tantalizing +tantalizing +uninviting +unattractive +ironed +pressed +smoothed +unironed +roughdried +unpressed +wrinkled +unsmoothed +unwrinkled +isotropic +identical +anisotropic +aeolotropic +glad +gladsome +sad +bittersweet +doleful +heavyhearted +melancholy +pensive +tragic +tragicomic +joyful +beatific +overjoyed +sorrowful +anguished +bereaved +bitter +brokenhearted +dolorous +elegiac +grievous +lamenting +lugubrious +mournful +sad +woebegone +joyous +ecstatic +elated +gay +gay +joyless +funereal +mirthless +unsmiling +juicy +lush +sappy +juiceless +sapless +just +conscionable +fitting +retributive +rightful +unjust +actionable +wrongful +merited +condign +unmerited +gratuitous +undeserved +keyed +keyless +kind +benignant +benign +charitable +gentle +kindhearted +unkind +cutting +harsh +hurtful +unkindly +knowable +unknowable +transcendent +known +celebrated +identified +legendary +proverbial +unknown +chartless +unbeknown +undiagnosed +undiscovered +unidentified +understood +appreciated +interpreted +ununderstood +misunderstood +uncomprehended +undigested +ungrasped +labeled +unlabeled +lamented +unlamented +aerial +marine +oceangoing +oceanic +offshore +oversea +suboceanic +laureled +unlaureled +large +ample +astronomic +bigger +biggish +bouffant +broad +bulky +capacious +colossal +deep +double +enormous +cosmic +elephantine +epic +extensive +gigantic +great +grand +huge +hulking +humongous +macroscopic +macro +massive +massive +monstrous +mountainous +outsize +overlarge +plumping +rangy +super +titanic +volumed +voluminous +whacking +small +atomic +subatomic +bantam +bitty +dinky +dwarfish +elfin +gnomish +infinitesimal +lesser +microscopic +micro +miniature +minuscule +puny +slender +smaller +smallish +undersize +greater +lesser +lawful +unlawful +lawless +wrongful +leaded +antiknock +unleaded +leaky +drafty +drippy +oozing +holey +tight +airtight +dripless +hermetic +leakproof +rainproof +snug +watertight +caulked +chinked +uncaulked +leavened +unleavened +leeward +downwind +windward +upwind +legal +judicial +jural +lawful +ratified +statutory +illegal +amerciable +banned +bootleg +criminal +dirty +embezzled +extrajudicial +extralegal +hot +illegitimate +ineligible +misbranded +penal +unratified +legible +clean +clear +illegible +dirty +indecipherable +deciphered +undeciphered +biological +begotten +natural +adoptive +foster +legitimate +morganatic +true +illegitimate +adulterine +base +bastardly +fatherless +unlawful +leptorrhine +catarrhine +platyrrhine +leptosporangiate +eusporangiate +like +suchlike +unlike +alike +unalike +like +unlike +likely +apt +probable +promising +unlikely +farfetched +last +outside +probable +equiprobable +presumptive +verisimilar +improbable +supposed +limbed +boughed +limbless +boughless +limited +minor +narrow +unlimited +bottomless +oceanic +untrammeled +lineal +matrilineal +patrilineal +unilateral +collateral +linear +bilinear +nonlinear +lined +unlined +listed +unlisted +literal +denotative +figurative +analogical +extended +metaphorical +metonymic +poetic +synecdochic +tropical +literate +belletristic +literary +illiterate +literate +illiterate +analphabetic +preliterate +semiliterate +semiliterate +live +unfilmed +recorded +canned +filmed +prerecorded +taped +livable +habitable +unlivable +uninhabitable +liveried +unliveried +loaded +live +undischarged +unloaded +blank +dud +loamy +loamless +local +localized +topical +general +systemic +epidemic +epiphytotic +epizootic +pandemic +pestilent +ecdemic +endemic +enzootic +gloved +gauntleted +gloveless +hatted +turbaned +hatless +guided +unguided +legged +leglike +legless +logical +dianoetic +formal +ratiocinative +illogical +absurd +inconsequential +intuitive +extended +outspread +outstretched +sprawly +stretched +unextended +mini +midi +maxi +lossy +lossless +long +elongate +elongated +extendible +far +lank +oblong +polysyllabic +stretch +short +abbreviated +close +curtal +shortish +snub +stubby +telescoped +truncate +long +agelong +bimestrial +chronic +daylong +durable +endless +hourlong +lifelong +longish +longitudinal +longstanding +monthlong +nightlong +perennial +weeklong +yearlong +short +abbreviated +brief +clipped +fleeting +long +short +long +short +lengthwise +axial +linear +longitudinal +crosswise +cross +lidded +lidless +loose +baggy +flyaway +tight +choky +clenched +close +skintight +viselike +constricted +narrowed +pinched +stenosed +unconstricted +open +lost +mislaid +gone +missing +squandered +stray +straying +found +recovered +lost +cursed +destroyed +saved +blessed +ransomed +rescued +ransomed +salvageable +lost +confiscate +won +loud +big +blaring +clarion +deafening +earthshaking +shattering +shouted +vocal +soft +dull +euphonious +gentle +hushed +little +low +murmuring +murmurous +full +booming +grumbling +plangent +rich +orotund +heavy +sounding +thin +pale +piano +pianissimo +forte +fortemente +fortissimo +hardened +soft +lovable +adorable +angelic +cuddlesome +hateful +abominable +unlovable +liked +likable +disliked +dislikable +unlikable +loved +admired +adored +beloved +cherished +favored +unloved +alienated +bereft +despised +disinherited +jilted +loveless +loving +adoring +affectionate +amative +amatory +attached +captivated +enamored +idolatrous +loverlike +overfond +tenderhearted +uxorious +unloving +cold +loveless +detached +unromantic +lowercase +little +uppercase +capital +lucky +apotropaic +hot +serendipitous +unlucky +hexed +lyric +dramatic +made +unmade +magnetic +attractable +antimagnetic +magnetic +geographic +true +magnetic +nonmagnetic +major +better +minor +major +minor +major +minor +major +minor +major +minor +major +leading +minor +insignificant +secondary +major +minor +majuscule +majuscular +minuscule +manageable +administrable +controllable +directed +steerable +unmanageable +indocile +uncheckable +manly +unmanly +effeminate +womanish +male +male +antheral +phallic +priapic +female +female +pistillate +androgynous +bisexual +gynandromorphic +hermaphroditic +intersexual +pseudohermaphroditic +unisex +manned +unmanned +pilotless +marked +asterisked +barred +scarred +masked +unmarked +unasterisked +branded +unbranded +married +joined +mated +ringed +wed +unmarried +divorced +mateless +unwed +widowed +mated +paired +unmated +mateless +masculine +butch +male +mannish +feminine +fair +female +maidenlike +womanly +matronly +womanlike +unwomanly +hoydenish +mannish +unfeminine +masculine +feminine +neuter +matched +coordinated +duplicate +mated +mismatched +odd +material +crucial +immaterial +mature +adult +abloom +fruiting +headed +marriageable +overblown +prime +immature +adolescent +embryonic +inchoative +larval +prepubescent +prepupal +pubescent +pupal +underdeveloped +mature +autumnal +mellow +ripe +immature +adolescent +babyish +childish +ripe +aged +mellow +overripe +green +unaged +seasonal +seasonable +unseasonable +seasoned +cured +unseasoned +uncured +premature +maximal +supreme +minimal +borderline +negligible +nominal +stripped +meaningful +meaty +meaning +purposeful +meaningless +empty +insignificant +mindless +nonsense +measurable +immeasurable +abysmal +illimitable +meaty +meatless +mechanical +automatic +mechanic +mechanistic +mechanized +windup +nonmechanical +nonmechanistic +unmechanized +melodious +ariose +canorous +cantabile +dulcet +lyrical +unmelodious +tuneful +tuneless +membered +memberless +mined +unmined +musical +chanted +liquid +singable +unmusical +musical +philharmonic +unmusical +melted +dissolved +fusible +molten +thawed +unmelted +frozen +undissolved +merciful +merciless +cutthroat +mortal +pitiless +tigerish +metabolic +ametabolic +mild +gentle +moderate +intense +aggravated +bad +brutal +cold +concentrated +consuming +deep +exquisite +extreme +fierce +intensified +intensive +main +profound +raging +screaming +severe +smart +strong +terrific +thick +unabated +violent +intensive +extensive +involved +active +concerned +embroiled +engaged +implicated +uninvolved +unconcerned +military +expeditionary +martial +combatant +noncombatant +civilian +civil +noncombatant +military +militaristic +soldierly +warlike +unmilitary +unsoldierly +mitigated +alleviated +lessened +quenched +unmitigated +arrant +bally +bodacious +undiminished +tempered +untempered +unmoderated +tempered +curable +sunbaked +untempered +brittle +mobile +airborne +ambulant +floating +maneuverable +mechanized +motile +movable +perambulating +racy +raisable +rangy +rotatable +seaborne +transplantable +versatile +waterborne +immobile +immovable +nonmotile +stiff +portable +movable +takeout +unportable +removable +dismissible +extractable +irremovable +tenured +metallic +aluminiferous +antimonial +argentiferous +auriferous +bimetal +bronze +gold +metallike +silver +tinny +nonmetallic +metalloid +metamorphic +epimorphic +hemimetabolous +heterometabolous +holometabolic +metamorphous +changed +nonmetamorphic +ametabolic +moderate +average +cautious +fair +indifferent +limited +minimalist +modest +immoderate +abnormal +exaggerated +excessive +exorbitant +extraordinary +extreme +extreme +extremist +far +stark +modern +contemporary +neo +ultramodern +moderne +nonmodern +antebellum +medieval +Victorian +modest +coy +decent +decent +shamefaced +immodest +indecent +modest +retiring +immodest +important +overweening +modified +adapted +restricted +unmodified +unadapted +unrestricted +modulated +softened +unmodulated +flat +molar +molecular +monoclinous +hermaphroditic +diclinous +monoecious +autoicous +heteroicous +synoicous +paroicous +dioecious +monophonic +homophonic +monodic +polyphonic +monogamous +monandrous +monogynous +polygamous +bigamous +polyandrous +polygynous +monolingual +multilingual +bilingual +polyglot +trilingual +monovalent +polyvalent +univalent +bivalent +multivalent +monotonic +nonmonotonic +monovalent +polyvalent +moral +chaste +clean +moralistic +righteous +incorrupt +immoral +debauched +disgraceful +scrofulous +licit +illicit +adulterous +unlawful +principled +unprincipled +many +galore +numerous +some +umpteen +few +much +overmuch +some +such +untold +little +small +more +less +most +least +more +fewer +less +most +fewest +mortal +earthborn +immortal +amaranthine +deathless +deific +motivated +actuated +driven +unmotivated +causeless +motiveless +motorized +bimotored +trimotored +unmotorized +moved +sick +unmoved +moving +affecting +haunting +heartwarming +stirring +unmoving +unaffecting +moving +afoot +ahorse +oncoming +automotive +awheel +blown +aflare +kinetic +mobile +restless +wiggly +vibratory +nonmoving +inactive +becalmed +fixed +frozen +inert +sitting +stationary +moving +animated +still +mown +unmown +seamanlike +unseamanlike +lubberly +continental +transcontinental +intercontinental +worldwide +national +nationalist +international +global +internationalist +multinational +supranational +interstate +intrastate +natural +earthy +unnatural +violent +natural +unbleached +artificial +arranged +bionic +bleached +cardboard +celluloid +conventionalized +dummy +ersatz +factitious +fake +near +painted +natural +physical +supernatural +apparitional +eerie +eldritch +elfin +charming +marvelous +metaphysical +necromantic +nonnatural +talismanic +transmundane +witchlike +natural +sharp +flat +ultimate +crowning +eventual +final +supreme +proximate +immediate +necessary +essential +incumbent +needed +obligatory +unnecessary +excess +gratuitous +inessential +spare +net +clear +gross +overall +neurotic +abulic +compulsive +delusional +disturbed +hypochondriac +hysteric +megalomaniacal +monomaniacal +nymphomaniacal +obsessional +pathological +phobic +psychosomatic +schizoid +unneurotic +together +nice +good +pleasant +nasty +dirty +grotty +hateful +nidicolous +nidifugous +noble +dignifying +exalted +greathearted +ignoble +base +currish +noble +aristocratic +august +coroneted +imperial +kingly +monarchal +princely +queenly +royal +lowborn +base +common +ignoble +normal +average +median +modal +natural +regular +typical +abnormal +aberrant +anomalous +antidromic +atypical +brachydactylic +defective +freakish +kinky +subnormal +supernormal +vicarious +normal +abnormal +exceptional +hypertensive +hypotensive +normotensive +normal +paranormal +parapsychological +psychic +psychokinetic +supernormal +north +northbound +northerly +northerly +northernmost +northeastern +northeasterly +northeastward +northwestern +northwesterly +northwestward +south +southbound +southerly +southerly +southernmost +southeast +southeasterly +southeastward +southwest +southwesterly +southwestward +northern +boreal +septrional +southern +austral +meridional +northern +blue +Union +Yankee +southern +Confederate +grey +nosed +noseless +noticed +detected +unnoticed +disregarded +ignored +overlooked +unobserved +unperceived +detected +perceived +sensed +heard +undetected +undiscovered +unobserved +determined +ascertained +undetermined +unexplained +noxious +baneful +corrupting +vesicatory +innocuous +innoxious +obedient +acquiescent +conformable +dutiful +disobedient +contrary +fractious +froward +recusant +obtrusive +unobtrusive +objective +clinical +impersonal +verifiable +subjective +personal +prejudiced +unobjective +obligated +beholden +indebted +indebted +supposed +tributary +unobligated +unbeholden +obligate +facultative +obvious +apparent +axiomatic +demonstrable +frank +transparent +unobvious +unapparent +unprovable +obstructed +barricaded +blocked +choked +deadlocked +impeded +occluded +stopped +stuffy +thrombosed +unobstructed +clear +patent +unimpeded +unclogged +occupied +busy +filled +unoccupied +free +spare +occupied +unoccupied +relinquished +offensive +abhorrent +charnel +creepy +disgusting +ghoulish +hideous +objectionable +rank +scrimy +verminous +inoffensive +innocuous +savory +unsavory +odoriferous +offensive +abusive +inoffensive +offenseless +offensive +antipersonnel +assaultive +incursive +marauding +defensive +antiaircraft +antisubmarine +antitank +defending +offending +sinning +offensive +unoffending +apologetic +defensive +unapologetic +official +authoritative +formal +formalized +semiofficial +unofficial +drumhead +informal +unauthorized +unsanctioned +confirmed +official +unconfirmed +unofficial +established +entrenched +grooved +legitimate +official +recognized +unestablished +unrecognized +conditioned +unconditioned +naive +offstage +onstage +old +antediluvian +antique +auld +hoary +immemorial +longtime +patched +secondhand +sunset +yellow +new +fresh +hot +newborn +newfound +novel +parvenu +recent +revolutionary +rising +sunrise +untested +unused +virgin +young +old +aged +aged +aging +ancient +anile +centenarian +darkened +doddering +emeritus +grey +nonagenarian +octogenarian +oldish +overage +sexagenarian +venerable +young +adolescent +infantile +boyish +childlike +early +girlish +junior +little +newborn +preteen +puppyish +tender +youngish +youthful +on +connected +off +disconnected +on +off +onside +offside +open +ajar +shut +open +opened +unstoppered +yawning +closed +blocked +drawn +stoppered +nonopening +open +agape +agaze +yawning +closed +blinking +compressed +squinched +spaced +leaded +unspaced +unleaded +enclosed +basined +besieged +boxed +capsulate +clathrate +closed +coarctate +embedded +fencelike +included +involved +surrounded +unenclosed +hypaethral +open +unfenced +tanned +untanned +tapped +abroach +untapped +open +closed +operational +active +effective +nonoperational +opportune +good +timely +inopportune +inconvenient +opposable +unopposable +opposed +conflicting +unopposed +opposite +alternate +optimistic +bullish +cheerful +sanguine +pessimistic +bearish +demoralized +oral +buccal +buccal +aboral +actinal +abactinal +orderly +disorderly +boisterous +mobbish +raucous +ordered +consecutive +progressive +disordered +organized +methodical +disorganized +broken +chaotic +scrambled +unmethodical +unstuck +organized +arranged +configured +corporate +reorganized +unorganized +uncoordinated +unformed +unincorporated +structured +unstructured +ambiguous +unregulated +ordinary +average +banausic +characterless +common +commonplace +everyday +indifferent +extraordinary +bonzer +exceeding +extraordinaire +fantastic +phenomenal +frightful +great +one +preternatural +pyrotechnic +rare +remarkable +some +special +wonderworking +organic +inorganic +organic +integrated +nonsynthetic +inorganic +amorphous +artificial +mineral +holistic +atomistic +arranged +laid +placed +disarranged +disarrayed +disturbed +misplaced +oriented +adjusted +bound +directed +headed +homeward +minded +unoriented +alienated +confused +orienting +aligning +dimensioning +familiarizing +homing +disorienting +confusing +estranging +stunning +stupefying +original +freehand +fresh +germinal +innovative +newfangled +underivative +unoriginal +banal +bromidic +cliched +cold +slavish +orthodox +antiheretical +canonic +conforming +conventional +traditional +unreformed +unorthodox +dissentient +dissident +iconoclastic +nonconforming +Reformed +outdoor +alfresco +outdoorsy +indoor +outside +extracurricular +extracurricular +right +inside +wrong +covered +ariled +awninged +beaded +blanketed +canopied +cloaked +crusted +dabbled +drenched +dusty +muffled +peritrichous +plastered +overgrown +sealed +smothered +splashy +thickspread +tiled +white +bare +bald +naked +undraped +unroofed +coated +backed +glazed +oily +uncoated +roofed +roofless +leafy +bifoliate +bowery +foliaceous +foliate +foliolate +ivied +leafed +leaflike +petallike +unifoliate +leafless +aphyllous +defoliate +scapose +lipped +bilabiate +labiate +lipless +overt +bald +naked +undisguised +visible +covert +backstair +black +clandestine +secret +collusive +cloaked +secret +subterranean +undisclosed +paid +cashed +compensable +compensated +mercenary +postpaid +square +unpaid +buckshee +complimentary +outstanding +uncompensated +painful +aching +agonized +agonizing +biting +chafed +poignant +itchy +racking +sensitive +traumatic +painless +painted +finished +stained +whitewashed +unpainted +bare +unoiled +unstained +painted +rouged +unpainted +unrouged +delineated +depicted +described +diagrammatic +undelineated +undepicted +undrawn +paintable +unpaintable +palatable +unpalatable +brackish +distasteful +palpable +perceptible +impalpable +elusive +parallel +antiparallel +collateral +nonconvergent +oblique +bias +catacorner +crabwise +diagonal +nonparallel +perpendicular +normal +orthogonal +right +pardonable +excusable +expiable +minor +unpardonable +deadly +inexcusable +inexpiable +excusable +justifiable +inexcusable +indefensible +parental +filial +daughterly +partial +biased +impartial +disinterested +dispassionate +indifferent +indifferent +particulate +nonparticulate +passable +navigable +negotiable +surmountable +traversable +impassable +unsurmountable +unnavigable +untraversable +passionate +ablaze +ardent +choleric +fanatic +lustful +wild +passionless +platonic +unimpassioned +past +ago +ancient +bygone +chivalric +early +erstwhile +former +historic +last +late +olden +other +prehistoric +then +ultimo +present +existing +immediate +instant +future +approaching +early +emerging +proximo +born +hatched +unborn +unhatched +parented +unparented +orphaned +fatherless +motherless +paternal +fatherly +paternalistic +maternal +maternalistic +motherlike +motherly +wifely +husbandly +patient +diligent +enduring +forbearing +tolerant +unhurried +impatient +restive +unforbearing +patriarchal +patriarchic +patricentric +matriarchal +matriarchic +matricentric +patronized +unpatronized +briefless +packaged +prepackaged +unpackaged +loose +paved +sealed +unpaved +patriotic +chauvinistic +unpatriotic +peaceful +halcyon +irenic +nonbelligerent +pacific +pacifist +peaceable +unpeaceful +belligerent +militant +stormy +unpeaceable +penitent +contrite +penitential +impenitent +perceptive +acute +apprehensive +apperceptive +insightful +observant +subtle +understanding +unperceptive +blind +unobservant +perceptible +detectable +discernible +faint +palpable +perceivable +recognizable +sensible +imperceptible +impalpable +incognizable +indiscernible +subliminal +unobservable +perfect +clean +clear +cold +complete +down +errorless +faultless +flawless +ideal +idealized +idyllic +mint +perfectible +pluperfect +uncorrupted +imperfect +blemished +broken +corrupt +defective +imperfectible +irregular +perishable +biodegradable +decayable +imperishable +durable +imputrescible +permanent +abiding +ageless +indissoluble +standing +impermanent +acting +ephemeral +episodic +evanescent +improvised +interim +shipboard +temporal +terminable +working +persistent +caducous +deciduous +reversible +correctable +rechargeable +irreversible +permanent +reversible +nonreversible +revocable +rescindable +reversible +irrevocable +sealed +permissible +impermissible +forbidden +unmentionable +untouchable +admissible +admittable +allowable +permissible +inadmissible +impermissible +permissive +indulgent +unpermissive +permissive +bailable +preventive +blockading +clogging +deterrent +frustrating +precautionary +preclusive +preemptive +prohibitive +perplexed +baffled +metagrobolized +questioning +stuck +unperplexed +unbaffled +personal +individual +individualized +own +personalized +private +impersonal +nonpersonal +persuasive +coaxing +cogent +compelling +glib +dissuasive +admonitory +discouraging +penetrable +impenetrable +dense +permeable +porous +semipermeable +impermeable +retentive +pervious +receptive +impervious +fast +colorfast +greaseproof +mothproof +proof +resistant +runproof +soundproof +petalous +gamopetalous +polypetalous +salverform +apetalous +puncturable +punctureless +psychoactive +hallucinogenic +psychedelic +nonpsychoactive +physical +animal +bodily +material +personal +physiologic +somatogenic +mental +intellectual +moral +psychic +psychogenic +psychological +monotheistic +polytheistic +pious +devotional +godly +prayerful +impious +godless +secular +religious +religious +churchgoing +churchly +devout +interfaith +irreligious +atheistic +heathen +lapsed +nonobservant +placable +appeasable +mitigable +implacable +grim +unmitigable +plain +patterned +banded +blotched +brindled +burled +checked +dappled +dotted +figured +floral +freckled +laced +marbled +moire +patched +pointillist +pinstriped +ringed +slashed +sprigged +streaked +striped +tessellated +veined +plain +austere +bare +chaste +dry +dry +featureless +homely +inelaborate +literal +simple +tailored +vanilla +fancy +aureate +baroque +busy +dressy +crackle +damascene +damask +elaborate +embattled +fanciful +fantastic +lacy +puff +rococo +vermicular +planned +contrived +preset +unplanned +casual +casual +unpremeditated +studied +unstudied +candid +plausible +arguable +glib +implausible +improbable +pleasant +beautiful +dulcet +enjoyable +grateful +idyllic +unpleasant +acerb +beastly +dour +dreadful +embarrassing +harsh +harsh +hot +afflictive +rebarbative +sharp +ungrateful +unhappy +pleased +amused +chuffed +delighted +gratified +displeased +annoyed +exasperated +disgusted +frowning +offended +pleasing +admirable +charming +delightful +easy +fabulous +good +gratifying +ingratiating +sweet +displeasing +disconcerting +exasperating +pointed +acanthoid +acuate +barreled +fusiform +nibbed +peaked +pyramidal +sharpened +spiked +spikelike +pointless +blunt +acute +obtuse +polished +bright +finished +unpolished +raw +rough +unburnished +politic +expedient +sagacious +impolitic +inexpedient +political +governmental +semipolitical +nonpolitical +apolitical +ponderable +assessable +imponderable +popular +fashionable +favorite +hot +touristed +unpopular +pro +anti +positive +affirmative +constructive +negative +antagonistic +perverse +neutral +neutralized +viewless +plus +nonnegative +positive +minus +negative +positive +negative +positive +negative +possible +accomplishable +affirmable +attainable +contingent +feasible +mathematical +impossible +hopeless +impracticable +out +unachievable +potent +equipotent +multipotent +impotent +ineffective +impuissant +potent +impotent +powerful +almighty +coercive +compelling +mighty +muscular +potent +puissant +regent +regnant +powerless +feeble +helpless +weak +powered +supercharged +unpowered +influential +authoritative +potent +prestigious +uninfluential +placental +transplacental +aplacental +planted +cropped +naturalized +potbound +quickset +seeded +unplanted +uncropped +unseeded +plowed +tilled +unplowed +fallow +untilled +cultivated +uncultivated +uncultivable +potted +unpotted +practical +applicative +functional +interoperable +operable +serviceable +unimaginative +working +impractical +crazy +meshugge +quixotic +unfunctional +unwieldy +precise +dead +fine +finespun +meticulous +microscopic +nice +very +imprecise +general +precocious +advanced +retarded +backward +imbecile +moronic +cretinous +delayed +predictable +foreseeable +inevitable +unpredictable +aleatory +capricious +episodic +unforeseeable +premeditated +aforethought +unpremeditated +impulsive +prepared +braced +embattled +equipped +preconditioned +precooked +processed +ready +spread +up +unprepared +prescription +nonprescription +present +attendant +existing +here +omnipresent +absent +away +introuvable +truant +ostentatious +flaunty +flamboyant +unostentatious +quiet +pretentious +arty +grandiloquent +grandiose +sententious +sesquipedalian +unpretentious +honest +modest +unpompous +primary +capital +direct +firsthand +original +particular +secondary +alternate +auxiliary +collateral +indirect +secondhand +standby +thirdhand +tributary +utility +vicarious +basic +basal +elementary +fundamental +grassroots +radical +incidental +omissible +parenthetic +peripheral +secondary +private +clannish +cloistered +close +confidential +confidential +insular +nonpublic +offstage +privy +semiprivate +public +national +open +semipublic +unexclusive +exclusive +alone +inner +inside +selective +inclusive +comprehensive +privileged +sweetheart +underprivileged +deprived +underclass +productive +amentiferous +arable +fecund +rich +unproductive +bootless +dry +nonproductive +generative +consumptive +exploitative +reproducible +duplicable +unreproducible +inimitable +unrepeatable +professional +nonrecreational +professed +nonprofessional +amateur +lay +professional +unprofessional +amateurish +profitable +bankable +fat +gainful +economic +lucrative +unprofitable +dead +lean +marginal +unremunerative +profound +deep +thoughtful +superficial +apparent +dilettante +facile +glib +looking +shallow +prognathous +opisthognathous +chinless +progressive +advanced +advancing +modernized +regressive +atavistic +retrograde +returning +unmodernized +progressive +degressive +regressive +pronounceable +rolled +unpronounceable +proper +becoming +correct +correct +fitting +halal +kosher +priggish +improper +indecent +wrong +prophetic +adumbrative +apocalyptic +clairvoyant +Delphic +divinatory +fateful +precursory +predictive +unprophetic +nonprognosticative +unpredictive +prospective +likely +future +retrospective +protected +bastioned +battlemented +burglarproof +covert +moated +shielded +snug +stormproof +weatherproof +unprotected +exposed +naked +unshielded +protective +cautionary +contraceptive +custodial +evasive +overprotective +preservative +protecting +restrictive +unprotective +proud +arrogant +beaming +big +bigheaded +boastful +dignified +disdainful +conceited +overproud +pleased +humble +broken +meek +proved +established +evidenced +tested +verified +unproved +unverified +provident +careful +farseeing +forehanded +forethoughtful +improvident +short +thriftless +unforethoughtful +provocative +agitative +challenging +charged +incendiary +rousing +unprovocative +disarming +noninflammatory +prudent +circumspect +judicious +provident +prudential +imprudent +injudicious +rash +punctual +prompt +timely +unpunctual +behindhand +belated +benighted +punished +unpunished +uncorrected +punitive +correctional +penal +penitentiary +retaliatory +rehabilitative +purebred +pedigree +crossbred +bigeneric +hybrid +underbred +pure +immaculate +white +impure +defiled +pure +axenic +clean +clean +fine +native +plain +pristine +sublimate +unadulterated +unalloyed +uncontaminated +virginal +impure +adulterate +alloyed +bastardized +contaminated +dirty +unpurified +contaminated +uncontaminated +purposeful +businesslike +purposeless +adrift +desultory +qualified +unqualified +quack +trained +disciplined +drilled +housebroken +untrained +primitive +undisciplined +qualified +conditional +hedged +limited +unqualified +categoric +clean +cool +outright +qualitative +soft +quantitative +decimal +duodecimal +numeric +quantifiable +valued +vicenary +questionable +alleged +apocryphal +debatable +doubtful +equivocal +fishy +impugnable +unquestionable +acknowledged +mathematical +unimpeachable +quiet +noiseless +silent +stilly +tiptoe +noisy +blatant +abuzz +clangorous +clanking +clattery +creaky +rackety +reedy +stertorous +swishy +thundering +whirring +restful +slumberous +restless +quiet +quiescent +untroubled +unquiet +disruptive +squally +random +ergodic +haphazard +stochastic +nonrandom +purposive +rational +coherent +demythologized +intelligent +reasonable +irrational +blind +reasonless +nonrational +superstitious +emotional +cerebral +racial +biracial +interracial +multiracial +racist +nonracial +reactive +activated +labile +oxidizable +thermolabile +unstable +unreactive +inactive +inert +noble +stable +ready +fit +prompt +ripe +waiting +unready +napping +unripe +real +actual +actual +objective +historical +unreal +dreamed +envisioned +fabled +fabricated +fabulous +fanciful +fantastic +hallucinatory +illusional +illusive +real +proper +true +unreal +deceptive +dreamlike +phantom +real +nominal +realistic +hardheaded +graphic +living +veridical +virtual +unrealistic +chimerical +delusive +fantastic +kafkaesque +phantasmagoric +reasonable +commonsense +healthy +tenable +unreasonable +counterintuitive +indefensible +mindless +undue +reciprocal +bilateral +trilateral +correlative +interactional +reciprocative +reciprocative +nonreciprocal +nonreciprocating +unanswered +refined +civilized +couth +dainty +debonair +finespun +gentlemanlike +ladylike +patrician +overrefined +unrefined +agrestic +artless +boorish +coarse +crass +low +robust +rough +ungentlemanly +unladylike +processed +cured +milled +unprocessed +natural +streaming +unvulcanized +refined +unrefined +treated +activated +aerated +burned +doped +fumed +proofed +untreated +raw +oiled +unoiled +treated +bandaged +dosed +dressed +untreated +recoverable +redeemable +retrievable +unrecoverable +irretrievable +lost +regenerate +reformed +unregenerate +cussed +impenitent +unconverted +registered +certified +recorded +unregistered +unlisted +registered +unregistered +regular +lawful +official +standard +timed +uniform +weak +irregular +asymmetrical +casual +improper +randomized +strong +regular +irregular +regulated +unregulated +remediable +irremediable +renewable +unrenewable +rentable +unrentable +reparable +maintainable +irreparable +repeatable +unrepeatable +repetitive +iterative +nonrepetitive +printable +unprintable +requested +unrequested +unasked +rhymed +alliterative +assonant +unrhymed +uniform +single +multiform +polymorphic +periodic +cyclic +oscillatory +diurnal +daily +nightly +weekly +semiweekly +hourly +fortnightly +annual +semiannual +biennial +triennial +monthly +bimonthly +semimonthly +semestral +midweekly +aperiodic +noncyclic +nonoscillatory +regular +standing +irregular +related +affinal +agnate +akin +allied +descendant +enate +kindred +unrelated +unconnected +related +affiliated +cognate +connate +coreferent +correlative +corresponding +unrelated +misrelated +orthogonal +uncorrelated +relevant +applicable +germane +pertinent +irrelevant +digressive +extraneous +inapplicable +moot +mindful +careful +evocative +unmindful +amnesic +replaceable +exchangeable +irreplaceable +representational +delineative +eidetic +figural +mimetic +naturalistic +nonrepresentational +abstract +conventional +geometric +hieratic +protogeometric +semiabstract +representative +allegorical +emblematic +nonrepresentative +reputable +esteemed +estimable +redoubtable +respected +disreputable +discreditable +discredited +louche +seamy +receptive +acceptive +admissive +assimilative +hospitable +unreceptive +closed +reconcilable +harmonizable +resolvable +irreconcilable +hostile +inconsistent +reserved +aloof +diffident +indrawn +unreserved +reserved +booked +bookable +unreserved +unbooked +resistible +irresistible +overpowering +resolute +bent +determined +desperate +firm +foursquare +spartan +stalwart +undaunted +undeterred +irresolute +discouraged +infirm +unstable +vacillant +respectable +decent +presentable +upstanding +unrespectable +respectful +deferent +honorific +disrespectful +annihilating +contemptuous +contumelious +derisive +impious +impudent +undeferential +responsible +accountable +answerable +amenable +liable +trustworthy +irresponsible +carefree +feckless +idle +unaccountable +unreliable +responsive +answering +unresponsive +refractory +restrained +close +unexpansive +unrestrained +excessive +freewheeling +highflying +unbridled +unbuttoned +unhampered +restricted +circumscribed +closed +unrestricted +discretionary +open +restrictive +confining +inhibitory +limiting +regulative +sumptuary +suppressive +unrestrictive +emancipative +nonrestrictive +retentive +unretentive +reticulate +cancellate +crisscross +fretted +interconnected +lacy +meshed +networklike +nonreticulate +retractile +retractable +nonretractile +reflective +mirrorlike +reflecting +nonreflective +echoless +reflected +echoic +mirrored +unreflected +absorbed +reverberant +bright +clinking +echoing +hollow +jingling +live +resonant +tinkling +vibrant +unreverberant +anechoic +dead +dull +reverent +adoring +awed +respectful +irreverent +blasphemous +aweless +revived +recrudescent +redux +renewed +resurgent +resuscitated +revitalized +unrevived +awakened +aroused +unawakened +awed +overawed +unawed +aweless +revolutionary +counterrevolutionary +rewarding +bountied +rewardful +unrewarding +thankless +profitless +rhetorical +bombastic +flowery +empurpled +forensic +grandiloquent +oratorical +poetic +stylistic +unrhetorical +plainspoken +rhythmical +Adonic +cadenced +danceable +jazzy +lilting +measured +Sapphic +chantlike +syncopated +throbbing +unrhythmical +arrhythmic +nonrhythmic +unmeasured +ribbed +costate +riblike +ribless +rich +affluent +comfortable +poor +broke +destitute +moneyless +rich +poor +resourceless +rich +deluxe +lavish +poor +beggarly +slummy +moneyed +moneyless +solvent +insolvent +bankrupt +rich +lean +rimmed +rimless +handed +handless +handled +handleless +dextral +right +left +sinistral +ambidextrous +equipoised +right +conservative +oldline +reactionary +rightish +rightist +left +leftish +leftist +liberal +center +centrist +right +far +rightmost +starboard +left +leftmost +near +port +horned +antlered +bicorn +horny +hornless +right +ethical +wrong +condemnable +base +misguided +righteous +good +sound +unrighteous +sinful +robust +beefy +hardy +hardy +vigorous +frail +decrepit +round +bulblike +capitate +coccoid +cumuliform +discoid +moonlike +nutlike +ringlike +roundish +square +quadrate +squared +squarish +rounded +allantoid +annular +aspheric +auriform +bowfront +crescent +cycloid +cylindrical +disciform +domed +ellipsoid +hyperboloidal +lingulate +olivelike +parabolic +paraboloidal +pineal +plumlike +rotund +terete +umbrellalike +angular +angled +asteroid +bicuspid +cuspate +equiangular +isogonic +rectangular +triangular +tricuspid +unicuspid +oblate +prolate +rural +agrarian +agrestic +arcadian +campestral +countrified +hobnailed +urban +citified +urbanized +rusted +rusty +rustless +rustproof +undercoated +holy +beatified +Blessed +consecrated +hallowed +unholy +profane +sacred +divine +ineffable +inspirational +inviolable +numinous +religious +reverend +sacral +taboo +profane +laic +profanatory +sadistic +masochistic +safe +dangerous +breakneck +chancy +desperate +hazardous +insidious +mordacious +parlous +treacherous +safe +out +down +salable +marketable +marketable +unsalable +unmarketable +unmarketable +same +assonant +comparable +duplicate +homophonic +identical +one +synoptic +different +antithetic +assorted +contrary +contrasting +diametric +divergent +disparate +distinct +diverse +divers +opposite +several +variant +same +aforesaid +identical +other +different +another +different +new +opposite +opposite +opposite +otherwise +similar +akin +analogous +confusable +connatural +corresponding +quasi +sympathetic +dissimilar +sane +lucid +insane +amuck +balmy +brainsick +certifiable +crackbrained +crazed +fey +hebephrenic +lunatic +maniacal +maniclike +paranoid +psychopathic +psychotic +schizophrenic +satiate +jaded +satiable +insatiate +quenchless +unsated +unsatisfiable +sarcastic +barbed +black +corrosive +sardonic +satirical +saturnine +unsarcastic +satisfactory +adequate +alright +comforting +copacetic +passing +right +unsatisfactory +disappointing +failing +off +unacceptable +scalable +ascendable +unscalable +scholarly +academic +bookish +erudite +unscholarly +unlearned +unstudious +scientific +technological +unscientific +pseudoscientific +scrupulous +religious +unscrupulous +conscientious +unconscientious +conscienceless +sealed +unopened +unsealed +open +sealed +unsealed +wrapped +unwrapped +seaworthy +unseaworthy +airworthy +unairworthy +concealed +bushwhacking +dark +furtive +hidden +hidden +incognito +sealed +secret +sneaking +unconcealed +blatant +exhibitionistic +concealing +revealing +indicative +sectarian +denominational +nonsectarian +ecumenic +interchurch +nondenominational +undenominational +secure +insecure +overanxious +unassured +secure +assured +firm +sure +insecure +precarious +unguaranteed +secure +steady +tight +insecure +fastened +unfastened +unbarred +undone +insured +insurable +uninsured +uninsurable +seductive +alluring +corrupting +insidious +teasing +unseductive +uninviting +selfish +egotistic +unselfish +sharing +senior +elder +major +precedential +ranking +junior +minor +younger +sensational +lurid +scandalmongering +screaming +unsensational +sensible +insensible +anesthetic +asleep +sensitive +delicate +erogenous +excitable +irritable +radiosensitive +nociceptive +reactive +insensitive +dead +unreactive +sensitive +alive +huffy +oversensitive +insensitive +callous +dead +dull +insensible +soulless +sensitizing +desensitizing +numbing +sensory +extrasensory +clairvoyant +telegnostic +telepathic +sent +unsent +separate +apart +asunder +detached +discrete +disjoint +disjunct +isolable +unaccompanied +joint +clannish +concerted +conjoined +corporate +cosignatory +sanitary +hygienic +unsanitary +unhygienic +septic +abscessed +dirty +contaminative +purulent +infectious +putrefactive +septicemic +antiseptic +aseptic +bactericidal +cleansing +nonpurulent +uninfected +germfree +axenic +germy +unsterilized +adulterating +extraneous +purifying +ablutionary +antiseptic +detergent +serious +earnest +grave +overserious +real +thoughtful +sobering +solid +frivolous +airheaded +flighty +flippant +idle +light +trivial +playful +coltish +devilish +elfin +arch +kittenish +mocking +unplayful +selected +elect +unselected +serviceable +durable +functional +unserviceable +inoperable +unrepaired +resident +nonresident +settled +based +located +nonnomadic +relocated +unsettled +aimless +erratic +homeless +migrant +mobile +peripatetic +itinerant +rootless +unlocated +migratory +nonmigratory +settled +accomplished +appointed +determined +deterministic +firm +preconcerted +unsettled +doubtful +open +sexy +aroused +autoerotic +coquettish +erotic +blue +hot +intimate +juicy +lascivious +lecherous +leering +lubricious +orgiastic +oversexed +pornographic +provocative +raunchy +sexed +unsexy +sexless +sexless +undersexed +sexual +intersexual +sexed +unisexual +asexual +agamic +fissiparous +neuter +vegetal +castrated +altered +cut +spayed +uncastrated +entire +aphrodisiac +anaphrodisiac +estrous +monestrous +polyestrous +anestrous +diestrous +shapely +bosomy +callipygian +Junoesque +modeled +retrousse +unshapely +acromegalic +chunky +clubfooted +deformed +knobby +nodular +nodulose +shapeless +torulose +breasted +bosomed +breastless +formed +ductile +bacillar +biform +botuliform +catenulate +navicular +perfected +phylliform +precast +shaped +vermiform +unformed +amorphous +unshaped +shared +common +joint +unshared +exclusive +individual +undivided +shaven +beardless +unshaven +bearded +bestubbled +goateed +mustachioed +sheared +unsheared +sheathed +cased +clad +ironclad +podlike +unsheathed +shockable +unshockable +shod +booted +ironshod +roughshod +sandaled +slippered +unshod +barefoot +stockinged +calced +discalced +nearsighted +farsighted +hyperopic +telescopic +shrinkable +unshrinkable +sighted +seeing +blind +blinded +blindfold +dazzled +deuteranopic +eyeless +protanopic +tritanopic +signed +autographed +subscribed +unsigned +significant +momentous +epochal +earthshaking +evidential +fundamental +large +monumental +noteworthy +probative +operative +portentous +insignificant +flimsy +inappreciable +light +superficial +significant +nonsignificant +silenced +suppressed +unsilenced +simple +acerate +acuminate +apiculate +caudate +cordate +cuneate +deltoid +dolabriform +elliptic +ensiform +hastate +lanceolate +linear +lyrate +needled +obtuse +oblanceolate +oblong +obovate +orbiculate +ovate +pandurate +peltate +perfoliate +reniform +sagittate +spatulate +unlobed +compound +bilobate +binate +bipartite +bipinnate +bipinnatifid +cleft +conjugate +decompound +incised +lobed +palmate +palmatifid +parted +pedate +pinnate +pinnatifid +pinnatisect +quinquefoliate +radiate +ternate +trifoliate +trilobate +tripinnate +tripinnatifid +simple +simplex +simplistic +unanalyzable +uncomplicated +complex +analyzable +Byzantine +colonial +complicated +composite +compound +daedal +Gordian +interlacing +intricate +labyrinthine +multifactorial +multiplex +thickening +sincere +cordial +dear +honest +genuine +insincere +bootlicking +buttery +dissimulative +false +feigned +gilded +hypocritical +plausible +singular +plural +dual +singular +plural +cardinal +zero +one +two +three +four +five +six +seven +eight +nine +ten +eleven +twelve +thirteen +fourteen +fifteen +sixteen +seventeen +eighteen +nineteen +twenty +thirty +forty +fifty +sixty +seventy +eighty +ninety +hundred +thousand +million +billion +billion +trillion +trillion +zillion +ordinal +zero +zeroth +first +second +third +fourth +fifth +sixth +seventh +eighth +ninth +tenth +eleventh +twelfth +thirteenth +fourteenth +fifteenth +sixteenth +seventeenth +eighteenth +nineteenth +umpteenth +twentieth +thirtieth +fortieth +fiftieth +sixtieth +seventieth +eightieth +ninetieth +hundredth +thousandth +millionth +billionth +trillionth +quadrillionth +quintillionth +nth +scripted +unscripted +sinkable +unsinkable +single +azygous +lone +singular +unary +uninominal +multiple +aggregate +bigeminal +binary +double +double +double +duplex +manifold +ternary +treble +triune +quadruple +quadruple +quaternate +quintuple +sextuple +septuple +octuple +nonuple +tenfold +double +single +multilane +divided +sized +eightpenny +fourpenny +ninepenny +size +sorted +threepenny +unsized +unsorted +sized +unsized +skilled +accomplished +adept +arch +consummate +delicate +hot +mean +technical +versatile +unskilled +artless +botchy +bungled +bungling +crude +hopeless +humble +lubberly +semiskilled +weak +verbal +numerical +coarse +farinaceous +granulated +plushy +loose +fine +close +dustlike +floury +nongranular +powdered +small +superfine +smoky +blackened +smoking +smokeless +slippery +lubricious +nonstick +slick +sliding +slimed +slipping +slithery +nonslippery +nonskid +nonslip +lubricated +unlubricated +smooth +creaseless +fast +glassy +seamless +streamlined +velvet +rough +abrasive +alligatored +barky +broken +bullate +bumpy +chapped +corded +costate +cragged +crushed +homespun +imbricate +lepidote +squamulose +lined +pocked +rocky +gravelly +roughish +rugose +sandpapery +scabby +shagged +textured +verrucose +smooth +rough +furrowed +canaliculate +corrugated +rutted +unfurrowed +smooth +entire +repand +sinuate +undulate +unnotched +rough +bidentate +biserrate +ciliate +crenate +crenulate +crispate +dentate +denticulate +emarginate +erose +fimbriate +fringed +lacerate +pectinate +rimose +runcinate +serrate +serrulate +spinose +rifled +unrifled +social +cultural +gregarious +interpersonal +multiethnic +unsocial +alone +antisocial +asocial +lone +recluse +accompanied +unaccompanied +alone +isolated +tod +unattended +accompanied +unaccompanied +solo +gregarious +social +ungregarious +nongregarious +gregarious +clustered +ungregarious +caespitose +seamed +seamy +sewed +seamless +broadloom +unseamed +seeded +unseeded +seedy +seeded +seeded +seedless +seeded +stoneless +shuttered +closed +unshuttered +sleeved +sleeveless +sociable +clubbable +clubbish +companionable +convivial +extroverted +social +unsociable +antisocial +ungregarious +sold +oversubscribed +unsold +soled +soleless +solid +coagulated +concrete +congealed +dry +semisolid +liquid +fluid +liquefiable +liquefied +semiliquid +watery +gaseous +aeriform +aerosolized +evaporated +gasified +gassy +vaporific +solid +massive +hollow +cavernous +fistular +tubular +soluble +dissolvable +meltable +insoluble +soluble +answerable +solvable +insoluble +insolvable +solved +unsolved +some +any +both +several +no +nary +none +zero +all +each +every +every +sophisticated +blase +intelligent +polished +naive +childlike +credulous +fleeceable +innocent +unsophisticated +sound +dependable +healthy +solid +stable +unsound +bad +long +wildcat +sound +solid +unsound +corroded +decayed +effervescent +bubbling +aerated +fizzing +carbonated +noneffervescent +flat +noncarbonated +sparkling +still +specialized +differentiated +special +specialistic +unspecialized +generalized +spinous +spineless +spirited +boisterous +dashing +ebullient +feisty +impertinent +lively +mettlesome +resilient +snappy +sprightly +vibrant +zestful +spiritless +apathetic +bloodless +dispirited +heartless +thin +spontaneous +impulsive +intuitive +natural +induced +elicited +iatrogenic +spoken +expressed +oral +verbal +written +backhand +cursive +engrossed +graphic +handwritten +holographic +inscribed +longhand +scrivened +shorthand +voiced +unvoiced +whispered +written +codified +unwritten +vocalic +vowellike +consonantal +stoppable +abatable +unstoppable +unbeatable +syllabic +nonsyllabic +syllabic +disyllabic +monosyllabic +octosyllabic +pentasyllabic +polysyllabic +decasyllabic +syllabled +nonsyllabic +unsyllabled +syllabic +accentual +quantitative +stable +firm +lasting +stabile +stabilized +unstable +coseismic +crank +explosive +rickety +rocky +seismic +tipsy +tottering +volcanic +staccato +abrupt +legato +staged +unstaged +unperformed +standard +authoritative +basic +casebook +criterial +nonstandard +standard +modular +regular +regulation +standardized +stock +nonstandard +deficient +nonnormative +standard +acceptable +classical +nonstandard +bad +unacceptable +starchy +starchlike +starchless +starry +sparkling +starlike +starlit +starless +nourished +full +overfed +malnourished +foodless +starved +unfed +unnourished +steady +dependable +even +firm +level +steadied +sure +surefooted +unsteady +arrhythmic +convulsive +faltering +flickering +fluctuating +palpitant +shaky +quavering +shifting +shuddering +tottering +uneven +wobbling +stemmed +stemless +stemmed +stimulating +challenging +exciting +piquant +rousing +thrilling +unstimulating +bland +dry +vapid +depressant +ataractic +narcotic +relaxant +soporific +stimulative +adrenocorticotropic +analeptic +excitant +irritating +stimulant +stomatous +mouthlike +astomatous +straight +aligned +unbent +untwisted +crooked +akimbo +anfractuous +aquiline +askew +contorted +deflective +geniculate +gnarled +malposed +reflexed +squiggly +tortuous +warped +windblown +wry +zigzag +straight +trabeated +uncurved +curved +arced +curvilineal +eellike +falcate +curvy +flexuous +hooklike +incurvate +recurved +semicircular +serpentine +sinuate +sinusoidal +upcurved +coiled +coiling +convolute +involute +involute +wound +uncoiled +uncurled +straight +aboveboard +guileless +straightarrow +crooked +sneaky +stressed +emphatic +masculine +unstressed +feminine +unaccented +unemphatic +tonic +atonic +strong +beardown +brawny +bullnecked +bullocky +fortified +hard +ironlike +noticeable +reinforced +robust +stiff +vehement +virile +weak +anemic +adynamic +faint +feeble +flimsy +pale +puny +vulnerable +weakened +stubborn +bolshy +bullheaded +dogged +contrarious +determined +hardheaded +docile +meek +sheeplike +yielding +subordinate +feudatory +ruled +subject +subservient +insubordinate +contumacious +disobedient +mutinous +rebellious +successful +boffo +booming +in +made +productive +victorious +unsuccessful +attempted +defeated +hitless +out +scoreless +unfulfilled +unplaced +winless +sufficient +adequate +comfortable +insufficient +depleted +inadequate +lean +light +shy +sugary +candied +honeyed +honeylike +sugared +sugarless +unsugared +unsweetened +superior +arch +eminent +leading +majestic +superordinate +upper +inferior +humble +indifferent +outclassed +superior +ace +banner +boss +brilliant +capital +choice +excellent +greatest +outstanding +premium +pukka +shining +spiffing +supreme +transcendent +inferior +bad +base +bum +cheapjack +coarse +coarsened +commercial +deplorable +less +mediocre +ropey +scrawny +utility +superior +inferior +superjacent +incumbent +overlying +superincumbent +subjacent +underlying +superscript +subscript +adscript +supervised +unsupervised +unattended +supported +based +braced +gimbaled +pendent +supernatant +suspended +underhung +underslung +unsupported +strapless +unbraced +supported +subsidized +unsupported +baseless +uncorroborated +assisted +unassisted +naked +unaided +supportive +accessory +accessary +certificatory +collateral +encouraging +unsupportive +confounding +disconfirming +surmountable +conquerable +insurmountable +insuperable +surprised +amazed +dumbfounded +gobsmacked +jiggered +startled +unsurprised +surprising +amazing +startling +stunning +unsurprising +susceptible +allergic +amenable +capable +convincible +fictile +liable +predisposed +amenable +suggestible +temptable +unvaccinated +vulnerable +unsusceptible +immune +immunized +immunogenic +incapable +unpersuadable +unresponsive +impressionable +easy +spinnable +plastic +susceptible +unimpressionable +exempt +excused +immune +privileged +nonexempt +liable +taxpaying +unexcused +scheduled +regular +unscheduled +extra +forced +sweet +dry +brut +sec +sweet +cloying +sweetish +sour +acerb +acetose +acidic +lemony +subacid +soured +off +unsoured +fresh +suspected +unsuspected +unknown +swept +sweptback +sweptwing +unswept +sworn +bound +unsworn +symmetrical +bilateral +biradial +cruciate +even +interchangeable +isosceles +radial +rhombohedral +asymmetrical +lopsided +noninterchangeable +unsymmetric +actinomorphic +actinoid +zygomorphic +sympathetic +commiserative +condolent +empathic +unsympathetic +unsympathizing +sympathetic +unsympathetic +sympatric +allopatric +synchronic +diachronic +synchronous +coetaneous +coexistent +coincident +contemporaneous +parallel +synchronic +synchronized +asynchronous +allochronic +anachronic +nonsynchronous +serial +synchronous +asynchronous +syndetic +asyndetic +synonymous +similar +substitutable +antonymous +complementary +contradictory +contrary +contrastive +converse +systematic +unsystematic +taciturn +reticent +voluble +chatty +tactful +discerning +tactless +tall +gangling +leggy +leggy +long +stately +tallish +short +chunky +compact +squab +tame +broken +cultivated +docile +domestic +tamed +wild +feral +unbroken +undomesticated +tame +subdued +wild +chaotic +delirious +frenzied +unsubdued +tangible +tactile +intangible +tangible +real +realizable +intangible +tasteful +aesthetic +understated +tasteless +barbaric +brassy +Brummagem +camp +indelicate +ostentatious +tasty +ambrosial +bitter +bitterish +bittersweet +choice +dainty +delectable +flavorful +fruity +peppery +gingery +hot +grapey +nippy +nutty +piquant +pungent +salty +smoky +sour +winy +tasteless +bland +unflavored +unsalted +taxable +assessable +dutiable +ratable +nontaxable +unratable +temperate +abstemious +moderate +intemperate +big +temperate +equable +intemperate +tense +overstrung +taut +lax +drooping +limp +floppy +loose +tensionless +tense +constricted +lax +tense +aroused +taut +antsy +edgy +electric +isotonic +nervous +strained +unrelaxed +relaxed +degage +unstrained +hypertonic +hypotonic +territorial +jurisdictional +regional +sectional +extraterritorial +territorial +nonterritorial +thermoplastic +thermosetting +thick +deep +fat +heavy +heavy +quilted +thickened +thin +bladed +capillary +compressed +depressed +diaphanous +filamentous +fine +light +hyperfine +papery +ribbonlike +sleazy +slender +tenuous +thick +clogged +coagulable +coagulate +creamy +dense +gelatinous +ropy +soupy +syrupy +thickened +thin +tenuous +rare +thinkable +cogitable +conceivable +presumable +unthinkable +impossible +thoughtful +bemused +brooding +cogitative +deliberative +excogitative +thoughtless +inconsiderate +unreflective +thrifty +economical +saving +wasteful +extravagant +uneconomical +tidy +neat +neat +ruly +shipshape +straight +uncluttered +untidy +blowsy +cluttered +disheveled +disorderly +frowsy +messy +scraggly +sloppy +slouchy +sprawling +unkempt +groomed +brushed +kempt +plastered +pomaded +sleek +ungroomed +bushy +unbrushed +combed +uncombed +uncombable +unkempt +timbered +untimbered +toned +toneless +tongued +tonguelike +tongueless +tipped +untipped +tired +aweary +bleary +bored +careworn +drooping +exhausted +footsore +jaded +knackered +ragged +unrefreshed +whacked +rested +fresh +untired +tolerable +bearable +tolerant +intolerable +bitter +impossible +unsupportable +tolerant +unbigoted +intolerant +bigoted +rigid +tonal +keyed +diatonic +polytonal +toned +tonic +atonal +toothed +cogged +toothlike +toothy +tusked +toothless +edental +edentulous +top +apical +crowning +topmost +upper +bottom +bottommost +inferior +nether +side +broadside +lateral +topped +lidded +topless +lidless +bottomed +bottomless +equatorial +pantropical +tropical +polar +circumpolar +testate +intestate +touched +brushed +grazed +untouched +tough +cartilaginous +chewy +coriaceous +fibrous +hempen +tender +chewable +crisp +flaky +tenderized +tough +calloused +enured +tender +delicate +tough +tender +protective +sentimental +toxic +cyanogenetic +deadly +hepatotoxic +nephrotoxic +ototoxic +poisonous +nontoxic +antitoxic +nonpoisonous +nonvenomous +tractable +ductile +docile +tamable +intractable +balking +refractory +uncontrollable +unmalleable +traceable +untraceable +tracked +trackless +traveled +untraveled +untraversed +trimmed +clipped +untrimmed +unclipped +troubled +annoyed +anxious +buffeted +careful +clouded +disquieted +distressed +fraught +haunted +mothy +stressed +struggling +suffering +troublous +untroubled +carefree +clear +dreamless +unconcerned +undisturbed +unmolested +true +actual +apodictic +truthful +sure +false +mendacious +specious +untrue +trustful +confiding +unsuspecting +distrustful +cynical +doubting +jealous +leery +misogynic +oversuspicious +trustworthy +authentic +creditworthy +dependable +fiducial +sure +untrustworthy +devious +slippery +tubed +tubeless +tucked +untucked +turned +inverted +overturned +reversed +rotated +unturned +typical +emblematic +representative +regular +true +atypical +unrepresentative +underhand +overhand +surface +aboveground +opencast +subsurface +belowground +submarine +submerged +subterranean +overhead +submersible +nonsubmersible +tearful +liquid +teary +sniffly +weepy +tearless +dry +union +closed +organized +nonunion +open +unorganized +uniparous +multiparous +biparous +unipolar +bipolar +united +agreed +allied +amalgamate +coalescent +cohesive +conjugate +conjunct +federate +incorporate +one +suprasegmental +tied +undivided +unpartitioned +unsegmented +divided +bicameral +bifid +bifurcate +bifurcated +bilocular +chambered +cloven +dichotomous +disconnected +disjointed +disjunct +episodic +metameric +mullioned +pentamerous +pronged +sectional +segmental +torn +trifid +adnate +connate +univalve +bivalve +lamellibranch +ascending +acclivitous +ascendant +assurgent +assurgent +scandent +highflying +up +descending +declivitous +degressive +descendant +down +drizzling +dropping +raining +rising +improving +falling +down +soft +climactic +anticlimactic +upmarket +upscale +downmarket +downscale +transitive +intransitive +translatable +untranslatable +ungulate +unguiculate +clawed +clawlike +up +ahead +aweigh +dormie +heavenward +risen +sprouted +upbound +upfield +upward +down +behind +downbound +downcast +downfield +downward +fallen +set +thrown +weak +upstage +downstage +upstairs +downstairs +upstream +downstream +uptown +downtown +used +utilized +misused +abused +exploited +useful +multipurpose +reclaimable +serviceable +useable +utilitarian +utilizable +useless +futile +inutile +unserviceable +utopian +airy +dystopian +valid +binding +legal +legitimate +reasoned +validated +invalid +bad +fallacious +false +invalidated +null +sophistic +valuable +invaluable +precious +rich +semiprecious +worth +worthless +chaffy +manky +negligible +nugatory +otiose +rubbishy +tinpot +valueless +variable +changeable +covariant +multivariate +protean +shifting +variant +versatile +invariable +changeless +invariant +varied +omnifarious +varicolored +variform +varying +versatile +unvaried +veiled +unveiled +disclosed +undraped +ventilated +aired +louvered +vented +unventilated +airless +fuggy +unaerated +unvented +vertebrate +invertebrate +violable +inviolable +unassailable +violent +convulsive +ferocious +hot +lashing +lurid +rampageous +ruffianly +nonviolent +passive +virtuous +impeccable +impeccant +wicked +evil +heavy +flagitious +iniquitous +irreclaimable +nefarious +peccable +visible +circumpolar +ocular +macroscopic +megascopic +microscopic +subgross +panoptic +telescopic +viewable +invisible +camouflaged +concealed +infrared +lightless +nonvisual +occult +ultraviolet +undetectable +unseeyn +viviparous +oviparous +broody +ovoviviparous +volatile +evaporable +nonvolatile +voluntary +willful +freewill +uncoerced +unpaid +involuntary +driven +forced +unconscious +unwilled +unwilling +voluntary +involuntary +automatic +autonomic +vegetative +vulnerable +assailable +compromising +defenseless +endangered +indefensible +insecure +penetrable +threatened +unguarded +invulnerable +airtight +bombproof +defendable +entrenched +impregnable +tight +sheltered +untouchable +wanted +craved +hot +sought +unwanted +abdicable +friendless +outcaste +unclaimed +undesired +unwelcome +warm +lukewarm +warmed +warming +cool +caller +precooled +warm +cordial +hearty +cool +unresponsive +warm +hot +cool +cold +homoiothermic +poikilothermic +warmhearted +coldhearted +brittle +washable +nonwashable +waxed +unwaxed +waxing +waning +increasing +accelerative +accretionary +accretive +augmentative +incorporative +maximizing +multiplicative +progressive +raising +decreasing +depreciating +detractive +diminishing +dwindling +falling +increasing +accelerando +crescendo +decreasing +allargando +calando +decrescendo +rallentando +inflationary +deflationary +weaned +unweaned +wearable +unwearable +weedy +weedless +welcome +unwelcome +uninvited +well +asymptomatic +cured +ill +afflicted +aguish +ailing +airsick +autistic +bedfast +bilious +bronchitic +consumptive +convalescent +delirious +diabetic +dizzy +dyspeptic +faint +feverish +funny +gouty +green +nauseated +palsied +paralytic +paraplegic +rickety +scrofulous +sneezy +spastic +tubercular +unhealed +upset +wet +bedewed +besprent +boggy +clammy +damp +sodden +drippy +humid +misty +muggy +reeking +rheumy +sloppy +showery +steaming +sticky +tacky +undried +washed +watery +dry +adust +arid +desiccated +dried +rainless +semiarid +thirsty +wet +fresh +dry +milkless +wet +dry +wet +dry +hydrous +anhydrous +wheeled +wheelless +clerical +professional +industrial +manual +wholesome +alimentary +healthy +hearty +organic +salubrious +unwholesome +insalubrious +insubstantial +morbid +nauseating +rich +wide +beamy +deep +fanlike +sweeping +narrow +constricting +narrowed +slender +strait +straplike +tapered +wide +comfortable +narrow +bare +wieldy +unwieldy +awkward +cumbersome +wigged +peruked +toupeed +wigless +willing +consenting +disposed +glad +ready +volitional +unwilling +grudging +loath +unintentional +winged +alar +alate +batwing +brachypterous +pinioned +volant +winglike +wingless +apterous +flightless +wired +bugged +connected +wireless +wise +perspicacious +owlish +sapiential +sage +foolish +absurd +asinine +cockamamie +fond +harebrained +rattlebrained +unwise +wooded +arboraceous +bosky +braky +forested +jungly +overgrown +rushy +scrabbly +sylvan +timbered +woodsy +unwooded +unforested +untimbered +woody +ashen +beechen +birch +cedarn +ligneous +oaken +suffrutescent +wooden +nonwoody +herbaceous +pulpy +worldly +economic +material +materialistic +mundane +unworldly +anchoritic +cloistered +spiritual +unmercenary +woven +braided +unwoven +felted +knitted +worn +aged +attrited +battered +creaky +eroded +frayed +mangy +ragged +raddled +scruffy +shopworn +tattered +threadbare +thumbed +vermiculate +waterworn +new +unweathered +worthy +applaudable +creditable +deserving +exemplary +meritorious +noteworthy +quotable +sacred +valued +valuable +worthwhile +unworthy +undeserving +unmerited +unmeritorious +xeric +xerophytic +hydric +hydrophytic +hygrophytic +mesic +mesophytic +zonal +azonal +azonic +acrocarpous +pleurocarpous +cursorial +fossorial +homocercal +heterocercal +webbed +palmate +unwebbed +faceted +unfaceted +ipsilateral +contralateral +salient +proactive +retroactive +categorematic +autosemantic +syncategorematic +synsemantic +idiographic +nomothetic +baptized +unbaptized +benign +malignant +cancerous +calcicolous +calcifugous +invertible +immunocompetent +immunodeficient +allogeneic +xenogeneic +shelled +unshelled +jawed +jawless +skinned +skinless +flowering +flowerless +vegetal +asphaltic +abasic +abbatial +abdominovesical +Aberdonian +Abkhaz +Abnaki +Aboriginal +abient +abiogenetic +academic +acanthotic +acapnic +acervate +acetonic +acetylenic +acetylic +Achaean +Aeolian +achenial +achlorhydric +achondritic +aciculate +acidimetric +acidotic +acinar +acinar +acneiform +adolescent +acrogenic +actinometric +actinomycetal +actinomycotic +aculeate +adactylous +adamantine +adenocarcinomatous +adenoid +adenoidal +adient +adjudicative +adnexal +Adonic +adrenal +adrenal +adrenergic +agnostic +Aleutian +ancestral +antheridial +antiadrenergic +antiapartheid +antidotal +antiferromagnetic +antipollution +antisatellite +antiviral +adrenocortical +advective +adventitial +adventuristic +aecial +Aeolian +aeriferous +aerological +aerolitic +aeromechanic +aeromedical +aeronautical +aesculapian +affine +affixal +agential +agonal +agonistic +agranulocytic +agraphic +agrobiologic +agrologic +agronomic +agrypnotic +alabaster +Alaskan +Albigensian +Albanian +albinal +albitic +albuminous +albuminuric +alchemic +alchemistic +aldehydic +aleuronic +algoid +algolagnic +algometric +Algonquian +alimentative +alkahestic +alkaloidal +alkalotic +alkylic +allantoic +allelic +allergenic +allergic +Allied +Allied +allogamous +allographic +allomerous +allometric +allomorphic +allophonic +allotropic +allylic +alopecic +alphabetic +analphabetic +alphanumeric +Altaic +altitudinal +alular +aluminous +alveolar +alveolar +amalgamative +amaranthine +amaurotic +amblyopic +Ambrosian +ambulacral +ambulatory +ameboid +amenorrheic +amethystine +Amharic +amino +amitotic +ammino +ammoniac +ammonitic +amnestic +amniotic +amoristic +amphitheatric +amphoric +ampullar +amygdaline +amylolytic +anabiotic +anabolic +anaclitic +anacoluthic +anaglyphic +anagogic +anagrammatic +anal +analytic +anamnestic +anamorphic +anamorphic +anaphasic +anaplastic +anarchistic +anasarcous +anastigmatic +Andalusian +androgenetic +androgenic +androgynous +anemographic +anemometric +anencephalic +anestrous +anginal +angiocarpic +angiomatous +angiospermous +Anglophilic +Anglophobic +anguine +anicteric +animalistic +animatistic +animist +aniseikonic +anisogamic +anisogametic +anisometropic +ankylotic +annalistic +Bayesian +Arminian +Armenian +Biedermeier +annelid +annexational +hermeneutic +annunciatory +alliaceous +anodic +cathodic +anoperineal +anopheline +anorectal +anorthitic +anosmic +anoxemic +anoxic +anserine +antecubital +antennal +anthracitic +anthropic +anthropogenetic +anthropometric +anthropophagous +antibiotic +anticancer +anticlimactic +anticoagulative +anticyclonic +antigenic +antimonic +antinomian +antiphonary +antipodal +antistrophic +antitypic +anuran +anuretic +anxiolytic +aoristic +aortal +aphaeretic +aphakic +aphanitic +aphasic +aphetic +apian +apiarian +apicultural +aplitic +apneic +apocalyptic +Apocryphal +apocynaceous +apogamic +apogean +apomictic +aponeurotic +apophatic +apophyseal +apoplectic +apoplectiform +aposiopetic +apostrophic +apothecial +apothegmatic +Appalachian +appellative +appendicular +appointive +appositional +appropriative +apsidal +aptitudinal +aqueous +aquatic +aquiferous +arachnoid +Aramaic +Aramean +araneidal +Arawakan +arbitral +arbitrative +arborical +archaeological +archaistic +archangelic +arched +archdiocesan +archducal +archegonial +archesporial +archidiaconal +archiepiscopal +archipelagic +archival +archosaurian +areal +arenicolous +areolar +argentic +argentous +armillary +aroid +aromatic +arsenical +arsenious +arterial +venous +arteriovenous +arthralgic +arthromeric +arthropodal +arthrosporic +Arthurian +articular +articulatory +artiodactyl +arundinaceous +ascensional +ascetic +ascitic +asclepiadaceous +ascocarpous +ascosporic +associational +asteriated +asterismal +stoloniferous +stomatal +stomatal +astomatal +astragalar +astrocytic +astronautic +astronomic +asynergic +ataxic +atherosclerotic +atonalistic +atonic +atrial +atrioventricular +attentional +attitudinal +attritional +audiometric +audiovisual +augitic +aural +aural +auricular +auricular +autoimmune +biauricular +auroral +auroral +aurous +auscultatory +austenitic +Australasian +australopithecine +autacoidal +autarchic +authorial +autobiographical +autobiographical +autocatalytic +autogenetic +autographic +autolytic +autoplastic +autoradiographic +autotelic +autotomic +autotrophic +heterotrophic +autotypic +auxetic +auxinic +axiomatic +axiomatic +avellan +avian +avifaunal +avionic +avitaminotic +avocational +avuncular +avuncular +axial +axile +axillary +axiological +axonal +Azerbaijani +azido +azimuthal +azo +diazo +zoic +azotemic +baboonish +Babylonian +baccate +bacchantic +bacillar +bacteremic +bacteriolytic +bacteriophagic +bacteriostatic +bacteroidal +Bahai +balletic +ballistic +balsamic +baric +barographic +barometric +barytic +basaltic +basidial +basidiomycetous +basidiosporous +basilar +basilican +basinal +batholithic +bathymetric +bauxitic +behavioristic +Belarusian +belemnitic +benedictory +beneficiary +benevolent +benthic +bentonitic +benzenoid +benzoic +benzylic +betulaceous +biaxial +bibliographic +bibliolatrous +bibliomaniacal +bibliophilic +bibliopolic +bibliothecal +bibliotic +bicapsular +bichromated +bicipital +bignoniaceous +biliary +bilious +billiard +bimetallistic +bimillenial +binary +biocatalytic +biochemical +bioclimatic +biogenetic +biogenous +biogenic +biogeographic +biological +biologistic +sociobiologic +neurobiological +bionic +biosynthetic +biosystematic +biotitic +biotypic +blastogenetic +bodily +Bohemian +bolographic +bolometric +Boolean +borated +boronic +boskopoid +botanic +botryoid +Botswanan +boustrophedonic +brachial +brachiopod +brachyurous +bracteal +bracteate +bracteolate +brahminic +branchial +branchiopod +brassy +bregmatic +brimless +brisant +broadband +broadband +Brobdingnagian +bromic +bromidic +buccal +bulimic +burrlike +bursal +buteonine +butyraceous +butyric +cachectic +cacodemonic +cacodylic +cadastral +cadaverous +caducean +caecilian +caesural +caffeinic +cairned +calcaneal +calcareous +calceolate +calcic +calciferous +calcitic +calculous +calendric +calico +calisthenic +callithumpian +caloric +noncaloric +calorimetric +calyceal +calycular +calyculate +calyptrate +calyptrate +cambial +campanulate +camphoraceous +camphoric +canalicular +cancroid +canicular +canicular +canine +canine +capacitive +Capetian +capitular +Cappadocian +caprine +capsular +capsular +carangid +carbocyclic +carbolated +carbonyl +carboxyl +carcinogenic +carcinomatous +cardiographic +cardiopulmonary +carinal +carnivorous +Caroline +Carolingian +carotid +carpellary +carpetbag +carposporic +carposporous +cartilaginous +cartographic +Carthusian +caruncular +carunculate +caryophyllaceous +catabolic +catachrestic +catalatic +cataphatic +cataplastic +catapultic +catarrhal +categorial +categorical +cathectic +cathedral +catkinate +catoptric +cecal +celebratory +celestial +celestial +cellular +extracellular +integral +integumentary +intercellular +intracellular +cellulosid +cementitious +cenobitic +eremitic +cenogenetic +Cenozoic +palingenetic +censorial +centesimal +centigrade +centralist +centroidal +centrosomic +cephalopod +cercarial +cereal +cerebellar +cerebral +cerebrospinal +cerebrovascular +cervical +ceric +cerous +ceruminous +cervine +cetacean +chaetal +chaetognathan +chaffy +Chaldean +chalybeate +chancroidal +chancrous +chaotic +charitable +chartaceous +chauvinistic +Chechen +chelate +cheliferous +chelate +cheliceral +chelicerous +chelonian +chemical +photochemical +chemical +physicochemical +chemiluminescent +chemoreceptive +chemotherapeutic +cherty +Chian +chiasmal +childbearing +chimeric +Chippendale +chirpy +chitinous +chlamydial +chlorophyllose +chlorotic +choleraic +choragic +chordal +chordate +Christological +chromatinic +Churchillian +Wilsonian +achromatinic +cinematic +civil +civil +civic +municipal +clamatorial +cleistogamous +clerical +clerical +classical +clonal +cloze +coastal +coccal +coccygeal +collagenous +collarless +collegiate +collegial +colonial +colonial +colonic +colorectal +colorimetric +commensal +communal +composite +conceptualistic +concretistic +condylar +configurational +confrontational +congregational +conjunctival +consonantal +constitutional +consubstantial +contractual +cosmic +cosmologic +cosmologic +cordless +coreferential +cormous +corneal +Cornish +correlational +corymbose +corinthian +costal +intercostal +intertidal +covalent +croupy +crural +crustal +crustaceous +crustaceous +crustose +cryogenic +cryonic +cryptanalytic +cryptogamic +cryptobiotic +ctenoid +cubital +cucurbitaceous +culinary +cuneiform +cupric +curricular +cyclic +cytoarchitectural +cytolytic +cytophotometric +cytoplasmic +cytoplastic +bicylindrical +cystic +cystic +cytogenetic +cytokinetic +cytological +cytotoxic +czarist +deductive +deliverable +Democratic +Demotic +denominational +denominational +dental +dental +despotic +diagonalizable +diamagnetic +diamantine +diametral +diaphoretic +diastolic +dicarboxylic +Dickensian +dictatorial +differentiable +differential +digital +digital +dimorphic +Dionysian +diplomatic +dipterous +directional +omnidirectional +directional +discomycetous +distributional +dithyrambic +dramatic +drupaceous +dumpy +dural +dynastic +dysgenic +dysplastic +Ephesian +Eucharistic +eugenic +Eurocentric +eutrophic +Ebionite +ebracteate +economic +economic +socioeconomic +ectopic +editorial +editorial +electoral +electrocardiographic +electrochemical +electroencephalographic +electrolytic +electrolytic +electromechanical +electromotive +electronic +electronic +electrophoretic +electrostatic +elegiac +elemental +elemental +elementary +elfin +empyrean +emulous +eonian +epenthetic +epidural +epigastric +epigastric +epilithic +episcopal +equestrian +equestrian +equine +equine +equinoctial +equinoctial +ergonomic +ergotic +ergotropic +eruptive +erythematous +erythroid +erythropoietic +eschatological +esophageal +Essene +essential +Estonian +estrogenic +estuarine +ethical +evidentiary +excrescent +excretory +exegetic +exilic +existential +existential +existentialist +extropic +facial +factorial +facultative +Fahrenheit +fanged +federal +femoral +fenestral +fenestral +fermentable +ferric +feudal +febrile +afebrile +fibrillose +fibrinous +fibrocartilaginous +fictile +fictional +nonfictional +filar +bifilar +unifilar +filarial +filariid +fisheye +fishy +fistulous +flaky +fleshy +flinty +floricultural +flowery +fluvial +foliate +foliaceous +forcipate +formalistic +formic +formic +formulary +fossil +fossiliferous +fourhanded +Frankish +fraternal +fretted +unfretted +frictional +frictionless +Frisian +Galilean +Galilean +Gallican +garlicky +gastric +gastroduodenal +gastroesophageal +pneumogastric +gemmiferous +generational +generic +genetic +genetic +genic +genial +mental +gentile +geometric +geophytic +geostrategic +geothermal +gingival +glabellar +glacial +glial +gluteal +glycogenic +granuliferous +granulomatous +grapelike +graphic +graphic +gravitational +grubby +guttural +harmonic +nonharmonic +harmonic +harmonic +Hasidic +Hawaiian +heathlike +Hebridean +heliacal +hematopoietic +hemodynamic +hemispherical +hemorrhagic +hepatic +heroic +heterodyne +heterosporous +Hollywood +homeostatic +homonymic +homosporous +homostylous +hexadecimal +hexangular +hidrotic +hieratic +hieroglyphic +hieroglyphic +hircine +home +hooflike +horary +human +human +humanist +humanistic +humanist +humic +humified +hyaloplasmic +hydrocephalic +hydrographic +hydrolyzable +hydroxy +hymenopterous +hypnotic +ideal +ideographic +ideological +idiopathic +immune +immunochemical +immunocompromised +immunological +immunosuppressed +immunosuppressive +immunotherapeutic +imperial +imperial +imperial +impetiginous +impressionist +impressionistic +Incan +incendiary +incestuous +incestuous +inductive +indusial +industrial +inertial +infantile +inferential +informational +inguinal +inhalant +inscriptive +insecticidal +institutional +interlinear +intracerebral +intracranial +intraventricular +intervertebral +insular +intuitionist +ionic +Ionic +Ionic +Ionian +nonionic +iridaceous +iritic +ischemic +isentropic +Ismaili +isthmian +Jamesian +Jamesian +Jeffersonian +jihadi +jittery +judicial +judicial +jumentous +Jurassic +juridical +jurisprudential +leaden +legal +legal +labial +labial +lactogenic +lathery +leguminous +leonine +Levitical +lexicalized +liliaceous +limacine +limnological +living +lobeliaceous +local +logogrammatic +loopy +lucifugous +lunar +sublunar +translunar +lunisolar +lupine +luteal +macaronic +macroeconomic +Mandaean +mandibulate +Manichaean +manual +Maoist +maternal +matutinal +paternal +patriarchal +mealy +mecopterous +medical +biomedical +premedical +medicolegal +medullary +medullary +medullary +medusoid +meningeal +menopausal +Merovingian +Prakritic +Procrustean +provencal +prejudicial +premenopausal +presocratic +postdiluvian +postdoctoral +postexilic +postglacial +postmenopausal +postpositive +pouched +pteridological +meiotic +mercuric +meretricious +meridional +metrological +micaceous +microeconomic +military +paramilitary +minimalist +ministerial +ministerial +minty +Mishnaic +omissive +miotic +missionary +monocarboxylic +monoclonal +Monophysite +monotypic +moraceous +morbilliform +motivational +mousy +myalgic +myelinated +unmyelinated +myopathic +narcoleptic +nasopharyngeal +natal +natal +natriuretic +naval +Nazarene +Nazarene +neonatal +neoplastic +neotenic +Nestorian +Noachian +nominal +nominal +nominalistic +nominative +nosocomial +numeral +numerological +Numidian +numinous +oleaceous +olfactory +oligarchic +oneiric +onomastic +oral +oropharyngeal +Orphic +Orwellian +pachydermatous +packable +palatoglossal +paleontological +Palladian +palmar +palpatory +palpebrate +panicled +papilliform +paradigmatic +paramedical +paranasal +parhelic +parliamentary +parous +parotid +paroxysmal +paschal +passerine +nonpasserine +Pauline +peacekeeping +peaty +perigonal +perithelial +monetary +pedal +pectineal +pemphigous +petaloid +phagocytic +phalangeal +Pharaonic +Phoenician +phonogramic +phonological +photomechanical +photometric +photosynthetic +nonphotosynthetic +phreatic +phrenological +pictographic +plagioclastic +pilar +pilosebaceous +planetal +planktonic +planographic +plantar +interplanetary +penal +penumbral +physical +planetary +extraterrestrial +Platonistic +Platonic +pleomorphic +plumbaginaceous +plumbic +plutocratic +polarographic +polemoniaceous +polydactyl +polyhedral +polymeric +pompous +popliteal +positionable +positional +positivist +pragmatic +prandial +preanal +preclinical +precancerous +precordial +predestinarian +prelapsarian +premenstrual +presentational +pressor +prodromal +professorial +prolusory +propagative +prostate +prosthetic +prosthetic +prosthodontic +proteinaceous +provincial +pubertal +pupillary +Puranic +putrid +rabid +radiological +radiotelephonic +rationalistic +ratty +realistic +recoilless +recombinant +recreational +refractive +republican +resinlike +revenant +Rhodesian +Romansh +romantic +ropy +royal +royal +ruminant +nonruminant +agricultural +aquicultural +rural +Ruritanian +Sabine +saccadic +sacculated +sadomasochistic +Sadducean +Saharan +sapiens +sarcolemmic +sartorial +sartorial +scalene +scalene +scapular +scapulohumeral +scenic +scholastic +scholastic +scientific +sclerotic +sclerotic +scurfy +Scythian +secular +secretarial +secretory +sectarian +sectorial +self +semiautobiographical +seminal +seminiferous +semiotic +semiparasitic +senatorial +sensational +sepaloid +septal +sepulchral +serial +serial +sidereal +Sikh +siliceous +Siouan +Sisyphean +social +social +solar +sociopathic +solanaceous +Solomonic +somatosensory +soteriological +squinty +specialistic +spectral +spectrographic +spermicidal +spermous +spherical +nonspherical +sphingine +splashy +splenic +splintery +sporogenous +sportive +sporting +spousal +stagflationary +stainable +Stalinist +stannic +staphylococcal +statutory +stellar +interstellar +stemmatic +stenographic +steroidal +nonsteroidal +stoichiometric +stovepiped +subarctic +subcortical +subdural +sublingual +suburban +suctorial +Sufi +sulfurous +Sumerian +superficial +suppurative +nonsuppurative +supraorbital +surficial +sustainable +sustentacular +syllabic +syllabic +symbolic +symbolic +symptomatic +syncretic +syncretic +synesthetic +synoptic +synovial +syntagmatic +tangential +Tasmanian +taurine +technical +technophilic +technophobic +technical +telemetered +tellurian +semiterrestrial +telluric +temperamental +temporal +temporal +spatiotemporal +tendinous +tensile +tensional +tentacular +tentacled +teratogenic +terminal +terminal +territorial +testaceous +testamentary +testimonial +testimonial +theatrical +Theban +Theban +thematic +unthematic +thematic +thenal +thermal +thermal +nonthermal +thermoelectric +threaded +tibial +tidal +tiered +Timorese +tinny +titular +titular +titular +titular +tonic +tonic +clonic +topical +topological +toroidal +torrential +tortious +totalitarian +totipotent +tubercular +tubercular +tubercular +tuberculate +tuberculoid +turbinate +umbelliform +umbelliferous +uncial +Uniate +unicellular +uniovular +unitary +unitary +unpigmented +urban +urceolate +urethral +urogenital +usufructuary +uveal +vacuolate +vagal +valedictory +apopemptic +valent +valetudinarian +valved +vanilla +variolar +Vedic +ventilatory +ventricular +verbal +verbal +vertical +viatical +vibrational +vicarial +vicennial +vigesimal +virginal +vitreous +vitreous +vocal +vocal +instrumental +vocalic +volcanic +atheist +electrical +electric +voltaic +photoconductive +photoemissive +photovoltaic +photoelectric +hydroelectric +hydrostatic +hydrokinetic +interlocutory +interstitial +isomeric +isometric +isomorphous +isotonic +lapidary +legislative +legislative +leprous +lingual +Linnaean +longitudinal +literary +critical +lithic +lithic +lymphatic +lymphocytic +lymphoid +lysogenic +lysogenic +magisterial +atmospheric +amphibious +insectan +mammalian +piscine +reptilian +algal +fungal +fungicidal +fungoid +infectious +plantal +vegetative +bacterial +parasitic +antibacterial +cyanobacterial +moneran +triangulate +quadrangular +tetragonal +tetrametric +pentangular +octangular +neoclassicist +expressionist +postmodernist +revolutionary +residual +relativistic +relativistic +raptorial +radical +radial +radial +radial +ulnar +radiographic +birefringent +bisectional +bismuthal +bismuthic +bisontine +bistered +bistroic +polar +bipolar +bipolar +transpolar +photographic +photic +pneumatic +pneumococcal +phallic +feminist +professional +professional +vulpine +wolflike +vulvar +clitoral +vocational +ungual +succinic +umbilical +spatial +nonspatial +sigmoid +sigmoid +sciatic +sciatic +semantic +bovine +crinoid +linguistic +nonlinguistic +intralinguistic +sociolinguistic +linguistic +bridal +bridal +cardiac +caudal +Caucasian +cephalic +cranial +craniometric +comatose +conic +corinthian +corvine +ciliary +ciliary +ciliary +counterinsurgent +counterrevolutionary +counterterror +cyprinid +dietary +diluvian +antediluvian +dominical +dominical +Donatist +Dorian +doric +floral +floral +fiscal +nonfinancial +fiducial +fiduciary +funicular +lactic +lacteal +galactic +extragalactic +intergalactic +gnomic +Gnostic +gymnastic +gyral +alvine +epistemic +hemal +hemic +hemiparasitic +haemophilic +humoral +chylaceous +chylific +chyliferous +iconic +ichorous +icosahedral +icterogenic +ictal +igneous +iridic +iridic +jugular +marital +resinated +sulphuretted +mastoid +mastoid +phocine +saurian +stearic +vinous +tegular +dyadic +algebraic +biblical +biblical +postbiblical +Koranic +polymorphic +polymorphous +polyphonic +contrapuntal +polyphonic +lyric +lyric +perianal +pericardial +perineal +peroneal +poetic +poetic +political +political +phonetic +phonetic +phonemic +philosophic +Rousseauan +personal +personal +intensive +infernal +litigious +acronymic +apostolic +phenomenal +eudemonic +eukaryotic +prokaryotic +pectoral +pastoral +particularistic +parturient +patellar +pathological +palatine +palatine +pictorial +optical +objective +possessive +nuclear +nuclear +nucleated +visceral +narcotic +mystic +mystic +carbonaceous +Melanesian +melodic +monumental +modal +modal +millenary +millennial +millenarian +metropolitan +meteoric +meteorologic +metaphysical +metastable +meridian +mercurial +Mercurial +Mercurial +Mesoamerican +mesoblastic +Mesozoic +messianic +muciferous +mucosal +murine +musical +musicological +exteroceptive +proprioceptive +interoceptive +perceptive +acoustic +auditory +gustatory +haptic +ocellated +octal +ocular +ocular +orbital +suborbital +kinesthetic +angelic +seraphic +ethereal +firmamental +elysian +diocesan +eparchial +parochial +regional +vicinal +conjugal +binocular +cultural +cultural +sociocultural +multicultural +transcultural +transactinide +transcendental +transuranic +burlesque +vascular +avascular +cardiovascular +choral +choric +chorionic +communist +Marxist +Bolshevik +cutaneous +dermal +cuticular +ectodermal +encysted +endermic +endogenous +hypodermal +hypodermic +hypoglycemic +hypovolemic +intradermal +facial +mandibular +mandibulofacial +maxillary +maxillodental +maxillofacial +maxillomandibular +interfacial +lacrimal +lacrimal +lacrimatory +menstrual +mural +extralinguistic +papal +Peloponnesian +pubic +viral +grammatical +syntactic +glossopharyngeal +glottal +glottochronological +lexicostatistic +focal +genital +genitourinary +feline +laryngeal +laryngopharyngeal +zygotic +uninucleate +multinucleate +muscular +musculoskeletal +intramuscular +neuroendocrine +neurogenic +neuroglial +neuromatous +neuromuscular +nephritic +nephritic +neurotoxic +neurotropic +parental +filial +spinal +atomic +monatomic +diatomic +polyatomic +subatomic +clinical +subclinical +postal +continental +Continental +continental +lexical +nonlexical +lexical +psychosexual +sexagesimal +sexual +coital +marine +marine +multilevel +multiphase +littoral +sublittoral +surgical +nonsurgical +ophthalmic +ophthalmic +physiotherapeutic +nautical +thalassic +oceanic +transoceanic +ursine +intravenous +montane +mechanical +mechanical +zoological +zoological +protozoological +protozoal +rental +rental +rickettsial +ritual +ritual +fetal +juvenile +herbal +doctoral +pediatric +kinetic +mammary +neural +sensorineural +sensorimotor +occupational +pelvic +frontal +bucolic +Masonic +masonic +Masoretic +masted +migrational +mnemonic +parietal +statuary +tubal +velar +documentary +iambic +structural +structural +anatomic +anatomic +architectural +tectonic +organizational +cogitative +cognitive +mental +cultural +factual +achondroplastic +ateleiotic +ecclesiastical +priestly +sacerdotal +molar +molar +molal +molar +molecular +bimolecular +intramolecular +intermolecular +macerative +macrencephalic +macrocephalic +microcephalic +microelectronic +macromolecular +isotopic +isothermic +microcosmic +micrometeoric +micropylar +macrocosmic +mucinous +mucinoid +mucocutaneous +mucopurulent +mucous +mucoid +colloidal +administrative +managerial +supervisory +nervous +latinate +latitudinal +Florentine +earthen +earthy +monometallic +brazen +geological +psychological +psychogenetic +psychogenetic +sociological +demographic +ecological +ecological +theological +anthropological +paleoanthropological +computational +athletic +astrophysical +geopolitical +thermodynamic +geophysical +seismological +peptic +duodenal +neuropsychological +neurophysiological +navigational +differential +deconstructionist +rationalist +calligraphic +lexicographic +orthographic +telegraphic +typographic +astrological +syllogistic +necromantic +lithomantic +mechanistic +chiromantic +parametric +nonparametric +statistical +nihilistic +spiritualistic +supernaturalist +operationalist +operatic +trigonometric +pharmacological +toxicological +psychiatric +oncological +psychoanalytical +psychometric +psychomotor +psychotherapeutic +therapeutic +neuroanatomic +virological +bacteriological +cardiologic +endocrine +enolic +exocrine +endodontic +endoparasitic +orthodontic +periodontic +dermatologic +exodontic +geriatric +geriatric +gynecological +gymnosophical +gymnospermous +hematologic +obstetric +neurological +spectrometric +spectroscopic +microscopic +insurrectional +conspiratorial +domestic +econometric +criminological +classicistic +historical +ahistorical +ontological +pietistic +fascist +Catholic +Roman +Roman +Roman +Roman +Jewish +Judaic +evangelical +evangelical +evangelistic +Muslim +Hindu +Hmong +Buddhist +sculptural +evaporative +Confucian +Shinto +Kokka +Shuha +Rastafarian +Jain +Taoist +Taoist +textual +Tantric +magnetic +electromagnetic +Avestan +Zoroastrian +capillary +automotive +horticultural +cervical +American +American +Indian +Indian +asymptotic +subtropical +tropical +equatorial +equatorial +rational +irrational +anionic +cationic +Satanic +angular +rabbinical +arteriosclerotic +idolatrous +sacramental +theist +deist +pantheist +nocturnal +mensural +mensural +mensal +epicarpal +epithelial +epitheliod +pancreatic +ovarian +ovine +ovular +ovular +uterine +intrauterine +testicular +rectal +rectosigmoid +monozygotic +dizygotic +synaptic +dendritic +iliac +lobar +lobate +abdominal +hormonal +hemispheric +occipital +pneumonic +pneumonic +intrapulmonary +intestinal +skeletal +skinny +adjectival +adverbial +morphemic +bimorphemic +monomorphemic +polymorphemic +morphophonemic +clausal +phrasal +infinitival +pronominal +indexical +indexless +cruciferous +mathematical +choreographic +runic +scriptural +pentatonic +anaphoric +anapestic +rhetorical +tectonic +riparian +Martian +actuarial +psycholinguistic +robotic +rotatory +epicyclic +expansionist +experimental +expiatory +familial +etiological +etiological +exuvial +behavioral +African +phenotypical +genotypical +ontogenetic +phylogenetic +environmental +environmental +methodological +sectional +trabecular +tracheal +tractive +transdermal +transitional +traumatic +trophic +tympanic +tympanic +tympanitic +perceptual +libidinal +epileptic +developmental +pedagogical +educational +prehistoric +Atlantic +Pacific +transatlantic +synergistic +monistic +dualistic +pluralistic +pleural +hilar +labyrinthine +lobular +interlobular +intralobular +anastomotic +bronchial +arteriolar +bronchiolar +rhombic +trapezoidal +physiological +morphologic +geomorphologic +morphologic +occlusive +ohmic +mortuary +mortuary +funerary +strategic +tactical +cinerary +circulatory +veinal +circulative +euphonic +metamorphic +sedimentary +Christian +Protestant +universalistic +Calvinist +fundamentalist +Orthodox +Orthodox +radio +dipolar +deformational +totemic +Anglican +Baptistic +Congregational +Episcopal +revivalistic +Lutheran +Methodist +Mormon +Unitarian +orchestral +orchestrated +communicative +autosomal +chromatic +chromosomal +chronological +Italian +Russian +German +Celtic +Britannic +Teutonic +French +Spanish +Iberian +Lusitanian +Portuguese +Sicilian +Soviet +Finnish +Swedish +Norwegian +Scandinavian +Danish +Belgian +Dutch +Luxembourgian +Swiss +Austrian +Polish +Polynesian +Hungarian +Czech +Yugoslavian +Romanian +Baltic +Baltic +Latvian +Lithuanian +Moldovan +Kyrgyzstani +Tajikistani +Turkmen +Ukrainian +Uzbekistani +Serbian +Croatian +Slovenian +Slovakian +Bosnian +Chinese +Sinitic +Japanese +exponential +paradigmatic +paradigmatic +Tibetan +Himalayan +Chilean +Peruvian +Ecuadorian +Panamanian +Venezuelan +Brazilian +Argentine +Paraguayan +Uruguayan +Bolivian +Colombian +Korean +European +Asian +Cambodian +Manchurian +Honduran +Salvadoran +Cuban +Bavarian +Byzantine +Byzantine +Ottoman +Seljuk +Neapolitan +Milanese +Tuscan +Venetian +Tyrolean +Viennese +Glaswegian +Egyptian +Hindustani +Nepalese +Indonesian +Alsatian +Athenian +Spartan +Thracian +Israeli +Genoese +tragic +comic +tragicomic +abyssal +neritic +baroque +bathyal +hadal +operculate +Palestinian +infernal +cortical +metabolic +metastatic +gonadal +agonadal +diagnostic +gastrointestinal +gastronomic +carnal +functional +neurotic +epidemiologic +qualitative +quantal +quantitative +Quebecois +Assamese +Austronesian +Algerian +Andorran +Monacan +Galwegian +Calcuttan +circadian +rhinal +perinasal +otic +retinal +orbital +suborbital +reductionist +maturational +dynamic +hydrodynamic +aerodynamic +rheologic +meteoritic +micrometeoritic +cometary +asteroidal +piezoelectric +thyroid +thyrotoxic +thyroid +antithyroid +congressional +instructional +catechismal +catechetical +catechistic +Canadian +necrotic +hypothalamic +thalamocortical +gestational +progestational +progestational +emotional +macrobiotic +biotic +gubernatorial +presidential +copular +coronary +corporate +corporatist +corpuscular +dimensional +volumed +volumetric +hypothermic +hyperthermal +yogistic +botulinal +logistic +organicistic +organismal +artifactual +mutafacient +mutagenic +mutational +mutative +mutant +incident +serologic +chromatographic +national +national +national +nativist +nativist +naturistic +congeneric +specific +conspecific +experiential +medieval +mediatorial +mediatory +curatorial +proverbial +epiphyseal +diaphyseal +theocratic +comparative +artistic +aesthetic +official +teleological +sentential +intrasentential +scopal +simian +bubaline +embolic +falconine +ferial +faucal +future +futuristic +gallinaceous +geodetic +heraldic +humanitarian +homophonous +hyperbolic +lacustrine +liturgical +locomotive +logarithmic +Markovian +marmorean +marly +mesonic +marsupial +mercantile +metric +mythic +nacreous +normative +ordinal +palatal +Paleozoic +parabolic +pharyngeal +phrenic +prosodic +appetitive +aversive +promissory +quartan +quarterly +quartzose +quintessential +roentgenographic +rotary +septic +semicentennial +centennial +bicentennial +tricentenary +sophistic +Nazi +capitalist +zymotic +zymotic +osmotic +evolutionary +oracular +peritoneal +Epicurean +holographic +holographic +canonic +canonic +canonist +symphonic +contextual +nutritional +paramagnetic +motional +hydrometric +thermohydrometric +ferromagnetic +English +English +Irish +Afghani +idiomatic +dialectal +percussive +waxen +enzymatic +nonenzymatic +iodinated +dramaturgic +autodidactic +aneuploid +aneurysmal +alluvial +doctrinal +dogmatic +providential +philanthropic +philatelic +aerophilatelic +pleochroic +sternal +congestive +hemolytic +sarcolemmal +sarcosomal +sternutatory +sympathetic +urinary +urinary +atheromatous +basophilic +intimal +coeliac +celiac +emphysematous +granulocytic +atrophic +mesenteric +glomerular +calcific +fibrocalcific +pyknotic +eosinophilic +papillary +papillate +vesicular +vestibular +vertebral +neocortical +paleocortical +limbic +fugal +parasympathetic +parasympathomimetic +hypophyseal +hyperemic +neuropsychiatric +psychopharmacological +salivary +prime +nilpotent +megakaryocytic +megaloblastic +myelic +myelinic +myeloid +myeloid +myocardial +myoid +myotonic +triumphal +Darwinian +Lamarckian +larval +operational +microbial +cochlear +lumbar +lumbosacral +flagellate +biflagellate +ceramic +epic +Hellenic +Panhellenic +Greek +Syrian +Minoan +Mycenaean +Aegean +Aegean +Attic +Boeotian +Dipylon +Argive +executive +topographical +endothelial +taxonomic +classificatory +eutherian +proteolytic +microsomal +mithraic +mitotic +mitral +mitral +follicular +philological +dystopian +utopian +Stoic +patristic +sapphirine +saprophytic +saprobic +katharobic +cubist +tomentose +hyoid +geographic +shouldered +shrubby +etymological +British +epiphytic +lithophytic +budgetary +propagandist +isolationist +ascomycetous +pianistic +pianistic +Parisian +dialectic +Turkish +Eurafrican +Eurasian +Moroccan +Scots +Corsican +Sardinian +Alpine +alpine +Andean +myrmecophytic +tuberous +saponaceous +umbellate +narial +Cartesian +Mexican +Tudor +Shavian +Shakespearian +Skinnerian +Falstaffian +Victorian +Gaussian +Aeschylean +Alexandrian +Aristotelian +Audenesque +Balzacian +Beethovenian +Bismarckian +Bogartian +Caesarian +cesarean +Coleridgian +Columbian +Cromwellian +Dantean +Demosthenic +Deweyan +Donnean +Dostoevskian +Draconian +Einsteinian +Elizabethan +Erasmian +Freudian +Frostian +Gandhian +Gauguinesque +Goethean +Handelian +Hegelian +Hemingwayesque +Hitlerian +Hittite +Hugoesque +Huxleyan +Ibsenian +Proustian +Ptolemaic +Socratic +Jungian +Kantian +Keynesian +Kiplingesque +Leibnizian +Leonardesque +Lincolnesque +Lutheran +Marian +Michelangelesque +Muhammadan +Mosaic +Mozartian +Napoleonic +Newtonian +Pasteurian +Pavlovian +Piagetian +eponymous +Pythagorean +Wagnerian +Washingtonian +Washingtonian +Washingtonian +Washingtonian +Rembrandtesque +Riemannian +Rooseveltian +Senecan +Stravinskyan +Thoreauvian +Voltarian +Wordsworthian +Wittgensteinian +Yeatsian +Zolaesque +Hebraic +Hebraic +monocarpic +puerperal +acetic +actinic +aldermanic +alexic +dyslexic +monochromatic +Moravian +dichromatic +ambassadorial +amoebic +anemic +anaesthetic +ablative +accusatorial +inquisitorial +Afrikaans +aneroid +Angolan +Anguillan +prenuptial +postnuptial +Antiguan +antiquarian +antiquarian +appellate +anecdotal +Arabian +Arabian +Arabic +arithmetical +armorial +aspectual +asphyxiated +Augustan +Australian +Bahamian +Bahraini +Bangladeshi +Bantoid +Bantu +baptismal +Barbadian +bardic +Benedictine +Benedictine +Bengali +Beninese +Bermudan +Bhutanese +bilabial +binomial +biographic +bituminous +bituminoid +bivalent +bivariate +bladdery +bladed +bladed +blastemal +blastocoelic +blastodermatic +blastomeric +blastomycotic +blastoporal +blastospheric +boric +Bruneian +bubonic +Bulgarian +bungaloid +bureaucratic +burglarious +Burmese +Burundi +Californian +Cameroonian +cannibalistic +cantonal +carboniferous +Carmelite +carpal +casuistic +casuistic +Catalan +Catalan +cataleptic +catalytic +catatonic +Chadian +citric +citrous +citrous +climatic +Cockney +cockney +commemorative +concessive +Congolese +consular +Coptic +creaseproof +creedal +Creole +Creole +Cretaceous +cretaceous +cybernetic +cyclonic +cyclonic +cyclopean +cyclothymic +Cyprian +Cyrillic +dacitic +dactylic +daisylike +Dalmatian +damascene +defervescent +departmental +interdepartmental +intradepartmental +digestive +Delphic +demagogic +diabetic +disciplinary +interdisciplinary +disciplinary +divisional +Djiboutian +dogmatic +dolomitic +domiciliary +Dominican +Dominican +ducal +ductless +Edwardian +elocutionary +empiric +endometrial +endoscopic +enteric +entomological +entozoan +epizoan +entrepreneurial +Eritrean +Ethiopian +ethnographic +ethnological +euclidian +Fabian +fatalist +faecal +feudatory +Fijian +Filipino +Flemish +Franciscan +Gabonese +Gallic +Gambian +genealogic +Georgian +Georgian +Georgian +Georgian +Germanic +Ghanaian +Gibraltarian +Gilbertian +gladiatorial +glandular +gonadotropic +Gothic +Gothic +Gothic +green +greenhouse +greenside +Gregorian +Gregorian +Grenadian +growing +Guatemalan +Guinean +Guyanese +gyroscopic +Haitian +Hanoverian +Hispaniolan +Hispanic +histological +Hertzian +hiplength +Hippocratic +homeopathic +allopathic +Homeric +homiletic +homiletic +hydraulic +hydraulic +hydropathic +Icelandic +imperialistic +tribal +intertribal +Iranian +Iraqi +Italic +italic +Jacksonian +Jacobean +Jacobinic +Jamaican +Javanese +Jesuitical +Jordanian +journalistic +Jovian +Jovian +Julian +karyokinetic +Kashmiri +Kazakhstani +Kenyan +Kurdish +Kuwaiti +Kuwaiti +Lancastrian +Lancastrian +Laotian +Lao +Laputan +Latin +Latin +Romance +Latin +Lebanese +lenten +Levantine +Liberian +Libyan +Liechtensteiner +Lilliputian +lithographic +Liverpudlian +Luxemburger +Luxemburger +Macedonian +Machiavellian +Madagascan +malarial +Malawian +Malay +Malaysian +Malian +Maltese +Malthusian +Mancunian +manorial +Manx +Mauritanian +mayoral +Mediterranean +megalithic +membranous +Mendelian +mentholated +meritocratic +metacarpal +metallurgical +metatarsal +methylated +milch +millenary +mineral +Mongol +Mongolian +mongoloid +Mongoloid +mongoloid +Montserratian +Moorish +Mozambican +Mozambican +Muscovite +Namibian +Nauruan +Neanderthal +nebular +nectariferous +eolithic +mesolithic +neolithic +paleolithic +neuralgic +neurasthenic +Nicaean +Nicaraguan +Nigerian +Nigerian +Nilotic +Nilotic +nitrogenous +azotic +nodular +nontranslational +Nordic +Nordic +Norman +Norman +Olympic +Olympian +Olympian +Omani +optative +optative +subjunctive +implicational +imperative +indicative +interrogative +ornithological +orthopedic +orthoptic +outdoor +Oxonian +Oxonian +Pakistani +palatial +Papuan +paralytic +parenteral +parenteral +Parthian +participial +partitive +partitive +patronymic +pectic +penile +scrotal +peninsular +pentavalent +pentecostal +pentecostal +pharmaceutical +pharmaceutical +philharmonic +Philistine +phonic +phonic +phosphorous +pineal +piratical +piratical +piscatorial +pituitary +polygonal +polynomial +porcine +porphyritic +postganglionic +postictal +postmillennial +postural +praetorian +prepositional +primiparous +prismatic +prefectural +probabilistic +probabilistic +procedural +processional +processional +proconsular +promotional +promotional +propulsive +Prussian +pudendal +puerile +pugilistic +Carthaginian +purgatorial +purgatorial +puritanical +pyemic +pyloric +pyogenic +pyrectic +pyrochemical +pyroelectric +pyrogallic +pyrogenic +pyrographic +pyroligneous +pyrolytic +pyrotechnic +pyrrhic +pyrrhic +pyrrhic +Qatari +quadratic +biquadratic +quadratic +quadraphonic +quincentennial +Quechuan +Rabelaisian +rayless +recessionary +recessional +redemptive +regimental +residential +residuary +resistive +respiratory +inspiratory +expiratory +responsive +retentive +reversionary +Rhenish +rhizomatous +rhizoidal +rhomboid +ritualistic +romaic +Romany +rotational +Rwandan +Sabahan +Sabbatarian +sabbatical +sabbatical +sacral +sacrificial +Samoan +Sarawakian +satyric +saxicolous +Saxon +schismatic +schizoid +scorbutic +scotomatous +Semite +Semitic +Senegalese +sericultural +serous +Seychellois +Thai +Thai +Thai +Siberian +Singaporean +Singaporean +Singhalese +Sinhala +Slav +Slavonic +Somalian +Sotho +spastic +spicate +spondaic +stereoscopic +stereoscopic +stigmatic +stingless +stipendiary +substantival +gerundial +Sudanese +sulphuric +Sumatran +Swazi +syphilitic +systolic +extrasystolic +Tahitian +Taiwanese +tabular +Tamil +tannic +Tanzanian +tarsal +tartaric +telephonic +terminological +terpsichorean +tertian +tertian +tetanic +tetanic +tetravalent +Texan +textile +theosophical +thermionic +thermometric +thermostatic +thespian +Tobagonian +Togolese +Tongan +tonsorial +translational +Triassic +Trinidadian +trihydroxy +trivalent +trochaic +Trojan +trophoblastic +trophotropic +Tunisian +Tunisian +Turkic +tutorial +Ugandan +uric +uricosuric +uvular +vaginal +valvular +vehicular +vestal +vestiary +vestmental +veterinary +vibrionic +viceregal +Vietnamese +vocative +voyeuristic +weatherly +Welsh +wheaten +Wiccan +oaten +woolen +xerographic +Yemeni +Zairean +Zambian +zenithal +Zimbabwean +Zionist +Zionist +zonal +bizonal +zodiacal +ammoniated +Briton +carroty +philhellenic +boreal +boreal +axillary +paniculate +phyllodial +rupestral +Kafkaesque +Faustian +invitational +involucrate +scalar +scalar +anthropocentric +ethnocentric +deictic +shamanist +shambolic +shaped +shelflike +Shona +striate +sulcate +hymenal +hymeneal +servomechanical +onomatopoeic +commercial +dictyopteran +isopteran +obligational +oscine +osseous +ossicular +ossiferous +osteal +abolitionary +abomasal +absolutist +accentual +accessional +accipitrine +accommodational +acculturational +centromeric +acentric +acrocentric +metacentric +metacentric +telocentric +anaphylactic +bronchoscopic +bryophytic +bulbaceous +bulbed +bulbar +racial +scalic +rosaceous +Rosicrucian +streptococcal +subclavian +thalloid +thallophytic +ulcerative +ultramicroscopic +ultramontane +undescended +undulatory +universalistic +vasomotor +vesical +viscometric +viricidal +vitiliginous +ratlike +salamandriform +salvific +shakedown +sidearm +varicelliform +wiry +WYSIWYG +yeasty +Yuman +Zapotec +zero +zoonotic +zygomatic +zymoid +nosohusial +avenged +unavenged +beaten +calibrated +cantering +collected +uncollected +contested +uncontested +corbelled +elapsed +forced +hammered +held +streaming +surmounted +filled +unfilled +fitted +hypophysectomized +malted +unmalted +mercerized +operating +oxidized +parked +pasteurized +unpasteurized +penciled +pitched +played +plugged +posed +unposed +posted +preconceived +punishing +pursued +ranging +regenerating +ridged +sanitized +shrieked +sintered +sluicing +squashed +stacked +strung +sublimed +thoriated +transpiring +sought +saponified +unsaponified diff --git a/vendor/github.com/schollz/cowyo/static/text/adjectives.old b/vendor/github.com/schollz/cowyo/static/text/adjectives.old new file mode 100644 index 0000000..7731cf6 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/static/text/adjectives.old @@ -0,0 +1 @@ +lulling, vile, foul, cheerful, messy, dreadful, uneven, stinky, young, sparkling, sweltering, verdant, hideous, friendly, blistering, rambunctious, carefree, fat, sloppy, gloomy, awful, anemic, minute, stiff, benevolent, ceaseless, large, quick, round, glassy, rusty, scarce, odd, shining, even, dowdy, solemn, scorching, brief, rotten, new, plush, cozy, meandering, apologetic, nimble, busy, strong, great, brilliant, piercing, creepy, miniature, narrow, whimsical, fantastic, cowardly, disgusting, marvelous, snug, stern, stingy, angry, spiky, cheeky, gorgeous, mysterious, flat, clever, charming, dismal, meek, somber, sour, thin, beautiful, stubborn, crazy, challenging, gaunt, salty, indifferent, huge, daring, awkward, picturesque, copious, glowing, truthful, rude, petite, cranky, ornery, brazen, modest, purring, filthy, rotund, short, splendid, hasty, deafening, crawling, furious, tall, mute, ghastly, still, arrogant, crabby, haughty, curly, voiceless, hot, courageous, late, microscopic, vast, stifling, good, disrespectful, bashful, moaning, towering, adventurous, idyllic, careless, shocking, erratic, heavy, square, hard, jagged, gullible, hushed, revolting, content, thrifty, sluggish, eternal, greedy, pleasant, small, demanding, greasy, enormous, hostile, terrible, chilly, speedy, massive, loud, puny, striking, clumsy, soaring, brave, fast, delicious, effortless, bland, thick, little, ancient, silent, wonderful, stuffed, grimy, bitter, muggy, shallow, ridiculous, absent-minded, fuzzy, peculiar, mangy, wide, kind, squeaky, screeching, silly, squealing, spoiled, gigantic, happy, steep, ingenious, modern, juicy, gentle, medium, brawny, curved, lumpy, afraid, amusing, thundering, cooing, oppressive, swollen, grave, sturdy, average, proud, rancid, absurd, entertaining, annoyed, fussy, precise, subtle, gilded, slow, delinquent, nervous, hopeful, rich, adequate, shrill, plump, freezing, nasty, endless, lavish, worried, courteous, bulky, fair, diminutive, groggy, miserable, horrid, crooked, monstrous, superb, contrary, lazy, fidgety, menacing, swift, stale, quarrelsome, quiet, askew, tough, simple, sweet, hardworking, frosty, whispering, famished, crispy, caring, capable, tiny, immense, startled, lovely, high-pitched, tasteless, decrepit, tense, lousy, straight, excited, ugly, stunning, parched, wild, ripe, lonely, optimistic, obnoxious, cavernous, different, harsh, creaky, grand, difficult, temporary, eccentric, muffled, alert, delicate, timid, infamous, enchanting, anxious, humble, edgy, severe, repulsive, desolate, sleepy, slimy, irritable, vigilant, generous, rapid, old-fashioned, hilly, easy, righteous, joyful, surprised, starving, big, early, compassionate, moody, perpetual, dishonest, serious, foolish, soft, old, scared, mighty, trendy, curious, hissing, savage, dense, steaming, broad, slick, creative, icy, adorable, slight, terrified, intense, noisy, cautious, sizzling, blithe, fluttering, faint, delighted, smelly, lively, frightened, gauzy, long, strict, bored, calm, melodic, spicy, relaxed, triangular, dull, wise, dangerous, smooth, cruel, creeping, dawdling, intimidating, exhausted, deep, tasty, obtuse, graceful, tranquil, raspy, selfish, sullen, malicious, ecstatic, wrinkly, opulent, polite, fetid, husky, prudent, skinny, tricky, impatient, loyal, fresh diff --git a/vendor/github.com/schollz/cowyo/static/text/animals b/vendor/github.com/schollz/cowyo/static/text/animals new file mode 100644 index 0000000..0e2e012 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/static/text/animals @@ -0,0 +1 @@ +fawn, peacock, fox terrier, civet, musk deer, seastar, pigeon, bull, bumblebee, crocodile, flying squirrel, elephant, leopard seal, baboon, porcupine, wolverine, spider monkey, vampire bat, sparrow, manatee, possum, swallow, wildcat, bandicoot, labradoodle, dragonfly, tarsier, snowy owl, chameleon, boykin, puffin, bison, llama, kitten, stinkbug, macaw, parrot, leopard cat, prawn, panther, dogfish, fennec, frigatebird, nurse shark, turkey, cockatoo, neanderthal, crow, gopher, reindeer, earwig , anaconda, panda, ant, silver fox, collared peccary, puppy, common buzzard, moose, binturong, wildebeest, lovebird, ferret, persian, marine toad, woolly mammoth, dalmatian, bird, umbrellabird, kingfisher, kangaroo, stallion, russian blue, ostrich, owl, tawny owl, affenpinscher, caiman, elephant seal, octopus, meerkat, whale shark, buck, donkey, red wolf, mountain lion, labrador retriever, quetzal, chamois, sponge, hamster, orangutan, sea urchin, uakari, doberman, dormouse, saint bernard, bull shark, ocelot, sparrow, spitz, stoat, snapping turtle, dragonfly, cougar, alligator, walrus, glass lizard, malayan tiger, frog, tiger, armadillo, chinchilla, crab, squid, calf, shrew, dolphin, royal penguin, dingo, turtle, yellow-eyed penguin, chimpanzee, armadillo, boa constrictor, rabbit, basking, coyote, chinook, osprey, sea lion, fly, sperm whale, patas monkey, tiffany, mountain goat, dodo, worm, cat, warthog, peccary, shark, pony, monkey, swan, whippet, beagle, cougar, anteater, quail, liger, cheetah, woodpecker, egret, eagle, moose, warthog, honey bee, snail, stag beetle, budgie, molly, magpie, rhinoceros, elephant, kudu, wombat, tree frog, goat, lamb, tropicbird, human, hog, tang, pool frog, lemur, ox, dog, lizard, echidna, great dane, wallaby, hawk, dove, jellyfish, sloth, macaque, starfish, sun bear, guppy, welsh corgi, deer, impala, porpoise, gazelle, bichon, seal, wolf, zebra shark, mole, narwhal, hedgehog, sheep, horse, bluetick, colt, spadefoot toad, wildebeest, piranha, basenji, mallard, bull mastiff, bear, siberian husky, bird, badger, red panda, hammerhead, rock hyrax, kangaroo, marsh frog, mule, weasel, dogfish, dachsbracke, forest elephant, oyster, bat, python, coati, platypus, salamander, cat, caterpillar, giraffe, snake, kid, falcon, robin, guinea fowl, tern, sea lion, dingo, bolognese, drake, goose, rat, gentoo penguin, iguana, quail, mouse, horseshoe crab, roebuck, cattle dog, fish, poodle, frog, wolverine, chinchilla, bobcat, grey seal, hermit crab, carolina, shepherd, gila monster, snail, mandrill, leopard, frilled lizard, echidna, rabbit, bison, barracuda, foal, ass, eagle, octopus, avocet, siamese, dodo, yorkie, cockroach, wallaroo, tiger, woodlouse, glow worm, fossa, buffalo, zorse, albatross, indri, seahorse, lemur, louse, ostrich, humpback whale, millipede, fin whale, joey, pinscher, dachshund, proboscis monkey, pelican, chihuahua, dogo, indian rhinoceros, wasp, siberian, raccoon dog, yak, stingray, jack russel, water vole, foxhound, sheep, stork, horse, monkey, woolly monkey, waterbuck, dunker, cuscus, ibis, giraffe, aardvark, hummingbird, grizzly bear, otter, pike, minke whale, pika, stickbug, pelican, dugong, bongo, lemming, shrimp, piglet, sabre-toothed tiger, gemsbok, tiger shark, tuatara, rottweiler, elephant shrew, ewe, coati, cichlid, akita, gharial, thorny devil, duck, macaroni penguin, steer, setter, pufferfish, donkey, mink, macaw, wolfhound, white tiger, ram, ant, rat, marten, galapagos tortoise, crab, horn shark, blue whale, koala, starfish, partridge, sea squirt, fire-bellied toad, chipmunk, ibex, maltese, clumber, butterfly, manta ray, flamingo, opossum, parrot, mastiff, water buffalo, okapi, salmon, tapir, adelie, killer whale, lynx, basilisk, indian elephant, oyster, manta ray, prairie dog, chipmunk, locust, dog, cottontop, hyena, spectacled bear, oriole, cobra, pug, monitor, mandrill, antelope, chinstrap, zebra, chicken, mule, seal, goat, little penguin, gull, tasmanian devil, caterpillar, tamarin, wrasse, woodchuck, otter, penguin, porcupine, killer whale, bear, ferret, dusky, nightingale, slow worm, bat, jaguar, humboldt, ermine, saola, emu, lobster, weasel, nightingale, hound, bombay, platypus, electric eel, asian elephant, sea otter, uguisu, scorpion, fox, jerboa, bengal tiger, zebu, lion, zonkey, ragdoll, caracal, bee, kiwi, puma, common loon, jackal, malamute, mayfly, baboon, terrier, jellyfish, vicuna, penguin, desert tortoise, muskrat, water dragon, zebra, malayan civet, burmese, orangutan, himalayan, pond skater, howler monkey, newt, border collie, cow, bearded dragon, fish, barn owl, puffin, chin, anteater, beaver, canary, hamster, sloth, collie, heron, sea dragon, gopher, magpie, king crab, flounder, opossum, pademelon, capybara, boar, leaf-tailed gecko, turkey, clown fish, musk-ox, bulldog, pronghorn, hercules beetle, reindeer, llama, pygmy, eskimo dog, kinkajou, komodo dragon, cuttlefish, cub, bloodhound, squirrel, gander, moorhen, emu, brown bear, javanese, birman, harrier, tortoise, antelope, gnu, kingfisher, wasp, olm, havanese, canaan, lizard, indochinese tiger, ocelot, mist, hare, discus, cony, orca, rooster, ground hog, silver dollar, peacock, akbash, somali, beaver, maine coon, mouse, eland, squirrel, serval, chimpanzee, snowshoe, toucan, catfish, lynx, coyote, bunny, retriever, fur seal, cow, balinese, vulture, coral, leopard, raccoon, polar bear, okapi, kakapo, whale, sand lizard, bonobo, moray, gila monster, cormorant, bracke, camel, markhor, rockhopper, neapolitan, black bear, roseate spoonbill, woodpecker, mountain lion, crested penguin, hippopotamus, puma, camel, alligator, guinea pig, heron, siberian tiger, river dolphin, axolotl, argentino, human, mongoose, drever, quokka, common frog, elk, wombat, spider monkey, civet, sting ray, panther, gar, lionfish, snake, crane, newt, raven, tortoise, fire ant, chicadee, common toad, pig, manatee, centipede, numbat, river turtle, falcon, angelfish, chamois, rhinoceros, shark, flamingo, pheasant, ladybird, grasshopper, greyhound, lemming, pig, marmoset, eel, yorkiepoo, tiger salamander, mosquito, shih tzu, quoll, chick, guanaco, walrus, badger, ainu, squid, pekingese, gerbil, duck, rattlesnake, tapir, lobster, catfish, mustang, wallaby, mongrel, butterfly, booby, bush elephant, fox, rattlesnake, cockroach, tadpole, lark, ape, pied tamarin, mare, tetra, squirrel monkey, elephant seal, dhole, cesky, raccoon, newfoundland, marmoset, stag, bullfrog, black bear, crocodile, lion, barb, wolf, vervet monkey, beetle, polar bear, pointer, grizzly bear, meerkat, owl, reptile, fousek, gibbon, king penguin, budgerigar, swan, hartebeest, cassowary, borneo elephant, oryx, alpaca, gerbil, chameleon, galapagos penguin, vulture, barracuda, insect, fishing cat, hen, giant clam, hare, polecat, fly, chow chow, yak, seahorse, spider, eel, burro, brown bear, boxer dog, crane, bandicoot, hedgehog, dromedary, goose, budgerigar, dolphin, kelpie dog, highland cattle, dormouse, duckbill, springbok, mongoose, bobcat, water buffalo, gecko, hornet, iguana, wild boar, koala, guinea pig, marmot, skink, deer, filly, barnacle, tree toad, leopard tortoise, appenzeller, doe, gecko, mole, mynah bird, mau, gilla monster, french bulldog, termite, salamander, parakeet, finch, horned frog, hippopotamus, hummingbird, cheetah, albatross, jaguar, toad, hyena, gorilla, skunk, impala, sea slug, scorpion fish, jackal, skunk, grouse, sea turtle, moth, caribou, dugong, bighorn sheep, ibizan hound, gorilla, puffer fish, chicken, komodo dragon, buffalo diff --git a/vendor/github.com/schollz/cowyo/static/text/animals.all b/vendor/github.com/schollz/cowyo/static/text/animals.all new file mode 100644 index 0000000..a1dd7b0 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/static/text/animals.all @@ -0,0 +1,4902 @@ +aardvark +aardwolf +abalone +abomasum +abortus +Abramis +Abrocoma +abrocome +Abudefduf +Abyssinian +Acanthisitta +Acanthocephala +acanthocephalan +Acanthocybium +Acanthophis +Acanthopterygii +Acanthoscelides +Acanthuridae +Acanthurus +acarid +Acaridae +Acarina +acarine +acarus +accentor +Accipiter +Accipitridae +Accipitriformes +Acherontia +Acheta +Achoerodus +acidophil +acidophilus +Acinonyx +Acipenser +Acipenseridae +Acnidosporidia +Acrididae +Acridotheres +Acris +Acrobates +Acrocephalus +acrodont +Acropora +Actias +actinia +Actinia +Actiniaria +actinomyces +Actinomycetaceae +Actinomycetales +actinomycete +Actinomyxidia +actinomyxidian +actinopod +Actinopoda +Actitis +aculea +aculeus +Adalia +Adapid +addax +adder +Adelges +adelgid +Adelgidae +Adelie +Adenota +adenovirus +admiral +adult +Aedes +Aegina +Aegypiidae +Aegypius +Aegyptopithecus +Aepyceros +Aepyornidae +Aepyorniformes +Aerobacter +aerobe +Aetobatus +affenpinscher +Affirmed +Africander +afropavo +aftershaft +agama +agamid +Agamidae +Agapornis +Agelaius +Agkistrodon +Agnatha +Agonidae +Agonus +agouti +Agriocharis +Agrobacterium +agua +Ailuropoda +Ailuropodidae +Ailurus +Airedale +Aix +Ajaia +Akeridae +ala +Alauda +Alaudidae +albacore +albatross +Albula +Albulidae +Alca +Alcedinidae +Alcedo +Alcelaphus +Alces +Alcidae +Alcyonacea +Alcyonaria +alderfly +Alectis +Alectoris +Alectura +Alepisaurus +alewife +Aleyrodes +Aleyrodidae +alga +Algeripithecus +allantois +alligator +alligatorfish +Alligatoridae +allosaur +Alopex +Alopiidae +Alopius +Alosa +Alouatta +alpaca +alphavirus +Alsophila +alula +Alytes +amazon +Amazona +amberjack +Ambloplites +Amblyrhynchus +ambulacrum +Ambystoma +Ambystomatidae +ambystomid +ameba +Ameiuridae +Ameiurus +Amia +Amiidae +Ammodytes +Ammodytidae +Ammotragus +amnion +Amniota +amniote +Amoebida +amphibia +amphibian +Amphibolips +amphidiploid +Amphineura +Amphioxidae +amphipod +Amphipoda +Amphiprion +Amphisbaena +Amphisbaenidae +amphiuma +Amphiumidae +Anabantidae +Anabas +Anabrus +Anacanthini +anaconda +anaerobe +Anagasta +anapsid +Anapsida +Anarhichadidae +Anarhichas +Anas +Anasa +anaspid +Anaspida +Anastomus +Anatidae +anatotitan +anchovy +Ancylidae +Ancylostomatidae +Ancylus +andrena +Andrenidae +Andricus +Aneides +angelfish +anglewing +Angora +Anguidae +Anguilla +Anguillidae +Anguilliformes +Anguillula +Anguis +angwantibo +Anhima +Anhimidae +Anhingidae +ani +animalcule +Animalia +Anisoptera +Anisotremus +ankylosaur +annelid +Annelida +Anniellidae +anoa +Anobiidae +Anodonta +Anolis +Anomala +Anomalopidae +anomalops +anomalopteryx +Anomia +Anomiidae +Anopheles +anopheline +Anoplura +Anostraca +Anser +Anseres +Anseriformes +Anserinae +ant +antbird +anteater +Antedon +Antedonidae +antelope +antenna +Antennariidae +Antheraea +Anthidium +Anthonomus +Anthozoa +anthozoan +anthropoid +Anthropoidea +Anthus +Antidorcas +Antigonia +Antilocapra +Antilocapridae +Antilope +antler +Antrozous +Aotus +aoudad +apar +apatosaur +Apatura +ape +aperea +Aphasmidia +aphid +Aphididae +Aphidoidea +Aphis +Aphriza +Aphrophora +Apidae +Apis +Aplodontia +Aplodontiidae +Aplysia +Aplysiidae +apodeme +Apodemus +Apodidae +Apodiformes +Apogon +Apogonidae +Apoidea +apolemia +Appaloosa +appendicularia +Appenzeller +Aptenodytes +Apterygidae +Apterygiformes +Apus +Aquila +Ara +Arabian +arachnid +Arachnida +arame +Aramus +Aranea +Araneae +arbovirus +Arca +arcella +Arcellidae +archaebacteria +archaeopteryx +archaeornis +Archaeornithes +archenteron +archerfish +archiannelid +Archiannelida +Archidiskidon +Archilochus +architeuthis +Archosargus +archosaur +Archosauria +Arcidae +Arctictis +arctiid +Arctiidae +Arctocebus +Arctocephalus +Arctonyx +Ardea +Ardeidae +Arenaria +Arenaviridae +arenavirus +argali +Argasidae +Argentina +argentine +Argentinidae +argentinosaur +Argiope +Argiopidae +Argonauta +Argonautidae +argus +Argusianus +Argynnis +Argyrotaenia +Ariidae +Arilus +Ariomma +arista +Arius +Arizona +Armadillidiidae +Armadillidium +armadillo +armor +armyworm +arrowworm +Artamidae +Artamus +Artemia +arthropod +Arthropoda +Artiodactyla +Arvicola +Ascaphidae +Ascaphus +Ascaridae +Ascaridia +Ascaris +Ascidiaceae +ascidian +Ascophyllum +Asilidae +Asio +asp +Aspidelaps +Aspidiotus +Aspidophoroides +ass +Assault +Astacidae +Astacus +Asteroidea +Astrophyton +Astropogon +Ateles +Athene +Atherinidae +Atherinopsis +Atherurus +Athiorhodaceae +Atrichornis +Atrichornithidae +Atropidae +Atticus +auk +auklet +Aulacorhyncus +Aulostomidae +Aulostomus +Auriparus +aurochs +australopithecine +Automeris +avadavat +Avahi +Aves +avocet +axolotl +aye-aye +Ayrshire +Aythya +baa-lamb +babbler +Babesiidae +babirusa +baboon +baby +Babyrousa +Bacillaceae +Bacillariophyceae +bacillus +backswimmer +bacteria +bacteriochlorophyll +bacteriophage +bacteroid +Bacteroidaceae +Bacteroides +badger +Baiomys +Bairdiella +Balaena +Balaeniceps +Balaenicipitidae +Balaenidae +Balaenoptera +Balaenopteridae +Balanidae +Balanus +Balistes +Balistidae +balloonfish +bandicoot +Bangiaceae +Bankia +bantam +banteng +barb +barbel +barbet +barbu +bark-louse +barnacle +baronduki +barosaur +barracouta +barracuda +barramundi +barrelfish +Bartramia +basenji +Basiliscus +basilisk +bass +Bassariscidae +Bassariscus +bassarisk +basset +bat +batfish +Bathyergidae +Bathyergus +Batrachoididae +Batrachoseps +bay +baya +beagle +beak +bear +beard +beaugregory +beaver +bedbug +bee +beef +beetle +belemnite +Belemnitidae +Belemnoidea +bellbird +bellwether +belly +Belonidae +Belostomatidae +beluga +Bemisia +beroe +Berycomorphi +bettong +Bettongia +Bibos +bigeye +bighorn +billfish +billy +binturong +biped +bird +bison +bitch +Bitis +Bittacidae +bittern +bivalve +Bivalvia +Blaberus +blackbird +blackbuck +Blackburn +blackcap +blackcock +blackfish +blackfly +blackpoll +blacksnake +bladderwrack +blanquillo +Blarina +blastocoel +blastocyst +blastoderm +blastomere +blastopore +blastula +Blatta +Blattella +Blattidae +Blattodea +Blenniidae +Blennioidea +Blennius +blenny +blindworm +Blissus +bloodhound +bloodworm +blowfly +blue +bluebird +bluebottle +bluefin +bluefish +bluegill +bluehead +bluepoint +bluethroat +bluetick +bluewing +boa +boar +boarfish +boarhound +boatbill +bobcat +bobolink +bobtail +bobwhite +Boidae +bollworm +bolti +Bombina +Bombus +bombycid +Bombycidae +Bombycilla +Bombycillidae +Bombyliidae +Bombyx +Bonasa +bonefish +bongo +bonito +booby +booklouse +borrelia +borzoi +Bos +Boselaphus +bot +Botaurus +botfly +Bothidae +Bothrops +bottom-feeder +botulinus +bovid +Bovidae +Bovinae +bovine +Bovini +bowerbird +bowfin +bowhead +boxer +boxfish +Brachinus +brachiopod +Brachiopoda +Brachyura +brachyuran +Bradypodidae +Bradypus +Brahman +Brama +brambling +Bramidae +Branchiobdella +Branchiobdellidae +Branchiopoda +Branchiostegidae +Branchiura +brant +Branta +breast +Brevoortia +briard +brill +brisling +bristle +bristletail +brit +broadbill +broadtail +brocket +bronco +broodmare +Brosmius +brotula +Brotulidae +browntail +Brucella +Bruchidae +Bruchus +bruin +brush +Bryozoa +bryozoan +Bubalus +Bubo +Bubulcus +Buccinidae +Bucconidae +Bucephala +Buceros +Bucerotidae +buck +buckskin +budgerigar +Budorcas +bufflehead +bufo +Bufonidae +bug +bulbul +bull +bulldog +bullfinch +bullfrog +bullhead +bullock +bullterrier +bumblebee +Bungarus +bunny +bunting +Bunyaviridae +bunyavirus +burbot +Burhinidae +Burhinus +Burmeisteria +burrfish +burro +bushbuck +bushtit +bustard +butcherbird +Buteo +buteonine +butterfish +butterfly +buzzard +by-catch +byssus +cabbageworm +Cacajao +Cacicus +cacique +cackler +caddisworm +Cadra +caecilian +Caeciliidae +Caenolestes +Caenolestidae +caiman +Cairina +cairn +Calamus +calf +Calidris +Callicebus +Callimorpha +Callinectes +Callionymidae +Calliophis +Calliphora +Calliphoridae +Callisaurus +Callithricidae +Callithrix +Callorhinus +calosoma +calyculus +Calymmatobacterium +Cambarus +camel +Camelidae +Camelus +Campephilus +Camponotus +Campylorhynchus +Canachites +canary +Cancer +Cancridae +Canidae +canine +Canis +cankerworm +cannon +canvasback +capelin +capercaillie +Capitonidae +capon +Capra +Caprella +Capreolus +Capricornis +Caprimulgidae +Caprimulgiformes +Caprimulgus +Caproidae +Capromyidae +Capros +capsid +capuchin +capybara +carabao +Carabidae +caracal +caracara +carancha +Carangidae +Caranx +carapace +Carapidae +Carassius +carcase +Carcharhinidae +Carcharhinus +Carcharias +Carchariidae +Carcharodon +Cardigan +Cardiidae +cardinal +cardinalfish +Cardium +Carduelinae +Carduelis +Caretta +Cariama +Cariamidae +caribou +carinate +Carnivora +carnivore +carnosaur +Carnosaura +carp +Carphophis +Carpocapsa +Carpodacus +carrier +carrion +carthorse +caseworm +Casmerodius +cassowary +Castor +Castoridae +Castoroides +Casuaridae +Casuariiformes +Casuarius +cat +Catacala +catalufa +catbird +caterpillar +catfish +Catharacta +Cathartes +Cathartidae +Catoptrophorus +catostomid +Catostomidae +Catostomus +cattalo +cattle +Cavia +Caviidae +cavy +cayuse +Cebidae +Cebuella +Cebus +Cecidomyidae +cecropia +centipede +Centrarchidae +Centriscidae +Centrocercus +Centropomidae +Centropomus +Centropristis +Centropus +Cephalobidae +Cephalochordata +cephalochordate +cephalopod +Cephalopoda +Cephalopterus +Cepphus +Cerambycidae +Cerapteryx +ceras +Ceratitis +Ceratodontidae +ceratodus +Ceratopogon +Ceratopogonidae +Ceratopsia +ceratopsian +Ceratopsidae +ceratosaur +Ceratotherium +cercaria +Cercocebus +Cercopidae +Cercopithecidae +Cercopithecus +cere +cero +Certhia +Certhiidae +Cervidae +Cervus +Ceryle +Cestida +Cestidae +Cestoda +Cestum +Cetacea +cetacean +Cetonia +Cetoniidae +Cetorhinidae +Cetorhinus +chachalaca +chacma +Chaenopsis +chaeta +Chaetodipterus +chaetodon +Chaetodontidae +Chaetognatha +chaffinch +chaja +chalaza +Chalcididae +Chalcis +Chalcostigma +Chamaea +Chamaeleo +Chamaeleontidae +chameleon +chamois +Channidae +char +Chara +Characeae +Characidae +characin +Characinidae +Charadrii +Charadriidae +Charadriiformes +Charadrius +Charales +charger +Charina +Charolais +Charophyceae +Charronia +Chateura +Chauna +cheetah +chelicera +Chelicerata +Chelifer +Chelonethida +Chelonia +chelonian +Cheloniidae +Chelydra +Chelydridae +Chen +cherrystone +chestnut +Cheviot +chevrotain +chewink +chick +chickadee +chicken +chickeree +chigetai +chigoe +Chihuahua +Chilomastix +Chilomeniscus +Chilomycterus +Chilopoda +chimaera +Chimaeridae +chimpanzee +chinchilla +Chinchillidae +chine +chinook +chipmunk +Chironomidae +Chironomus +Chiroptera +chiton +Chlamydera +chlamydia +Chlamydiaceae +Chlamydomonadaceae +Chlamydomonas +Chlamydosaurus +Chlamyphorus +chlorella +Chlorococcales +Chlorococcum +Chlorophis +Chlorophoneus +Chlorophthalmidae +Chlorophyceae +chlorophyll +Chlorophyta +Chlorura +choanocyte +Choeronycteris +Choloepus +Chondrichthyes +Chondrus +chordamesoderm +Chordata +chordate +Chordeiles +chorioallantois +chorion +Choriotis +Chorizagrotis +chough +chow +Chronoperates +chrysalis +Chrysaora +Chrysemys +Chrysochloridae +Chrysochloris +Chrysolophus +Chrysomelidae +Chrysophrys +Chrysophyceae +Chrysophyta +Chrysopidae +chub +chuckwalla +chuck-will's-widow +chunga +cicada +Cicadellidae +Cicadidae +cichlid +Cichlidae +Cicindelidae +Ciconia +Ciconiidae +Ciconiiformes +Ciliata +ciliate +cilium +Cimex +Cimicidae +Cinclidae +Cinclus +cinnabar +Circaetus +Circus +Cirripedia +cirrus +cisco +Cistothorus +Citation +Citellus +Citharichthys +civet +Cladorhyncus +clam +Clamatores +clamshell +Clangula +claw +Cleridae +Clethrionomys +clingfish +clinid +Clinidae +clostridium +clumber +Clupea +Clupeidae +Clydesdale +clypeus +Cnemidophorus +Cnidaria +Cnidosporidia +coachwhip +coat +coati +cob +cobia +Cobitidae +cobra +Coccidae +Coccidia +coccidium +Coccinellidae +coccobacillus +Coccoidea +Coccothraustes +coccus +Coccyzus +cochin +Cochlearius +cock +cockateel +cockatoo +cockchafer +cockerel +cockle +cockroach +cocoon +cod +codling +coelacanth +coelenterate +coelenteron +coelophysis +Coereba +Coerebidae +coho +Colaptes +Coleonyx +Coleoptera +Colinus +coliphage +Collembola +collembolan +collie +Collocalia +colobus +colt +Coluber +Colubridae +Columba +Columbidae +Columbiformes +Comatula +Comatulidae +comb +comma +commensal +compsognathus +conch +conchfish +condor +Condylura +conenose +Conepatus +coney +conferva +conger +Congridae +Conilurus +Connochaetes +conodont +Conodonta +conspecific +constrictor +Contopus +Conuropsis +coondog +coonhound +coot +cooter +copepod +Copepoda +copper +copperhead +Coracias +Coraciidae +Coraciiformes +Coragyps +coral +corbina +Cordylidae +Cordylus +Coregonidae +Coregonus +Coreidae +corgi +Corixa +Corixidae +cormorant +corncrake +cornetfish +Cornish +coronet +Corvidae +Corvus +Corydalidae +Corydalus +Corynebacteriaceae +corynebacterium +Coryphaenidae +corythosaur +coscoroba +cosmid +Cosmocampus +costia +cotinga +Cotingidae +Cotswold +Cottidae +cottonwick +Cottus +Coturnix +coucal +cougar +courlan +courser +cow +cowbird +cowfish +cowrie +coxsackievirus +coydog +coyote +coypu +crab +Cracidae +Cracticidae +Cracticus +crake +crane +Crangon +Crangonidae +crapaud +crappie +Crassostrea +craw +Crax +crayfish +creeper +creepy-crawly +creole-fish +crest +Crex +Cricetidae +Cricetus +cricket +crinoid +Crinoidea +critter +croaker +Crocethia +crocodile +Crocodylia +Crocodylidae +Crocodylus +Crocuta +Cro-magnon +crossbill +crossopterygian +Crossopterygii +Crotalidae +Crotalus +Crotaphytus +Crotophaga +crow +crowbait +Crustacea +crustacean +Cryptacanthodes +Cryptobranchidae +Cryptobranchus +Cryptocercidae +Cryptocercus +cryptomonad +Cryptophyceae +Cryptophyta +Cryptoprocta +Cryptotermes +Cryptotis +ctene +ctenidium +Ctenizidae +Ctenocephalides +Ctenocephalus +Ctenophora +ctenophore +cub +cuckoo +cuckoo-bumblebee +Cuculidae +Cuculiformes +Cuculus +Culex +Culicidae +Cuniculus +cunner +Cuon +cupule +cur +curassow +Curculionidae +curlew +currawong +Cursorius +cuscus +cusk +cusk-eel +Cuterebra +Cuterebridae +cuticula +cutlassfish +cuttlefish +cutworm +Cyamus +cyanobacteria +Cyanocitta +Cyanophyta +Cycliophora +Cyclopes +cyclops +Cyclopteridae +Cyclopterus +Cyclosporeae +Cyclostomata +cyclostome +Cydippida +cygnet +Cygnus +Cymatiidae +Cynipidae +Cynips +Cynocephalidae +Cynocephalus +cynodont +Cynodontia +Cynoglossidae +Cynomys +Cynopterus +Cynoscion +Cypraea +Cypraeidae +cyprinid +Cyprinidae +Cypriniformes +cyprinodont +Cyprinodontidae +Cyprinus +Cystophora +cytomegalovirus +cytostome +dabchick +dace +Dacelo +dachshund +Dactylopiidae +Dactylopius +Dactylopteridae +Dactylopterus +Dactyloscopidae +dalmatian +dam +Dama +Damaliscus +damselfish +damselfly +danaid +Danaidae +Danaus +daphnia +darter +Dasyatidae +Dasyatis +Dasypodidae +Dasyprocta +Dasyproctidae +Dasypus +dasyure +Dasyuridae +Dasyurus +Daubentonia +Daubentoniidae +dealfish +decapod +Decapoda +Decapterus +deer +defoliator +deinocheirus +deinonychus +Delichon +Delphinapterus +Delphinidae +Delphinus +Dendroaspis +Dendrocolaptes +Dendrocolaptidae +Dendroctonus +Dendroica +Dendrolagus +Denisonia +denizen +denticle +Dermacentor +Dermaptera +Dermatobia +Dermestidae +Dermochelyidae +Dermochelys +Dermoptera +desmid +Desmidiaceae +Desmidium +Desmodontidae +Desmodus +Desmograthus +Devon +dhole +Diadophis +Dialeurodes +diamondback +diapheromera +diapsid +Diapsida +Diaspididae +diatom +Dibranchiata +dibranchiate +dicamptodon +Dicamptodontidae +Diceros +dickeybird +Dicrostonyx +Dictyoptera +dicynodont +Dicynodontia +Didelphidae +Didelphis +difflugia +dihybrid +dik-dik +dimetrodon +dingo +dinoceras +Dinocerata +dinocerate +Dinoflagellata +dinoflagellate +Dinornis +Dinornithidae +Dinornithiformes +dinosaur +Diodon +Diodontidae +Diomedeidae +Diphylla +diplococcus +diplodocus +diploid +Diplopoda +Dipnoi +Dipodidae +Dipodomys +Dipsosaurus +Diptera +Dipus +Discocephali +Discoglossidae +Doberman +dobson +dock +doctorfish +dodo +doe +dog +dogfish +dogie +Dolichonyx +Dolichotis +Doliolidae +doliolum +dollarfish +dolphin +dolphinfish +Dominique +doodlebug +dorbeetle +Dorking +dormouse +dory +Dorylinae +dotterel +douroucouli +dove +dowitcher +down +Draco +Dracunculidae +Dracunculus +dragon +dragonet +dragonfly +drake +Dreissena +Drepanididae +Drepanis +driftfish +drill +dromaeosaur +Dromaeosauridae +Dromaius +drone +drosophila +Drosophilidae +drum +Drymarchon +dryopithecine +Dryopithecus +duck +duckling +dug +dugong +Dugongidae +dulse +Dumetella +dun +Duplicidentata +Durham +Dusicyon +Dysdercus +Dytiscidae +Eacles +eagle +eaglet +earthworm +earwig +Echeneididae +Echeneis +echidna +Echidnophaga +echinococcus +echinoderm +Echinodermata +Echinoidea +echovirus +ectoderm +ectoparasite +Ectopistes +ectoproct +Ectoprocta +Edaphosauridae +edaphosaurus +Edentata +edentate +Edmontonia +edmontosaurus +eel +eelblenny +eelpout +eelworm +eft +egg +eggar +egret +Egretta +eider +eiderdown +Eimeriidae +Eira +Elagatis +eland +Elanoides +Elanus +Elaphe +Elaphurus +elapid +Elapidae +elasmobranch +Elasmobranchii +Elateridae +elbow +Electrophoridae +Electrophorus +Eleotridae +elephant +Elephantidae +Elephas +Eleutherodactylus +Eliomys +elk +Elopidae +Elops +elver +Emberiza +Emberizidae +Embioptera +Embiotocidae +embryo +emperor +emu +Emydidae +encolure +endameba +Endamoeba +Endamoebidae +endoderm +endoparasite +Engraulidae +Engraulis +Enhydra +Ensis +entellus +Enterobacteriaceae +Enterobius +enterovirus +EntleBucher +Entomostraca +entoproct +Entoprocta +eohippus +eoraptor +ephemerid +Ephemeridae +ephemeron +Ephemeroptera +Ephestia +Ephippidae +Ephippiorhynchus +Epilachna +Epinephelus +eptatretus +Eptesicus +Equetus +Equidae +equine +Equus +Erethizon +Erethizontidae +Eretmochelys +Erignathus +Erinaceidae +Erinaceus +Eriosoma +Erithacus +ermine +ern +Erolia +erwinia +Erythrocebus +escherichia +Eschrichtiidae +Eschrichtius +escolar +Esocidae +Esox +Estrilda +Etropus +Euarctos +eubacteria +Eubacteriales +Eucinostomus +Euderma +Eudyptes +euglena +Euglenaceae +euglenoid +Euglenophyceae +Euglenophyta +eukaryote +Eumeces +Eumenes +Eumetopias +Eumops +Eunectes +Euphagus +Euphausiacea +Euphractus +Euplectella +Euproctis +Euronithopoda +Euryale +Euryalida +Eurylaimi +Eurylaimidae +eurypterid +Eurypterida +Eutamias +Eutheria +Euthynnus +ewe +Exaeretodon +Exmoor +Exocoetidae +Exocycloida +Exopterygota +eyas +Falco +falcon +falcon-gentle +Falconidae +Falconiformes +fanaloka +fang +Fasciola +Fasciolidae +Fasciolopsis +fawn +feather +feeder +feist +Felidae +feline +Felis +female +Fenusa +fer-de-lance +ferret +fetlock +fetus +fieldfare +fig-bird +filaria +Filariidae +filefish +filly +Filoviridae +filovirus +fin +finback +finch +fingerling +finisher +firebrat +firebug +firefly +fish +fishbone +fisher +Fissipedia +Fissurella +Fissurellidae +Fistularia +Fistulariidae +flag +flagellate +flagellum +flagfish +flamingo +flank +flatfish +flathead +flatworm +Flaviviridae +flavivirus +flea +fledgling +flicker +flickertail +flipper +flounder +fluke +fly +foal +foot +foram +Foraminifera +forefoot +foreleg +forelimb +forelock +forepaw +forewing +Forficula +Forficulidae +Formica +Formicariidae +Formicarius +Formicidae +fossa +Fossa +fox +foxhound +Francisella +Frankliniella +Fratercula +freetail +Fregata +Fregatidae +Friesian +Fringilla +Fringillidae +fritillary +frog +frogfish +froghopper +frogmouth +Fucaceae +Fucales +fucoid +fucus +Fulgoridae +Fulica +fulmar +Fulmarus +Fundulus +Fungia +fur +furcula +Furnariidae +Furnarius +gadfly +Gadidae +Gadiformes +gadoid +Gadus +galago +Galbulidae +Galeocerdo +Galeorhinus +Galleria +gallfly +Galliformes +Gallinago +Gallinula +gallinule +Gallirallus +Galloway +Gallus +Gambelia +Gambusia +game +gamecock +gander +gannet +ganoid +Ganoidei +ganoin +gar +garganey +Garrulinae +Garrulus +gaskin +Gasterophilidae +Gasterophilus +Gasterosteidae +Gasterosteus +Gastrophryne +gastropod +Gastropoda +gastrula +gaur +Gavia +gavial +Gavialidae +Gavialis +Gavidae +Gaviiformes +gayal +Gazella +gazelle +gecko +gee-gee +Gekkonidae +gelding +Gelechia +gelechiid +Gelechiidae +gempylid +Gempylidae +Gempylus +gemsbok +genet +Genetta +Genyonemus +Geochelone +Geococcyx +geoduck +geometrid +Geometridae +Geomyidae +Geomys +Geophilidae +Geophilomorpha +Geophilus +Geothlypis +gerbil +Gerbillinae +Gerbillus +gerenuk +Gerreidae +Gerres +Gerrhonotus +Gerrididae +Gerris +giant +giardia +gib +gibbon +Gigartinaceae +gill +Ginglymostoma +Giraffa +giraffe +Giraffidae +gizzard +Glareola +Glareolidae +Glaucomys +Gliridae +Glis +Globicephala +globigerina +Globigerinidae +Glossinidae +Glossopsitta +glowworm +glutton +gnat +gnatcatcher +Gnathostomata +gnathostome +gnu +goat +goatfish +goatsucker +Gobiesocidae +Gobiesox +Gobiidae +Gobio +goby +godwit +goldcrest +goldeneye +goldfinch +goldfish +gomphothere +Gomphotheriidae +Gomphotherium +gonococcus +Gonorhynchidae +Gonorhynchus +goosander +goose +goosefish +gopher +Gopherus +goral +Gorgonacea +gorgonian +Gorgonocephalus +gorilla +goshawk +gosling +gracilariid +Gracilariidae +grackle +Gracula +grade +grampus +grassfinch +grasshopper +grebe +greenbottle +greeneye +greenfly +greenling +greenshank +greenwing +gregarine +Gregarinida +grenadier +grey +greyback +greyhen +greyhound +greylag +griffon +grison +grivet +grizzly +groenendael +grosbeak +groundfish +groundhog +ground-shaker +grouper +grouse +grub +grubby +Gruidae +Gruiformes +grunt +Grus +Gryllidae +guan +guanaco +gudgeon +guenon +guereza +Guernsey +guillemot +guitarfish +gulfweed +gull +Gulo +gunnel +guppy +gurnard +Gymnelis +Gymnogyps +Gymnophiona +Gymnorhina +Gymnura +Gypaetus +Gyps +gyrfalcon +Gyrinidae +hack +hackle +hackney +haddock +hadrosaur +Hadrosauridae +Haematobia +Haematopodidae +Haematopus +Haemopis +haemoproteid +Haemoproteidae +Haemoproteus +Haemosporidia +haemosporidian +Haemulidae +Haemulon +hagfish +hair +hairstreak +hake +halcyon +Halcyon +Haldea +halfbeak +Haliaeetus +halibut +Halicoeres +Halictidae +Haliotidae +Haliotis +halobacteria +halophile +halter +hamadryad +Haminoea +hammerhead +Hampshire +hamster +hand +haploid +Haplosporidia +haplosporidian +hare +Harpia +harpy +harrier +hart +hartebeest +harvestfish +harvestman +hatchling +haunch +hawfinch +hawk +hawkmoth +head +hedgehog +heifer +Helicidae +Heliobacter +Heliothis +Heliozoa +heliozoan +Helix +hellbender +hellgrammiate +helminth +Heloderma +Helodermatidae +Hemachatus +Hemerobiidae +Hemigalus +Hemigrammus +Hemiprocnidae +Hemiptera +Hemipteronatus +Hemiramphidae +Hemitripterus +hen +hepadnavirus +herbivore +Hereford +Hermissenda +heron +herpes +Herpestes +herrerasaur +herring +Hesperiphona +Heterocephalus +Heterodon +Heterokontophyta +Heteromyidae +heteroploid +Heteroptera +Heteroscelus +Heterosomata +heterostracan +Heterostraci +Heterotrichales +Hexagrammidae +Hexagrammos +Hexamita +Hexanchidae +Hexanchus +hexapod +hide +Himantopus +hind +hindfoot +hindquarters +hinny +Hippobosca +Hippoboscidae +Hippocampus +Hippodamia +Hippoglossoides +Hippoglossus +Hippopotamidae +hippopotamus +Hipposideridae +Hipposideros +Hippotragus +Hipsurus +Hirudinea +Hirudinidae +Hirudo +Hirundinidae +Hirundo +hoatzin +hobby +hock +hog +hogchoker +hogfish +Holbrookia +Holocentridae +Holocentrus +holocephalan +Holocephali +holometabola +Holothuria +Holothuridae +Holothuroidea +Homaridae +Homarus +homeotherm +hominid +Hominidae +hominoid +Hominoidea +homo +Homona +Homoptera +honeybee +honeycreeper +honker +hood +hoof +hookworm +hoopoe +horn +hornbill +hornet +horse +horseback +horsefly +horseleech +host +hound +housedog +housefly +hummingbird +humpback +Hyaenidae +Hyalophora +Hyalospongiae +hybrid +hydra +Hydrobates +Hydrobatidae +Hydrochoeridae +Hydrochoerus +Hydrodamalis +Hydromantes +Hydromyinae +Hydromys +Hydrophidae +Hydrozoa +hydrozoan +Hyemoschus +hyena +Hyla +Hylactophryne +Hylidae +Hylobates +Hylobatidae +Hylocichla +Hylophylax +Hymenoptera +Hynerpeton +Hypentelium +Hypermastigina +hypermastigote +Hyperoglyphe +Hyperoodon +Hyphantria +Hypoderma +hypodermis +Hypopachus +Hypsiglena +Hypsiprymnodon +Hyracoidea +Hyracotherium +hyrax +Hystricidae +Hystricomorpha +Ibero-mesornis +ibex +ibis +ichneumon +Ichneumonidae +ichthyosaur +Ichthyosauria +Ichthyosauridae +ichthyosaurus +Ichyostega +Ictalurus +Icteria +Icteridae +Icterus +Ictiobus +ictodosaur +Ictodosauria +Ictonyx +iguanid +Iguanidae +iguanodon +Iguanodontidae +imago +impala +Inachis +Indicatoridae +indri +Indriidae +Infusoria +infusorian +insect +Insecta +Insectivora +insectivore +Insessores +instar +invertebrate +investment +Irena +Irenidae +Iridoprocne +Ischigualastia +isopod +Isopoda +Isoptera +Isospondyli +Istiophoridae +Istiophorus +Isuridae +Isurus +ivorybill +Ixobrychus +Ixodes +Ixodidae +jabiru +jacamar +jack +jackal +jackdaw +jackknife-fish +jackrabbit +jacksmelt +jacksnipe +Jaculus +jaeger +jaguar +jaguarundi +jassid +Jassidae +Javanthropus +jawfish +jay +jellyfish +jennet +jerboa +Jersey +jewfish +jird +Jordanella +junco +Jynx +Kakatoe +kaki +Kalotermes +Kalotermitidae +kanchil +kangaroo +Katsuwonidae +Katsuwonus +katydid +kea +keeshond +kelp +kelpie +Kenyapithecus +kestrel +kiang +kid +killdeer +killifish +kingbird +kingfish +kingfisher +kinglet +kinkajou +Kinosternidae +Kinosternon +kit +kite +kitten +kittiwake +kitty +kiwi +klebsiella +knot +koala +kob +Kobus +Kogia +komondor +kookaburra +krait +krill +Krypterophaneron +kudu +kuvasz +Kyphosidae +Kyphosus +Labridae +labyrinthodont +Labyrinthodontia +Lacerta +Lacertidae +lacewing +Lachnolaimus +Lactobacillaceae +lactobacillus +Lactophrys +ladybug +ladyfish +Lagidium +Lagodon +lagomorph +Lagomorpha +Lagopus +Lagorchestes +Lagostomus +Lagothrix +Lama +lamb +Lambis +lambkin +Lamellicornia +Laminaria +Laminariaceae +Laminariales +Lamna +Lamnidae +lamprey +Lampridae +Lampris +Lampropeltis +Lampyridae +lancelet +lancetfish +langur +Laniidae +Lanius +lanternfish +Lanthanotidae +Lanthanotus +lapdog +lapin +lappet +lapwing +largemouth +Lari +Laricariidae +larid +Laridae +lark +Larus +larva +Larvacea +larvacean +Lasiocampa +lasiocampid +Lasiocampidae +Lasiurus +Lates +Latimeria +Latimeridae +Latinae +Latrodectus +layer +leafhopper +leatherjacket +Lebistes +lechwe +leech +Leiopelma +Leiopelmatidae +Leishmania +lemming +Lemmus +lemur +Lemuridae +Lemuroidea +Leonberg +Leontocebus +leopard +leopardess +Lepadidae +Lepas +Lepidochelys +Lepidocybium +Lepidoptera +Lepidosauria +Lepisma +Lepismatidae +Lepisosteidae +Lepisosteus +Lepomis +leporid +Leporidae +Leptinotarsa +leptocephalus +Leptodactylidae +Leptodactylus +Leptoglossus +Leptoptilus +leptospira +Leptotyphlopidae +Leptotyphlops +Lepus +lerot +Leuciscus +leucocytozoan +leveret +Lhasa +Lichanura +liger +Limacidae +Limanda +Limax +Limenitis +Limicolae +Limnocryptes +Limnodromus +Limosa +limpet +limpkin +Limulidae +Limulus +Lincoln +ling +lingcod +linnet +Liomys +lion +lioness +lionet +lionfish +lip +Liparididae +Liparis +Liposcelis +Lipotyphla +Lippizan +listeria +Lithodidae +Litocranius +littleneck +Littorina +Littorinidae +livestock +liza +lizard +lizardfish +llama +loach +Lobata +Lobipes +Lobotes +Lobotidae +lobster +locust +Locusta +Lofortyx +loggerhead +loin +loir +loligo +longhorn +longwool +lookdown +loon +Lophiidae +Lophius +Lophodytes +Lopholatilus +Lophophorus +lorica +Loricata +Loriinae +lorikeet +Lorisidae +lory +Lota +louse +louvar +lovebird +Loxia +Loxodonta +Loxostege +Lucanidae +Lucilia +Lucy +Lufengpithecus +lugworm +Lumpenus +lumpfish +lumpsucker +Lunda +lungfish +Luscinia +Lutjanidae +Lutjanus +Lutra +Lutrinae +Luvaridae +Luvarus +Lycaena +lycaenid +Lycaenidae +Lycaeon +Lycosa +Lycosidae +lygaeid +Lygaeidae +Lygus +Lymantria +lymantriid +Lymantriidae +lynx +lyrebird +Lyrurus +lyssavirus +Macaca +macaque +macaw +Machilidae +mackerel +Macrocephalon +Macrocheira +Macroclemys +Macrodactylus +Macronectes +Macropodidae +Macropus +Macrorhamphosidae +Macrotis +macrotus +Macrouridae +Macrozoarces +Madoqua +Madreporaria +Maeandra +maggot +Magicicada +magpie +maigre +Maja +Majidae +Makaira +mako +Malacanthidae +Malaclemys +Malaconotinae +Malacopterygii +Malacosoma +Malacostraca +malamute +male +maleo +malinois +mallard +Mallophaga +Mallotus +Malopterurus +Maltese +mamba +mammal +Mammalia +mammoth +Mammut +Mammuthus +Mammutidae +mamo +manakin +manatee +mandrill +Mandrillus +Manduca +mane +mangabey +Manidae +maniraptor +Maniraptora +Manis +manta +Manteodea +Mantidae +mantis +mantispid +Mantispidae +Mantophasmatodea +manul +Manx +mapinguari +mara +marabou +mare +margate +margay +Marginocephalia +markhor +marlin +marmoset +marmot +Marmota +marsupial +Marsupialia +marten +Martes +martin +massasauga +Masticophis +mastiff +Mastigophora +Mastigoproctus +mastodon +Mastotermes +Mastotermitidae +maverick +Maxostoma +Mayetiola +mayfly +Mazama +meadowlark +mealworm +mealybug +Mecoptera +mecopteran +medusa +meerkat +Megachile +Megachilidae +Megachiroptera +Megaderma +Megadermatidae +Megalobatrachus +Megalonychidae +Megaloptera +megalosaur +Megalosauridae +megapode +Megapodiidae +Megapodius +Megaptera +megatherian +Megatheriidae +Megatherium +Melanerpes +Melanitta +Melanogrammus +Melanoplus +Melanotis +Meleagrididae +Meleagris +Meles +Melinae +Meliphagidae +Mellivora +Melogale +Meloidae +Melolontha +Melolonthidae +Melophagus +Melopsittacus +Melospiza +Melursus +Membracidae +menhaden +Menippe +Menopon +Menotyphla +Menticirrhus +Menura +Menurae +Menuridae +Mephitinae +Mephitis +Mercenaria +merganser +Merginae +Mergus +merino +Meriones +Merlangus +Merluccius +Meropidae +Merops +Merostomata +merozoite +mesenchyme +Mesocricetus +mesoderm +mesohippus +metamere +Metatheria +metatherian +Metazoa +metazoan +methanogen +mew +microbe +Microcentrum +Microchiroptera +Micrococcaceae +Micrococcus +Microdesmidae +Microdipodops +Microhylidae +Micromyx +microorganism +Micropogonias +Micropterus +microsporidian +Microstomus +Microtus +Micruroides +Micrurus +midge +migrator +miller's-thumb +millipede +milt +Milvus +Mimidae +Mimus +mink +minnow +Miridae +Mirounga +mite +moa +Mobula +Mobulidae +mockingbird +mojarra +moke +mole +Molidae +mollie +Mollienesia +Mollusca +mollusk +moloch +Molossidae +Molothrus +molter +Molva +Momotidae +Momotus +monad +monal +monarch +Monera +moneran +mongoose +monitor +monkey +Monocanthidae +Monocanthus +Monochamus +Monodon +Monodontidae +monohybrid +Monomorium +Monotremata +monotreme +monster +moonfish +moorcock +moorhen +moray +Morgan +Morone +morula +Moschus +mosquito +mosquitofish +Motacilla +Motacillidae +moth +motmot +mouflon +mouse +mouser +mouthbreeder +mouthpart +mudder +mudskipper +Mugil +Mugilidae +Mugiloidea +muishond +mule +mullet +Mullidae +Mulloidichthys +mulloway +Mullus +mummichog +Muntiacus +muntjac +Muraenidae +Muridae +murine +Muroidea +murre +Mus +Musca +Muscardinus +Muscicapa +Muscicapidae +Muscidae +Muscivora +Muscoidea +muskellunge +muskrat +Musophaga +Musophagidae +mussel +mustang +Mustela +Mustelidae +Mustelus +mutant +Mutillidae +muzzle +Mya +Myaceae +Myacidae +Myadestes +Mycetophilidae +mycobacteria +Mycobacteriaceae +mycoplasma +Mycoplasmataceae +Mycoplasmatales +Mycrosporidia +Mycteria +Mycteroperca +Myctophidae +Myliobatidae +mylodon +mylodontid +Mylodontidae +myna +Myocastor +Myomorpha +Myopus +Myotis +myriapod +Myrmecia +Myrmecobius +Myrmecophaga +Myrmecophagidae +myrmecophile +Myrmeleon +Myrmeleontidae +Mysidacea +Mysidae +Mysis +Mysticeti +Mytilidae +Mytilus +Myxine +Myxinidae +Myxiniformes +Myxinikela +myxobacteria +Myxocephalus +Myxophyceae +Myxosporidia +myxosporidian +myxovirus +Naemorhedus +Naja +nanny +nanomia +napu +narwhal +Nasalis +Nasua +Natantia +Naticidae +Natrix +natterjack +Naucrates +Nautilidae +Necturus +needlefish +Negaprion +nekton +Nematocera +Nematoda +nematode +Nemertea +Neoceratodus +Neofiber +Neomys +Neophron +Neotoma +Nepa +Nephrops +Nephropsidae +Nepidae +nerita +neritid +Neritidae +neritina +Nerodia +Nesokia +nester +nestling +Nestor +Neuroptera +neuropteron +Neurotrichus +Newfoundland +newt +nighthawk +nightingale +nilgai +Nimravus +nit +Nitella +Nitrobacter +Nitrobacteriaceae +nitrobacterium +nitrosobacteria +Nitrosomonas +noctiluca +Noctua +Noctuidae +nomia +nonstarter +nostoc +Nostocaceae +Notechis +Notemigonus +nothosaur +Nothosauria +notochord +Notomys +Notonecta +Notonectidae +Notophthalmus +notornis +Notoryctidae +Notoryctus +Notostraca +Notropis +Nucifraga +Nuda +Nudibranchia +numbat +Numenius +Numida +Numididae +nummulite +Nummulitidae +nutcracker +nuthatch +nyala +Nyctanassa +Nyctereutes +Nycticebus +Nycticorax +Nyctimene +nymph +nymphalid +Nymphalidae +Nymphalis +Nymphicus +oarfish +Oceanites +ocelot +Ochotona +Ochotonidae +octopod +Octopoda +Octopodidae +octopus +Ocyurus +Odobenidae +Odobenus +Odocoileus +Odonata +odonate +Odontoceti +Odontophorus +Oecanthus +Oedogoniaceae +Oedogoniales +Oedogonium +Oenanthe +Oestridae +Oestrus +Ogcocephalidae +oilbird +oilfish +okapi +Okapia +Oligochaeta +oligochaete +Oligoplites +olm +Omaha +ommastrephes +omnivore +Omomyid +onager +Oncorhynchus +Ondatra +Oniscidae +Oniscus +Onychogalea +Onychomys +Onychophora +onychophoran +opah +openbill +operculum +Opheodrys +Ophidiidae +Ophiodon +Ophiodontidae +Ophiophagus +Ophisaurus +Ophiurida +Ophiuroidea +Opisthobranchia +Opisthocomidae +Opisthocomus +Opisthognathidae +opossum +orangutan +Orchestia +Orchestiidae +Orcinus +Oreamnos +Orectolobidae +Orectolobus +Oreortyx +Oriolidae +Oriolus +ormer +Ornithischia +ornithischian +ornithomimid +Ornithomimida +ornithopod +Ornithorhynchidae +Ornithorhynchus +orphan +Orpington +Ortalis +orthomyxovirus +Orthopristis +Orthoptera +Orthotomus +ortolan +ortygan +Orycteropodidae +Orycteropus +Oryctolagus +oryx +Oryzomys +Oscillatoriaceae +oscine +Oscines +Osmeridae +Osmerus +osprey +Ostariophysi +Osteichthyes +Osteoglossidae +Osteoglossiformes +osteostracan +Osteostraci +Ostraciidae +Ostracoda +ostracoderm +Ostracodermi +Ostrea +Ostreidae +ostrich +Otaria +Otariidae +Otides +Otididae +Otis +otter +otterhound +Otus +Ouranopithecus +Ovalipes +ovenbird +Ovibos +ovipositor +oviraptorid +Ovis +owl +owlet +ox +oxtail +Oxybelis +Oxylebius +Oxyura +Oxyuranus +Oxyuridae +oyster +oystercatcher +paca +pacer +Pachycephala +pachycephalosaur +pachyderm +packhorse +packrat +pad +Padda +paddlefish +pademelon +Pagellus +Pagophila +Pagophilus +Pagrus +Paguridae +Pagurus +Palaemon +Palaemonidae +Paleacrita +palfrey +Palinuridae +Palinurus +palometa +palomino +Pan +Pandion +Pandionidae +pangolin +Panonychus +Panorpidae +panther +Panthera +Pantotheria +papillon +Papio +papovavirus +Paprilus +Paracheirodon +Paradisaeidae +Paradoxurus +parakeet +Paralichthys +Paralithodes +paramecium +paramyxovirus +Paranthias +Paranthropus +parapodium +Parascalops +parasite +Parazoa +Paridae +Parophrys +parr +parrot +parrotfish +partridge +Parula +Parulidae +Parus +parvovirus +Passer +Passeridae +Passeriformes +Passerina +passerine +pastern +Pastor +patas +Patella +Patellidae +pathogen +Pauropoda +Pavo +paw +peachick +peacock +peafowl +peahen +pearlfish +peba +peccary +Pectinibranchia +Pectinidae +Pediculati +Pediculidae +Pediculus +Pedioecetes +Pedionomus +Pedipalpi +peeper +Pekinese +Pelecanidae +Pelecaniformes +Pelecanoididae +Pelecanus +pelican +pellicle +Pelobatidae +peludo +pelycosaur +Pelycosauria +Pembroke +Pempheridae +pen +Peneidae +Penelope +Peneus +penguin +Pennatula +Pennatulidae +pennon +pentail +Pentastomida +Peramelidae +Perca +perch +Percheron +Percidae +Perciformes +Percina +Percoidea +Percophidae +Perdicidae +Perdix +peregrine +peridinian +Peridiniidae +Peridinium +Periophthalmus +Peripatidae +Peripatopsidae +Peripatopsis +Periplaneta +Perisoreus +Perissodactyla +Peristediinae +Peristedion +peristome +periwinkle +permit +Pernis +Perodicticus +Perognathus +Peromyscus +pest +pet +Petaurista +Petauristidae +Petaurus +petrel +Petrogale +Petromyzon +Petromyzoniformes +Petromyzontidae +pewee +Pezophaps +Phacochoerus +Phaeophyceae +Phaeophyta +Phaethon +Phaethontidae +Phalacrocoracidae +Phalacrocorax +Phalaenoptilus +phalanger +Phalangeridae +Phalangida +Phalangiidae +Phalangium +phalarope +Phalaropidae +Phalaropus +Pharomacrus +Phascogale +Phascolarctos +phasianid +Phasianidae +Phasianus +phasmid +Phasmida +Phasmidae +Phasmidia +pheasant +phenacomys +Philaenus +Philohela +Philomachus +Philophylla +Phlebotomus +Phoca +Phocidae +Phocoena +phoebe +Phoenicopteridae +Phoeniculidae +Phoeniculus +Phoenicurus +Pholadidae +Pholas +Pholidae +Pholidota +Pholis +phoronid +Phoronida +Photoblepharon +Phoxinus +phragmocone +Phrynosoma +Phthiriidae +Phthirius +Phthorimaea +phycobilin +phycocyanin +phycoerythrin +Phyllidae +Phyllium +Phyllorhynchus +Phylloscopus +Phyllostomidae +Phyllostomus +Phylloxera +Phylloxeridae +physa +Physalia +Physeter +Physeteridae +Physidae +Phytomastigina +phytoplankton +Pica +Picariae +pichiciago +Picidae +Piciformes +pickerel +Picoides +picornavirus +piculet +Picumnus +Picus +piddock +pierid +Pieridae +Pieris +pigeon +pigfish +piglet +pika +pike +pikeblenny +pike-perch +pilchard +pilotfish +pilus +pinche +Pinctada +Pineus +pinfish +Pinguinus +Pinicola +Pinnipedia +Pinnotheres +Pinnotheridae +pinscher +pintail +pinto +pinworm +Pipa +pipefish +Pipidae +Pipile +Pipilo +pipistrelle +Pipistrellus +pipit +Pipra +Pipridae +Piranga +piranha +piroplasm +pisanosaur +Pisces +Pithecanthropus +Pithecia +pitta +Pittidae +Pituophis +Pitymys +placental +placoderm +Placodermi +Placuna +plaice +planarian +plankton +Planococcus +planula +Plasmodiidae +plasmodium +plastron +Platalea +Plataleidae +Platanistidae +Platichthys +platy +Platycephalidae +Platyctenea +platyctenean +Platyhelminthes +Platypoecilus +platypus +Platyrrhini +Plautus +Plecoptera +Plecotus +plectognath +Plectognathi +Plectophera +Plectrophenax +Plesianthropus +plesiosaur +Plesiosauria +Plethodon +Plethodontidae +Pleurobrachia +Pleurobrachiidae +pleurodont +Pleuronectes +Pleuronectidae +Plicatoperipatus +Ploceidae +Ploceus +plover +plumule +Pluvialis +Pluvianus +pneumococcus +poacher +pochard +Podargidae +Podargus +Podiceps +Podicipedidae +Podicipitiformes +Podilymbus +Poeciliidae +Poecilocapsus +Poecilogale +Poephila +pogge +Pogonophora +poikilotherm +pointer +polecat +Polioptila +poliovirus +Polistes +poll +Pollachius +pollack +pollard +pollinator +Polyangiaceae +Polyangium +Polyborus +Polychaeta +polychaete +Polycirrus +Polydactylus +Polyergus +Polygonia +Polymastigina +polymastigote +polymorph +Polynemidae +Polyodon +Polyodontidae +polyoma +polyp +Polypedates +Polypedatidae +Polyplacophora +polyploid +Polyprion +Pomacanthus +Pomacentridae +Pomacentrus +Pomatomidae +Pomatomus +Pomeranian +pomfret +Pomolobus +Pomoxis +pompano +pompon +Pongidae +Pongo +pony +pooch +poodle +Pooecetes +poorwill +Popillia +popinjay +porbeagle +Porcellio +Porcellionidae +porcupine +porcupinefish +porgy +Porifera +porker +porkfish +Poronotus +Porphyra +Porphyrio +Porphyrula +porpoise +Portunidae +Portunus +Porzana +Potamogalidae +Potamophis +Potoroinae +potoroo +Potorous +Potos +potto +poxvirus +prancer +pratincole +Praunus +prawn +praya +predator +prehensor +Presbytes +prey +Priacanthidae +Priacanthus +pricket +prickleback +primary +primate +Primates +Prinia +Priodontes +Prionace +Prionotus +Pristidae +Pristis +probiotic +Proboscidea +proboscidean +proboscis +Procavia +Procaviidae +Procellaria +Procellariidae +Procellariiformes +Prociphilus +Procnias +proconsul +Procyon +procyonid +Procyonidae +Progne +prokaryote +pronghorn +Prosauropoda +prosimian +Prosimii +Prosopium +Proteidae +Proteles +Proterochampsa +Proteus +prothorax +protist +Protista +protoavis +protoceratops +protoctist +Protoctista +protohippus +Prototheria +prototherian +Protozoa +protozoan +Protura +proturan +Prunella +Prunellidae +psalterium +Psaltriparus +Psenes +Psephurus +Psetta +Psettichthys +Pseudacris +Pseudaletia +Pseudechis +Pseudemys +Pseudococcidae +Pseudococcus +pseudomonad +Pseudomonadales +Pseudomonas +Pseudomonodaceae +Pseudopleuronectes +pseudopod +Pseudoryx +Psithyrus +Psittacidae +Psittaciformes +psittacosaur +Psittacula +Psittacus +psocid +Psocidae +Psocoptera +Psophia +Psophiidae +psychodid +Psychodidae +Psyllidae +ptarmigan +Pteriidae +Pternohyla +Pterocles +Pteroclididae +Pterocnemia +pterodactyl +Pterodactylidae +Pterodactylus +Pterois +Pteropus +pterosaur +Pterosauria +Ptilocercus +Ptilocrinus +Ptilonorhynchidae +Ptilonorhynchus +Ptloris +Ptyas +Ptychozoon +puddingwife +puffbird +puffer +puffin +Puffinus +pug +puku +Pulex +Pulicidae +pullet +Pulmonata +pumpkinseed +punkie +pup +pupa +puppy +Pycnogonida +Pygopodidae +Pygopus +Pygoscelis +Pylodictus +pyralid +Pyralidae +Pyralis +Pyrausta +Pyrocephalus +Pyrophorus +Pyrrhocoridae +Pyrrhula +pyrrhuloxia +Pyrrophyta +python +Pythonidae +Pythoninae +quack-quack +quadruped +quagga +quahog +quail +queen +quetzal +quill +Quiscalus +rabbit +rabbitfish +raccoon +racehorse +racer +racerunner +Rachycentridae +Rachycentron +Radiolaria +radiolarian +rail +Raja +Rajidae +Rajiformes +Rallidae +ram +Rambouillet +Ramphastidae +Ramphomicron +Rana +Ranatra +Rangifer +Ranidae +Raphicerus +Raphidae +Raphidiidae +Raphus +Raptores +rat +ratel +Ratitae +ratite +rattle +rattlesnake +Rattus +raven +ray +razorback +razorbill +recombinant +Recurvirostra +Recurvirostridae +redbone +redfish +redhead +redhorse +redpoll +redshank +redstart +redtail +Reduviidae +redwing +reeve +Regalecidae +Reglaecus +Regulus +Reithrodontomys +relative +Remilegia +remora +remount +Reoviridae +reovirus +Reptantia +reptile +Reptilia +Reticulitermes +reticulum +retriever +retrovirus +Reynard +Rhabdoviridae +rhabdovirus +Rhagoletis +rhea +Rheidae +Rheiformes +rhesus +Rhincodon +Rhincodontidae +Rhinobatidae +rhinoceros +Rhinocerotidae +Rhinolophidae +Rhinonicteris +Rhinoptera +Rhinotermitidae +rhinovirus +Rhizobiaceae +Rhizobium +rhizopod +Rhizopoda +Rhodophyceae +Rhodophyta +Rhodymenia +Rhodymeniaceae +Rhyacotriton +Rhynchocephalia +Rhynchoelaps +ribbonfish +Richmondena +rickettsia +Rickettsiaceae +Rickettsiales +ridgeling +ridley +riflebird +ringdove +ringhals +ringlet +ringtail +Riparia +Rissa +rivulus +roach +roadkill +roadrunner +roan +robalo +robin +Roccus +rockfish +rockweed +rod +rodent +Rodentia +Rodolia +roe +roebuck +roller +rook +rorqual +rosefish +rotavirus +rotifer +Rotifera +Rottweiler +royal +rudapithecus +rudd +rudderfish +ruff +rumen +ruminant +Ruminantia +runner +Rupicapra +Rupicola +Rutilus +Rynchopidae +Rynchops +Rypticus +sable +saddle +saddlebill +sagitta +Sagittariidae +Sagittarius +saiga +sailfish +sailor's-choice +Saimiri +saki +salamander +Salamandra +Salamandridae +Salientia +Salmo +salmon +salmonella +salmonid +Salmonidae +salp +Salpidae +Salpinctes +Saluki +Salvelinus +sambar +Samia +Samoyed +sanderling +sandfish +sandgrouse +sandpiper +sapsucker +Sarcocystis +Sarcodina +sarcodinian +Sarcophaga +Sarcophilus +Sarcoptes +Sarcoptidae +Sarcorhamphus +Sarcosporidia +sarcosporidian +Sarda +Sardina +sardine +Sardinops +sassaby +Saturnia +saturniid +Saturniidae +Satyridae +Sauria +saurian +Saurischia +saurischian +Sauromalus +sauropod +Sauropoda +Sauropodomorpha +Sauropterygia +Saurosuchus +saury +sawfish +sawfly +sawyer +Saxicola +Sayornis +scad +scale +scallop +Scandentia +Scaphiopus +scaphopod +Scaphopoda +scapular +scarab +Scarabaeidae +Scardinius +Scaridae +Scartella +scaup +scavenger +Sceliphron +Sceloglaux +Sceloporus +schipperke +Schistosoma +Schistosomatidae +schistosome +Schizomycetes +Schizophyta +Schizopoda +schnauzer +schoolmaster +Sciaena +Sciaenidae +Sciaenops +Sciaridae +Scincella +Scincidae +Scincus +scissortail +Sciuridae +Sciuromorpha +Sciurus +sclerite +Scleropages +Scleroparei +Scolopacidae +Scolopax +Scolytidae +Scolytus +Scomber +Scomberesocidae +Scomberesox +Scomberomorus +Scombridae +scombroid +Scombroidea +Scophthalmus +Scorpaena +scorpaenid +Scorpaenidae +scorpaenoid +Scorpaenoidea +scorpion +scorpionfish +Scorpionida +scoter +screamer +scrod +scrubbird +sculpin +scup +scut +scute +Scutigera +Scutigerella +Scutigeridae +Scyliorhinidae +Scyphozoa +scyphozoan +seabird +seagrass +seahorse +seal +searcher +seashell +seasnail +seaweed +Sebastodes +Secretariat +Seismosaurus +Seiurus +Selar +Selenarctos +Selene +Sennenhunde +Sepia +Sepiidae +serin +Serinus +Seriola +Seriphus +serotine +serow +Serpentes +Serranidae +Serranus +Serrasalmus +Sertularia +sertularian +serval +seta +Setophaga +setter +shad +shanny +shark +sharksucker +shearwater +sheep +sheepshead +sheep-tick +sheldrake +shelduck +shell +shigella +Shih-Tzu +shiner +shipworm +shire +shoebill +shorebird +shoveler +shovelhead +shrew +shrike +shrimp +shrimpfish +Sialia +Sialidae +Sialis +siamang +sidewinder +sierra +Sigmodon +sild +silkworm +Sillaginidae +Sillago +silurid +Siluridae +Siluriformes +Silurus +silverback +silverfish +silversides +silverspot +Silvia +simian +Simuliidae +Simulium +Sinanthropus +Sinornis +siphon +Siphonaptera +Siphonophora +siphonophore +Sipuncula +sire +siren +Sirenia +Sirenidae +siskin +Sistrurus +Sisyridae +Sitophylus +Sitotroga +Sitta +Sittidae +Sivapithecus +skate +skimmer +skink +skipjack +skua +skunk +skylark +sleeper +slider +sloth +slug +smallmouth +smelt +smew +Smiledon +smoothhound +snail +snailfish +snake +snakebird +snakeblenny +snakefly +snapper +snipe +snipefish +snook +snout +soapfish +sockeye +solan +soldier +soldierfish +sole +Solea +Soleidae +Solenichthyes +Solenidae +solenogaster +Solenogastres +Solenopsis +solitaire +Somateria +songbird +Sonora +Sorex +Soricidae +sorrel +sow +spadefish +spadefoot +Spalacidae +Spalax +spaniel +sparid +Sparidae +sparling +sparrow +spat +Spatangoida +spawn +spawner +spearfish +Sphecidae +Sphecius +Sphecoidea +Sphecotheres +Spheniscidae +Sphenisciformes +Spheniscus +Sphenodon +Sphingidae +Sphyraena +Sphyraenidae +Sphyrapicus +Sphyrna +Sphyrnidae +spider +Spilogale +spine +Spinus +Spirillaceae +spirillum +Spirochaeta +Spirochaetaceae +Spirochaetales +spirochete +spirogyra +spirula +Spirulidae +spitz +Spizella +Spodoptera +sponge +spongefly +spoonbill +Sporozoa +sporozoan +sporozoite +spouter +springbok +springer +Spyeria +squab +Squalidae +Squalus +squama +Squamata +squaretail +Squatina +Squatinidae +squid +squilla +Squillidae +squirrel +squirrelfish +stablemate +stag +staghound +stalking-horse +stallion +Staphylinidae +staphylococcus +starfish +stargazer +starling +staurikosaur +stayer +Steatornis +Steatornithidae +steed +steenbok +steeplechaser +Steganopus +Stegocephalia +stegosaur +Stenopelmatidae +Stenopelmatus +stenopterygius +Stenotomus +stentor +stepper +Stercorariidae +Stercorarius +Stereospondyli +Sterna +Sterninae +Sternotherus +Stichaeidae +stickleback +sticktight +Stictomys +Stictopelia +stifle +stilt +stinger +stingray +stirk +Stizidae +Stizostedion +stoat +stocker +stomatopod +Stomatopoda +stonechat +stonefish +stonefly +stonewort +Storeria +stork +strawworm +stray +Strepera +Strepsirhini +streptobacillus +streptococcus +streptomyces +Streptomycetaceae +Streptopelia +Strigidae +Strigiformes +Strix +Stromateidae +Strombidae +Strombus +Struthio +struthiomimus +Struthionidae +Struthioniformes +Strymon +stud +stunt +sturgeon +Sturnella +Sturnidae +Sturnus +style +stylet +styracosaur +sucker +suckling +Suidae +Sula +Sulidae +sunfish +superbug +surfbird +surfperch +surgeonfish +Suricata +suricate +Surnia +survivor +Sus +suslik +swallow +swan +sweeper +swift +swiftlet +swimmeret +swine +swordfish +swordtail +Sylviidae +Sylviinae +Sylvilagus +Symphalangus +Symphyla +Synagrops +Synanceja +synapsid +Synapsida +Synaptomys +Synentognathi +Synercus +Syngnathidae +Syngnathus +Synodontidae +syrinx +Syrrhaptes +Tabanidae +tabby +Tachinidae +Tachyglossidae +Tachyglossus +Tachypleus +Tadarida +Tadorna +tadpole +taenia +Taeniidae +taguan +tail +tailorbird +taipan +takin +talapoin +talon +Talpidae +tamandua +tamarau +tamarin +Tamias +Tamiasciurus +tanager +tang +Tantilla +tapeworm +tapir +Tapiridae +Tapirus +tarantula +Tardigrada +tardigrade +Taricha +tarpan +tarpon +tarsier +Tarsiidae +Tarsioidea +Tarsius +tatouay +tattler +Taurotragus +tautog +Tautoga +Tautogolabrus +Taxidea +Tayassu +Tayassuidae +tayra +teal +teg +Teiidae +teju +Teleostei +Telosporidia +Temnospondyli +tench +Tenebrionidae +tenrec +Tenrecidae +tentacle +Tentaculata +Tenthredinidae +Terebella +Terebellidae +Teredinidae +teredo +Termes +termite +Termitidae +tern +Terrapene +terrapin +terrier +test +Testacea +testacean +Testudinidae +Testudo +tetra +Tetragonurus +tetrahymena +Tetranychidae +Tetrao +Tetraodontidae +Tetraonidae +tetrapod +Tetrapturus +Tettigoniidae +Thalarctos +Thalassoma +Thaliacea +Thamnophilus +Thamnophis +theca +thecodont +Thecodontia +Theraphosidae +therapsid +Therapsida +Theridiidae +thermoacidophile +Thermobia +theropod +Theropoda +thickhead +thiobacillus +thiobacteria +Thiobacteriaceae +Thomomys +thorax +thornbill +thoroughbred +thrasher +Thraupidae +threadfin +threadfish +thresher +Threskiornis +Threskiornithidae +Thripidae +thrips +throat +thrush +Thryothorus +Thunnus +thylacine +Thylacinus +Thylogale +Thyreophora +thysanopter +Thysanoptera +Thysanura +Tibicen +Tichodroma +tick +tiercel +tiger +tiglon +tigress +Tilapia +tilefish +Timalia +Timaliidae +timucu +Tinamidae +Tinamiformes +tinamou +Tinca +Tinea +tineid +Tineidae +tineoid +Tineoidea +Tineola +Tingidae +Tipulidae +titanosaur +Titanosauridae +Titanosaurus +titi +titmouse +toadfish +Todidae +Todus +tody +Togaviridae +Tolypeutes +tom +Tomistoma +tomtate +tonguefish +tooth +topknot +topminnow +Torpedinidae +Torpediniformes +tortoise +tortoiseshell +tortricid +Tortricidae +toucan +toucanet +touraco +towhee +toxicognath +Toxostoma +Toxotes +Toxotidae +Trachinotus +Trachipteridae +Trachipterus +trachodon +Trachurus +Tragelaphus +tragopan +Tragulidae +Tragulus +treehopper +Trematoda +trepang +treponema +Treponemataceae +Triaenodon +Triakidae +Trialeurodes +Triatoma +Tribolium +Tribonema +Tribonemaceae +triceratops +Trichechidae +Trichechus +trichina +Trichiuridae +trichodesmium +Trichodontidae +Trichoglossus +trichomonad +Trichophaga +Trichoptera +Trichosurus +Trichys +Tridacna +Tridacnidae +Triga +triggerfish +Triglidae +Triglinae +trilobite +Trimorphodon +Trinectes +Tringa +Trionychidae +Trionyx +Triopidae +Triops +tripletail +triton +Triturus +Trochilidae +Trogium +Troglodytes +Troglodytidae +trogon +Trogonidae +Trogoniformes +Trombicula +trombiculid +Trombiculidae +trombidiid +Trombidiidae +trophoblast +trophozoite +Tropidoclonion +trotter +trout +trumpeter +trumpetfish +Trypetidae +tuatara +Tubulidentata +tuft +tumblebug +tuna +Tunga +tunicate +Tupaia +Tupaiidae +Tupinambis +Turbellaria +turbot +Turdidae +Turdinae +Turdus +turkey +Turnicidae +Turnix +turnstone +Tursiops +turtle +turtledove +tusk +tusker +tussah +twitterer +Tylenchidae +Tylenchus +Tympanuchus +Typhlopidae +Tyranni +tyrannid +Tyrannidae +tyrannosaur +Tyrannus +Tyto +Tytonidae +uakari +Uca +udder +Uintatheriidae +Uintatherium +Ulva +Ulvaceae +Ulvales +Ulvophyceae +Uma +Umbrina +undercoat +underpart +underwing +Unguiculata +unguiculate +Ungulata +ungulate +Unio +Unionidae +Upupa +Upupidae +Uranoscopidae +Uria +urial +urochord +Urochordata +Urocyon +urodele +Urodella +Urophycis +Uropsilus +uropygium +Urosaurus +Ursidae +Ursus +Uta +utahraptor +valve +vane +Vanellus +Vanessa +vaquita +Varanidae +Varanus +varmint +vector +vedalia +veery +vein +velociraptor +Veneridae +vent +Venus +verdin +vermin +Vertebrata +vertebrate +vervet +vesiculovirus +Vespa +Vespertilio +Vespertilionidae +vespid +Vespidae +Vespula +vibrio +viceroy +Vicugna +vicuna +Vidua +villus +vinegarroon +viper +Vipera +Viperidae +vireo +Vireonidae +virion +viroid +virus +viscacha +Viverra +Viverricula +Viverridae +viverrine +vixen +vizsla +vole +Volvocaceae +Volvocales +Volvox +Vombatidae +vorticella +Vulpes +Vultur +vulture +wagtail +wahoo +wallaby +walleye +walrus +wapiti +warble +warbler +warhorse +warrigal +warthog +wasp +watchdog +waterbuck +waterdog +waterfowl +waxwing +weakfish +weasel +weaver +web +webfoot +webworm +weevil +Weimaraner +weka +Welsh +wether +whale +wheatear +wheatworm +whelk +whiff +whinchat +whippet +whippoorwill +whip-scorpion +whip-snake +whiptail +Whirlaway +whisker +whitebait +whitefish +whitefly +whiting +whooper +whydah +widgeon +wiggler +wildcat +willet +windowpane +wing +wirehair +wireworm +wisent +wishbone +withers +wolf +wolffish +wolfhound +wolverine +wombat +woodborer +woodcock +wood-frog +woodhewer +woodlouse +woodpecker +woodworm +wool +worker +workhorse +world +worm +wrack +wrasse +wren +wren-tit +wrymouth +wryneck +xanthomonad +Xanthomonas +Xanthophyceae +Xantusiidae +Xenarthra +Xenicidae +Xenicus +Xenopodidae +Xenopus +Xenorhyncus +Xenosauridae +Xenosaurus +Xerobates +Xiphias +Xiphiidae +Xiphosura +Xylocopa +Xyphophorus +yak +yearling +yellowfin +yellowhammer +yellowlegs +yellowtail +yellowthroat +yolk +young +Zaglossus +Zalophus +Zapodidae +Zapus +zebra +zebu +Zeidae +Zenaidura +Zeomorphi +Zeus +Zinjanthropus +Ziphiidae +Zoarces +Zoarcidae +Zonotrichia +zooid +Zoomastigina +zoomastigote +zoophyte +zooplankton +zoril +Zygnema +Zygnemataceae +Zygnematales +Zygoptera diff --git a/vendor/github.com/schollz/cowyo/static/text/howmany.py b/vendor/github.com/schollz/cowyo/static/text/howmany.py new file mode 100755 index 0000000..713774e --- /dev/null +++ b/vendor/github.com/schollz/cowyo/static/text/howmany.py @@ -0,0 +1,25 @@ +adjectives = {} +with open('adjectives','r') as f: + for line in f: + word = line.strip().lower() + if word[0] not in adjectives: + adjectives[word[0]] = [] + adjectives[word[0]].append(word) + +print(len(adjectives.keys())) + +animals = {} +for aword in open('animals','r').read().split(','): + word = aword.strip().lower() + if word[0] not in animals: + animals[word[0]] = [] + animals[word[0]].append(word) + +print(len(animals)) + +i = 0 +for key in adjectives.keys(): + if key in animals and key in adjectives: + i = i + len(adjectives[key])*len(animals[key]) + +print(i) diff --git a/vendor/github.com/schollz/cowyo/static/text/robots.txt b/vendor/github.com/schollz/cowyo/static/text/robots.txt new file mode 100644 index 0000000..e0c6441 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/static/text/robots.txt @@ -0,0 +1,4 @@ +User-agent: * +Disallow: / +Allow: /Help/view +Allow: /sitemap.xml diff --git a/vendor/github.com/schollz/cowyo/static/text/sitemap.xml b/vendor/github.com/schollz/cowyo/static/text/sitemap.xml new file mode 100755 index 0000000..726c9c7 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/static/text/sitemap.xml @@ -0,0 +1,9 @@ + + + + https://awwkoala.com/Help/view + 2016-03-18 + monthly + 1.0 + + diff --git a/vendor/github.com/schollz/cowyo/templates/index.tmpl b/vendor/github.com/schollz/cowyo/templates/index.tmpl new file mode 100755 index 0000000..38ebbe2 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/templates/index.tmpl @@ -0,0 +1,621 @@ + + + + + + + + + + + + + + + + + + + + + + + + +{{ if and .CustomCSS .ReadPage }} + +{{ else }} + + + + + + + + + +{{ end }} + {{ .Page }} + + + + + + + + + + + + +
    + + {{ if .ReadPage }} +
    +
    + {{ .RenderedPage }} +
    +
    + {{ else }} + + + + + +
    + {{ if .EditPage }}
    {{ end }} +
    + {{ if .DontKnowPage }}
    {{ .Route }} not understood!
    {{ end }} + {{ if .ViewPage }}{{ .RenderedPage }} + {{ end }} + {{ if .HistoryPage }} +

    History

    +
      + {{range $i, $e := .Versions}} +
    • + View  List  Raw   + {{index $.VersionsText $i}} ({{if lt (index $.VersionsChangeSums $i) 0}}{{else}}+{{end}}{{index $.VersionsChangeSums $i}})
    • + {{end}} +
    + {{ end }} + {{ if .ListPage }} + {{ range $index, $element := .ListItems }} + {{ $element }} + {{ end }} + {{ end }} + + {{ if .DirectoryPage }} +
    + + + + + + + {{range $i, $e := .FileNames}} + + + + + + + {{ end }} +
    DocumentCurrent sizeNum EditsLast Edited
    {{ $e }}{{index $.FileSizes $i}}{{index $.FileNumChanges $i}}{{index $.FileLastEdited $i}}
    + {{end}} + + +{{ end }} + + + + + + + + + diff --git a/vendor/github.com/schollz/cowyo/utils.go b/vendor/github.com/schollz/cowyo/utils.go new file mode 100644 index 0000000..7a38ca7 --- /dev/null +++ b/vendor/github.com/schollz/cowyo/utils.go @@ -0,0 +1,221 @@ +package main + +import ( + "encoding/base32" + "encoding/binary" + "encoding/hex" + "math/rand" + "net" + "os" + "strings" + "time" + + "github.com/jcelliott/lumber" + "github.com/microcosm-cc/bluemonday" + "github.com/russross/blackfriday" + "github.com/shurcooL/github_flavored_markdown" + "golang.org/x/crypto/bcrypt" +) + +var animals []string +var adjectives []string +var aboutPageText string + +var log *lumber.ConsoleLogger + +func init() { + rand.Seed(time.Now().Unix()) + animalsText, _ := Asset("static/text/animals") + animals = strings.Split(string(animalsText), ",") + adjectivesText, _ := Asset("static/text/adjectives") + adjectives = strings.Split(string(adjectivesText), "\n") + log = lumber.NewConsoleLogger(lumber.TRACE) +} + +func turnOffDebugger() { + log = lumber.NewConsoleLogger(lumber.WARN) +} + +func randomAnimal() string { + return strings.Replace(strings.Title(animals[rand.Intn(len(animals)-1)]), " ", "", -1) +} + +func randomAdjective() string { + return strings.Replace(strings.Title(adjectives[rand.Intn(len(adjectives)-1)]), " ", "", -1) +} + +func randomAlliterateCombo() (combo string) { + combo = "" + // generate random alliteration thats not been used + for { + animal := randomAnimal() + adjective := randomAdjective() + if animal[0] == adjective[0] && len(animal)+len(adjective) < 18 { //&& stringInSlice(strings.ToLower(adjective+animal), takenNames) == false { + combo = adjective + animal + break + } + } + return +} + +// is there a string in a slice? +func stringInSlice(s string, strings []string) bool { + for _, k := range strings { + if s == k { + return true + } + } + return false +} + +// itob returns an 8-byte big endian representation of v. +func itob(v int) []byte { + b := make([]byte, 8) + binary.BigEndian.PutUint64(b, uint64(v)) + return b +} + +func contentType(filename string) string { + switch { + case strings.Contains(filename, ".css"): + return "text/css" + case strings.Contains(filename, ".jpg"): + return "image/jpeg" + case strings.Contains(filename, ".png"): + return "image/png" + case strings.Contains(filename, ".js"): + return "application/javascript" + case strings.Contains(filename, ".xml"): + return "application/xml" + } + return "text/html" +} + +func timeTrack(start time.Time, name string) { + elapsed := time.Since(start) + log.Debug("%s took %s", name, elapsed) +} + +var src = rand.NewSource(time.Now().UnixNano()) + +const letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" +const ( + letterIdxBits = 6 // 6 bits to represent a letter index + letterIdxMask = 1<= 0; { + if remain == 0 { + cache, remain = src.Int63(), letterIdxMax + } + if idx := int(cache & letterIdxMask); idx < len(letterBytes) { + b[i] = letterBytes[idx] + i-- + } + cache >>= letterIdxBits + remain-- + } + + return string(b) +} + +// GetLocalIP returns the local ip address +func GetLocalIP() string { + addrs, err := net.InterfaceAddrs() + if err != nil { + return "" + } + bestIP := "" + for _, address := range addrs { + // check the address type and if it is not a loopback the display it + if ipnet, ok := address.(*net.IPNet); ok && !ipnet.IP.IsLoopback() { + if ipnet.IP.To4() != nil { + return ipnet.IP.String() + } + } + } + return bestIP +} + +// HashPassword generates a bcrypt hash of the password using work factor 14. +// https://github.com/gtank/cryptopasta/blob/master/hash.go +func HashPassword(password string) string { + hash, _ := bcrypt.GenerateFromPassword([]byte(password), 14) + return hex.EncodeToString(hash) +} + +// CheckPassword securely compares a bcrypt hashed password with its possible +// plaintext equivalent. Returns nil on success, or an error on failure. +// https://github.com/gtank/cryptopasta/blob/master/hash.go +func CheckPasswordHash(password, hashedString string) error { + hash, err := hex.DecodeString(hashedString) + if err != nil { + return err + } + return bcrypt.CompareHashAndPassword(hash, []byte(password)) +} + +// exists returns whether the given file or directory exists or not +func exists(path string) bool { + _, err := os.Stat(path) + if err == nil { + return true + } + if os.IsNotExist(err) { + return false + } + return true +} + +func MarkdownToHtml(s string) string { + unsafe := blackfriday.MarkdownCommon([]byte(s)) + pClean := bluemonday.UGCPolicy() + pClean.AllowElements("img") + pClean.AllowAttrs("alt").OnElements("img") + pClean.AllowAttrs("src").OnElements("img") + pClean.AllowAttrs("class").OnElements("a") + pClean.AllowAttrs("href").OnElements("a") + pClean.AllowAttrs("id").OnElements("a") + pClean.AllowDataURIImages() + html := pClean.SanitizeBytes(unsafe) + return string(html) +} + +func GithubMarkdownToHTML(s string) string { + return string(github_flavored_markdown.Markdown([]byte(s))) +} +func encodeToBase32(s string) string { + return base32.StdEncoding.EncodeToString([]byte(s)) +} + +func decodeFromBase32(s string) (s2 string, err error) { + bString, err := base32.StdEncoding.DecodeString(s) + s2 = string(bString) + return +} + +func reverseSliceInt64(s []int64) []int64 { + for i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 { + s[i], s[j] = s[j], s[i] + } + return s +} + +func reverseSliceString(s []string) []string { + for i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 { + s[i], s[j] = s[j], s[i] + } + return s +} + +func reverseSliceInt(s []int) []int { + for i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 { + s[i], s[j] = s[j], s[i] + } + return s +} diff --git a/vendor/github.com/schollz/cowyo/utils_test.go b/vendor/github.com/schollz/cowyo/utils_test.go new file mode 100755 index 0000000..29dc9aa --- /dev/null +++ b/vendor/github.com/schollz/cowyo/utils_test.go @@ -0,0 +1,34 @@ +package main + +import ( + "testing" +) + +func BenchmarkAlliterativeAnimal(b *testing.B) { + for i := 0; i < b.N; i++ { + randomAlliterateCombo() + } +} + +func TestReverseList(t *testing.T) { + s := []int64{1, 10, 2, 20} + if reverseSliceInt64(s)[0] != 20 { + t.Errorf("Could not reverse: %v", s) + } + s2 := []string{"a", "b", "d", "c"} + if reverseSliceString(s2)[0] != "c" { + t.Errorf("Could not reverse: %v", s2) + } +} +func TestHashing(t *testing.T) { + p := HashPassword("1234") + log.Debug(p) + err := CheckPasswordHash("1234", p) + if err != nil { + t.Errorf("Should be correct password") + } + err = CheckPasswordHash("1234lkjklj", p) + if err == nil { + t.Errorf("Should NOT be correct password") + } +}