From dcc938bc09eb2b862a64ec9de6937bf63de2dbd5 Mon Sep 17 00:00:00 2001 From: HyptexPvP <205070294+OpenAILeadDev@users.noreply.github.com> Date: Wed, 26 Mar 2025 14:37:43 -0400 Subject: [PATCH] Performance upgrade --- .github/ISSUE_TEMPLATE/bug_report.md | 23 - .github/ISSUE_TEMPLATE/feature_request.md | 20 - .github/workflows/stale.yml | 30 - .gitignore | 172 ----- LICENSE-CODE | 21 - LICENSE-MODEL | 91 --- README.md | 356 ---------- README_WEIGHTS.md | 94 --- figures/benchmark.png | Bin 183581 -> 0 bytes figures/niah.png | Bin 108471 -> 0 bytes inference/configs/config_16B.json | 19 - inference/configs/config_236B.json | 20 - inference/configs/config_671B.json | 22 - inference/convert.py | 96 --- inference/fp8_cast_bf16.py | 112 --- inference/generate.py | 185 ----- inference/kernel.py | 191 ----- inference/model.py | 804 ---------------------- inference/requirements.txt | 4 - 19 files changed, 2260 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md delete mode 100644 .github/workflows/stale.yml delete mode 100644 .gitignore delete mode 100644 LICENSE-CODE delete mode 100644 LICENSE-MODEL delete mode 100644 README.md delete mode 100644 README_WEIGHTS.md delete mode 100644 figures/benchmark.png delete mode 100644 figures/niah.png delete mode 100644 inference/configs/config_16B.json delete mode 100644 inference/configs/config_236B.json delete mode 100644 inference/configs/config_671B.json delete mode 100644 inference/convert.py delete mode 100644 inference/fp8_cast_bf16.py delete mode 100644 inference/generate.py delete mode 100644 inference/kernel.py delete mode 100644 inference/model.py delete mode 100644 inference/requirements.txt diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 92211ea..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "[BUG]" -labels: '' -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior. - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index bbcbbe7..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: '' -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml deleted file mode 100644 index 22706e8..0000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: "Mark and close stale issues" -on: - workflow_dispatch: - schedule: - - cron: "0 0 * * *" - -jobs: - stale: - if: ${{ github.repository == 'deepseek-ai/DeepSeek-V3' }} - runs-on: ubuntu-latest - steps: - - name: "Mark and close stale issues" - uses: actions/stale@v9 - with: - days-before-issue-stale: 30 - days-before-issue-close: 14 - stale-issue-label: "stale" - close-issue-label: "closed-as-stale" - exempt-issue-labels: | - pinned - security - stale-issue-message: > - This issue has been automatically marked as stale because it has not had - recent activity. It will be closed if no further activity occurs. If you - believe this issue is still relevant, please leave a comment to keep it open. - Thank you for your contributions! - close-issue-message: false - days-before-pr-stale: -1 - days-before-pr-close: -1 - repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 68f1d27..0000000 --- a/.gitignore +++ /dev/null @@ -1,172 +0,0 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# C extensions -*.so - -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.nox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -*.py,cover -.hypothesis/ -.pytest_cache/ -cover/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py -db.sqlite3 -db.sqlite3-journal - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -.pybuilder/ -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# IPython -profile_default/ -ipython_config.py - -# pyenv -# For a library or package, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# .python-version - -# pipenv -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. -# However, in case of collaboration, if having platform-specific dependencies or dependencies -# having no cross-platform support, pipenv may install dependencies that don't work, or not -# install all needed dependencies. -#Pipfile.lock - -# UV -# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -#uv.lock - -# poetry -# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control -#poetry.lock - -# pdm -# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. -#pdm.lock -# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it -# in version control. -# https://pdm.fming.dev/latest/usage/project/#working-with-version-control -.pdm.toml -.pdm-python -.pdm-build/ - -# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm -__pypackages__/ - -# Celery stuff -celerybeat-schedule -celerybeat.pid - -# SageMath parsed files -*.sage.py - -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ -.dmypy.json -dmypy.json - -# Pyre type checker -.pyre/ - -# pytype static type analyzer -.pytype/ - -# Cython debug symbols -cython_debug/ - -# PyCharm -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore -# and can be added to the global gitignore or merged into this file. For a more nuclear -# option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ - -.vscode/* - -.DS_Store \ No newline at end of file diff --git a/LICENSE-CODE b/LICENSE-CODE deleted file mode 100644 index d42fae9..0000000 --- a/LICENSE-CODE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2023 DeepSeek - -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. \ No newline at end of file diff --git a/LICENSE-MODEL b/LICENSE-MODEL deleted file mode 100644 index ac09290..0000000 --- a/LICENSE-MODEL +++ /dev/null @@ -1,91 +0,0 @@ -DEEPSEEK LICENSE AGREEMENT - -Version 1.0, 23 October 2023 - -Copyright (c) 2023 DeepSeek - -Section I: PREAMBLE - -Large generative models are being widely adopted and used, and have the potential to transform the way individuals conceive and benefit from AI or ML technologies. - -Notwithstanding the current and potential benefits that these artifacts can bring to society at large, there are also concerns about potential misuses of them, either due to their technical limitations or ethical considerations. - -In short, this license strives for both the open and responsible downstream use of the accompanying model. When it comes to the open character, we took inspiration from open source permissive licenses regarding the grant of IP rights. Referring to the downstream responsible use, we added use-based restrictions not permitting the use of the model in very specific scenarios, in order for the licensor to be able to enforce the license in case potential misuses of the Model may occur. At the same time, we strive to promote open and responsible research on generative models for content generation. - -Even though downstream derivative versions of the model could be released under different licensing terms, the latter will always have to include - at minimum - the same use-based restrictions as the ones in the original license (this license). We believe in the intersection between open and responsible AI development; thus, this agreement aims to strike a balance between both in order to enable responsible open-science in the field of AI. - -This License governs the use of the model (and its derivatives) and is informed by the model card associated with the model. - -NOW THEREFORE, You and DeepSeek agree as follows: - -1. Definitions -"License" means the terms and conditions for use, reproduction, and Distribution as defined in this document. -"Data" means a collection of information and/or content extracted from the dataset used with the Model, including to train, pretrain, or otherwise evaluate the Model. The Data is not licensed under this License. -"Output" means the results of operating a Model as embodied in informational content resulting therefrom. -"Model" means any accompanying machine-learning based assemblies (including checkpoints), consisting of learnt weights, parameters (including optimizer states), corresponding to the model architecture as embodied in the Complementary Material, that have been trained or tuned, in whole or in part on the Data, using the Complementary Material. -"Derivatives of the Model" means all modifications to the Model, works based on the Model, or any other model which is created or initialized by transfer of patterns of the weights, parameters, activations or output of the Model, to the other model, in order to cause the other model to perform similarly to the Model, including - but not limited to - distillation methods entailing the use of intermediate data representations or methods based on the generation of synthetic data by the Model for training the other model. -"Complementary Material" means the accompanying source code and scripts used to define, run, load, benchmark or evaluate the Model, and used to prepare data for training or evaluation, if any. This includes any accompanying documentation, tutorials, examples, etc, if any. -"Distribution" means any transmission, reproduction, publication or other sharing of the Model or Derivatives of the Model to a third party, including providing the Model as a hosted service made available by electronic or other remote means - e.g. API-based or web access. -"DeepSeek" (or "we") means Beijing DeepSeek Artificial Intelligence Fundamental Technology Research Co., Ltd., Hangzhou DeepSeek Artificial Intelligence Fundamental Technology Research Co., Ltd. and/or any of their affiliates. -"You" (or "Your") means an individual or Legal Entity exercising permissions granted by this License and/or making use of the Model for whichever purpose and in any field of use, including usage of the Model in an end-use application - e.g. chatbot, translator, etc. -"Third Parties" means individuals or legal entities that are not under common control with DeepSeek or You. - -Section II: INTELLECTUAL PROPERTY RIGHTS - -Both copyright and patent grants apply to the Model, Derivatives of the Model and Complementary Material. The Model and Derivatives of the Model are subject to additional terms as described in Section III. - -2. Grant of Copyright License. Subject to the terms and conditions of this License, DeepSeek hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare, publicly display, publicly perform, sublicense, and distribute the Complementary Material, the Model, and Derivatives of the Model. - -3. Grant of Patent License. Subject to the terms and conditions of this License and where and as applicable, DeepSeek hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this paragraph) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Model and the Complementary Material, where such license applies only to those patent claims licensable by DeepSeek that are necessarily infringed by its contribution(s). If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Model and/or Complementary Material constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for the Model and/or works shall terminate as of the date such litigation is asserted or filed. - - -Section III: CONDITIONS OF USAGE, DISTRIBUTION AND REDISTRIBUTION - -4. Distribution and Redistribution. You may host for Third Party remote access purposes (e.g. software-as-a-service), reproduce and distribute copies of the Model or Derivatives of the Model thereof in any medium, with or without modifications, provided that You meet the following conditions: -a. Use-based restrictions as referenced in paragraph 5 MUST be included as an enforceable provision by You in any type of legal agreement (e.g. a license) governing the use and/or distribution of the Model or Derivatives of the Model, and You shall give notice to subsequent users You Distribute to, that the Model or Derivatives of the Model are subject to paragraph 5. This provision does not apply to the use of Complementary Material. -b. You must give any Third Party recipients of the Model or Derivatives of the Model a copy of this License; -c. You must cause any modified files to carry prominent notices stating that You changed the files; -d. You must retain all copyright, patent, trademark, and attribution notices excluding those notices that do not pertain to any part of the Model, Derivatives of the Model. -e. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions - respecting paragraph 4.a. – for use, reproduction, or Distribution of Your modifications, or for any such Derivatives of the Model as a whole, provided Your use, reproduction, and Distribution of the Model otherwise complies with the conditions stated in this License. - -5. Use-based restrictions. The restrictions set forth in Attachment A are considered Use-based restrictions. Therefore You cannot use the Model and the Derivatives of the Model for the specified restricted uses. You may use the Model subject to this License, including only for lawful purposes and in accordance with the License. Use may include creating any content with, finetuning, updating, running, training, evaluating and/or reparametrizing the Model. You shall require all of Your users who use the Model or a Derivative of the Model to comply with the terms of this paragraph (paragraph 5). - -6. The Output You Generate. Except as set forth herein, DeepSeek claims no rights in the Output You generate using the Model. You are accountable for the Output you generate and its subsequent uses. No use of the output can contravene any provision as stated in the License. - -Section IV: OTHER PROVISIONS - -7. Updates and Runtime Restrictions. To the maximum extent permitted by law, DeepSeek reserves the right to restrict (remotely or otherwise) usage of the Model in violation of this License. - -8. Trademarks and related. Nothing in this License permits You to make use of DeepSeek’ trademarks, trade names, logos or to otherwise suggest endorsement or misrepresent the relationship between the parties; and any rights not expressly granted herein are reserved by DeepSeek. - -9. Personal information, IP rights and related. This Model may contain personal information and works with IP rights. You commit to complying with applicable laws and regulations in the handling of personal information and the use of such works. Please note that DeepSeek's license granted to you to use the Model does not imply that you have obtained a legitimate basis for processing the related information or works. As an independent personal information processor and IP rights user, you need to ensure full compliance with relevant legal and regulatory requirements when handling personal information and works with IP rights that may be contained in the Model, and are willing to assume solely any risks and consequences that may arise from that. - -10. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, DeepSeek provides the Model and the Complementary Material on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Model, Derivatives of the Model, and the Complementary Material and assume any risks associated with Your exercise of permissions under this License. - -11. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall DeepSeek be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Model and the Complementary Material (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if DeepSeek has been advised of the possibility of such damages. - -12. Accepting Warranty or Additional Liability. While redistributing the Model, Derivatives of the Model and the Complementary Material thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of DeepSeek, and only if You agree to indemnify, defend, and hold DeepSeek harmless for any liability incurred by, or claims asserted against, DeepSeek by reason of your accepting any such warranty or additional liability. - -13. If any provision of this License is held to be invalid, illegal or unenforceable, the remaining provisions shall be unaffected thereby and remain valid as if such provision had not been set forth herein. - -14. Governing Law and Jurisdiction. This agreement will be governed and construed under PRC laws without regard to choice of law principles, and the UN Convention on Contracts for the International Sale of Goods does not apply to this agreement. The courts located in the domicile of Hangzhou DeepSeek Artificial Intelligence Fundamental Technology Research Co., Ltd. shall have exclusive jurisdiction of any dispute arising out of this agreement. - -END OF TERMS AND CONDITIONS - -Attachment A - -Use Restrictions - -You agree not to use the Model or Derivatives of the Model: - -- In any way that violates any applicable national or international law or regulation or infringes upon the lawful rights and interests of any third party; -- For military use in any way; -- For the purpose of exploiting, harming or attempting to exploit or harm minors in any way; -- To generate or disseminate verifiably false information and/or content with the purpose of harming others; -- To generate or disseminate inappropriate content subject to applicable regulatory requirements; -- To generate or disseminate personal identifiable information without due authorization or for unreasonable use; -- To defame, disparage or otherwise harass others; -- For fully automated decision making that adversely impacts an individual’s legal rights or otherwise creates or modifies a binding, enforceable obligation; -- For any use intended to or which has the effect of discriminating against or harming individuals or groups based on online or offline social behavior or known or predicted personal or personality characteristics; -- To exploit any of the vulnerabilities of a specific group of persons based on their age, social, physical or mental characteristics, in order to materially distort the behavior of a person pertaining to that group in a manner that causes or is likely to cause that person or another person physical or psychological harm; -- For any use intended to or which has the effect of discriminating against individuals or groups based on legally protected characteristics or categories. \ No newline at end of file diff --git a/README.md b/README.md deleted file mode 100644 index a67a28d..0000000 --- a/README.md +++ /dev/null @@ -1,356 +0,0 @@ - - - - -
-
-
-
-
WqkIQaw2@G+cJlB{+A$OFuRe5+bRQQImVwL9uoKS-BEC8R zN%V1~&8)+?=dxi^g-->Iw@CBrBpGks>q0pwI#xDZ#|`OG9wTE2E8JIp0PNUJixh`4 zG(Xq{vsvKet$Z53sLW#8A8zWW;_JLps21zN=TV%PRXcRb_snP=bz*lQ?d*)oxg`Ut zhA%Sk21(-7N?I$82!$lJAU4NcGdIw zI@>$U88zDWxHnhNcxz;v)dQu$5B9lTavR&22nc|`1b=E20Z8QYu(gf4PMYv zd~|(#G^3xp5IxnWI{UEA^!v0+-LpDF%yfRrfKGce2KOlc$uK@;B8HQtrYvnkD4X(h z=Cn1b6%5rdorf<@oy)w zq0}Q}xXrJi6EYetKrssRgTf>$)v!@j;ghO^RkZ_4&4Z6f2cG#jjrtmS6vl)>aF8S! z!mNX(1jT{v1*dDIyc~HPk?Gc`!(8^OP8I7gOLA)siATEcE!+K-+?lcc#(UX`WF91y z%YIOPt;Db?ujF SA%Cht&hfb5(2>OZg2~f^p=hoMCLut?j>7=1&qsB)LhS* 1Cs=av8^~1A;35Y0a0kH=i+P#`) zkTL+blrk!{={Y$NS4ASAPPMYvBrB G5zYG2*are`5Y?cxU5^8aJ`vG@2b+N;&qe=Rag*1_9cxe#7-WFAn&DPY zsf2ho6z264xnAc`V+P`ctoKU-((sMS*t1?^kA);+dxbv^Hy}lWYDDz6-3%Fb)f`x| z+Vk2vtrLNT=X{(Evt}9uVOK3Z_JJPh@N&{_^h{0ApW*uwDN~DPgmQ|VWcr4DoB@_V zI8?)W7WGrZGSWsGoN235SeFq_AGUmCosvtoMeFfzU+R)oqigVTCN(_Q0~je)+HRMY zJ!N^jeqSu 51vjhr!&o#Dbb?*E~HhO2>?4mY#m5ONwu*7_T^x zp3}-;4P=N0(c4Gc*(fL3$49f_CpvG{`19D` kEz{h zO`~mPmaIJbV5Q66`wB+d((&xtQ)E%1cT=E?`}_m!MMz4 Z3CkGf2v#N!$_cw_V zRU)}|L^KHGfBSS05giALBqPf)DSZ2J`K1&qfvenRGFk26Cei2Xx%8i!AA_)oN@k5s zlGe2xdRJO!uUhrYhe8?Me(e#jfkxrJjLXW>Akh6Ij8%%+1q+JwU(xZa`f7<_#5>+I z9FN#b560BKF$dZ0nT+ x`GXv!Rq|SAaWnWOK7bMeXTi%F3|kv6S7xI ;h)&^g0bN%%R8j*Ua9tgRf}P^#cfb zn8w_l&r~NiaG7P=kOEnxYw^HUB_`7}74#Ru&qnHW2q;XJO|{+(SFowkMJ$tJ257R9 zjA?j?f{YquJ`&Ly+C|&PlG0-9T~cGqlN^I+M7a{U)$9X)#ao&wO N~HGEjbkewZ|Yy~#L zIH)F$c)6`ut=WMC;bLDP@}+#UjpaP#SnxYw`h{@E4?1a6<;T`FwwUp}1k%)bvjM5- z4?epwc?S9uA2scbrkhCGj0SD`j`>&rk}J**1ZxzYXQxJ!5gpcTUVrx7CqieFc nw*gNxY1c^f%GC zDC_^R3Cg3^n3$J%BV`Zy@azL!?lhsIWQf;aB2f4k_AXhfxdz9DE$O#H#W}9EL2c zwDBv)1P9mnQU2e_E{NCD)DjHb&`7C{yKWPE^SbbUHN@hkWaN(*3waRo+lu?idVHH2 zw)uJ6F?+D*$u#&;Fvw2-pfX7Ic`5Y!I6|&M)E_CU8}g>&L77 ;S>Vx z=68~rYX38+XBX> Qn)uaVhFu(ms|ve$GD*{H;Y8VDZioP~=fz7sJn|O= z+=6;DNY_o7D3@#>3hob`T)|xxGA;k!bd>R#NLpXA)VWg9us#V10vjdL4`@hdMEz{_ zV-2 )I}8Py%gJ;soqkZuq-jS?d~vkk3LZw zXck9&wF)yO%6ZIO@U*W!z>EuaGY{PvZnjFh%#6z%Yza8D7>f$$$3b6}K_$Wt1WNI- zm){e{*r#&I&ef;CiZ{2J&K{V&$X%#Y-TIOBE9Lw2;qLGw*tW$Enyz=%p7VsuAyue1 zwuAChPL5C8M9^<;Fz%GKL R)0q)fX~&0uHIT-1QIoJ#(y>8Q1>RIT &7GN ztX};T2b)N%NPKe*J+?$LrPdt9coxbiF5P8<;nqW021J_(2aKT5nc>SASUmY9DuK+j zNxI3n{Gc>AFph|Y#_w+J1=AspM1N}$wL2{F;| f z_3js^y@?jkw#9Nzgf(?H8Yrp!&Zw)l7DXxJ?|kSKDtKmi6akIEW9 z2C<%9J>RZ7rSbtgfgULY@uCH-8DVi41KczkM`RAbd0hE6T7;_0T_Iw{lmjI`M)RdC zT%Nc-C6VIhHGeB%8OX3MdCTJiHwS%n@>JzBw%e`5YC)VD(2;4Zd@D0kC1|U3nG$op zZ*5}A-Z5X=XCff$cge*4HsU)1dNPC<7#GY~tK1^b$CJ76_qY7k<#61hXQdaPueT2| z1O1%1&3MQB_du=CB4xj^LbF4^9;?)tycl<|yal{IX$H5}6KO ` #RP)R)D|2sYGesYS=d1IY<5X6+5ixG9mwhDdNK@y$=koncVSyQGayIZbE8*)V zJr&U-7YLf9($!8 u@7?nMoWfdoenTA{#rkDEMQgY(6dr0(gICvx+ zOP;e|dw{kq?={J3;DENb28WEGqZGA1&JC8;m`(Q+iGlIL$&kWNQCQ}DF$FQI{UdPe z 3I<9Cj(%w@ zu0zkPV#4KbmwBC7KVY?GgxQOi501TzW=tBaeXgOm^WU5;2#@S*>#f&yM+Yb~duj$G zsw*k*@HxlOy_w-td2DEHWYCm&@bH=)!(cm-wlP;Qfw9hi5(f&LU}UeQf%8KkP9tj6 zz1;d&MmZi_%=IL}6z&O$wz$eh?%AW6HkpnDVPT rg#-)%`wZDRkh0LZ6%)- zwfeG{QfJ#9HD1@)TRkAvo;pQ?_ pX(=)^ z{D_YA%%5Wb=0rlR#XC~GO;nTPgBRBy4y_J_&;l9ays3nHsQVAA!I_*ESjOlG{k7>C zxWKg(o0-akGn@+py8XWhsPxiSeO6zE;On~Af(a l=GdeC@5l;l0Aa(QT{nVX*nL9u(j;M)lv0#Vm^D6 zY5^kOo&szBa{H8a@jUt)qS}I>6q1jsuG#2s(ME^*wPISTBSW9tOym{>dM80*wET5& zY)>4sG=6jh>oBrL-pXkxAoGh}t=Pz(%d#K9zlG4E3@D3RubWn zXuai%UDcq7Q`H=cd<94B)xnnb{0dPomPwRZAIsl<5M#|5t0~05uEICuo0SN_y(whO z$vxMt*lY*hr_jt^=0G-@uu-;gz0qbNwz^bX5Z77&*^4F)WHMqjsoGkx?;!BxOgFgF zp*@Jz_Is+^=f-yN>?_S>@=EVMbk6#UjxizGuH^3egVIzXrqW>Vo%}J;zX2vQt^+8r z%d2k|J+3;V7T+!Hh`+XbpRsV)N4-NI&lh _ra z 4l(p`IT?dR^Z4zpi%WpPyLDn4P 0LL;?Gb*Q{hb_j_U?g+COZRR#uDSMn}!(hx>jhx|&b!4m|xwIHb^- zqL$}-6urJ!0;tNP&2|fqk&pOA#sS2UFM!c#iUBHhO(!q^e*l8(4)G$;h_} VKE7OERC+7e{)s9K*)mB{=^Pr??}&K&nWVEp!mZ zm f9e^gaU+ErUSs0|4W>|{dcA2FhEnEI{49> zf0}Vz9v}pkyCnX%wfqNk{J$@Atpoaqy|uPXM%ScX^ki@TLSFQyPPT5WbRX33^Zz$O z^Z7eEAlV{SYrXO{H~M_A9Wku4)jfYAFd!Vicy#2HL#INCW40doZc6Pd55!~Ehmbtr zo|D1PenVzAkY+KxKsA7`ipM|$P@X}IT}hB!nH<>re`*2n=Z~hJHK_xBO8kuy7SoQX z mivGKH;bF0DPJ6 zIQnm_@}DALTBN@lA#@(L)~`|GjK3-3m?5WJ_QHbCI3K`Kg?)8N3hfK@n;+1kHJng! z|2pnd fM+S&{pW4o75cqR+j{pg z#kQp*`EaqJ4Anb^S7mw2h0MnRaCO_87Qd5m>|g5slPzQt@SBTymja7ZBy`420l1?- z#glo3w~9%ph?of6y7nh#KlJhJ7bzYvSGH`wG4|I7G4+szFP@D(5>dXgFMzT^qM+`k z^KYoO@!NCRAD*3X1>mI4zRE^@&&0Jxe}2w&1q{b)0WtOSd8$T#R-g_=8S%*0;Q4Vb zi{=y@GLmkl>lFoH8!h90SMn?`mKRo^$O$T`9nfC;>=|?9kGyyV7H_!+G07-XANQ1M z<1#7P!?#=Rz4ik@v_mv{6;f^VwiI)FxoKj6`ztLDf56xa4oazIZZzZk_KJs?!`uQs zfjEn18^BWR3w2|BbKSB&H40e&kx+2y+K69wSPa~@pL|urO94^UiZ4?c7nSD_tO@r# zzonN(icfd}j=r}ZwJin-#I4zws-!quQqL&^5K)f2*9Gn$HF<-TGXQZrtDJfE68@7E zLL!bG7zHq#-*4RcT((n374OshKN9$L=Wm|lvbUN>?R>^M<9G4%%FR7SnsPtj0TFQd zZE^)pTzqGJ+vU+UmGqQ9vR?{cI{-V|V6P2MXi_R&fo=otC3%#lSlL}*KK21|O;ydI ze{o3de{x81fL^Pr`{(0PD{uGu#JYMfeSM?uF>taCDB||}TI Mqbx{3>jEu4MOgt!-AU%ga-MfOoC-8wh#b=7X2c<_tKR@M z9D3`wMgBl1xB_5t$GQ|Ib>or8?$pcw;p{%12S}=7J6{bv5xkZtb^Q;@O@#+6EyueX zVVIHoitnElinP!vWvgOiX<+#L1M(j>{{M+g&bUX^o=~af@V*Kl z7fu2imwoM@od<2ViihGYhG;+osDoobyDzAto>bLY(^tniCReLi)HbE`GJfO!0v#>B z)Yj5v-}-*_sishXcw;iUzn&ORc)0vcHG4V$27fkDyq=c_ES@fWa^Jt1txPEAaxh}~ zO^?LXfXT>Q>$eeM8wVGlJPOI>l%|`K)fGs nYoXtHrsF-SU-{yZ zsUP3i2n6H4CwX(88ibgE8MOvVg{JxmD6stmRf*;raC0wN5a;RV?)Qi z%Ey{J=v8D=n$E^;ElOoQYC9GPB!4GhtGM>0hnC9c{e~Z-#lyb74FeFIW!9I0RuoHJ z{7RKvu9W1~t#xs^zlWC%)&PZkuz45_9ieQpk~DAs?{-vr>Yp%w z }_0^gQ}s @71R zN{dJt2ger9;h33atElXVWH; AvQL_e@G(hRhey3g2vB7Mp=7n%1nQNBFcJhg2f%ONjp zEkVSG1pLRldwZDPAO8qb)+WR%7L{Ej*%cn c+dekx@E=B(cJ7=o@&8mV#mrkimuR`kpS!%gKtN c5#ys>qki9 zVT&g5p+k~`c;jN`MOE)kZjdJvo~rQbrx&Ar$mzD#UU1IEZf}Y3PcMBH#>S#AAfuQN2dpcT z(*A>u_IZWGtig75YZz&gI{wk{XZGXHtYm+5%7}`^EukS+@@bbi?^|aOqIJF8Cv$nV zjM(JllL2GW-o#y>uKDq`NZq#Fe^e&2PUG}(%9l9$LnR+??aBaNy{NDn{fA}!OZ@S; zTbU>yfDi=pAQ0^Y;?D+L=ONM|C`9HqEyXHjmrkQa{Lz-+?*-ycgPQB%T*v3?g_}Nj zjAcf2%p&voU_RE_F$NT~;ow$7%FWwM?FXE-R^lya9{s1Fc`HY`G&^D(a6s_kLvNTB z`RJTlk%;$-n OkY=l^AKHHOZT+!aW~c$xvBR@ARPyoo#n3_cdEm++u=1gH(`Bg zq(4-(@IKwqi#j?w`?Ln1Y_5Wbix8^cuJ@Qr|8KPlGjBqI3Pf{q=_}I}L&+5oG)pe2 z4THz#U3qygaxGoNsA_w(xRaTS@TVncy2LSifB)20Va)*(3MWjL8pCeEkzeOf9_qms zAaSfEzg5vq5F+%`B+>qrn!fu5_U`(<7)#IrZl70Ol {YbD%?309?Q`R1y-+CNCAJXb{WXn<+tA1K{pOLGTUw%W*-K7 zO;{VGuU#U` &85S~+h{r}Pya*@YF15B$^_gaLY*D_|d2qU@b zfVRvZodQ}8BMFw6w$622Yc%n7%_af~hYXNZ6w*lfee)la8>}z2Pxw%=_<2KrsbQEK z;)!jSMN%Nr-)g4!jEC+L-J> xJqx4`{vRS8CC`&GCmJT4X}NdG8_SVoyPgs;zsqVJ``C6!g@WED2!} z{T3&8|M6RIpn=I7pzSNDWSI6+*ze`Pa|;O(yO4b*L(KjE$DBce?~c-S@A<7+n)S2q z+6wxQ+M_!gh3fiygvK_R2ir~AW^hse{kC7`q1{FkueZT0-E3G?^0?zdh2L}e CKTlxN D2bg1aV;ns ze4_LJ{eplhp_3VR jn#?Q}J?!y!%w3-SRkNY#t zEcZv2H}x^G6Q{fW7mFuweBhSGQXH J`PWEiFXPcqN2kS~(WtaHj^@^2XKdxH?}9ts zuhjHbe!m&>B)9=pSsh(y8vq^Wb4?F70&ivg^fqD?15Seoeq`}~Z#JNHZ>vwB_aSW) z# lvXo$`LY_TL_(j5Ofs-_P6NKt#~p!MCxH{4{>MFa^Tg1mh#e u#X|}&j3S-Wb423W24!R zx2br|2X5?^w_z OH)YBvgk^92ebcigY7|78iz;jmndwU6#SyjQ6ycRl05#t-)F s2kN5p# zu*Re&G5(U}*Nh8)stx>+zC^NF^i#0PhJ%%pKNoy>fc)C2x2BRdZQ`eS#P%2pHtkno z-R#Q`VUT^BdPnnz=dkbfj|zV6m4lDUK^}Rvv~Q&*yEZ?t2vU&>Yj));lVfdfnLpk5 zIrWZiSA&RHcXjUvx93GAuP*p27m?}&iUihOUric|dYr8$_I8>s@6En&w_|16IQNgl z_K(HST6`MyOAGMNjaYis`ck#u=_-57&zwEjb??1nSEO`Fows{IN4_FtOzS^CxEk5j z-hA6j9LL*4JzRe+uvxg+@wSWvoY37$dil-% rK9yB7p=k6Y|?6>`& z4M}cUHh`B5r+LV+lqS5 tqhHt3f4bjIMfnI zDj4f{p9!gePe$@5h)8JP#X(8j+tXyzDi9V O$) z5BlgI`IZx6f8KP`<0J?!|LKUz-X_2DBYdFINrY+QDRx44Iqb96{{~yI;z#c!;PwVo z(pUfA+bPs@Fdp@Pn-X_o_AnbE;IF`GNm@n>V$NZw%>iCE;Wn~$YGxuH+^}^FCck(b zi?bgeQWe|yW=b68cKL3RS0 ^w-w@ZNvWiA!6lQFg;Z;Obh%z&bZ+cM}9^f zfAT-lq&YM!N9(WGxM)JY$jSLd%h7XOUG~zO{}M25Kb}z5u(!L+=$+j}u7O_Y4aqNi zk28s1uW_C2+j*P#e~35#CB~d|OYSgtP5&_4p*LTbj)0k>U=2HP20&BUHBp=Gk6sXV z-|bzYZE&S#*Kh}F!#eP~y_K4Iw=`<$$+7gxe|V%47_Iq$f}Db!VcKD7?F}g9vyE~Z z63M~;EevL}hUWMW-&gwMoBq}JVV +aAJ)eB|9ZL8eb*_!5 z^S5gcpMt0q8*#Mgkzb{zoy0Gy%ZHo-Xt7u0mZDH8DVG$~dAlgD#j+Gubd*bS+M9PK z`)lzoF1-9>RoT=sAUPUIbrqk0Tr*%k^mEx~J$#bE+aZzHL+Bg};M}rlJD9m(H(m-Q z2fqYg^kW&@fOoP KX>hH2Pauu6>eYTBDw)Px-f_PN=ar3~07 z;?(jl;p7hP;{`o~$bgWH)RE sG#WrOZMn~GRo z(Yf~mUDw>Id8<;UHF8-tXNiA#L8Wrk+*i6qj>~Fk&GzUbSgDG#y2f}TQCnIc(sl6{ z7dILBb`b>#9Zr|Ka<#xQu9&B6{QN7cPbt6?%KtUi?B9W5V8-oKxIC9!*$N$jap1l0 zJ6=ILZC>*oDP|8bkwVq8!XC53!$*}aJ~2F<4^mO5Bo`Qo{+d5MkAL%f?t!|-$}c-l zn+riv&zpa4$lERom *X7p(_Kfvtr8h&KB{UA0MuOyDKzB(4*0PD`rpG zLT+K`j;iECpR;iuZu5wuY(17TvG{I*=gC||#Y#0Ys+;NLRW{0B6vD6k?n6X$*1Y!C zVk(Ad1-;{YHUdrYuH+q Yj4<9U%?6_jCZjz35K&^~=fM~;nBv9HIYTtSqmU2%XQ z8%B PS~qd~)_0?Ts0mh!iz&_4R}J28PhuWe@i{8wGgBJ@1G*63D#3<%5m04~{4 zJ!hUhM#D}-24P#! >EK72WG9&8 z%jxFs3SNKCr5bmcPP>lV(o1F)=Cu~e?UQO1DE<0kxZ)2IISL_KB8!jpih?NZcAn%$ z?j7b*6GTWQtlem?QdZr*As9+bhilRIc;UyxoI-3t`Wi_egNU>5o)RBQjB+zcI9o7S z!zk?LRIWg`7BRx*i}@D8$0}B)3t`qr2lN*->2&IB3fi=ZG& -60R7%mwHo=AIuknSK}R(Q9?N}}?j zV%_l2Ctudd!Z$b`?2lGLJlr>;e*D2^epXf(N{15(>E~`jd#h64V}xMAw{_cYKaa;t zdng^E+nxEWsMV5Q1Ra(`x@LLM?H9eup`;Bx{o{w3HeA|g8^uQ6)bu!Gh<-OTBB}mJ zddWg;HBhYgBqQ?xu@`B8jf0^5(P%sb7*iKrFEO->nv5SqMBv3iq>%vv@v^S?CW$fr z HZ$c<*V~u&Ay~QxR Tq%f#04jyzlF|K~%0?E_)}t#7yj6I(3OU~aMC&dY6Rg+mT^VxbiVHyB;+f&-W7 z0i?+^b?gFMutWdx$YxgkEe3*~xO0kfv>6h>Y+;6_D;%wI-o*`??0UG2N~>fr$~v)G z&0FKR(rJ?1Uhyg}3|?(Dw46%q>{aMtJ*+qRB~awX0N?6zMh$)RJ-9!F-vZ=zvmDSO zdyb=`Wp0%3Idt-PZ3>+KsfONAyKSvBWq6#&D2e+?e~Jv~tP896U(&om2-fawk2H_7 zgqOTLw*bK^YXaJB>V|(%`LcOnDg)HoQ(9iT452aj6s|&BUC+5D@Ks2A?8}XFXC8BF zyt#j#s_5*2!{SA_Bdyvcw6&)Xv}Z}ANE92W^17s9s|0F#h(<%nXU^izIMd&C{_^&& zWAysE?(%|4-s}3fYh|8h^CjlxV>2D`LNgh2 QZJw##lIr@kpm zzWt<8t)K>4ki_A~<8@UrZz5>|#Sp1DFiu5qYKED@7*K3*cXV`|(;Q*JsuYc;rE?rT z`g&Z8uuooGeki9nq7~NIG`TJFX)iB~04OH0#>t1>{3J_9eRB&1+m?;*LH_EKN )~lzpP$^mlx+O9`^OKiTsF$mxpjA4@B6YV0MKlrfmzop7uTxmkMoAE$DdfwpGf~ z{Z%*}$JW~$pT|Z+p^1roua@k&eDgsQLuAN-+3s;IJ$ZqVzk)_)ZV9>G8#3d#=3MDH zK>uFzd9sq^4T$A~sS>YSslqj-<@bkSCHD2?82f6bX)0=-xvRtz*zOxAl4mfK6cx*= zuc<=9w|Hq>dTM9ePp`pyH@4yNZ*M`i-Q*-$70#C|L2N4`A*h4iKR>h?`QF|NMG?jp zp4xVa&c;dCq%mO?LUkGY-(*3v*-wCKn7~FXRZH6YYfbJSd1C0U)+w^^2se5y=X|>> zryPbeZJz}d?8@&8_wgFJAJ0CieD@hMafr$dEE>fTnr`Z(WX~-CdkB?dNXOUa!;`~A zJR^voA>F^uSiJF^@_^e(zVPW8ia_+QPvpQ=rrZ0KF5O$eko5KBb0xN!IO?l8I+n$E zw)Myt#|Gf0Rf3{ON1k}Y6y`$P=+< Nk1BW;QH8U=#tDO8q!K0HEqwHdI z_@BE=ww-<#tc$`ppH3EigI(t{hol&AD>EMYRgDi%?fb|*mBbs6i%+H@>If3?Ev9SE zMHSGCmCJ&Dy{h?u2?ox)3Ypg4={(sVB-amNQEdIaU^dm>L)>q@M_LF2PhRd7&K`Ny z_1y4zv?6jb(Xf(T{=(b^)4K2za}aBWZZ}HxE??9!o_*HoZPG0G!DFvSug6;9)L6mD ziOIeS1J{X87qwNlDLzTlXZC&49c7*ir{`i97AAZ6;K)VS>8S`o1ATNDFK13~w%X%c z6y#(bdFGE+;CKa9+oOf@Uca}AE(L*K6DO>^j(JRa>=B(Bb01r@R(GvEURvcT)B7Pn ztnhOgtG!J%@(-t8^Kp6BXioR>#Z{+AIXd5m5{2hyg>_^uu?Ng}J6xZ<`zSNyyIA|! z2Pf&NA;CShU%p5w8)FFidS`Pb81&HMbz4R?ZXLL`{Y`J#V!ZLUHR3Bz8FgdT*I9j( zXZojfN-Id;dYf<+MG_1CS`aM{MM_??vnXExK@Wa_NoILmn52~+ejP4Ha)i?t{*!$B z$DA5Q4)hFZM;OD+g8K*#UtXDIchrXQMNb_m7BN0D X0_Ytuh+{0G*hdZ zUhRJKdZ)9WFLnpac_&IQB(5qKE($#VAo<<%YH1F`)GCI>^P6=0=dz}uIGM?usuJJN zubax;jQM((MU4eJuhC5Aa15^LJ3K10=)3)Lop^3Jnh9B-_?(EMc+XD@;dD~-tzpRH zXylnGle9CV7MOOZTWz})e2@Kc!vTBaD4r7_>StF15OH> kJulce6fOEIO0c-WgNTy=`9&e zhpk7_^I)cLy&!;EKAn;!rtjR6K4G=`CXvo;wRxsxCV>B zk!3O|Ul&(>Kbn(t|JaaMS)s*ebXR+#25Nd+cHGmris*$f+vM-)`48{BU8;12UdOfP z)O@JBF&dpSwCa?dYOH!AB}wXdLj0olTDOz*fzWS7De+G`%cGkL+~NbSPp*Cw>xfhu zX2GVfjhXIe4@s3G9O;T&)RgsJKDKUe EN4`Nmy7cYScbi}dhH z!`xEQ(7Y3>_qytkO;Hh5%F@WfHmO%|=*0L{B04odp!m(W@bbso`=V@k!Z5|E6L1Kp z0R}5`I+ibh NBG*jGy*}h0&%M{XjmN9kvS{qb!B18^ud2%|B=+3Cf9=uToQNCy zxO)38SKOGCUuLQQ;B;+W@cn8@$aGP}gJn;N*UpoD)l8SZ^*&mV5(|}CK#zWK8g%kz z^$a#vTF+c?qQUO(n~EJL?q!yEGu)gccY xv5qGt<_L1{2{(Il!~L{7@0+$a*o?Q5 zLWhOo>5;rSa;7pJj}FIaWbqPrDjM;)&a!&Vs^`SZecv(sQd5OkmaUR;Ck9jEI$;7r zCCWza3U*DBMzzVgw#-ZIr73)Z!@c m h|QDH`gAH?n%BNAJO7a)%r+gjhk80RYX+;?w0H@iHAZ~uF$TB z*WKNH@E*3bCC^+Ht7?CCq#^0~ZK^uZ%W?4W@#$;z`oeds9og };4avZ@K; zR2NPQNPjtZg||x6Xk?5fx7el+>c}&D) l-Xrrw`~l>s7tayc8W_06L$y*kAx4xklCgc%{X; z(Ke-U0X?g@IGeV#umRlxUrD9KVAQ}4)-a) ?Yfu z%tUqx6=uUjxK4w0P1=nzeO;&QoOCX*{xbXYX`FE5$(JT4Ek#}0(zHxFa!t*6DnN{N zzmdtte^Sf^j*Lh9es*@3F+XS@E$Vmo_mm#Q3n^Wx#e@A~{8?vq;_SVrPFT+ucXkXC z^Suv4)# IB!#pFLvxju_anPbuEW)ju?cAuclPvEFl2xh>?DXDVUR+8H#Db``GY;~7lH zH~#~f`_kajVXa)-uENyEOK$_b#nezP^{Cf)U%ldMQ!LpXZ >FX5IJi5@YFLq6>rGfzDJ0v@d8pFvwl%1f-2VmSGt;xnNJ|LI==k&?txW) z%g%h#u!hPH*W--6346lJLpX)($xhf4KK=YgW) 1mL uoL9AfOY)GRIm;Up_sU zPG=*YN=iCHafZTqovLRmq^fcWzgj32>*F+*BufBz yfq|2S)k*8g{V Kjg1kx*K`HDsG==9OH^yo56=S9IDI&_{e z+@*N_k$I@W9+Vcxb 55I-z!5)3?!Cwy4!BDy3rH%mP;sgYDd}@p~7P(6F@vO5T zPvE=01-QB^Mb;*RlYC?^65BX~Wly2n(gV(Gr`#+RJ<6SZs8lOuOlh)BizD4wmTQQT z^XSvBR(?F~7nIq4zW7pQCooq=;ZzU#mlFI1KCM 8o7b@A^|!6$aR|ppqtXj04Rpg33`Eu7^y_KcAG;L46q*BolXOZ0Rpr= z)&i1}C9*L)N8$J6owLP}@AnB&NjQ!gI8Ul^x*Z~1w;a}ao=0jYyv>Q9Z&Z9|0c?dA zD96duSAcB@0%5=Zq=Dy)9Y^o -_8cm%9osI(G|1CoJ-%EPK4IhE>$XpDsk&Xc858oxhFWY+ +*xNHie2)Z|0jiyq~ra9(@~fuvE{sY #k`gNzx8=3IY4Xoo=f z;LgCdkRbtx25cXN$(yS*9nd`0xAD15P;5);=OjXvd90`8n#`~d?(6rl?229!sjy?0 z-q%w(TgvFEAQuF;WL|ozmTKlSc3T({g7C6}
k;J)Z-kzn`AgzBV$grE9cxsCgHxy+jnEVOf&OhTPaaBKpGU!j~7l@ zBPGK5J(!0f4ivLH`YYDvvdwg3Evh?=(XUOXddrmGJahPB(weHCcuUcs{qs1M@a4km zJnSqH+Y~1?03#)Xfa_>GpVb&E8I5Xi3_B>+{mgKC@-d&Qr~xV-LIR|umwO;31z7xs z*I+H49KDIpH6QF^gllLsR^vqizNDpR3AHoqW+|PL%dNuoKG@f{p5`$(nhVt|bsr4g zIp=(zE(Mv5Fi5-s)vs3 zFyTz}Tr^lREOiX9AJ= zM86hbKK~J!P@K_yp0d-Bv*Q&S!dn9N9Kd?W=?$nw3YpeBvKO ~Ji%$}H+U3;2RbER0m{c=c-2ta7>82z2?S%Y}oPaljQTXnl1q~S5!-Ap!h zH279j@yb}1UWvw4j%&WMn4&Ld>3=f jGD4ebmsU*F~_((mTj|ZoYh9*WgH2|8pwV-DUd)jnP}R5^}uD8O(kqeIE9|Ss2HD z?b E0FPS1tOupM+ Jd}Tz0%Ko_?VNgrsJQ$k8l_sb9!-zC!VR zAPB3gt1D#L!qKj?2ve8vUasXp;j1zC3@Hpmgu|B9X6WYa%zx@QP )X4tgim;*jxrI+(sJ;CCan6HYB$pTEA!S@_>pG2k-r&wW|#9-IVWHT=@rr(t$kw zk8oJX1P=WZGX=}PAEB=>e!W*5ME816VIhoYKCCbA?I;=Z?Ax*vCveo1@BMVc;?*OF z9hOqRl_F}dwks(IpPk@g=xD4@p~i|zy 0&{eh;64P01`grl6pA& zA&vTW!m2f>AzJKGf%0*9Of}Tpa#Qs6t;0dN3P*_7-!a8(hg1=EQwJ5s&qHYU!RL-C zSK*iik20bL0+|Z_84 OzMv=Q@gA z((`RPTKwmM>=!&?{T>H2Ta*VJa>MV2(F$pMZXKo$*ka_LLxup9ZxlAwnz;m={^5gI z*VPC3+%L$@N~I1-`+u{Mphy5RmaS8E)j0p8>VN|!@Sca~0OQsYm8k^XiL~fEd`u$k z2;ABgx|4zTj=m?*UIPdpv<{8nyi&+AlzvaG+f}UE(m3HpY01>1=K>iy5tNb53Z7s_ zssL!4qW%c(JX73)(u$cC7o}he%A&BT(&SCXIiACG1d9Hj_Td^kvDahl*vN;Rq@q!` z4h_a6BP(c_O?NvrDZ=;-x%@)=KD+swwG9n>%I3isY7 p+OASM9UA_xXs}D`@UamhcHI}C zV|0l (QleEYj^`XY z7S4AKK8w(E)n%NckN8Xl&MY%aJ_Ml}%4abn-V!I-T*&}T`~h5!a4FqYzNge!*9VX& zOJgjmaAJ0?xBh-c U0j>ltNyXtcKFvUXHVQ+!;CW8|^IOgpkvhd2+8GxPOBl|k zTwk1SNmis|Pt# 02Q)ul--3n9gE4a=@& QOzbWA4{RlYgG+^?Pm(eZouaJlMt?+>d&;J3Y zF|Q`3y*^RNVmdzkzkFO2o>zs3pa RrWT=7YtdD2WTi_da40EW^ zKuPRC@uC{XPT(qK!QHp_sGt|DTe!=5?38huUWqG8H5sz-G@J=MG`mJrj!w4gDb6)- zVkv_5-R1kF7Y~zW3Ly0QJ_H2L$~09v^YFnTaUrwnLffua<0;5R=P>n)e`csD0;<#3 zbI+F-rtC+-5z&mIHr&uFjDXVUZYSW9bBddCE!k-dp_vVdlje>*iU3j25=MK$1x(n; z6foi%=!MW0FG6W}BAQ3aE*Y #`v*^0;ZpPc_(6`5W3j&(25cE|5)+xtVa$+5 zft6Mf^d#hbPh&bBJ#;hTm6W`s$sr#OLXXSROT+9nH8nZ3*iQXwe};kLv8+&dUB=S{ zW6sNVhl%6M!HmDHsqEm77~Th$l&1<8;gZ2ZIhj#Zh`%9}*-t=5Epwh{;#POFkD6-g zTfh2{=JtF0SOxgBGft+yeig`c6w+G$DPZaob=B;Ik;eqU48#WmP+tL>scK{>tvh}D z6fp9&6;QIEA(5Lx(4#6Scb&MnI1|5av!s@n*=>d)RcTljf&Y@*jyeWPgvWflgXcZt ztHJQkXhr?zB%pnfQAe;l7p{m9XZTk#``{MHM%!pFJUPW}8?~%}2F~lQi#&7_A6$M0 z?ctqwCO+iIMTuA*funjANdM?5Ew=gL!gyX&Eo3N6p^DpKV_t^}Zr*_M^)*lEM49ik z$_I#M_UK8h *lf-(CudfVm3znkP$Cx^*rD2)@??Oc%F eUzj4rNK@(SUAYKWCB% zV|aNPeHG5W tww({Ez?y!4%worJ6^uZ_%h^lD>UiRNA%sz+$rw;)b zd>Ii*?A2|3K;p}KcE(xpS$bCSXoAvtG1MHKa()AlA@J=x)~-a)t0OVmcZ1Aii;mfL z<_Ck|BtW3yFMXUl_=bEQG5>=JhSU!u$nr2{0EqBXY5BwWW)yAt&|gNiwyHlC{2$p` zmI6|B65Bx|UR|;KMpqOdwA`Fsg!b|E-qSHG6hOo8aAUyM#MoESVnOT?0#~sp_PTuu zB+qb(6l2&2>^@G)a~`^eo}Ay;+hw#LKbBEZ=lMiTwNS5tV4Riu$$LMx_Q*;UyPzSo zC(LdL9OM0lP>0R@>|V;I`ZI$K1F#=BK>e@e3+#F%oHF3d^1V@Wb91IeY=!sgnX$26 zy@{@;5kOrW@OxJXal$S)6_hkGkqb6et!Y~6{Wz=&s{L_?(=A6rwZNWV)GGR(H*CP7Nnz|7vyv%r|qDpm&I(eu~Y!{HWtA{5_R zYts=G^oGnlY3K-nW2Ut@lqZJNYSC4gdH>oSOzFd7m@5%@-2I~uRpPxRJxq0RIW&sT zBmPc;j_wY1>8Qhmx+5$A`EmiP&P45RNRWV-wo9In12jfRclTw>w+TL^8xS0#_&FI2 z?}ouLDuwZC?Y$VHzOe7z+Peol6LLdCz|rrTi=Q{=UnI8cfVGfEsyDh1FQ#3`T9PPH z3{zr03%}9IWZPFxBM2<%FyzXPf7{j%{v^$MvBdi%D1j~jS~2VQjn?>};SDOL<4V+* z9cwt%qgybs&^mhaCd#6E$_QPpoP5U qI(wmr-qlJuT`t58OgAjUW~a4h}Si@R>`Ue;nD@ zAn6M5x+Y1#cZk< jIhjR+kHkzE;p`yGKV^6m5h2GbOjX_WJjh6x>rgf#XP zl#N{bQ3E?=PH%dx-3ap8bLXrdNwbH;|1L91E1ztHKawt;VQ9p#teGgYL@@*UJYJc# z?@2|GMAb)qaNOHL^^CpHvCGfYfI+tlAL7wU!*$#^%*Uq$0|e-vma~#mW4(td8_9qn z6C<~)*5n;x3N}J7cz8eox2s38X5_%?rA5HLEUn6)bkBkw(-)bVJ`L>?X8IJ`WM~Pt zfQ#Yv^jfMA9o7KouXdU4lrMP#j8~6|w4V3kfO^F90PP{De}X`ubtilp8%a=F9O*Wi z9d1S~wxz1et*uVoP#S8C-L>k{QofynoQvyv#c}iOCr#4J_56q3h9CPzl~un`0@_RY zT)02?v8Gcq4``yH&^F@UjS91iH@m#=_vDBHS2k%;cIc94z;?uL4e8M}St?C<5V&e+ z-<{4|+rR}(dg Y4r*Mv5Net}mD1AudCvVmD| zn?l5N^ODC_1+n1vcISifA#6~l%QIQG-h+aHI`Ae~)9B*43@PGD%WY0&jLSr4+Z)ja zi2!ZQ&-F3l!W;yVyf?PZMR)wAd)gH%l2b)AiWt&Q9<;TaUv6<%G2t;NzfSg;@M0Rq zfrP_k$iajUkZK!GJxH30cX)Ns5hkuM_?^ZSO_+ZEt>`A(9)t?hHcsF+O0yRWo}AcP z%}dA^MxHE$mzZcv9TyvGJMa1orl{AGLC4PK!^9!2u`zF^Z@{D;4V>FC{l<7C^bIdT zQ)RIX7^Ggg7*>erv^%Qku+^wOK=FYb4H`&DO47aviW?D|4{Aq-_60vLp6vxivpi=T zU (#qZ1d}fZpsot!ecBzP zTjV%UKP}DqX&bFkt@0z !;WR%w6vcI%XOhm+i8Lp7YU4RDoo$^M&*+m^|iNh>(MMXs|K&^w+(6hdr zn)5Lm5q(C`;UNHDMRsas3_}V|!<&~l&rBUzRwX0C$0E>DuDiB~!$}dH4HWhC?V%i? z@@eI~ 5Q~9y6T }=JyzgpN>jU}8Z1#@eFuri;A*QOc&xlEP9(qorw#0_<-OGIDJBxciO kFVEuzU7t8{HWHVoEk?OFE!xnDZ(JaF3ri^VK6(`_Ba{g-$R_YpKWN zTJYFB-=VHEwK{EHPv?>P^>VwCt09{jdaq>hmE3)D%bSwMDd1<^Uko;(3ysji#Ns{E zk8riItT@y3vy%t!;L)wy5pA{n!fiF4FT~+qHDq8u0)%TL1gD5-pTBzgFE8Xq!7vw} zb}dXbFPP$!>&p{QHFAvP*|R$ftj*Wbqhqa`8{XyR=GH&5d%%*Np;w}vRla0(P}Bxb zN~(6JmAszkTBUg^q!dU#*~&QCXL!eCoB%_H(s%b`@_GV)p-dH|J2kvvOoXV@{jU{C zpI{1=ZI~LsjG*vimuiu@*tt0_@k* Kq|<&mA?YWj>ntn-%$dK713;%QC4bo|cL4d}@&Vn%dqdEmiFP zp)D$syaatbZ%eYY5wH4fxrLj=z!=F?Ip$_e87}$2#|yIV97fWiC7vAH=J o$DxQk9Ea zv(sCCUa%e;&j>dpD1O`VQ}o*O7mA^x?*+Tj1Ztp=q2~a408r4}*$BFa+L{+fN@c6D zCW!2@Cdv*<@>Wwn8tkM8Icne`o%(NEF8d7%5QcpV$%js80ch7igWJ-IiDZ?{Uld20 z^Mh(84soaU-XPaCK9oaW-mj7`+;UPcEd{7F%HBz!3rj(vJa{i8I Q^mr=|Cm4<9-#gONMV0(am=NPs%gh{9wk&_4 zwyEdju{6BnHTo%aKb~vj)Y!?BG{4h1^!otRe7mYztB!@h#Y3Rq2{o0R+`{!V4T3-5 ziKAAxc|DwKVv#IRxeT>@xO~9=gGH_7UY;|(0IF=m2jAHwB|Vg=EhQerEa9BKhj@Yf zDcHiR=KwIW vnNx7oSoetFYOF%T5g^%ogK;G><%5IClyJ z6YRVVFLoL6vbg*Z7#XS>KA%p=x140<8K}Pm&%Qhj)q8jgL8&A===1q1oFufbuEqHM z&KdgqZZS%8dv @i?EkWf_#{QDq#UNioOXfZA;urVYITmiDv$8yJ_w8-;R# znNkdl>Fo|M{jXNI=@h$;zPst;9Avms$Llj<=iB>yk#jBM1}-oS{9yBbZ#_TKGrhAv zC{EQMtU*(2~`B^tt^P*x0-pYdl0tGdZf>~=V^^S1(?n*|`%=TC9CBrYsQ&;9ZF zrWtY}cRMvlGk2NQjn>esuG0sFCqBATV|zR9wYQc N?|c<&_==>`m}!!LOVkAcWGz?0@;3Q`Zl zW;1+H;=L%(V2q5i3Re2&zf+h&9lHC^ibPXVTZ@5K56sulB|ydVh-(UDM$qT{+L)WL z;uPa0m2ysKkm*3dt~cdd`3Hsybq=8lKvMZsOM^CLCIEE4+aXlg!Ir9={hg|=mIM0l zRClOjtI2(mrU_bHmKv*gkg?o)7K&1lWi{nkiGsII*n`CA1nXDf(Lyl#3OTH!yg%H` zPFy}>9vP)q-{Qkd%7=78&AAOp7tB!dTeaPo7(Lls6J=k29dtwQ*dO9Mp;uu8eQlzZ zhB1WUvw4`~@K9#|^Fsm7g<60zA=!_o;XH4~uyX7hA*3ri&MwBL!t_fEpm(lGNxdl7 zq=q)MCs|h+1mZI-4+KYt7gb|Us(0pF(#>4Qg$nFD2`x9I;!K~3JAUPsuD{xtiK!_= zD&2Mp%(;j>RR*J428~-tIK4pgm6sSI4hT`#-SrlG5T~Fq!nLHoJHX3LaD3UN&7Q zJTb{jVB3ibBY$&<{5MnjirE6 i6eBomvB=#RIk6)dIE0iAtS!&A0SGL8eiDeUaSA3i!%$rdi+vhEESAkHc}P zGewX(lH%+$Fr@P+!m?(M_woeP*b(O+u}Gb Q0xE7k zP~4q3sPW0PIZ+-;IX?Dao9b2=o-PQuK=pBld}B`j`oeg}muPjpY<;ObMRzydLYv4K z@1+sPkCkNi!(E6<9BI$|wO-^^fjI3LTsIK{uN{RENx2RK03G3Kiy9ba&gZo>8w_L+ z-YaE4{{=Q!(p}YuiPwcSPtpK&AGrMk6txY=Zfr%AjsJBw&^HMyEf$A3&R__mNLA0t zY0TTX*ymVxOyltx$|5-IlcXPa0M%CPVvT6chkF%Eu1$rzjJ;QUM^sKKG@z}*<%#L! zOFf%S{5;V^K&j}3T|(fF^Jpv2D2pacUp@X}6gpv|2QPwLjK6XZFeI$rmq9G`k!hnc zhMM9NbV0vBkMfJW$Zs_#(iVsc^hxypr$nyt>)zKz9XLrDZb3|ebxN{7k6v6hX!^|- zpZPQJabYmX)Ww#H8#mYqi1-W6uLZ1t1jX!NDNNpHIH{rt3zBrWsM(LyKTU9fg%aNJ zj0Q`JLpJ)=k^ga{{f`irT V zBMj9UPbigw&9=BqcIzTyc8R#YDqP$$4A1}E)hF~1zS76dDDC8r@`?;uhJRfOvTUO? zoddxcDrAwT#JI)tO643nBNtuO^kW7yW1&2~SZHGz9` zgU=tI|X+GMQu_ur=W*-*3eG4Pyx%n4AA8_8jj2+tYAX zvS2Mm_JYIf&fMn0T3ye2gDXuiXO!117hFkrx^O@|&!KY0onE0D>OfUQKL@8q_-DTs z8d(AR=(zIjb+i-#+8jybwqruxKszKtm+`10oRR!~5i`-VYV6>wRBz1UXhF%NRU8A% zXxp)v-N3waQGh<>D0XADp8wCQbqVFd#;w82Ha*I;gk8}{yAl58uB}oyuH|rRiYlvR zdsgi1WRK)yBP(D*G)i1;Lm3Fm=(`bsD&K&!+Rw+f)N>s3Zon^D)){q_tvdCs6f%3Y z$ZHhaaKh$!+@S+0R?B@^5k&I$ISMhLbHMlh50S#A8mC`wra1DhPG2ceh;WFf;QN<^ ze4C4o{W#*G_fR;`Pxde!xKjFnM=#61tI$^Csa=oSB^Bfn1T+$|vc)W0s`#fCpn6h* zI-MHpFtSbqoxPj#+=$~S{arHw&EWE{wv5}Nv`A<^3E?dY)n*%XLx|uwL}l8+8|=9) z>=4QYj=0r9D~JQRL8U$z$;tSI*$Nocid&o+@-> 8f0@A zAdi{TkP{w7Ao4Q-;WbxM8XSiiT!+WLkf2+ID>3*F3ix`ak_PJ?tl`JAtPfpVlpJ(z zk1+n0U~fX#y5W^ &kq+z4cm|+qnGfFa^?h!n=Fs1sikHZIe12h`tdIXd zjHCpc=R!dJh5iBm5NwL0eDHk3beDdv$$cnz`NXNF-|~VwlJQ@YipCG ^$%SO=k`EJbV&PihZzTyl>$M2VfgA^YtHE}~SJ&l+n3wm$f9ui* z-i <~n 2yxj(UWfRRm zKI9iP>7HkS&C>J+MaZrbqrcwl=SxPa{7CK;KPh|UW48YBF_8F>xb^d6V6}D$Zu$^v zwI3ZEs{7PfQn4bC8}*go9ZujS!b#hZ<$Oxf4LyxUfEjk4@bL;eQ3H1mxcqaS;c0%@ zA-xvH^xFQK$wR*^=hNkPa{Y-FZq~k1#PMf{`oa?4Bkte{Q_CBsDsbQ)^RM-$#?F_fBI={cdmuX3IyAGV3a7l!KL(oq z8juDN0TWUbWI56%Aw>al*zp$`#KBUNWjX(ETZ`o1A4z1Z5T_vb7pF40ksl{JdxZ!w zNk@p|-+xL-#@*GoLiD(~$L9qIf)NNND&>dIP2#+T&*eOK>NhLgLN*Vwd(=mHOxc{b zTBAMP@iXXZT>Izqq>ia=1B*5KmuL<)t0tSiyScC} 9Ai&+S2$#cl`m3)}U1t3`jAm(UMI%eWiOp5NC^cE@#Km~-L0DO}w})J)et_E?Sl zx#8QAk@LeOlXJ#}Mx(N7$(pj)*$Ib=28MdiV2Y+M9XOt4QdQsW`+; aiI=!4o7`nMrD%KqV!2>x>^|T} z%|Yrp@%Ajl8o&uh<$o;FJR&b)O~&byfg`gb-U+dxbaQNg?30K3XZE>=Ybhf|wJKmb zb}Lok_GGSHfVKVmQ6J)`18}fN6Gbwg;p6K6^&^9LQ3KsJQPP6k#^!Fme<>qc4mU6y z&>j74G-M1|bJ6`HodQ8m25tpN^u77X{Fw3Q7KQY`($3;W7-3X6zwQxWsL_*T$1W;h zbSr6T{#zX3_L(YQRuQ%D ipE@n4JtUP@l4fiTMaWVS##m>Ny=-MaiOSw` zl)W&+Ae4+uS+Yd-7Q_%)N)jq$PuX|B=QVOpb#%_}`$y-x&Q%vP@AvEVEcbKY_X9&g z+jVKr$*!8?LEadBlOlu#0KH`XqQiXt)h5MEYEDkBV%FK;gol%E`A2qbYdRn$Cpe)j zYmv8&jH_Ll3A~(E^n2iabj-bv%q2$A0>YMoqo+bxrCMGND!@^b7lw=m?>hD8cYX2b zMSqw(t}5F=)Nx|Zjx&{wZ(I7J=8#eOD=E30;v1T8_dq!0M@ba|2?sNfyjf4pl4~mq z%U7nGRfq{%aoliU4k((f45ZCq#&vE}_{TpdJ2K*^l^ljT<7`Mmg6ko _O0l5KU@A&hWvvsUK4>S|C(mM z)f#^_m>(^K5}rPoD`+m>JqO2R?v4LjUK+24%vASNW-^mlWb8)=(h*)&HPGhWBMn3s z9&7 )U1u(^6_!7#9>#TUb_IWY)pL)hOk_h1h7Hn1JmS_0u{ zcf?#TIcsvTeBc5_)5Q#ageUqjz!(;?LizT=E_Esun~aK|_~j5YGobism;X7DwfNEz zGxMhS*+iEFqkI=(0BE5iPu9wJTsabqJ7Ddho|CnX+PjAx5ADy0@20uDR$r^=k`F|a z@{h%SAs$<^fa#dcGpw+6^LO9!I2y)cGSLUH?Qee`1dqYbAIOYyKZPOn#RcWm0WR9j z Cza z6tn%8PD3Y7BcFp`WT*J;vi~D}K0a^KjrcQQ5&vSSLPKGjd0NcSrx94#!b{=P2?a1B zoU 8`uHnfSH^NIvvD z09 oM`Z`gqKCh#NbBdbnUt zy~z4SrKAo{C{5w|b_ZA@hzBh_4TQ_uQgO<&^y6bNQ*T4^O *Ymm?|F? z*R%poK;jsoE&8yhHyv`0;<3x8jkAu(9 zE?AmK24T7)5O<9ds5KIBOF}^Nr0p{L+4gEcAPtsi%=LIq(8GA%hnim(Qs!|~*o=k2 z_-o(_ ~L&F7P $oVe~+xN8m@RRWqPWJ zTtuDF-grlYUa*wd&xXwdbhJj1`>q=pfz@PK602ul!vuH8#mFc+4-^Y$ib+73G6Mj3 zY2X ODR6OIVdLG*iT5uP-oxqkG>Iu0VByTavPx&~ZaLgF3_WED=o_&ovo zb^XyO3xcK3p{s(kcNY^H9h;95vY-1=9jfp!m6)r0rj%rh>nzvE!`&RS$bJt(orYXv zvl6b^efJGC;@s1x26gAU)^agkP G8+nd@80M;=ilV9~2?i9HMu zW0fc9d5JK5>YUL870S|EQQ#Y*S?J-u8E5k6>3o<#MYzYpMv1-Gww a(upZj{s^PhXT-!GC-^S@gv;lqD55MdZn^mw)&=^A!ooV(Oq>03lnz z-j@{#pc*Iz)r1h@;?^Y_O18T0ZvZq+Cnzy+QTR;`@=b&OM=75LYx>?@B)IeKZME2F z!)rjWEU5wOt=-5{3`x!StFul%TZX0)FQSP;g;QztM77O5&BUyxbCG#~bRno34_Yb2 z@f?7a5egPn(Y8@icgrW}y<4Q+4!RPYd#&L4F&jVBt k)AA*g^uS0fwu2K@ zFw^J)pMn~~^yeC4(KT5g231q(3m}?1>ReH@QP}P*2jhm2YN<%Vw+s@ijNxsy!W+Hh z|H`KOw3q}!K=~9UkvN!p?^p?|kQLg2M-d9NCcWg`&l0)?ZrK^9tDol0f+1BYI3uw7 zN{zfRRS5;z`~Ad{tJ^1mX)D&C^TEp>GrH;Lmr-H7h5USWEX3A5xQuFV0BWGQ7QYfj z@n5z0msr6V&7~W&S<1z+!stFA%R$-^m=HRTE{uuGN3$*A$q)B75D|=o;N;cY4;`#a z%Hbsork{rmN@y@=8W+L 3c^Of6g7kZjW0p8xr)$j)pR+?mQN2K$Q=gy^7JGMd6IA$6@N5(K8Bb|r z+lw>l2FpJRY*41s&;znaJ3(S~1I!GOOUpr$R&iahFO1Ifjodk`@rb%b!Z9I86IkaQ z`AV!ti!WVtR%xll-7 MB|d M&A8A5MQV=HQ2jY>(mpbdW*g=7S{J%b6K=Yr4EF9p zT^&2&c$f@P^kB@f#s>#?&=_h3SBQ0z+9)H>@IX7u #3d~?c^J#-)+3{)DSl2C9)$JC;&oL1nddOdvZ~GWkD1Gy`XMaY)=ewI`#Q2Pw zKDxEcm&KeczxrlSgp^VBvh1P|nLh204@Z!xlgbF`!bmNou{|IFI#pp*yE+2)UYR?l z?3rU!CI+soqSkDB5vcjW5u{DZK-h#0bsj;mampBlMr_DazZw0}U4UOwA*3k)A9xM7 zWQ^-)aq$m-vJnz2v@Fk2EVQ~@^}qoulfBt)O!KlClmYAz@SzNtdjq!){tkYb+XetX zE^nC`5ldfwTYAH7-TV)pyd->A3+1%@4u5Zh2vOnBXv_~Q)imH0of^@Z0`^4!wPrbX zs6V{LFMx`F#XN;p=oBv0>)u-8#vOn2GgZnplZE7BGCeseb{R<|9Kg$L(;4=pwojk% zkS|4Ybl7&qYdVGO)mD)A#RL$=X=({6z;!`p4 s7viEtgJZ{_^A)6L5_A|5i5^$ye*&S=4;rPRN_`mYXy>GDwdB`|%jSY)gZ zrvFs%7^+GM--lI2o<)Y5nJ{8?fSu7LFZ8hYs5SYb2hz`jB5J9iMu%k1hWEf-zsXR} zk`86EB%xYO=KK|w0WSj+e=~U;h!$-S;mI&L)R#EddwL1k;)!}J+g@L|hw{7c6J?De z*~mH;uDtK=-&fRrevweQ3a^^%E(u4+0&52HDm$#@Y=1-g^W;mrj{(s29+k%|Ye0qi z(&n?EVGgofj62&=`DswwPcZ8|?3-sl$gV)JT-Fcb5*oBVpLTIh+vg2{JD3_WoD8|d zo?Vn^VF9}H{KwILU*GZtj<)*HKQc$I#}>~u@eB0k7gLJKwel`UJ7Im|4KSp83q(NW z35t+$^mhN9@3jcxVm^DS*5E7o`;Yr!X+x#(`Df7a-{L-`#G%xcMlqZ1muwr2nLUmz zFQ65@2B}OaZ_?qNK}$%&hVH|!EChvNJGeNcz!!(wz@jG<6c~(Bh DZhtSJ>a*hto1Z{k);rH)!x5&4lcV zF-=033WuSnf_+XsFn1ZD0(_F^Ka-&$DC7UC1FUV>OR4WxSasyyH7dt^8&x`H5Cj72 zs=Ef{_Q|K~T!_X&>5 1`iJ=FS=_%Ch6oeT4nY z6UTq6Sc&W5b$LR=|4w0KIQ75?NdYo?T 83l?qP3 E|lxi6EZeA!3Sesh1L+HULuoN3tdZh$CVq{~Fi!E91q61GOAi z+*B6K-aVB0dGMBU4+uPsz^RP)*|l|H;9j}=j_WIJ0*1d3*e#k?)xNhfBo17pI*3D! z gr!#6nn58NOXqq_F_#qa)EnMcpltZV6GUl!*fa_ zLd;$eJQ?@Cw8o~x4LvpDngAvG6m*)%`3S0m*V=?_2Y1%kJ{aY>#QM<9_<|G}|1g zy7Smvk3I+2-{@L0v}@Cg%GddEXlvWzg9vB@4j2X07K1q!&JZB=-e%bw?*z}3#yYJ_ zTF12q!Fm$|s*7NtuWv|5i5dNE`C2kCH%jZ9SeWy{4ZyjuD}|9Nf<_m*G{*>QHVezG zl^RlahKhDwclgblThp^hiTUmu1@z38Py}gLs1AkXmV#+6sjC;*h-Ei4O;366r$cNX zKMlR&O9nbX%qhlBP;x 3M4b-VvVa3eknZLFYjDF4^#L(f@=f#irUF6w&< zy4;uWFcG!Zf5|VLIGU^2*7NVqSe*S@8Y_1GbKamTFmx<$=Z}EL!Pv}I72#`9wk2d3 zMtMidF?Q)ee9mP7%n`6#Z|14`-;$zU0VlX~oY`?_Hv)wdnT$LFBY@3K*!ZD*7Vcw; zG1BgFpwRpDWOI|T6^ItlJf8DrA&6-9p2d&8sT03JMC{oHXe+`eI|tlB;2jFWwg?;k zLJoG~-2)qd1F;i^hZbcgQg}251ODn6Qy`zYQ22Z^>_c0US1K6tJO-_gc|F@)`SBxU z3}q4v5r)jS8brEbXiNbTjzk7IMzD1h{Fo!!r=j>Kq_7{^$qqdM)TqE+PviW^4CDcG zflPL1%td@G+?z5`g }G>@gq)s*_YS;yoQS(fHKJeYN^QSeZwM>d7aM=f>*Uq zguo2wM@yknCtLvXa2sf9gjkyXHi ~MG|bZ8Br$Tfz^wY VBM-Y6kRBDqP@acMQ!4xaUyDON2dt zoM^Edw|&l0a9I7Gqc}!~o@`&qJMcH9?HL^8g-KL!j9s|yC|pN{0zUe}#}!o$R$yX> zI7pT?aXyEjRNP$u%x43!tbjQ|{Q{u;`~+1vT(*F!*U!0xhTjpYZGvS-`LyW^M5cv- zxs)QZg^Fcn9i%ZXl+KWb5s8;UDCg5i%n?F0a~n`ugONZGiuk<%t_11}H7%Yasr?Sb z*=hiBI$#{htObO@(bcfO(TqT|LhV}5Q3UQR1n?jLt?V?QQmW!KV0s|*2AO%1k_{TB zPB&zqy*u6jj=PAc4lK62>f0##5l$2z9>C_c#9(;rvl*-lTm$DKl @$@=*WWAv>s(bG2csKddUyx^pl~l74!%^$qfNk$V{#SU;aMzP z?Hl`I6jY@qd(+dv)2%+A+@*OhVV;2HY^$nn6yCRG^6;fO69Mye$VA``s)Xh*1n7jJ zlE~koMqq!A8m9Vdb4PoDW;lsj!=?{pW zXBi--29;_Q^mteKEFu zIO03J-gNcD5CmJ x# zNa}$)_})BZpZv@BtIk!lp{Xqzjc?a)z_71xQN$?Nb+M;EC+B*=B(QbEc0j?tJE#iG zDf3V-oR?p}Hbfc(Uq@P4e;5J0kOcHt$l7; z{t}CQL0E*1U&u63Ul`K=?o&ObhZbzYWH%T0DZbAI J7d< z_g^5eH%!N)-9L9;>}?VfHVtZexLYJ=j=psL0kEAL9$M=NuRHZh)P%7z42A#yUvh!I zgz6DB?z3Bzy{Pzja!oYUU;#QP)CBA?WwJiLU6;an*KCJR2tuFs{s9I19^Pe6>2KH| z2TwRAJAf$V3a^h@Su-QdXn`>hGo1a plNC46x-d$|q_^GR$5DI< zn7f?t{D1pKnyB)FlL>YRP&>?}Qp0V$61sx{;cC0$ZCsY%%#XqWLfy^}JebAfh>E &-fM#N4uqO~}6JV$i z=xb_2W)*hMfrTiR1I^1dkiY%Zch_k28?EVIq7B}k8Ucuq{|*@=?PLQ>mp)|Q1MxJ) zh)FgEsx}RT44Yf-{GBTQfJFFrs$|A(ThPU~6Tt7$&MZKLQf%y+}|M7p>NUDXIeUUb2$i83H2eUYC|6D!% ;tyH<3?wMfGR89J+bt2Q?5BoWqj |T#($~(cZrK424enL3G;!*WwNb98@&% zP7Tk8;V6O;bksYlVs;!*4Ks3w))wjFKdtj8ZV|Jy8Cix*LGO>OTD1kVNKEt<4wU*E zFjg{8I|UXV`=Q#|R{a;*TKZQf2 lZQ`9$f0ozM zz224~s4NRqI_KWOA4K?Lj|}&vpX+;D>~&8}0Icj_r@AI=Eukz &tW3Os>V!yXMq-n(+Xm?l$v z%*_}u{N&e7lfweHEmf*Vp70`K$Nq55*0b{QZO&?c@G-zrXxlj^XoOPuVSi`|y00HB zBH38TvkP=$aD&_S}oO<_Mm(Xejt%4rB(=-98UNznFHL2i`NtZ)?&akN&!3A_M$b z7j?cFlafCYaX&f-tcKe`-FuEbGWjqt+r(k_!psKGcu3A0J-3oWRRHjjJjMd9E7L63 zsJ<@};e^Af0B?#C^;R^=SiNcA&Y}L^UYqcPXG}U< D*3oIa`Yf;_3nm%V7AV+2TnFIObN7)8H~@zMS6xSssP0e9bcj zmPdjd;OfTxFOWu$KSt^axGP1z_^g#9$ES6V6oka%8;^Ir>jOQ&_chPN6H5hJ-72Cy zlWOO$F;BHK5jk5__x{P1b^x&Vn _LREtzGUQfYHP4`3< z9Wf}7hj`1SSskD>gRQmzid`4QnX6E$pbq n6%c3l@_ z*D7#xb|Ds(=7OHC%uJNbrz0rH27E1$gTh`c_N+!wwairqSWyuL0(@b$nUSo*@cc<+ zw47s1dUQ(@hv@O_r}sKsXHsRr1?UJaN9 *#F=|3qX_gfq4Cxd$iA_;AK4V=sxLk{LUDh`m*1K7 z*D-XBO7DK*8QZTn8faCQ5QG#nw;86-11T^#{1XCzLYK6rDui0UDVdSx-w5}(T;E9x zU^jiSUsm+zBK6h3E3UtBZ8v_aEQv&V{9xIV+ASW5zKQpfov*!OXD4fHIK1hyBCERG z<=D 8b~j}-88KNvWgdijk%^{o z{(}y`_fp>xLYEb`iS=GWLW1V012#DJOma;dR8~hpGR;KLBt?>{!F@7Z+TA5F4UeG^ zzw(6h*DSw@hW&@29izzsT{g+=$>pU_BnD^ej}Vp~Q;_F|cf~?gY)&K(bO^XChpP1u zRGUoFLdic$HT;QO79tYM!}R{sq5H5o?rY}DNyr9fNErh%%?o_19GztE#ok{BZg?MT zl@l62Te^v6a<3*5q8hc@{E6Jc9u_3u_+`)Er9>*msIp+9IVl=!S+>9sLnzSKn$tz( zsPNY>`zA?( ksOtJ$Fljdqdhh%s`E`=L`w$Fo0A3;p{d@itHl)4tmnK}K zt_)SMYJl5fQ}L;AJ7qFD WPvAOLv> z0Wkg|!PZPC`*MKycPngjB7<3Go&K6zd|8lA#HvN~pu)^}A=T9_NIAX57?g03A9c)N z+096$iTFovZef%4p|Cq1kC_D@!%P&U=fBz`5T>?+w}flr0GMg(T3Hu3CUsA?!eC?5 zs@xA(IokpyKP&18wD)+^A9p641{=+^MYSUF+HR-sw<=sa&_XqUrr!*zX~fj5{+VVf zy8<)_kAuFHa$hfnt$H0kbil)8UNc||lR2m+9g5j?Y{2LgL;I>%C4@}RwcALWOt6X9 z y$#0rsiTnk3%!ynH# zm~-gnT}VZ^FRi-=%V+5ID*J3lMjuyv4Hwr=*pW#Ty>YmhL`CS30H6q*LfV9e1v)Rd z7XDX&QK$sOu{isd0%7pCx7F)}swj&K>ru?4bOCIX2DBx_93$PUq~c85U|JQ1{_pDQ z&8)W+c(l?4;-9)HlDqf7Qy+pagz6begzj$EuYXQz=@>p#xlwR8AKpM}KT--di>rBP zd<7qqef{nlS<}k=$luu~5iN0Z0P`Kn%4+rm;F{!&N;Ne*0#OZ61`0U}3j62M2QGt? zLc^n_EX0!tipksxoh}TNMgP%&BNf8`T4k%$oPmti2Id)jP8N7wm4I!MuU$_!f|zT( z$9Pr`OUinrX-VtQ6wu4qD|;P(&x}a$n!d63l?wdaE=cRBb;BMIVMksnp<>M!?vP%> zxJkfe57{_4N~k@>8!UM8<*J(fgpk|`#ydrmp_wwy17>u1X!K2n;u3%$zZs1Nt(tJw zh3~(DZZSy^btU?1p`rlva-rap$4We0 Zlmd&^K3LUr*#lP(2WOCU)MW3w-cE~B*E>hw4B3m1cuRX2mpbEMZ5{#uRsA2 zs+wmDAyx{*3b^Aulpbt5oAQ*lyGtkuN~<_9zKh;Bnl)9MJ_;MqJTK^v^K5LI83KmV zsouu7MnE3JdyVTanrNxpRM>f?ZVc(2C*R*%wj>yg4;rp|$rIX{_+UHqjR-6IN6&SU zwG<{7ntMEYB$ZuA1j`kAEe-;PD{iebfcS>VS=kNqo*?8s#HNM(aY6da(|1j}4K)}< zUpm@E;=frW&o(2+vCE`OlV6n61go>oN3&_C2_w{{h#U|G6K744T9JXN6kvHcUxFJI z(hE&SvuIq-TO}TswAkR&pyzMitP$fj;KQMrq<28P_rWt{5*WsP{g5V9Mxg^Akz@E! ze@n}KS6H4^3S6Ol6`QHom%a+!Q};V|=i{u7u`;{$4qRPAFWk6HmiO3r2gD(6aDZrm zpp^w~T$>k_v7a5ydLk4vSuwSlY(29OnAn;e?t$JEd2XqxJHe8Pb8k*AuV&XraUYeo z+b_Id)PJCGKP=vWrt2En1fMldtVa7WX?3Bxp)->v-7k->qd=i4uB}yN+2B-fnD03Y zPFO%$*@%3Hd)3WPbsadk#jmGPoXZ{jS0mUc)y1KFVS&RtL{-8$D9@v_(8z@Ou`L}7 z{4nhN*qn!*RY@~bc5gG3MD5-^dhuc+1z9e`2&B+vaKbLP?^C`Q%>_c<`B5{p3u6yh zc=d=5*XAepU((A+&SWvpFic93pG+P-;cPgWG+hrPvt`wM3g;{n*q0s5LN^ zqR-IJe$K(}fPI~@+tskebl9DQ6onaUavf8w4Fi0t&bx8X^h|gp^*8#+PsY0whI5kf zwXP&PhEQspYksW1)V5KH0yaMxQITz~Z|$W0=sQhC5>q>7E3&=m1}IWAPI;5ZAr=Pc z$gd|(xIUiM-`Ox3+kW0Et)=X1A#u9!z*tl+MYdq7Qbp9b)@WidpOi9LNPIRE6=`Er zT-CA3wXt$}Z9tM^N{3ZJ*mYB(rZ@OeiGJ7duUW@(3QhSY-zbkrh8LbqAM~f?JvTx> zbuim(FyFD?y2~gluOBy(>Aox^sU^D|H}Wy2AJ6KjKhFg)ckQL~>E^pU?5tGIdCwaO zZG~G+*o)V#ZyD{{9>|mQyeipaViqR66j+XSr_ONA4rv3#hU;gWg_va8`w%=%oo8cU zqy6l5N6GuQ_zK-{w6Z#5QIBdda9MuyY_bDfV)B=VODHv2b{Lv~Ch3x5)!HBjisoCH zB68m~$ZL>)*bf6Xk-l*{`&Eqbba89>y)nrV ls$> yW_(U6<@4|Z&kpUj(R^Qtk*RTm zg6sK3E%XU{_xMl_6MU6T&9#^r2Ct`|bePOKCz_^UC3T>fJYoq}(Tz7RF)50kuYIC1 z?J|!l+I{Iz1Qkhl8E?#0i7aL#PUrXxb!`axDso42|0}O^1Dgt?%Ff;y7%MsfxUCJK z3!+BwVjKFsK~5-3T>=lu%em!nqo6W@QjajDa^R1a+=oF~ 9=0&X;jC1Uf761+p1rC^ft(2!z9n6qAqf%mdjH{>-5<=Zc z