pax_global_header00006660000000000000000000000064145615013610014514gustar00rootroot0000000000000052 comment=cff070078c6c2792cb07852185f64a6bb8ae47db Perseudonymous-datapoint-python-cff0700/000077500000000000000000000000001456150136100204645ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/.coveragerc000066400000000000000000000003511456150136100226040ustar00rootroot00000000000000[run] branch = True source = datapoint omit = datapoint/_version.py [report] exclude_lines = if self.debug pragma: no cover raise NotImplementedError if __name__ == .__main__.: ignore_errors = True omit = tests/*Perseudonymous-datapoint-python-cff0700/.gitattributes000066400000000000000000000000431456150136100233540ustar00rootroot00000000000000datapoint/_version.py export-subst Perseudonymous-datapoint-python-cff0700/.gitignore000066400000000000000000000017421456150136100224600ustar00rootroot00000000000000## OS X .DS_Store .AppleDouble .LSOverride # Icon must end with two \r Icon # Thumbnails ._* # Files that might appear on external disk .Spotlight-V100 .Trashes # Directories potentially created on remote AFP share .AppleDB .AppleDesktop Network Trash Folder Temporary Items ## Python # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] # C extensions *.so # Distribution / packaging .Python env/ build/ develop-eggs/ dist/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ *.egg-info/ .installed.cfg *.egg # 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/ .coverage .cache nosetests.xml coverage.xml # Translations *.mo *.pot # Django stuff: *.log # Sphinx documentation docs/_build/ # PyBuilder target/ # vi/vim *.swp # mkdocs site/ Perseudonymous-datapoint-python-cff0700/.travis.yml000066400000000000000000000011151456150136100225730ustar00rootroot00000000000000language: python sudo: false dist: xenial python: - '3.8' - '3.9' - '3.10' - '3.11' - '3.12' install: - pip install codecov - pip install coverage - pip install . - pip install -r requirements.txt script: - coverage run -m unittest discover -s tests/unit && codecov -F 'unit' - if [[ "$API_KEY" != "" ]]; then coverage run -m unittest discover -s tests/integration; fi && codecov -F 'integration' deploy: provider: pypi user: EJEP skip_cleanup: true password: "$PYPI_PASSWORD" on: tags: true all_branches: true repo: EJEP/datapoint-python python: '3.8' Perseudonymous-datapoint-python-cff0700/CHANGELOG.md000066400000000000000000000110441456150136100222750ustar00rootroot00000000000000# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] ## [0.9.9] - 2024-02-09 + Update versioneer + Add pythons 3.9, 3.10, 3.11, 3.12 to tests and setup.py. + Remove support for python < 3.8 + Remove deprecated `new_old` and `future_old` functions. + Add `__str__` functions to `Timestep`, `Element`, `Day`, `Site` + Add element to `Forecast` to track if forecast is daily or 3 hourly + Change `id` variable in `Forecast`, `Observation`, `Site` to `location_id`. + Change `id` variable in `Element` to `field_code`. ## [0.9.8] - 2020-07-03 + Remove f-string in test ## [0.9.7] - 2020-07-03 + Bugfix for `get_observation_sites` ## [0.9.6] - 2020-05-05 + Require arguments to `get_nearest_forecast_site` and `get_nearest_observation_site`. + Add python 3.8 to tests and setup.py ## [0.9.5] - 2019-10-01 + Remove support for Python 3.4. ## [0.9.4] - 2019-09-10 + Fix to url case in `travis.yml` to enable releases. ## [0.9.3] - 2019-09-10 + Update README.md and travis.yml due to change in ownership. ## [0.9.2] - 2019-07-26 + Raise an error if data for the requested location is not provided from the datapoint API. ## [0.9.1] - 2019-05-21 + Remove stray print statement ## [0.9.0] - 2019-05-18 + Explicitly state the use of semantic versioning in `README.md`. + Add `elements()` function to `Timestep`. + Remove night/day indication from weather codes which have them. + Change the logic used to calculate the closest timestep to a datetime. The closest timestep to the datetime is now used. Add a new function, `Forecast.at_datetime(target)` to do this. `Forecast.now()` has been changed to use this new function. The old behaviour is deprecated and available using `Forecast.now_old()`. `Forecast.future()` has been changed to use this new function. The old behaviour is deprecated and available using `Forecast.future_old()`. + Check if keys are returned from datapoint api in `Manager.py`. Do not attempt to read the values from the dict if they are not there. ## [0.8.0] - 2019-04-05 + Retry the connection to datapoint if it fails (up to 10 times). + Use versioneer to set version number from git tag. + Fix failure to return forecast at midnight. + Add changelog. ## [0.7.0] - 2019-02-19 + Check that data is provided in tests. + Set weather element of `timestep` to 'not reported' if data is not provided. + Update examples to use `get_nearest_forecast_site` function. + Rename `get_all_sites()` to `get_forecast_sites()` and `get_nearest_site()` to `get_nearest_forecast_site()`. + Limit observations to sites within 20 km of the nearest observation site. + Require that the nearest location is within 30 km of the requested location. + Show the available sites on maps in the documentation. + Use a haversine function to calculate the distance between coordinates. + Use setuptools in `setup.py`. + Fix bug where site attributes were assigned incorrectly. + Use sphinx to generate documentation. + Fix bug where longitude or latitude values of 0 returned false in `get_nearest_site()`. ## [0.6.1] - 2019-01-26 + Remove stray print statements. ## [0.6.0] - 2019-01-26 + Remove support for python 2 and python 3.3. ## [0.5.1] - 2019-01-26 + Correct wrong version number. ## [0.5.0] - 2019-01-26 + Fix latitude and longitude in `manager_test.py`. + Add support for observations. + Swap the order of latitude and longitude in function calls. + Add a timeout of 1 second to the API call. + Fix error which set sites to `None`. + Fix documentation build. + Use python 3 syntax in examples. + Fix bug where `forecast.now()` always returned `None`. + Change print statements in `Manager.py` and `Forecast.py` to python 3 style. + Fix bug where no data was returned for about an hour after midnight. + Add `forecast.future()` function. + Add support for python 3.6. ## [0.4.3] - 2017-01-19 + Use a custom error when datapoint call fails. ## [0.4.2] - 2017-01-18 + Only send python 3.5 to Travis. ## [0.4.1] - 2017-01-04 + Update tests. + Fix bug with `forecast.now()`. + Implement text forecast. ## [0.4.0] - 2016-06-06 + Add python 3 support. ## [0.3.0] - 2016-01-06 + Use python datetime for dates and times. + Add instructions for installing from master using pip. ## [0.2.2] - 2014-10-24 + Add examples + Use readthedocs. + Add error when no data is returned. + Cache site requests for an hour. ## [0.2.1] - 2014-10-17 + Test string to int conversion. ## [0.2] - 2014-10-10 + Use travis + Add concept of API key profiles. + Fix type casting. + Add `forecast.now()` function. ## [0.1] - 2014-07-16 + Initial commit and license. Perseudonymous-datapoint-python-cff0700/LICENSE000066400000000000000000001033021456150136100214700ustar00rootroot00000000000000GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Datapoint Python, a Python library for the Met Office Datapoint API. Copyright (C) 2016 Jacob Tomlinson This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Datapoint Python Copyright (C) 2016 Jacob Tomlinson This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . Perseudonymous-datapoint-python-cff0700/MANIFEST000066400000000000000000000005541456150136100216210ustar00rootroot00000000000000# file GENERATED by distutils, do NOT edit setup.py datapoint/Day.py datapoint/Element.py datapoint/Forecast.py datapoint/Manager.py datapoint/Observation.py datapoint/Site.py datapoint/Timestep.py datapoint/__init__.py datapoint/exceptions.py datapoint/profile.py datapoint/regions/RegionManager.py datapoint/regions/__init__.py datapoint/regions/region_names.py Perseudonymous-datapoint-python-cff0700/MANIFEST.in000066400000000000000000000000641456150136100222220ustar00rootroot00000000000000include versioneer.py include datapoint/_version.py Perseudonymous-datapoint-python-cff0700/README.md000066400000000000000000000052321456150136100217450ustar00rootroot00000000000000# _DataPoint for Python_ [![PyPi version](https://img.shields.io/pypi/v/datapoint.svg)](https://pypi.python.org/pypi/datapoint/) [![Supported Python versions](https://img.shields.io/pypi/pyversions/datapoint.svg)](https://pypi.python.org/pypi/datapoint/) [![Build Status](http://img.shields.io/travis/ejep/datapoint-python.svg?style=flat)](https://travis-ci.org/ejep/datapoint-python) [![Documentation Status](https://readthedocs.org/projects/datapoint-python/badge/?version=latest)](https://readthedocs.org/projects/datapoint-python/) _A Python module for accessing weather data via the [Met Office](http://www.metoffice.gov.uk/)'s open data API known as [DataPoint](http://www.metoffice.gov.uk/datapoint)._ __Disclaimer: This module is in no way part of the DataPoint project/service. This module is intended to simplify the use of DataPoint for small Python projects (e.g school projects). No support for this module is provided by the Met Office and may break as the DataPoint service grows/evolves. The author will make reasonable efforts to keep it up to date and fully featured.__ ## Features * List forecast sites * Get nearest forecast site from latitiude and longitude * Get the following 5 day forecast types for any site * Daily (Two timesteps, midday and midnight UTC) * 3 hourly (Eight timesteps, every 3 hours starting at midnight UTC) ## Installation ```Bash $ pip install DataPoint ``` You will also require a [DataPoint API key](http://www.metoffice.gov.uk/datapoint/API). For more installation methods see the [installation guide](http://datapoint-python.readthedocs.org/en/latest/install/). ## Documentation Detailed documentation for this project is available on [Read the Docs](http://datapoint-python.readthedocs.org/en/latest). This project uses semantic versioning as defined at [semver.org](https://semver.org/). ## Example Usage ```Python import datapoint # Create connection to DataPoint with your API key conn = datapoint.connection(api_key="aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee") # Get the nearest site for my latitude and longitude site = conn.get_nearest_forecast_site(51.500728, -0.124626) # Get a forecast for my nearest site with 3 hourly timesteps forecast = conn.get_forecast_for_site(site.location_id, "3hourly") # Get the current timestep from the forecast current_timestep = forecast.now() # Print out the site and current weather print(site.name + "-" + current_timestep.weather.text) ``` Example output ``` London - Heavy rain ``` See [examples directory](https://github.com/ejep/datapoint-python/tree/master/examples) for more in depth examples. ## Contributing changes Please feel free to submit issues and pull requests. ## License GPLv3 Perseudonymous-datapoint-python-cff0700/datapoint/000077500000000000000000000000001456150136100224475ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/datapoint/Day.py000066400000000000000000000007351456150136100235430ustar00rootroot00000000000000class Day(): def __init__(self): self.date = None self.timesteps = [] def __str__(self): day_str = '' date_part = 'Date: ' + str(self.date) + '\n\n' day_str += date_part day_str += 'Timesteps: \n\n' try: for timestep in self.timesteps: day_str += str(timestep) day_str += '\n' except TypeError: day_str += 'No timesteps' return day_str Perseudonymous-datapoint-python-cff0700/datapoint/Element.py000066400000000000000000000005171456150136100244150ustar00rootroot00000000000000class Element(): def __init__(self, field_code=None, value=None, units=None): self.field_code = field_code self.value = value self.units = units # For elements which can also have a text value self.text = None def __str__(self): return str(self.value) + ' ' + str(self.units) Perseudonymous-datapoint-python-cff0700/datapoint/Forecast.py000066400000000000000000000107451456150136100245760ustar00rootroot00000000000000import datetime from datapoint.exceptions import APIException class Forecast(): def __init__(self, frequency=""): self.frequency = frequency self.data_date = None self.continent = None self.country = None self.name = None self.longitude = None self.latitude = None self.location_id = None self.elevation = None self.days = [] def timedelta_total_seconds(self, timedelta): return ( timedelta.microseconds + 0.0 + (timedelta.seconds + timedelta.days * 24 * 3600) * 10 ** 6) / 10 ** 6 def at_datetime(self, target): """ Return the timestep closest to the target datetime""" # Convert target to offset aware datetime if target.tzinfo is None: target = datetime.datetime.combine(target.date(), target.time(), self.days[0].date.tzinfo) num_timesteps = len(self.days[1].timesteps) # First check that the target is at most 1.5 hours before the first timestep if target < self.days[0].timesteps[0].date - datetime.timedelta(hours=1, minutes=30) and num_timesteps == 8: err_str = 'There is no forecast available for the requested time. ' + \ 'The requested time is more than 1.5 hours before the first available forecast' raise APIException(err_str) elif target < self.days[0].timesteps[0].date - datetime.timedelta(hours=6) and num_timesteps == 2: err_str = 'There is no forecast available for the requested time. ' + \ 'The requested time is more than 6 hours before the first available forecast' raise APIException(err_str) # Ensure that the target is less than 1 hour 30 minutes after the final # timestep. # Logic is correct # If there are 8 timesteps per day, then the target must be within 1.5 # hours of the last timestep if target > (self.days[-1].timesteps[-1].date + datetime.timedelta(hours=1, minutes=30)) and num_timesteps == 8: err_str = 'There is no forecast available for the requested time. The requested time is more than 1.5 hours after the first available forecast' raise APIException(err_str) # If there are 2 timesteps per day, then the target must be within 6 # hours of the last timestep if target > (self.days[-1].timesteps[-1].date + datetime.timedelta(hours=6)) and num_timesteps == 2: err_str = 'There is no forecast available for the requested time. The requested time is more than 6 hours after the first available forecast' raise APIException(err_str) # Loop over all timesteps # Calculate the first time difference prev_td = target - self.days[0].timesteps[0].date prev_ts = self.days[0].timesteps[0] for day in self.days: for timestep in day.timesteps: # Calculate the difference between the target time and the # timestep. td = target - timestep.date # Find the timestep which is further from the target than the # previous one. Return the previous timestep if abs(td.total_seconds()) > abs(prev_td.total_seconds()): # We are further from the target return prev_ts if abs(td.total_seconds()) < 5400 and num_timesteps == 8: # if we are past the final timestep, and it is a 3 hourly # forecast, check that we are within 90 minutes of it return timestep if abs(td.total_seconds()) < 21600 and num_timesteps == 2: # if we are past the final timestep, and it is a daily # forecast, check that we are within 6 hours of it return timestep prev_ts = timestep prev_td = td def now(self): """Function to return the closest timestep to the current time """ d = datetime.datetime.now(tz=self.days[0].date.tzinfo) return self.at_datetime(d) def future(self, in_days=0, in_hours=0, in_minutes=0, in_seconds=0): """Return the closest timestep to a date in a given amount of time""" d = datetime.datetime.now(tz=self.days[0].date.tzinfo) target = d + datetime.timedelta(days=in_days, hours=in_hours, minutes=in_minutes, seconds=in_seconds) return self.at_datetime(target) Perseudonymous-datapoint-python-cff0700/datapoint/Manager.py000066400000000000000000000654261456150136100244100ustar00rootroot00000000000000""" Datapoint python module """ from datetime import datetime from datetime import timedelta from time import time from math import radians, cos, sin, asin, sqrt import pytz from warnings import warn import requests from requests.adapters import HTTPAdapter from requests.packages.urllib3.util.retry import Retry from datapoint.exceptions import APIException from datapoint.Site import Site from datapoint.Forecast import Forecast from datapoint.Observation import Observation from datapoint.Day import Day from datapoint.Timestep import Timestep from datapoint.Element import Element from datapoint.regions.RegionManager import RegionManager FORECAST_URL = "http://datapoint.metoffice.gov.uk/public/data/val/wxfcs/all/json" OBSERVATION_URL = "http://datapoint.metoffice.gov.uk/public/data/val/wxobs/all/json" DATE_FORMAT = "%Y-%m-%dZ" DATA_DATE_FORMAT = "%Y-%m-%dT%XZ" FORECAST_DATE_FORMAT = "%Y-%m-%dT%H:%M:%SZ" # See: # https://www.metoffice.gov.uk/binaries/content/assets/mohippo/pdf/3/0/datapoint_api_reference.pdf # pages 8 onwards for a description of the response anatomy, and the elements ELEMENTS = { "Day": {"U":"U", "V":"V", "W":"W", "T":"Dm", "S":"S", "Pp":"PPd", "H":"Hn", "G":"Gn", "F":"FDm", "D":"D"}, "Night": {"V":"V", "W":"W", "T":"Nm", "S":"S", "Pp":"PPn", "H":"Hm", "G":"Gm", "F":"FNm", "D":"D"}, "Default": {"V":"V", "W":"W", "T":"T", "S":"S", "Pp":"Pp", "H":"H", "G":"G", "F":"F", "D":"D", "U":"U"}, "Observation": {"T":"T", "V":"V", "D":"D", "S":"S", "W":"W", "P":"P", "Pt":"Pt", "Dp":"Dp", "H":"H"} } WEATHER_CODES = { "0":"Clear night", "1":"Sunny day", "2":"Partly cloudy", "3":"Partly cloudy", "4":"Not used", "5":"Mist", "6":"Fog", "7":"Cloudy", "8":"Overcast", "9":"Light rain shower", "10":"Light rain shower", "11":"Drizzle", "12":"Light rain", "13":"Heavy rain shower", "14":"Heavy rain shower", "15":"Heavy rain", "16":"Sleet shower", "17":"Sleet shower", "18":"Sleet", "19":"Hail shower", "20":"Hail shower", "21":"Hail", "22":"Light snow shower", "23":"Light snow shower", "24":"Light snow", "25":"Heavy snow shower", "26":"Heavy snow shower", "27":"Heavy snow", "28":"Thunder shower", "29":"Thunder shower", "30":"Thunder" } class Manager(): """ Datapoint Manager object """ def __init__(self, api_key=""): self.api_key = api_key self.call_response = None # The list of sites changes infrequently so limit to requesting it # every hour. self.forecast_sites_last_update = 0 self.forecast_sites_last_request = None self.forecast_sites_update_time = 3600 self.observation_sites_last_update = 0 self.observation_sites_last_request = None self.observation_sites_update_time = 3600 self.regions = RegionManager(self.api_key) def __retry_session(self, retries=10, backoff_factor=0.3, status_forcelist=(500, 502, 504), session=None): """ Retry the connection using requests if it fails. Use this as a wrapper to request from datapoint """ # requests.Session allows finer control, which is needed to use the # retrying code the_session = session or requests.Session() # The Retry object manages the actual retrying retry = Retry(total=retries, read=retries, connect=retries, backoff_factor=backoff_factor, status_forcelist=status_forcelist) adapter = HTTPAdapter(max_retries=retry) the_session.mount('http://', adapter) the_session.mount('https://', adapter) return the_session def __call_api(self, path, params=None, api_url=FORECAST_URL): """ Call the datapoint api using the requests module """ if not params: params = dict() payload = {'key': self.api_key} payload.update(params) url = "%s/%s" % (api_url, path) # Add a timeout to the request. # The value of 1 second is based on attempting 100 connections to # datapoint and taking ten times the mean connection time (rounded up). # Could expose to users in the functions which need to call the api. #req = requests.get(url, params=payload, timeout=1) # The wrapper function __retry_session returns a requests.Session # object. This has a .get() function like requests.get(), so the use # doesn't change here. sess = self.__retry_session() req = sess.get(url, params=payload, timeout=1) try: data = req.json() except ValueError: raise APIException("DataPoint has not returned any data, this could be due to an incorrect API key") self.call_response = data if req.status_code != 200: msg = [data[m] for m in ("message", "error_message", "status") \ if m in data][0] raise Exception(msg) return data def _distance_between_coords(self, lon1, lat1, lon2, lat2): """ Calculate the great circle distance between two points on the earth (specified in decimal degrees). Haversine formula states that: d = 2 * r * arcsin(sqrt(sin^2((lat1 - lat2) / 2 + cos(lat1)cos(lat2)sin^2((lon1 - lon2) / 2)))) where r is the radius of the sphere. This assumes the earth is spherical. """ # Convert the coordinates of the points to radians. lon1, lat1, lon2, lat2 = map(radians, [lon1, lat1, lon2, lat2]) r = 6371 d_hav = 2 * r * asin(sqrt((sin((lat1 - lat2) / 2))**2 + \ cos(lat1) * cos(lat2) * (sin((lon1 - lon2) / 2)**2 ))) return d_hav def _get_wx_units(self, params, name): """ Give the Wx array returned from datapoint and an element name and return the units for that element. """ units = "" for param in params: if str(name) == str(param['name']): units = param['units'] return units def _weather_to_text(self, code): if not isinstance(code, int): raise ValueError("Weather code must be an integer not", type(code)) if code < 0 or code > 30: raise ValueError("Weather code outof bounds, should be 0-30") text = WEATHER_CODES[str(code)] return text def _visibility_to_text(self, distance): """ Convert observed visibility in metres to text used in forecast """ if not isinstance(distance, int): raise ValueError("Distance must be an integer not", type(distance)) if distance < 0: raise ValueError("Distance out of bounds, should be 0 or greater") if 0 <= distance < 1000: return 'VP' elif 1000 <= distance < 4000: return 'PO' elif 4000 <= distance < 10000: return 'MO' elif 10000 <= distance < 20000: return 'GO' elif 20000 <= distance < 40000: return 'VG' else: return 'EX' def get_all_sites(self): """ Deprecated. This function returns a list of Site object. """ warning_message = 'This function is deprecated. Use get_forecast_sites() instead' warn(warning_message, DeprecationWarning, stacklevel=2) return self.get_forecast_sites() def get_forecast_sites(self): """ This function returns a list of Site object. """ time_now = time() if (time_now - self.forecast_sites_last_update) > self.forecast_sites_update_time or self.forecast_sites_last_request is None: data = self.__call_api("sitelist/") sites = list() for jsoned in data['Locations']['Location']: site = Site() site.name = jsoned['name'] site.location_id = jsoned['id'] site.latitude = jsoned['latitude'] site.longitude = jsoned['longitude'] if 'region' in jsoned: site.region = jsoned['region'] if 'elevation' in jsoned: site.elevation = jsoned['elevation'] if 'unitaryAuthArea' in jsoned: site.unitaryAuthArea = jsoned['unitaryAuthArea'] if 'nationalPark' in jsoned: site.nationalPark = jsoned['nationalPark'] site.api_key = self.api_key sites.append(site) self.forecast_sites_last_request = sites # Only set self.sites_last_update once self.sites_last_request has # been set self.forecast_sites_last_update = time_now else: sites = self.forecast_sites_last_request return sites def get_nearest_site(self, latitude=None, longitude=None): """ Deprecated. This function returns nearest Site object to the specified coordinates. """ warning_message = 'This function is deprecated. Use get_nearest_forecast_site() instead' warn(warning_message, DeprecationWarning, stacklevel=2) return self.get_nearest_forecast_site(latitude, longitude) def get_nearest_forecast_site(self, latitude, longitude): """ This function returns the nearest Site object to the specified coordinates. """ nearest = False distance = None sites = self.get_forecast_sites() # Sometimes there is a TypeError exception here: sites is None # So, sometimes self.get_all_sites() has returned None. for site in sites: new_distance = \ self._distance_between_coords( float(site.longitude), float(site.latitude), float(longitude), float(latitude)) if ((distance is None) or (new_distance < distance)): distance = new_distance nearest = site # If the nearest site is more than 30km away, raise an error if distance > 30: raise APIException("There is no site within 30km.") return nearest def get_forecast_for_site(self, site_id, frequency="daily"): """ Get a forecast for the provided site A frequency of "daily" will return two timesteps: "Day" and "Night". A frequency of "3hourly" will return 8 timesteps: 0, 180, 360 ... 1260 (minutes since midnight UTC) """ data = self.__call_api(site_id, {"res": frequency}) params = data['SiteRep']['Wx']['Param'] forecast = Forecast(frequency=frequency) # If the 'Location' key is missing, there is no data for the site, # raise an error. if 'Location' not in data['SiteRep']['DV']: err_string = ('DataPoint has not returned any data for the' 'requested site.') raise APIException(err_string) # Check if the other keys we need are in the data returned from the # datapoint API. If they are not, the data elements in the python class # are left as None. It is currently the responsibility of the program # using them to cope with this. if 'dataDate' in data['SiteRep']['DV']: forecast.data_date = datetime.strptime(data['SiteRep']['DV']['dataDate'], DATA_DATE_FORMAT).replace(tzinfo=pytz.UTC) if 'continent' in data['SiteRep']['DV']['Location']: forecast.continent = data['SiteRep']['DV']['Location']['continent'] if 'country' in data['SiteRep']['DV']['Location']: forecast.country = data['SiteRep']['DV']['Location']['country'] if 'name' in data['SiteRep']['DV']['Location']: forecast.name = data['SiteRep']['DV']['Location']['name'] if 'lon' in data['SiteRep']['DV']['Location']: forecast.longitude = data['SiteRep']['DV']['Location']['lon'] if 'lat' in data['SiteRep']['DV']['Location']: forecast.latitude = data['SiteRep']['DV']['Location']['lat'] if 'i' in data['SiteRep']['DV']['Location']: forecast.location_id = data['SiteRep']['DV']['Location']['i'] if 'elevation' in data['SiteRep']['DV']['Location']: forecast.elevation = data['SiteRep']['DV']['Location']['elevation'] for day in data['SiteRep']['DV']['Location']['Period']: new_day = Day() new_day.date = datetime.strptime(day['value'], DATE_FORMAT).replace(tzinfo=pytz.UTC) for timestep in day['Rep']: new_timestep = Timestep() # According to the datapoint documentation # (https://www.metoffice.gov.uk/datapoint/product/uk-daily-site-specific-forecast), # the data provided are for noon (local time) and midnight # (local time). This implies that midnight is 00:00 and noon is # 12:00. if timestep['$'] == "Day": cur_elements = ELEMENTS['Day'] new_timestep.date = datetime.strptime(day['value'], DATE_FORMAT).replace(tzinfo=pytz.UTC) \ + timedelta(hours=12) elif timestep['$'] == "Night": cur_elements = ELEMENTS['Night'] new_timestep.date = datetime.strptime(day['value'], DATE_FORMAT).replace(tzinfo=pytz.UTC) else: cur_elements = ELEMENTS['Default'] new_timestep.date = datetime.strptime(day['value'], DATE_FORMAT).replace(tzinfo=pytz.UTC) \ + timedelta(minutes=int(timestep['$'])) if frequency == 'daily': new_timestep.name = timestep['$'] elif frequency == '3hourly': new_timestep.name = int(timestep['$']) new_timestep.weather = \ Element(cur_elements['W'], timestep[cur_elements['W']], self._get_wx_units(params, cur_elements['W'])) new_timestep.weather.text = self._weather_to_text(int(timestep[cur_elements['W']])) new_timestep.temperature = \ Element(cur_elements['T'], int(timestep[cur_elements['T']]), self._get_wx_units(params, cur_elements['T'])) new_timestep.feels_like_temperature = \ Element(cur_elements['F'], int(timestep[cur_elements['F']]), self._get_wx_units(params, cur_elements['F'])) new_timestep.wind_speed = \ Element(cur_elements['S'], int(timestep[cur_elements['S']]), self._get_wx_units(params, cur_elements['S'])) new_timestep.wind_direction = \ Element(cur_elements['D'], timestep[cur_elements['D']], self._get_wx_units(params, cur_elements['D'])) new_timestep.wind_gust = \ Element(cur_elements['G'], int(timestep[cur_elements['G']]), self._get_wx_units(params, cur_elements['G'])) new_timestep.visibility = \ Element(cur_elements['V'], timestep[cur_elements['V']], self._get_wx_units(params, cur_elements['V'])) new_timestep.precipitation = \ Element(cur_elements['Pp'], int(timestep[cur_elements['Pp']]), self._get_wx_units(params, cur_elements['Pp'])) new_timestep.humidity = \ Element(cur_elements['H'], int(timestep[cur_elements['H']]), self._get_wx_units(params, cur_elements['H'])) if 'U' in cur_elements and cur_elements['U'] in timestep: new_timestep.uv = \ Element(cur_elements['U'], timestep[cur_elements['U']], self._get_wx_units(params, cur_elements['U'])) new_day.timesteps.append(new_timestep) # The daily timesteps are not sorted by time. Sort them if frequency == 'daily': new_day.timesteps.sort(key=lambda r: r.date) forecast.days.append(new_day) return forecast def get_observation_sites(self): """ This function returns a list of Site objects for which observations are available. """ if (time() - self.observation_sites_last_update) > self.observation_sites_update_time: self.observation_sites_last_update = time() data = self.__call_api("sitelist/", None, OBSERVATION_URL) sites = list() for jsoned in data['Locations']['Location']: site = Site() site.name = jsoned['name'] site.location_id = jsoned['id'] site.latitude = jsoned['latitude'] site.longitude = jsoned['longitude'] if 'region' in jsoned: site.region = jsoned['region'] if 'elevation' in jsoned: site.elevation = jsoned['elevation'] if 'unitaryAuthArea' in jsoned: site.unitaryAuthArea = jsoned['unitaryAuthArea'] if 'nationalPark' in jsoned: site.nationalPark = jsoned['nationalPark'] site.api_key = self.api_key sites.append(site) self.observation_sites_last_request = sites else: sites = self.observation_sites_last_request return sites def get_nearest_observation_site(self, latitude, longitude): """ This function returns the nearest Site to the specified coordinates that supports observations """ nearest = False distance = None sites = self.get_observation_sites() for site in sites: new_distance = \ self._distance_between_coords( float(site.longitude), float(site.latitude), float(longitude), float(latitude)) if ((distance == None) or (new_distance < distance)): distance = new_distance nearest = site # If the nearest site is more than 20km away, raise an error if distance > 20: raise APIException("There is no site within 30km.") return nearest def get_observations_for_site(self, site_id, frequency='hourly'): """ Get observations for the provided site Returns hourly observations for the previous 24 hours """ data = self.__call_api(site_id,{"res": frequency}, OBSERVATION_URL) params = data['SiteRep']['Wx']['Param'] observation = Observation() # Check if keys are in data returned before using them. if 'dataDate' in data['SiteRep']['DV']: observation.data_date = datetime.strptime(data['SiteRep']['DV']['dataDate'], DATA_DATE_FORMAT).replace(tzinfo=pytz.UTC) if 'Location' in data['SiteRep']['DV']: if 'continent' in data['SiteRep']['DV']['Location']: observation.continent = data['SiteRep']['DV']['Location']['continent'] if 'country' in data['SiteRep']['DV']['Location']: observation.country = data['SiteRep']['DV']['Location']['country'] if 'name' in data['SiteRep']['DV']['Location']: observation.name = data['SiteRep']['DV']['Location']['name'] if 'lon' in data['SiteRep']['DV']['Location']: observation.longitude = data['SiteRep']['DV']['Location']['lon'] if 'lat' in data['SiteRep']['DV']['Location']: observation.latitude = data['SiteRep']['DV']['Location']['lat'] if 'i' in data['SiteRep']['DV']['Location']: observation.location_id = data['SiteRep']['DV']['Location']['i'] if 'elevation' in data['SiteRep']['DV']['Location']: observation.elevation = data['SiteRep']['DV']['Location']['elevation'] for day in data['SiteRep']['DV']['Location']['Period']: new_day = Day() new_day.date = datetime.strptime(day['value'], DATE_FORMAT).replace(tzinfo=pytz.UTC) # If the day only has 1 timestep, put it into a list by itself # so it can be treated the same as a day with multiple timesteps if type(day['Rep']) is not list: day['Rep'] = [day['Rep']] for timestep in day['Rep']: # As stated in # https://www.metoffice.gov.uk/datapoint/product/uk-hourly-site-specific-observations, # some sites do not have all parameters available for # observations. The documentation does not state which # fields may be absent. If the parameter is not available, # nothing is returned from the API. If this happens the # value of the element is set to 'Not reported'. This may # change to the element not being assigned to the timestep. new_timestep = Timestep() # Assume the '$' field is always present. new_timestep.name = int(timestep['$']) cur_elements = ELEMENTS['Observation'] new_timestep.date = datetime.strptime(day['value'], DATE_FORMAT).replace(tzinfo=pytz.UTC) + timedelta(minutes=int(timestep['$'])) if cur_elements['W'] in timestep: new_timestep.weather = \ Element(cur_elements['W'], timestep[cur_elements['W']], self._get_wx_units(params, cur_elements['W'])) new_timestep.weather.text = \ self._weather_to_text(int(timestep[cur_elements['W']])) else: new_timestep.weather = \ Element(cur_elements['W'], 'Not reported') if cur_elements['T'] in timestep: new_timestep.temperature = \ Element(cur_elements['T'], float(timestep[cur_elements['T']]), self._get_wx_units(params, cur_elements['T'])) else: new_timestep.temperature = \ Element(cur_elements['T'], 'Not reported') if 'S' in timestep: new_timestep.wind_speed = \ Element(cur_elements['S'], int(timestep[cur_elements['S']]), self._get_wx_units(params, cur_elements['S'])) else: new_timestep.wind_speed = \ Element(cur_elements['S'], 'Not reported') if 'D' in timestep: new_timestep.wind_direction = \ Element(cur_elements['D'], timestep[cur_elements['D']], self._get_wx_units(params, cur_elements['D'])) else: new_timestep.wind_direction = \ Element(cur_elements['D'], 'Not reported') if cur_elements['V'] in timestep: new_timestep.visibility = \ Element(cur_elements['V'], int(timestep[cur_elements['V']]), self._get_wx_units(params, cur_elements['V'])) new_timestep.visibility.text = self._visibility_to_text(int(timestep[cur_elements['V']])) else: new_timestep.visibility = \ Element(cur_elements['V'], 'Not reported') if cur_elements['H'] in timestep: new_timestep.humidity = \ Element(cur_elements['H'], float(timestep[cur_elements['H']]), self._get_wx_units(params, cur_elements['H'])) else: new_timestep.humidity = \ Element(cur_elements['H'], 'Not reported') if cur_elements['Dp'] in timestep: new_timestep.dew_point = \ Element(cur_elements['Dp'], float(timestep[cur_elements['Dp']]), self._get_wx_units(params, cur_elements['Dp'])) else: new_timestep.dew_point = \ Element(cur_elements['Dp'], 'Not reported') if cur_elements['P'] in timestep: new_timestep.pressure = \ Element(cur_elements['P'], float(timestep[cur_elements['P']]), self._get_wx_units(params, cur_elements['P'])) else: new_timestep.pressure = \ Element(cur_elements['P'], 'Not reported') if cur_elements['Pt'] in timestep: new_timestep.pressure_tendency = \ Element(cur_elements['Pt'], timestep[cur_elements['Pt']], self._get_wx_units(params, cur_elements['Pt'])) else: new_timestep.pressure_tendency = \ Element(cur_elements['Pt'], 'Not reported') new_day.timesteps.append(new_timestep) observation.days.append(new_day) return observation Perseudonymous-datapoint-python-cff0700/datapoint/Observation.py000066400000000000000000000010201456150136100253050ustar00rootroot00000000000000class Observation(): def __init__(self): self.data_date = None self.continent = None self.country = None self.name = None self.longitude = None self.latitude = None self.location_id = None self.elevation = None # Stores a list of observations in days self.days = [] def now(self): """ Return the final timestep available. This is the most recent observation. """ return self.days[-1].timesteps[-1] Perseudonymous-datapoint-python-cff0700/datapoint/Site.py000066400000000000000000000007641456150136100237340ustar00rootroot00000000000000class Site(): def __init__(self): self.name = None self.location_id = None self.elevation = None self.latitude = None self.longitude = None self.nationalPark = None self.region = None self.unitaryAuthArea = None def __str__(self): site_string = '' for attr, value in self.__dict__.items(): to_append = attr + ': ' + str(value) + '\n' site_string += to_append return site_string Perseudonymous-datapoint-python-cff0700/datapoint/Timestep.py000066400000000000000000000020611456150136100246120ustar00rootroot00000000000000from .Element import Element class Timestep(): def __init__(self): self.name = None self.date = None self.weather = None self.temperature = None self.feels_like_temperature = None self.wind_speed = None self.wind_direction = None self.wind_gust = None self.visibility = None self.uv = None self.precipitation = None self.humidity = None self.pressure = None self.pressure_tendency = None self.dew_point = None def __iter__(self): for attr, value in self.__dict__.items(): yield attr, value def elements(self): """Return a list of the Elements which are not None""" elements = [el[1] for el in self.__dict__.items() if isinstance(el[1], Element)] return elements def __str__(self): timestep_string = '' for attr, value in self.__dict__.items(): to_append = attr + ': ' + str(value) + '\n' timestep_string += to_append return timestep_string Perseudonymous-datapoint-python-cff0700/datapoint/__init__.py000066400000000000000000000014501456150136100245600ustar00rootroot00000000000000"""Datapoint API to retrieve Met Office data""" import os.path from datapoint.Manager import Manager import datapoint.profile def connection(profile_name='default', api_key=None): """Connect to DataPoint with the given API key profile name.""" if api_key is None: profile_fname = datapoint.profile.API_profile_fname(profile_name) if not os.path.exists(profile_fname): raise ValueError('Profile not found in {}. Please install your API \n' 'key with datapoint.profile.install_API_key(' '"")'.format(profile_fname)) with open(profile_fname) as fh: api_key = fh.readlines() return Manager(api_key=api_key) from . import _version __version__ = _version.get_versions()['version'] Perseudonymous-datapoint-python-cff0700/datapoint/_version.py000066400000000000000000000577321456150136100246630ustar00rootroot00000000000000 # This file helps to compute a version number in source trees obtained from # git-archive tarball (such as those provided by githubs download-from-tag # feature). Distribution tarballs (built by setup.py sdist) and build # directories (produced by setup.py build) will contain a much shorter file # that just contains the computed version number. # This file is released into the public domain. # Generated by versioneer-0.29 # https://github.com/python-versioneer/python-versioneer """Git implementation of _version.py.""" import errno import os import re import subprocess import sys from typing import Any, Callable, Dict, List, Optional, Tuple import functools def get_keywords() -> Dict[str, str]: """Get the keywords needed to look up the version information.""" # these strings will be replaced by git during git-archive. # setup.py/versioneer.py will grep for the variable names, so they must # each be defined on a line of their own. _version.py will just call # get_keywords(). git_refnames = " (tag: v0.9.9)" git_full = "cff070078c6c2792cb07852185f64a6bb8ae47db" git_date = "2024-02-09 19:54:25 +0000" keywords = {"refnames": git_refnames, "full": git_full, "date": git_date} return keywords class VersioneerConfig: """Container for Versioneer configuration parameters.""" VCS: str style: str tag_prefix: str parentdir_prefix: str versionfile_source: str verbose: bool def get_config() -> VersioneerConfig: """Create, populate and return the VersioneerConfig() object.""" # these strings are filled in when 'setup.py versioneer' creates # _version.py cfg = VersioneerConfig() cfg.VCS = "git" cfg.style = "" cfg.tag_prefix = "" cfg.parentdir_prefix = "None" cfg.versionfile_source = "datapoint/_version.py" cfg.verbose = False return cfg class NotThisMethod(Exception): """Exception raised if a method is not valid for the current scenario.""" LONG_VERSION_PY: Dict[str, str] = {} HANDLERS: Dict[str, Dict[str, Callable]] = {} def register_vcs_handler(vcs: str, method: str) -> Callable: # decorator """Create decorator to mark a method as the handler of a VCS.""" def decorate(f: Callable) -> Callable: """Store f in HANDLERS[vcs][method].""" if vcs not in HANDLERS: HANDLERS[vcs] = {} HANDLERS[vcs][method] = f return f return decorate def run_command( commands: List[str], args: List[str], cwd: Optional[str] = None, verbose: bool = False, hide_stderr: bool = False, env: Optional[Dict[str, str]] = None, ) -> Tuple[Optional[str], Optional[int]]: """Call the given command(s).""" assert isinstance(commands, list) process = None popen_kwargs: Dict[str, Any] = {} if sys.platform == "win32": # This hides the console window if pythonw.exe is used startupinfo = subprocess.STARTUPINFO() startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW popen_kwargs["startupinfo"] = startupinfo for command in commands: try: dispcmd = str([command] + args) # remember shell=False, so use git.cmd on windows, not just git process = subprocess.Popen([command] + args, cwd=cwd, env=env, stdout=subprocess.PIPE, stderr=(subprocess.PIPE if hide_stderr else None), **popen_kwargs) break except OSError as e: if e.errno == errno.ENOENT: continue if verbose: print("unable to run %s" % dispcmd) print(e) return None, None else: if verbose: print("unable to find command, tried %s" % (commands,)) return None, None stdout = process.communicate()[0].strip().decode() if process.returncode != 0: if verbose: print("unable to run %s (error)" % dispcmd) print("stdout was %s" % stdout) return None, process.returncode return stdout, process.returncode def versions_from_parentdir( parentdir_prefix: str, root: str, verbose: bool, ) -> Dict[str, Any]: """Try to determine the version from the parent directory name. Source tarballs conventionally unpack into a directory that includes both the project name and a version string. We will also support searching up two directory levels for an appropriately named parent directory """ rootdirs = [] for _ in range(3): dirname = os.path.basename(root) if dirname.startswith(parentdir_prefix): return {"version": dirname[len(parentdir_prefix):], "full-revisionid": None, "dirty": False, "error": None, "date": None} rootdirs.append(root) root = os.path.dirname(root) # up a level if verbose: print("Tried directories %s but none started with prefix %s" % (str(rootdirs), parentdir_prefix)) raise NotThisMethod("rootdir doesn't start with parentdir_prefix") @register_vcs_handler("git", "get_keywords") def git_get_keywords(versionfile_abs: str) -> Dict[str, str]: """Extract version information from the given file.""" # the code embedded in _version.py can just fetch the value of these # keywords. When used from setup.py, we don't want to import _version.py, # so we do it with a regexp instead. This function is not used from # _version.py. keywords: Dict[str, str] = {} try: with open(versionfile_abs, "r") as fobj: for line in fobj: if line.strip().startswith("git_refnames ="): mo = re.search(r'=\s*"(.*)"', line) if mo: keywords["refnames"] = mo.group(1) if line.strip().startswith("git_full ="): mo = re.search(r'=\s*"(.*)"', line) if mo: keywords["full"] = mo.group(1) if line.strip().startswith("git_date ="): mo = re.search(r'=\s*"(.*)"', line) if mo: keywords["date"] = mo.group(1) except OSError: pass return keywords @register_vcs_handler("git", "keywords") def git_versions_from_keywords( keywords: Dict[str, str], tag_prefix: str, verbose: bool, ) -> Dict[str, Any]: """Get version information from git keywords.""" if "refnames" not in keywords: raise NotThisMethod("Short version file found") date = keywords.get("date") if date is not None: # Use only the last line. Previous lines may contain GPG signature # information. date = date.splitlines()[-1] # git-2.2.0 added "%cI", which expands to an ISO-8601 -compliant # datestamp. However we prefer "%ci" (which expands to an "ISO-8601 # -like" string, which we must then edit to make compliant), because # it's been around since git-1.5.3, and it's too difficult to # discover which version we're using, or to work around using an # older one. date = date.strip().replace(" ", "T", 1).replace(" ", "", 1) refnames = keywords["refnames"].strip() if refnames.startswith("$Format"): if verbose: print("keywords are unexpanded, not using") raise NotThisMethod("unexpanded keywords, not a git-archive tarball") refs = {r.strip() for r in refnames.strip("()").split(",")} # starting in git-1.8.3, tags are listed as "tag: foo-1.0" instead of # just "foo-1.0". If we see a "tag: " prefix, prefer those. TAG = "tag: " tags = {r[len(TAG):] for r in refs if r.startswith(TAG)} if not tags: # Either we're using git < 1.8.3, or there really are no tags. We use # a heuristic: assume all version tags have a digit. The old git %d # expansion behaves like git log --decorate=short and strips out the # refs/heads/ and refs/tags/ prefixes that would let us distinguish # between branches and tags. By ignoring refnames without digits, we # filter out many common branch names like "release" and # "stabilization", as well as "HEAD" and "master". tags = {r for r in refs if re.search(r'\d', r)} if verbose: print("discarding '%s', no digits" % ",".join(refs - tags)) if verbose: print("likely tags: %s" % ",".join(sorted(tags))) for ref in sorted(tags): # sorting will prefer e.g. "2.0" over "2.0rc1" if ref.startswith(tag_prefix): r = ref[len(tag_prefix):] # Filter out refs that exactly match prefix or that don't start # with a number once the prefix is stripped (mostly a concern # when prefix is '') if not re.match(r'\d', r): continue if verbose: print("picking %s" % r) return {"version": r, "full-revisionid": keywords["full"].strip(), "dirty": False, "error": None, "date": date} # no suitable tags, so version is "0+unknown", but full hex is still there if verbose: print("no suitable tags, using unknown + full revision id") return {"version": "0+unknown", "full-revisionid": keywords["full"].strip(), "dirty": False, "error": "no suitable tags", "date": None} @register_vcs_handler("git", "pieces_from_vcs") def git_pieces_from_vcs( tag_prefix: str, root: str, verbose: bool, runner: Callable = run_command ) -> Dict[str, Any]: """Get version from 'git describe' in the root of the source tree. This only gets called if the git-archive 'subst' keywords were *not* expanded, and _version.py hasn't already been rewritten with a short version string, meaning we're inside a checked out source tree. """ GITS = ["git"] if sys.platform == "win32": GITS = ["git.cmd", "git.exe"] # GIT_DIR can interfere with correct operation of Versioneer. # It may be intended to be passed to the Versioneer-versioned project, # but that should not change where we get our version from. env = os.environ.copy() env.pop("GIT_DIR", None) runner = functools.partial(runner, env=env) _, rc = runner(GITS, ["rev-parse", "--git-dir"], cwd=root, hide_stderr=not verbose) if rc != 0: if verbose: print("Directory %s not under git control" % root) raise NotThisMethod("'git rev-parse --git-dir' returned error") # if there is a tag matching tag_prefix, this yields TAG-NUM-gHEX[-dirty] # if there isn't one, this yields HEX[-dirty] (no NUM) describe_out, rc = runner(GITS, [ "describe", "--tags", "--dirty", "--always", "--long", "--match", f"{tag_prefix}[[:digit:]]*" ], cwd=root) # --long was added in git-1.5.5 if describe_out is None: raise NotThisMethod("'git describe' failed") describe_out = describe_out.strip() full_out, rc = runner(GITS, ["rev-parse", "HEAD"], cwd=root) if full_out is None: raise NotThisMethod("'git rev-parse' failed") full_out = full_out.strip() pieces: Dict[str, Any] = {} pieces["long"] = full_out pieces["short"] = full_out[:7] # maybe improved later pieces["error"] = None branch_name, rc = runner(GITS, ["rev-parse", "--abbrev-ref", "HEAD"], cwd=root) # --abbrev-ref was added in git-1.6.3 if rc != 0 or branch_name is None: raise NotThisMethod("'git rev-parse --abbrev-ref' returned error") branch_name = branch_name.strip() if branch_name == "HEAD": # If we aren't exactly on a branch, pick a branch which represents # the current commit. If all else fails, we are on a branchless # commit. branches, rc = runner(GITS, ["branch", "--contains"], cwd=root) # --contains was added in git-1.5.4 if rc != 0 or branches is None: raise NotThisMethod("'git branch --contains' returned error") branches = branches.split("\n") # Remove the first line if we're running detached if "(" in branches[0]: branches.pop(0) # Strip off the leading "* " from the list of branches. branches = [branch[2:] for branch in branches] if "master" in branches: branch_name = "master" elif not branches: branch_name = None else: # Pick the first branch that is returned. Good or bad. branch_name = branches[0] pieces["branch"] = branch_name # parse describe_out. It will be like TAG-NUM-gHEX[-dirty] or HEX[-dirty] # TAG might have hyphens. git_describe = describe_out # look for -dirty suffix dirty = git_describe.endswith("-dirty") pieces["dirty"] = dirty if dirty: git_describe = git_describe[:git_describe.rindex("-dirty")] # now we have TAG-NUM-gHEX or HEX if "-" in git_describe: # TAG-NUM-gHEX mo = re.search(r'^(.+)-(\d+)-g([0-9a-f]+)$', git_describe) if not mo: # unparsable. Maybe git-describe is misbehaving? pieces["error"] = ("unable to parse git-describe output: '%s'" % describe_out) return pieces # tag full_tag = mo.group(1) if not full_tag.startswith(tag_prefix): if verbose: fmt = "tag '%s' doesn't start with prefix '%s'" print(fmt % (full_tag, tag_prefix)) pieces["error"] = ("tag '%s' doesn't start with prefix '%s'" % (full_tag, tag_prefix)) return pieces pieces["closest-tag"] = full_tag[len(tag_prefix):] # distance: number of commits since tag pieces["distance"] = int(mo.group(2)) # commit: short hex revision ID pieces["short"] = mo.group(3) else: # HEX: no tags pieces["closest-tag"] = None out, rc = runner(GITS, ["rev-list", "HEAD", "--left-right"], cwd=root) pieces["distance"] = len(out.split()) # total number of commits # commit date: see ISO-8601 comment in git_versions_from_keywords() date = runner(GITS, ["show", "-s", "--format=%ci", "HEAD"], cwd=root)[0].strip() # Use only the last line. Previous lines may contain GPG signature # information. date = date.splitlines()[-1] pieces["date"] = date.strip().replace(" ", "T", 1).replace(" ", "", 1) return pieces def plus_or_dot(pieces: Dict[str, Any]) -> str: """Return a + if we don't already have one, else return a .""" if "+" in pieces.get("closest-tag", ""): return "." return "+" def render_pep440(pieces: Dict[str, Any]) -> str: """Build up version string, with post-release "local version identifier". Our goal: TAG[+DISTANCE.gHEX[.dirty]] . Note that if you get a tagged build and then dirty it, you'll get TAG+0.gHEX.dirty Exceptions: 1: no tags. git_describe was just HEX. 0+untagged.DISTANCE.gHEX[.dirty] """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: rendered += plus_or_dot(pieces) rendered += "%d.g%s" % (pieces["distance"], pieces["short"]) if pieces["dirty"]: rendered += ".dirty" else: # exception #1 rendered = "0+untagged.%d.g%s" % (pieces["distance"], pieces["short"]) if pieces["dirty"]: rendered += ".dirty" return rendered def render_pep440_branch(pieces: Dict[str, Any]) -> str: """TAG[[.dev0]+DISTANCE.gHEX[.dirty]] . The ".dev0" means not master branch. Note that .dev0 sorts backwards (a feature branch will appear "older" than the master branch). Exceptions: 1: no tags. 0[.dev0]+untagged.DISTANCE.gHEX[.dirty] """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: if pieces["branch"] != "master": rendered += ".dev0" rendered += plus_or_dot(pieces) rendered += "%d.g%s" % (pieces["distance"], pieces["short"]) if pieces["dirty"]: rendered += ".dirty" else: # exception #1 rendered = "0" if pieces["branch"] != "master": rendered += ".dev0" rendered += "+untagged.%d.g%s" % (pieces["distance"], pieces["short"]) if pieces["dirty"]: rendered += ".dirty" return rendered def pep440_split_post(ver: str) -> Tuple[str, Optional[int]]: """Split pep440 version string at the post-release segment. Returns the release segments before the post-release and the post-release version number (or -1 if no post-release segment is present). """ vc = str.split(ver, ".post") return vc[0], int(vc[1] or 0) if len(vc) == 2 else None def render_pep440_pre(pieces: Dict[str, Any]) -> str: """TAG[.postN.devDISTANCE] -- No -dirty. Exceptions: 1: no tags. 0.post0.devDISTANCE """ if pieces["closest-tag"]: if pieces["distance"]: # update the post release segment tag_version, post_version = pep440_split_post(pieces["closest-tag"]) rendered = tag_version if post_version is not None: rendered += ".post%d.dev%d" % (post_version + 1, pieces["distance"]) else: rendered += ".post0.dev%d" % (pieces["distance"]) else: # no commits, use the tag as the version rendered = pieces["closest-tag"] else: # exception #1 rendered = "0.post0.dev%d" % pieces["distance"] return rendered def render_pep440_post(pieces: Dict[str, Any]) -> str: """TAG[.postDISTANCE[.dev0]+gHEX] . The ".dev0" means dirty. Note that .dev0 sorts backwards (a dirty tree will appear "older" than the corresponding clean one), but you shouldn't be releasing software with -dirty anyways. Exceptions: 1: no tags. 0.postDISTANCE[.dev0] """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: rendered += ".post%d" % pieces["distance"] if pieces["dirty"]: rendered += ".dev0" rendered += plus_or_dot(pieces) rendered += "g%s" % pieces["short"] else: # exception #1 rendered = "0.post%d" % pieces["distance"] if pieces["dirty"]: rendered += ".dev0" rendered += "+g%s" % pieces["short"] return rendered def render_pep440_post_branch(pieces: Dict[str, Any]) -> str: """TAG[.postDISTANCE[.dev0]+gHEX[.dirty]] . The ".dev0" means not master branch. Exceptions: 1: no tags. 0.postDISTANCE[.dev0]+gHEX[.dirty] """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: rendered += ".post%d" % pieces["distance"] if pieces["branch"] != "master": rendered += ".dev0" rendered += plus_or_dot(pieces) rendered += "g%s" % pieces["short"] if pieces["dirty"]: rendered += ".dirty" else: # exception #1 rendered = "0.post%d" % pieces["distance"] if pieces["branch"] != "master": rendered += ".dev0" rendered += "+g%s" % pieces["short"] if pieces["dirty"]: rendered += ".dirty" return rendered def render_pep440_old(pieces: Dict[str, Any]) -> str: """TAG[.postDISTANCE[.dev0]] . The ".dev0" means dirty. Exceptions: 1: no tags. 0.postDISTANCE[.dev0] """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: rendered += ".post%d" % pieces["distance"] if pieces["dirty"]: rendered += ".dev0" else: # exception #1 rendered = "0.post%d" % pieces["distance"] if pieces["dirty"]: rendered += ".dev0" return rendered def render_git_describe(pieces: Dict[str, Any]) -> str: """TAG[-DISTANCE-gHEX][-dirty]. Like 'git describe --tags --dirty --always'. Exceptions: 1: no tags. HEX[-dirty] (note: no 'g' prefix) """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"]: rendered += "-%d-g%s" % (pieces["distance"], pieces["short"]) else: # exception #1 rendered = pieces["short"] if pieces["dirty"]: rendered += "-dirty" return rendered def render_git_describe_long(pieces: Dict[str, Any]) -> str: """TAG-DISTANCE-gHEX[-dirty]. Like 'git describe --tags --dirty --always -long'. The distance/hash is unconditional. Exceptions: 1: no tags. HEX[-dirty] (note: no 'g' prefix) """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] rendered += "-%d-g%s" % (pieces["distance"], pieces["short"]) else: # exception #1 rendered = pieces["short"] if pieces["dirty"]: rendered += "-dirty" return rendered def render(pieces: Dict[str, Any], style: str) -> Dict[str, Any]: """Render the given version pieces into the requested style.""" if pieces["error"]: return {"version": "unknown", "full-revisionid": pieces.get("long"), "dirty": None, "error": pieces["error"], "date": None} if not style or style == "default": style = "pep440" # the default if style == "pep440": rendered = render_pep440(pieces) elif style == "pep440-branch": rendered = render_pep440_branch(pieces) elif style == "pep440-pre": rendered = render_pep440_pre(pieces) elif style == "pep440-post": rendered = render_pep440_post(pieces) elif style == "pep440-post-branch": rendered = render_pep440_post_branch(pieces) elif style == "pep440-old": rendered = render_pep440_old(pieces) elif style == "git-describe": rendered = render_git_describe(pieces) elif style == "git-describe-long": rendered = render_git_describe_long(pieces) else: raise ValueError("unknown style '%s'" % style) return {"version": rendered, "full-revisionid": pieces["long"], "dirty": pieces["dirty"], "error": None, "date": pieces.get("date")} def get_versions() -> Dict[str, Any]: """Get version information or return default if unable to do so.""" # I am in _version.py, which lives at ROOT/VERSIONFILE_SOURCE. If we have # __file__, we can work backwards from there to the root. Some # py2exe/bbfreeze/non-CPython implementations don't do __file__, in which # case we can only use expanded keywords. cfg = get_config() verbose = cfg.verbose try: return git_versions_from_keywords(get_keywords(), cfg.tag_prefix, verbose) except NotThisMethod: pass try: root = os.path.realpath(__file__) # versionfile_source is the relative path from the top of the source # tree (where the .git directory might live) to this file. Invert # this to find the root from __file__. for _ in cfg.versionfile_source.split('/'): root = os.path.dirname(root) except NameError: return {"version": "0+unknown", "full-revisionid": None, "dirty": None, "error": "unable to find root of source tree", "date": None} try: pieces = git_pieces_from_vcs(cfg.tag_prefix, root, verbose) return render(pieces, cfg.style) except NotThisMethod: pass try: if cfg.parentdir_prefix: return versions_from_parentdir(cfg.parentdir_prefix, root, verbose) except NotThisMethod: pass return {"version": "0+unknown", "full-revisionid": None, "dirty": None, "error": "unable to compute version", "date": None} Perseudonymous-datapoint-python-cff0700/datapoint/exceptions.py000066400000000000000000000001411456150136100251760ustar00rootroot00000000000000class APIException(Exception): """When Datapoint returns a broken API response.""" pass Perseudonymous-datapoint-python-cff0700/datapoint/profile.py000066400000000000000000000010341456150136100244570ustar00rootroot00000000000000import os import appdirs def API_profile_fname(profile_name='default'): """Get the API key profile filename.""" return os.path.join(appdirs.user_data_dir('DataPoint'), profile_name + '.key') def install_API_key(api_key, profile_name='default'): """Put the given API key into the given profile name.""" fname = API_profile_fname(profile_name) if not os.path.isdir(os.path.dirname(fname)): os.makedirs(os.path.dirname(fname)) with open(fname, 'w') as fh: fh.write(api_key) Perseudonymous-datapoint-python-cff0700/datapoint/regions/000077500000000000000000000000001456150136100241155ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/datapoint/regions/RegionManager.py000066400000000000000000000041221456150136100272040ustar00rootroot00000000000000import json from time import time import requests from datapoint.Site import Site from datapoint.regions.region_names import REGION_NAMES REGIONS_BASE_URL = 'http://datapoint.metoffice.gov.uk/public/data/txt/wxfcs/regionalforecast/json' class RegionManager(): ''' Datapoint Manager for national and regional text forecasts ''' def __init__(self, api_key, base_url=None): self.api_key = api_key self.all_regions_path = '/sitelist' if not base_url: self.base_url = REGIONS_BASE_URL # The list of regions changes infrequently so limit to requesting it # every hour. self.regions_last_update = 0 self.regions_last_request = None self.regions_update_time = 3600 def call_api(self, path, **kwargs): ''' Call datapoint api ''' if 'key' not in kwargs: kwargs['key'] = self.api_key req = requests.get('{0}{1}'.format(self.base_url, path), params=kwargs) if req.status_code != requests.codes.ok: req.raise_for_status() return req.json() def get_all_regions(self): ''' Request a list of regions from Datapoint. Returns each Region as a Site object. Regions rarely change, so we cache the response for one hour to minimise requests to API. ''' if (time() - self.regions_last_update) < self.regions_update_time: return self.regions_last_request response = self.call_api(self.all_regions_path) regions = [] for location in response['Locations']['Location']: region = Site() region.location_id = location['@id'] region.region = location['@name'] region.name = REGION_NAMES[location['@name']] regions.append(region) self.regions_last_update = time() self.regions_last_request = regions return regions def get_raw_forecast(self, region_id): ''' Request unformatted forecast for a specific region_id. ''' return self.call_api('/{0}'.format(region_id)) Perseudonymous-datapoint-python-cff0700/datapoint/regions/__init__.py000066400000000000000000000000001456150136100262140ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/datapoint/regions/region_names.py000066400000000000000000000007771456150136100271500ustar00rootroot00000000000000REGION_NAMES = { 'os': 'Orkney & Shetland', 'he': 'Highland & Eilean Siar', 'gr': 'Grampian', 'ta': 'Tayside', 'st': 'Strathclyde', 'dg': 'Dumfries, Galloway, Lothian', 'ni': 'Northern Ireland', 'yh': 'Yorkshire & the Humber', 'ne': 'Northeast England', 'em': 'East Midlands', 'ee': 'East of England', 'se': 'London & Southeast England', 'nw': 'Northwest England', 'wm': 'West Midlands', 'sw': 'Southwest England', 'wl': 'Wales', 'uk': 'UK', }Perseudonymous-datapoint-python-cff0700/docs/000077500000000000000000000000001456150136100214145ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/docs/conf.py000066400000000000000000000125031456150136100227140ustar00rootroot00000000000000# -*- coding: utf-8 -*- # # Configuration file for the Sphinx documentation builder. # # This file does only contain a selection of the most common options. For a # full list see the documentation: # http://www.sphinx-doc.org/en/master/config # -- Path setup -------------------------------------------------------------- # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # import os import sys sys.path.insert(0, os.path.abspath('.')) # Need to change the place we put in path to work with readthedocs sys.path.insert(0, os.path.join(os.path.dirname(__file__), os.pardir)) import datapoint # -- Project information ----------------------------------------------------- project = 'datapoint-python' copyright = '2014, Jacon Tomlinson' author = 'Jacob Tomlinson, Emlyn Price' # The full version, including alpha/beta/rc tags release = datapoint.__version__ # The short X.Y version version = '.'.join(release.split('.')[:2]) # -- General configuration --------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. # # needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ ] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: # # source_suffix = ['.rst', '.md'] source_suffix = '.rst' # The master toctree document. master_doc = 'index' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. language = None # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # The name of the Pygments (syntax highlighting) style to use. pygments_style = None # -- Options for HTML output ------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # html_theme = 'alabaster' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. # # html_theme_options = {} # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] # Custom sidebar templates, must be a dictionary that maps document names # to template names. # # The default sidebars (for documents that don't match any pattern) are # defined by theme itself. Builtin themes are using these templates by # default: ``['localtoc.html', 'relations.html', 'sourcelink.html', # 'searchbox.html']``. # # html_sidebars = {} # -- Options for HTMLHelp output --------------------------------------------- # Output file base name for HTML help builder. htmlhelp_basename = 'datapoint-python-doc' # -- Options for LaTeX output ------------------------------------------------ latex_elements = { # The paper size ('letterpaper' or 'a4paper'). # # 'papersize': 'letterpaper', # The font size ('10pt', '11pt' or '12pt'). # # 'pointsize': '10pt', # Additional stuff for the LaTeX preamble. # # 'preamble': '', # Latex figure (float) alignment # # 'figure_align': 'htbp', } # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ (master_doc, 'datapoint-python.tex', 'datapoint-python Documentation', 'Jacob Tomlinson, Emlyn Price', 'manual'), ] # -- Options for manual page output ------------------------------------------ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ (master_doc, 'datapoint-python', 'datapoint-python Documentation', [author], 1) ] # -- Options for Texinfo output ---------------------------------------------- # Grouping the document tree into Texinfo files. List of tuples # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ (master_doc, 'datapoint-python', 'datapoint-python Documentation', author, 'datapoint-python', 'One line description of project.', 'Miscellaneous'), ] # -- Options for Epub output ------------------------------------------------- # Bibliographic Dublin Core info. epub_title = project # The unique identifier of the text. This can be a ISBN number # or the project homepage. # # epub_identifier = '' # A unique identification for the text. # # epub_uid = '' # A list of files that should not be packed into the epub file. epub_exclude_files = ['search.html'] Perseudonymous-datapoint-python-cff0700/docs/forecast_sites_map.png000066400000000000000000004444701456150136100260110ustar00rootroot00000000000000‰PNG  IHDR xX}¹ÈsBIT|dˆ pHYsaa¨?§i9tEXtSoftwarematplotlib version 3.0.2, http://matplotlib.org/8€;­ IDATxœìÝyX•uÞÇñÏDEwq·Ð47²LÜJ3MËÍ61m¬FÓ20ëi³¢©Ô©QÈ4K-´̰JqÃtAÄóüáHZЇßay¿®«kƳÜç{Ïuõ<çíïþÛbµZ­ì=€ªƒ` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cªÙ{—žž®#GŽØ{ \‚———š5kfï1*,¤IOO—¿¿¿rssí= .ÁÕÕUÛ·o'BJ‰)GŽ9¢ÜÜ\ýç?ÿ‘¿¿¿½ÇÀŸlß¾]÷ÜsŽ9B€”Rùûû«sçÎö°96¡0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1¨”Ž?®>}ú¨uëÖZ¼x±½Çð?¨4rrr´fÍ:uJcÇŽÕ¯¿þ*7N{öì±÷x$U³÷¶°mÛ6Ýpà :räˆ6l¨héÒ¥ºþúëÕ±cG…††êóÏ?·÷˜@•Ç ¨^{í5¹ººê›o¾QíÚµ5}út 2DµjÕR=tðàA{@¬€€JbýúõºãŽ;4xð` <¸èq«Õª7jذavœÀy¬€€ Ïjµ*33SÍš5+ñÜ–-[”‘‘¡!C†Øa2F€€ ïèÑ£*((P£FJ<·lÙ2Õ¬YS}úô±ÃdþŒÞ$é’2`ÀU¯^ÝôX.‚=  ÂËÌÌ”$5lØP’›¢–ýª³'×ï?ý¤‰'Ús< @@…çàp‚‚IRxt’²sOKÉ?I‡b›ÒØ—`€ #55UÙÙÙz}²|¦|¥ˆØIRÛ¶m%IÛ·o—$…ÈÓµºœ2~Q«ö×ÈËËËn3(ŽÂÛo¿­V­Z©nÝºšØ·½ÒÞ§§'—$5iÒDîîîE䧯Ü*§Ì$=t÷({Ž àOPîhêÔ©ºé¦›´hÑ"ÝùÄ‹rmÑA¹[×ëøñã²X,jÛ¶mQ€HÒÉ“'•››+___;NàÏPîÅÆÆêøñãzíµ×4bÄE¾ñ’$«ÕªM›6I’§ÂÂBIì 9ÿgåʽ¥K—ªqãÆ ,zÌÏÏOuêÔ) íØ±CjÞ¼¹ºuë&éÜM ”ü (׬V«–.]ª¡C‡Êb±{­ÄÄD:uJmÚ´)z¼OŸ>Üñ(ç¸ ”kK—.•»»»n¼ñFIÒÚµkåââ¢îÝ»Ëb±¨C‡vžÀ• @@¹¶téR 0@ÎÎÎ’¤˜˜Y­V­^½Z{öìQ³fÍìÐÞ½{/úzÕ¯__/½ô’¬AƒiæÌ™—<>ñTl°)___¥¥¥iݺuš8q¢²²²ôØc©C‡:zôèEßãïï¯ôôt½ýöÛšÑï¿ÿ®cÇŽ)&&F‹EgΜQ£F®øóχÎùUöÁ€1ýû÷×ôéÓ•ŸŸ/ggç¿}½ÅbQ­ZµŠþœ™™)I¥Z ò»hä0‹`Lÿþý•››«ü±Tïß·oŸ¤Ò€òÆtêÔIõêÕ»èÏñ^Žß~ûMjРA‰çØdT 0ÆÁÁAÁÁÁ¥ÄÄDÊÁ¡äW6™Œêß¿¿tøðá+~oBB‚/ú›ÌŠFËjµjíÚµ—ýžˆØ5{v¾vïÞ­Î;_ô5õkZÊ”Jiö\œ>}Z’¤ÔÔÔË~_xt’2vž»ûù¥V@T (•+Ýs±uëVuïÞ]aaaš6mšžyæ™Ëþ¬ÐàÕÉ= §êÎjÛ¶miGP  T.µçÂjµûsaa¡fΜ©k¯½V§OŸÖ¦M›4eÊ999]ög…ùéï^ÓIÕªq3 "ãß`P*ÞØïĉZ¼x±>ýôSmذAMš4‘¯¯¯|}}• M›6é™gžÑôéÓ/넊ˆMQxt’ 6lÒÐ}ËâTD€€R;pà€ž~úi-Y²DyyyêÛ·¯fΜ©ƒjçΊ‰‰‘“““6lØ ž={–ê3£“”v蘴w—ÿaã3`JmÍš5Z°`¦OŸ®ûî»OM›6µùg„hÚ¼¯”e={É_ÀPq°”š———$•Y|Hç.õšÚÕCŽŽŽjß¾}™|sPjíÚµ“$­_¿¾L?'11QíÚµ“‹‹K™~€²G€€RkÖ¬™‚‚‚ôÙgŸ•éçüÕÐT,ìWåþûï׸qã4|øpµk×N¹¹¹ÊÉÉQnn®Z·n­^xAŽŽŽ¥>~AA¶nݪ{ï½×†S°\•±cÇÊÁÁA3gÎT||¼\]]åêê*ÍŸ?_gΜÑôéÓK}üíÛ·+??Ÿ ’ @ÀU±X,3fŒÆŒSâ¹Q£FiÆ WuüÄÄDIÒ5×\sUÇP>°”™Zµj)77÷ªŽ#Õ¬YÓFS°'V@@™©U«–öïß/«ÕªcÇŽéÃ?Ôwß}§jÕªÉÙÙYÎÎÎêСƒ^xáY,–¢»ž‡($ÈOgΜÑ×_­‡zÈÞ§ÀFXeææ›oÖ¾}û4räH5mÚTÓ¦M“«««jÔ¨¡‚‚8p@ÿüç?µvíZIÿ»ëyvŽÂ£“$I±±±:zô¨†nÏÓ`C¬€€2Ó§Oùúú*&&FÏ>û¬&L˜ úõë=oµZÕ¹sgÍš5KýúõShp@Ñ ˆ$ýôÓOòððе×^k¯S`c(3Ú¼ysÑåV±) Ÿ½±è+‹Å¢gžyFwß}·¶lÙ¢ Ž ò+zZZš<êÉéñH l¦ãzÛñlØ—`€2åáá!gggI%/±’¤‘#GÊÛÛ[óçÏ/ñÞ´´4ýîTK…g­Z˜˜nlfe‡Æ„¨¹§[Ñ%V’äää$ïÖíô΢UŠˆM)z<"6EÑ?mUý†Mäè`ѨÀfö€q UПmÊ” ¿‹~^šƒ—òlVØêmEχ­þM¿R«§Î¼s—±”-V@¨‚^Xö«Ò²sô²_í=Š$éÎ}¤S'4!Ыè±Þ§~“Îäë¡ÛÛq2¶F€»z$é®k›=öß”Í ÖÌñ#í4€²@€PÍÒIÍ=Ý4cH'{"IJNN–«««š4iRôXVV–š7oþïP±€*èR{1ì%99YmÚ´‘ƒÃ7š••¥Øq*e`wÉÉÉjÛ¶mÑŸ­V«²²²Ô A;N , Àîί€œwìØ1 @%D€»ÊÎÎÖáÇ‹­€deeITB°«äädI"@€*‚v•˜˜(''§b—`ooo{ Œ À®âââ(—¢Ç²²²äææ&www;N , À®âââÔ½{÷b8p€Ë¯€JŠvsøðaíÚµ«X€üß·›õfÄ'ªÝ¼Í_¼@EE€»Ù´i“$ ©/LVáéûì3¹»»kРAZ¾|¹ŠÝ@åD€»¨W¯žV¬X¡Ã‡ë™gŸÕYïV Y¼ÅÞc(c°___-[¶LjÞIê7Q Óí=€2F€»êÑ£‡FOyW޵ëiT`3{ Œñ;wÀîŒë­ãì=Xv›"Ÿ)_)"6ÅÞ£0€v¤´ì…G'Ù{ À®BƒÔÜÓM¡Áö€ìvä§ ?{ÀV@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@ÀU‹ˆM‘Ï”¯›bïQ”s¸j/,ûUiÙ9zaÙ¯ö@9G€0†WmÆNjîé¦C:Ù{å\5{*¾ ?…ùÙ{ + Œ!@C€0†` À€1cÆ Œ!@C€PDĦÈgÊWŠˆM±÷(P*Hxt’Ò²sdïQ TªÙ{*ƒ3gÎhãÆJÌóЛöªg /­Ú~@’4cH'…ùÙäsBƒ¤Ðà›L#@¸ {öìÑ'Ÿ|¢yóæiÿþýrnÚVùÿ¡}¿çªð¬UÒ¹U [HHŸÍŽöÀ%X”RRR’üýýõî»ïjèСZ°`,Ùûä¼òÿt›¿—<]«ËÓµz™¬V°@EÅ ¥´dÉ(--MÞÞÞ’¤-Z¨ÿþ:5Céß~+77·2ùì ÷‚°" "a€R=z´ªW¯®7ß|³è±îÝ»kåÊ•JHHÐ-·Ü¢ÜÜÜRÿÀúþûïµfÍmÛ¶MÇŽ“Õzî²®Ðà5÷tc/€ ‡J©eË–zþùç5}út3Fçb gÏžZ¹r¥  !C†hÙ²eruu½¬cZ­VmÚ´Iï¾û®¾øâ {ÞÅÅE 6T‡”ºd‰ø»D ÿW €«ðì³ÏªeË–êׯŸ–/_^ôx¯^½´bÅ mÚ´I÷Ýwße/,,L=zôP\\œfΜ©ÌÌLíÞ½[6lÐÂ… 5sæLY,ÅÇÇ­†@EB€pœõý÷ß+00PC† ѨQ£”žž.I Ò| /¾øB›7oþÛc9rDaaaš4i’RRRôä“OªaÆjÙ²¥zõꥑ#GjÔ¨QÚ¿¿&Mš$GGDz>=°9€«Ô¨Q#-_¾\Ÿ~ú©bccåëë«'Ÿ|R‡Ö]wÝ¥6mÚhÚ´i{œ×_]’4uêÔ‹ÆÅŠ+Ô­[7¹ººêᇶùy€ 6`±Xtï½÷*%%E/¾ø¢æÌ™£–-[jÚ´izâ‰'´|ùrýüóÏ—|ÿ¡C‡4{öl=úè£òòò*ö3»GÕ˜1c4xð`µmÛV òôô4xv`;6T³fMýóŸÿTjjª&L˜ Y³fiåÊ•jÛ¶­žzê)%$$\tïÆ¬Y³äàà üã’þø™Ý¾ý±´lÙ2Í;W«V­’á³ÛáW°(uëÖÕk¯½¦‚‚­ZµJo½õ–îºë.uéÒE-Z´ÐðáÃ5vìXuèÐAGŽÑ{ï½§úõëë‰'žPAAê8¦¬=é:’‘¬Ûn»Mï½÷ž6lhïÓ€«Æ e¨nݺ:zô¨  ¬¬,­^½Zýû÷×gŸ}¦nݺiÇŽ*,,T÷îÝÕ°aC¥§§ëÈ‘#jàê Ûè‹/¾ÐâÅ‹‰•+ ”¡óbµZåää¤àà`kÚ´ijР4zôh}÷ÝwöŒ @(C^^^*,,ÔñãÇU»vmEĦ(<:I£›J’|}}íS¾ªÐûž¾¡µ,û~SÿŠ=þWAP­Z5͘1C·Þz«î¿ÿ~ø@ÞÞÞ6›§2¬*À¥p't@•×Ú]Jö¨}E_ø­V«&Ož¬À>ôÜ6g‹M±Ù*PH_…^Q€¿Â  Êó®aÑ Ž>—õ¥ÿüþŒióW*--M^”–yH3¾ŽÓÙ³g L ¨ò¼½½KüŒîÖ­[µpá¯=¿?cö+$IG¿.}2^ûÞ«V­ZiêÔ©Úµ«ä^6–À9 Êkܸ±öíÛWôçŸþY;vÔwܡݻw{íùý/L¸OQQQŠŠŠÒ¢E‹´páB5jw­^Ÿ%___õîÝ[}ô‘RSSuâÄ …­ÞÆÆr{@PÛ¶m•‘‘¡;vè¿ÿý¯‚ƒƒåçç§””ýòË/jÕªUÑk‹ïÏè\ì8Ïlu’µñ yúMn¹ÛRtY–ƒ££Ü;öÕ¤é/›:-(—XTy£FRãÆ¬ëoì«SîÞ;ãCIÜçãrôlá%Gg®U«Viß¾}Z³f¢¢¢ô§ž’vþ¨9ÏŽSFFFY ”{ ÊsqqÑòåËåØSyMuzÐÓŠøi¿¤+ {ލð¬U÷QDlŠÚ¿¹A£VeëX£@½öÚkŠWnn®zöì©={ö”Õé@¹F€ª´ó›Ã>^;wþû7®Êí·ß® 6hÚ´išüåO:¶-NÊL–¬gµråJíqmQtiÖ0_ÕªUK5jÔøËcZ­V½ûî»zæ™gäïï¯ÈÈH ŠÜ¡´¬Ãª±î_:›¾UYYYª]»¶¡³`K|_»z\‚¨²RSS5lØ0?^Ö€¤G¯k¤ÿ¼8^÷ÝwŸª{[é' ¤ a—uL‹Å¢Ç{L}úôÑèÑ£Õ¥Kù´ï"‡¤ß$K¡/^L|¨Ò@•µÿ~5lØPRñ õ[¨¶mÛêŽÓÛeñìTlùåêÔ©“6oÞ¬)S¦hçκ¹Ïƒ?~¼Z·nmÓs€Š†TYZ»v­¦NZìq___5J?.ž§];wªZµÒý¿KWWW½þúë¶* 6¡ª¬GyD±±±Úºuk‰ç&Ož¬½{÷***ªÔÇ?¿ù<"6åjÆ€J…TYÆ Sƒ ôÁ”x®cÇŽêܹ³Ö­[Wêã_xÀ9 ÊrrrÒÃ?¬O?ýT»ví*ñ|ãÆuðàÁË:Vaa¡âãã® &è›o¾Ñ37úÝp{@UÚSO=¥¨¨(ÝvÛmúñÇåîî^ôœ···âããÿòýzüñǵ~ýzeggËÍÍMÞÞÞŠˆˆPãÆ•’’"WWײ> ¨0XTiµjÕÒ’%K´wï^=ðÀºðöXAAAJLLÔüùóuæÌ™‹¾ÿ³Ï>Ó’%K4qâDÅÄÄ(;;[»víÒÃ?¬Ó§OËÙÙÙÔ©@…@€ª¼€€Í›7O .,ö«UwÜq‡ ¤{î¹G-[¶ÔÂ… K¼·[·n’¤Þ½{+((HÕ«W—ÅbQLLŒ† "GGGc瀤#F(44T¡¡¡Z³f$ÉÙÙY_~ù¥&Nœ¨ŒŒŒ‹þ"ÖM7ݤ®]»*,,¬è±C‡)99Y46?Tìà^yå%$$høðáêØ±£jÔ¨¡-[¶èðáÃ:t¨fÍšUâ=‹E“'OÖðáÃõã?ªGJI9÷³»l>€?c€ÿqttTdd¤zè!µjÕJuêÔÑèÑ£•œœ¬¯¿þZ­Zµºèûn½õVùûû­‚¤¤¤Èb±\òõP•±À<==õÆo\Ñ{ª±cÇ*!!A;wîT³fÍäââRFS@ÅÅ 60zôhuèÐAƒÖ’%Käëëkï‘ \"@°'''­Y³FÞÞÞÚ±c‡:vìhï‘ \â,l¤~ýúúþûïµ`ÁÝ{ï½öÊ%òôôÔ¤I“ì=”[\‚À€1cÆ ŒáW°øŸS§NiõêÕZ´h‘6mÚ¤&Mš¨uëÖEÿøúúªU«Vruuµ÷¨Pa €*-''Gß~û­/^¬åË—+''GíÚµÓÀuðàAmÞ¼YQQQúïÿ[ôÇšžjÙ²•‚ºtÐÈ‘#5pà@;žT, Ê9qâ„–/_®Å‹kÅŠ:uê”5yòd1BmÛ¶-öz«ÕªÃ‡k×®]:3JG3ÓµÿÔQEGGkãÆ\PiX­V8qB(úç˶(:!YmÜ å^˜£(55U§OŸV·nÝôÒK/iĈjÕªÕ%k±XT¿~}Õ¯__¯<í¥ðè$…È1y½BBB”——'ƒg ¨ÐvíÚ¥•+WjÅŠЉ‰ÑÉ“'‹=o©î"kÚÚRËSÃztP§NÔªU+ :TÍš5“$EĦ覥Ðà…ùýåç…ù½æÿ~^®êÕ«ËÑѱlN*!*)«ÕªíÛ·kÿþýêÞ½»jÖ¬iï‘l"77WëÖ­ÓŠ+´råJíÚµKNNNêÝ»·žþyµlÙR 6,úç?‰™úÇ— Ê;S(‡ÎÍõæ¸Þ%ޤ´ì…G'ým€\èçŸV—.]ääädËS€J€J&''GáááZ°`RSS%IŽŽŽêÖ­›úöí«¾}ûªGªQ£†'ý{ùùùÚ·oŸÒÓÓõË/¿håÊ•Z¿~½òóóÕ¼ys 4H¯¿þºúöí{ÉÀ òÓ¤/6ë¬UZ˜˜®ãJ¾&48 è²ªËUPP ï¾ûNcÇŽ-íé@•D€@%²nÝ:7NÔ˜1c4tèPµhÑB111úî»ïôá‡jÆŒrqqѬY³äØ1X3×lWÏ^Ú¸çÈ_^‚”ŸŸ¯õë×kóæÍzüñÇåæævU³ž={VTzzº222”žž®oâ¶(nëÕÓIå;¬ƒ½ÞÙÙY}úôQxx¸¨6mÚÈb±\Ög l¦…‰éØì¢Ï_xYÕåZ¹r¥:¤{î¹çŠÞU•Ä¡C‡të­·ªS§NZ³fM±MÕþþþ?~¼Îž=«mÛ¶)""B>ú¨Üûéäu÷hßï¹*®ÆÜ¹s¨Ž;ÚöÀPÉ PI¼ôÒKrppÐ’%KT·nÝ‹¾ÆÁÁA:tÐ{ï½§®]»êÁ‡–‡[mÝ|ÿãE+ úí·ßôàƒjÓ¦M?~¼yä-X°@¯¿þºÆ¯Æ{}DlJÑ¥L7ûÔPTT”"##•˜˜¨š5kªS§NjÚ´©zôèQçã¢N:òzn‘²sOË͵º¦LYfÿ[]­Ã‡kÙ²ezã7ì= T8TIIIúðÃ5kÖ¬KÆÇŸÝwß}Ú½{·^{í5MŸ¦ÖlÎÎÏÏ׌3®V­Z)66V½{Ÿ{¾yóæúøã5eÊ}òÉ'ÅŽ9ã«Ú·yž˜÷¼&dl—‹‹‹n¹å½øâ‹4hÐßî;™1¤ÓïۇÈÈHY,Ýu×]ö*‹ÕjµÚ{œ“ .]º(>>^;w¶÷8*›o¾Y;vìжmÛäìì|ÙïËÍÍ•¿¿¿Ú·o¯åË—Ëb±è‡~Ѓ>¨Ý»wkòäÉzþùçKóÝwßÕã?®_ýUÍš5Ó’%K©5k×ê¬Uj×µ—ž›ø n½õVyxxØútí®sçÎòññÑ—_~iïQÆ÷µ«Ç TpÉÉÉúöÛouEñ!I®®®zóÍ75bÄ…††jÿþýš?¾®»î:%$$¨}ûö}ßøñãõÎ;ïhРA:räˆNŸ>­ë¯¿^ï¿÷žFŒ!///[œšÍ]x‰Ø•n:?oÛ¶mJLLÔ´iÓl<T öLؼy³}ôQeffÚ{›Ûºu«$馛n*Õûo»í6 $©zõêzÿý÷Õºuk½úê«ÊÈÈкuë4~üørRñû}”Ö¡C‡$I!«ö)"6ÅV£@•A€¨Ô¶mÛ¦áÇ«k×®š={¶|ðAU¶+O·oß.//¯Rñ·X,Zºt©rrrätÏLk}ƒ^ûnÇß¾o·Ksmí6Q3²šjYjN©>Û´Ðà5÷t»ª=&ç/)Ë<|ôªBª*@¥õ¯ýKJLLÔ¼yó¥+Vè·ß~³÷h6•‘‘!Ÿ«:†£££œ¯è zxt’²sO+;÷t™}ˆM‘Ï”¯l¶Òä§½Ó‡•úò+éñvV¹ß,å ÒÉÏÏ×øñã5~üx=øàƒJNNÖØ±c5tèPU¯^]ëׯ·÷ˆ6uúôé+Þûq)Wò=48@ž®ÕåéZ½Ì¾ˆÛâ’)[; ÿº½ãU… TU€J%33S7Þx£æÍ›§?þXï¿ÿ~Ñ—ó5j¨[·n•2@çØt¥àr„ùéèk#uôµ‘eöEÜ—LÙÚù6{¥îš»ÁÎÓ@ÅC€¨46nܨ.]º(==]111zàJ¼¦OŸ>Љ‰©Tû@ ”~<¿T+¶¾ÄÉÖlqÉ”­¹¸¸H޲æçjabº½Ç€ ‡P)|øá‡ºá†ÔºukmÞ¼Y×]wÝE_wýõ×ëСCJNN6 µKµRP/q*ï t¶à´äPM‡OæÛ{¨p¸!€ kÿþý1b„~ùåÍ™3GãÆûÛ÷äååI:·¤²ÈÉÉQ­ZµJõÞ ¿KF‹-nÚWÅÇÇËZ¯m;nP € é‡~Ðí·ß.GGGÅÆÆªk×®—õ¾óâââR–㕜œ¬o¼ÑæÇ½ðò,äË—/—‡‡‡Ò#ž”“““½Ç€ ‡K°T(V«UºñÆåçç§øøøËŽI:uꔤÊ ‡Ò¡C‡þò®å¥ÅåY%è“O>ѽ÷ÞK|@) *Œôôt5J&LPHHˆÖ¬Y#ooï+:Fe[Ù¹s§$©M›6’lû«Våñ¨ìmÉ’%ÊÊÊÒ„ ì= TX€r///O¯¼òŠÚ¶m«~øAQQQzçwJõ7Еmˆ§§§$騱c’øU«²tüøq=óÌ3 V»víì=TX€rËjµjéÒ¥j×®¦M›¦I“&iÇŽºãŽ;J}ÌÌÌLI’»»»­Æ´«æÍ›K’öîÝ+©ü]6UÞï3r%üq;vLÿú׿ì= ThlBP.¥¤¤è‰'žÐŠ+äÒò½0w©^ºgÐUwþüù R:•ãþ ®®®òööVjjª¤¿þU+{¨,Ù/^¬ÿûßš7ož|||ì=Th¬€(WNž<©ÐÐPµoß^Û·oW½‘¡ÊøÍK¹úû-ìÝ»Wk×®½èÒ+²îÝ»+22Rö¥S+2e¹ÒràÀ?^Çט1cl~|¨jåÆW_}¥¶mÛêí·ßÖ‹/¾¨¤¤$Mtœš×u·ÉعsçÊÝÝ]·ß~» ¦-?¦M›¦;wêã?¶÷(%˜ÚÈ^Ú½/.gΜÑý÷ß/'''}øá‡²X,¶ª4@¹ðÕW_iĈêܹ³¶oß®)S¦¨F6û[XX¨¹sçêÎ;ï”›››¦.:uê¤1cÆè¥—^Òÿû_{c¥]iù«p9tèú÷ï¯èèhÍ;W^^^¶ª4€Ý=ÿñ y‡®¹>XK–,)“kì¿ûî;eddTºË¯Î{ùå—uüøqÍš5ËÞ£ØEiCõRá§Î;kÛ¶mZ³fhËq J#@ØÝ;ï¾#«[éq¿Ëä3æÌ™#]wÝuer|{kÚ´©&Mš¤wÞyGùùW¿_ærT†_¸ús¸X­V½ÿþûºþúëÕ¬Y3%$$è†n°ïPÉ ì®Zf’j¶éªÉƒ®)“ãgggkÉ’%ºÿþû+õ5ü÷ß¿Ž?®+Vù¼ÊvÏ‘ÜÜ\;V'NTHHˆÖ­[§ÆÛ{,¨tvwÓõ½Õ"/]ã{û–Éñ,X ÂÂBÝ{ï½erüò" @;vTdd¤‘Ï+o÷¹»víR=´xñbÍŸ?_ï¼óŽªW¯nï± Râ> ìîÐÍ7߬øøx]{íµ6?þœ9stË-·ÈÛÛÛæÇ.kÙÙÙJOO—£££µ01]ý¸G‚ü4¦‡oÑã………ŠŠŠRVV–²³³ÌVÞî9RZË–-Ó½÷Þ«zõê)..N:t°÷HP© ŒˆˆMQxt’BƒŠ}iˆMQØÆSªåU_sæÌ±y€$&&*11QÓ¦M³éqËÒÉ“'õõ×_+22R«V­Ò™3gJ¼æŸïIÿüÓcNNNºë®»ôÜsÏ™´‹ˆMQت­ H_£•ŸEèÖ[oÕ¿ÿýoÕªUËÞ£@¥G€(………:~ü¸<==%]úŽØáÑIJÿ=Om‚´`Á½ñƪQ£†Íæ˜3gŽ<<ëiÒ¦ÓÚ_;¥Üÿ}aa¡ºt颔”õêÕKo½õ–ºu릳gϪ°°P‹öjþO©º³sS h¨Â¢®½öZã{.–åýøa+·(}áëJßý³ÂÂÂôì³ÏÊÁ«’À€Íegg«ÿþŠW=4jÔ(MèÜU$¨Ä~Ðà…G'éþ‰ã5õ®ÅZ¼x±î¹ç›Ì‘——§ùóçKþ7(ý÷¼ñS­_¿^)))Z»v­úöí[âùž={ê ;Ìu)— Ëò|üÓ§O«Nì‡JO×ø—ßQhèD›py67{ölmß¾]³gÏÖêÕ«õÜsÏ©fÍšZ¿~½Úµ+þ%òÂ}ß}ØGsæÌ)u€DĦè…e¿J’Zz¹+þ»oe=vLSyXóväUˆÍÒŸþ¹Z´h¡o¼ÑÞ£\–óYVÿÛÚúøyyyºýöÛµ}SŒ–/ýJ7ß|³MŽ ¸|«Õjµ÷8'!!A]ºtQ||¼:wîlïq€R9xð ®¹æÝzë­Šˆˆ$>|XýúõÓáÇ£Ö­[K’ ” ºuëÊÇÇG‘‘‘3fŒvíÚ¥V­Z]ñgûLùJiÙ9<°t¦t&_ÖÌ697n»í6åææjÕªUö¥ÒÉÍÍÕm·Ý¦˜˜}ýõ×êß¿¿½GPñ}íêqÁ+›IMMU¯^½$IÏ>ûlÑãõêÕÓêÕ«åáá¡›nºIK—.Õ„ Ô¨Q#uïÞ]¾¾¾ªQ£†žþöî<®¦üÿøë¶+…jÐb Y’%•A1 ²ÓXÆ2dlcMBŒ± 3öa,)kÆZRj²E²Dat³+)is»÷üþð»÷{»Ý[w9w©ÞÏÇÃcÆ=ç|>Ÿsºø¼ÏgyÏŸ¸zõªRõy» uŸÜÀ'é§'wÐmÀpÕoLƒš5k†ÿþûOÛͨq ñÅ_ 11'Ož¤àƒB´ˆ¦`BX3pà@èéé!)) NNNåŽ5jÔ111ðððÀСCaoo‰'Â××………ÈÈÈ@FF^¼x¥êôpÆÑЙ8wîŒ,-1dÈ`„oú‘[Ó˜æÍ›#33|>_mYák›‚‚ 87oÞÄ™3g”þ~Ba „V¼ÿéé騻wo…àC¨I“&¸té¸\.ºvíZnס~ýú©Ü†˜˜œ;w9rdµÌzÞ A”••aSÌ-,?ÿ°b°«ZÏ«{'+mÊËËÃ矎´´4DGG£{÷îÚn!„Ôz4‹ .— 2ƒ![[[tëÖõ-O†Á¢E‹Ð­[·j|w344ÄúÄLä}@nÑ„E§©µNñ¦j’ÜÜ\ôë×ééé8þ<„¢#(!„°B€8::j¥þC‡áÚµ9ªkðoÞ¼••ú´…¥©,MÐÃÉŽ‹akB†Zê òvƒ¥YµØ%L^999èÓ§¸\.bccYOpI!Dy4‹ŠgÏžììì4Z/ÇCXX–-[†/¾ø¢Úl_+ËéӧѾ}ûrÛ w÷R%†øÅ’SºÄëª ^½z…¾}û"''.\@»ví´Ý$B!bh„ ׂhÊ;wн{wüôÓOøá‡pèÐ!Õ­—.]ÂåË—1kÖ¬rŸ³1B¦±)]Úv4MÚvÆÓ—¯GÁ!„è @!¬hÔ¨àõë×j¯«¬¬ «V­BçÎQRR‚K—.!44ÆÆÆj¯[Ö¯_ggg 8°ÜçÎÈ\æ«Ò(E·‹hJWMšj%îÉ“'™< e¥Å0µ­[·Öv“!„HAS°!¬hذ!€Ó_Z¶l©¶zÒÒÒðõ×_ãÚµk Dhh(êÖ­ @ÀúÂvMÊÌÌÄáDZiÓ&µÜGM›f%)33}úôA=#=¬DˆõžŠG!5Yõýך¢S7n ===ܾ}[mu0 ƒ~ýúáÚµk€­[·ÂÚÚ&&&hÞ¼9îÞ½«¶ºÕmÓ¦M¨W¯Æ­ j]t^Ó<|øžžžÐÓÓÃ+Ix¶ij¶!¤º£„Šzõê¡ÿþX±bV­Z…—/_²^‡ÃÁ©S§¿€þ3a=l.þüóOXXXÀÃãZ!عs'¦L™33³»-®:¤§§ÃËË ¦¦¦ˆ‡½½½¶›D!¤ €BX³~ýzôèÑ¡¡¡èׯ>|øÀz;vÄàÁƒ±læD8¸÷Áò9S1nÜ8ÄÇÇ£¬¬ Çg½Nu;yò$Þ½{‡É“'¨™ÛâªÃÝ»wáåå…úõë#..7Öv“!„ÈBkZµj…ˆˆ\ºt ééé1b„ÚÉ…Ùõë×GݺuQVV¦–úÔ©S§N šZÆÆ¢s]Ãö´²””ôîݶ¶¶ˆ‹‹ƒ­­-+åBQ? @!¬ëС~ýõWüóÏ?5jŠŠŠ4R¯¾¾>ø|¾Fêb“³³3<==±yóæJÛ_׆°9­,22½zõ‚££#bccaccÃB !„h  „Öååå!<<¦¦¦ˆŠŠ‚©©©Úë¼víž={¦µLìª ÁåË—±páB™çTçµ!lL+ ¿¿?† ‚øøxXZZ²ØJB!š@!„UoÞ¼——ÒÒÒpþüyøøø¨½Î‚‚L::tÀرcÕ^Ÿ:ôë×k×®ÅÏ?ÿ ë!3¥ŽrèêÚyFfTVöîÝ; 6L´É°Å(ì IDAT0À%„RýPBaÕpÿþ}\¼xÝ»wW{}ïÞ½ÃçŸއâ?þ€AõMoôÝwß¡®›7ޜ܂¥;#*×Õµ!ê™yôè>ýôSœ; ëQ‹P¿çpp8µÔE!Dý(!„°êÅ‹022ÒH ŸŸþýûãÎ;ˆŽŽ-æ®®8Â~Ycû6x{øg4ž±¥Z¬÷PçÈLLL ºví ˱+‘mÕ¦ZNA#„ò?€BXõÝwßÁÞÞ^4 K]òòòàííû÷ï#&&ݺuS[]š4ý³¶x~=c3<ÅÊ״ݤ*©cd†alذýû÷‡»»;®\¹‚€þ:9Bˆb(!„°ªQ£Fˆ‹‹C£Fлwoœ={–õ:rssѯ_?}ðìÙ3\¸p®®®êj¾NèÛ·/~ûí7ѯÚ`ÆŒ0)Î…Å—?ÁÒ­M·"„ˆBˆÚp8Œ1iii Å®]»Ð²eKlÞ¼<OæuÒvUº|ù2z÷îׯ_#..íÚµÓÄ-hÝÔ©S1{ölÌž=çÎÓvsÔ*//'NœÀÒ!ßB¼YãGÓ­!¤¢„¢v&&&øá‡ðàÁ 6 ³fÍÂÀež/¾«Rzz:FމO?ýúúúˆ‹‹ƒ‹Kíz+þË/¿ÀÇÇ~~~¸wïž¶›S›ÙÙ9‡Q£F±Ð2B!ºŠBˆÆ{ðgxÁÂÒ111xþü¹Ôó=œ1­“ ¾Ÿ3 .mÛâÚµkøóÏ?‘’’‚Ö­[k¸ÕÚ§¯¯ƒ¢iÓ¦øâ‹/““£í&‰ŸH7·Á'RUFÂÃÃáìÖ =¶^­ÛBQ „`!¶ãéo3ðî}!víÚ…O>ùDê¹X8Úïï$¢Þgc‘žžŽqãÆÕªÅÈqqqøí·ßð÷ߣ  ²™/sУß@m7±UãÂ… ÈnÔA­I !„h_õML©6Þ¿€€äœ8ÓÖŸbñÊ5˜8¬—ÔsKKKñå—_ÂÆ¦!ŒF/Cðn011Ñp‹µëÂ… èÓ§ Áãñ`llŒ ŽxNÀƒ3aè„QÆ |‚ôç¨)+»",:M´X\üÿñøñc|ý¹'gS®B©É(!„¨ÍÖ„ „E§Á£ô.Nž<‰Ã‡cøðá•^ŒÛ·oãòåËÕ>³9ð13üÉ“'ahh###áüƒl¾ýîÍ1²KsÑç òÓ¦MC¯^½¬¬,>|‡›ËÇým nE#±#Â'h÷þ=œË-WvÑøæ¨‹›ÆöÈœéÁJÛ!„è& @!j#œ’ó&)íÛ·¯2ø8{ö,~ùå¬]»¶F Ã`È!HNN–z|C8°AÊ熆†8|ø0ôôôàèèˆyóæaÞ¼yxòä Ž9‚¿ýìü|ø»Ù«÷4èà…k€¾!‚/pQߦí~E!5­!„¨M· ìÊr ÇME÷îÝ+=wMÔ% 1mºöœ9s4ÔBõšºÉÉɘ³q/x<Þ¿ÜÜ\¬>ö/ÏÚeE#-- 7oÞÄÕ«W‘˜˜ˆØØX¤¥¥¡mÛ¶ÊkÚ´)fϞש`^ý§õéWlr­û¨×†ƒyGo°¶³!„ÝC# „µ1~ø/òö.DóæÍñÃ?ÈçÏŸGdd$Š‹‹‰9sæ`ݺåZh1ûJKK1á0mó)–ŒÌê[|eF3‚¼]”ÞJSŒÁƒ p÷î]¤¦¦âêÕ«X²d ’’’pàÀ4hÐ@Ë-%„¢*!D lf®I"##ѵkWä–‚¹ ô¤w÷ìÙƒþýûãâÅ‹xúô)ƇU«Vi¸µêsèÐ!ä¾zޢ޾¬:(:šQ¦_Iþy:póFŸz Æå3ìÚµ §OŸÆåË—ááA»cBHM@!J¨SZ´á?þÃ0X±+-œ¥¾q/((@pp0žžŽ¸¸8ìØ±ÆÆÆZh±z¢Ótò{+-™¡ð÷OŸ>Å÷ߢgÏš±A!„Ôv4BaÕ„ àïï)S¦€ËåŠ>/..Æ7ß|+++,XPqazMqìØ1xzzÂÖÖVô™ªk†Â'ôBÙ¯*åýÐã| ©Nk—rrràã㇃mÛ¶i»9„BXB!„UÂÎb½zõàëë‹ÌÌL¼{÷Ÿþ9þý÷_ìÝ»uëÖÕv3Õ‚Ïç#!!}ûö-÷¹6×a¬ì K3üæßIst~=ˆPAAˆœœDGG£I“&Ún!„–PBa]ýúõqüøq¼}ûíÚµC‹-póæMDGGWèœ×$·nÝ»wïàééYîsUÖ ©:z"¾f¤º¬]*))¯¯/ÒÓÓqöìY8;ëÞ´1B!Ê£5 „µèر#nÞ¼‰M›6¡°°cÆŒA»ví´Ý,µnuÛõíUÃÝݽÜqUÖ ‰ž¨º~£:¬]*++C@@’’’pöìY¸¹¹i»I„BXF!Dmêׯm7Cí„AÂë˜XtëÖ &&&J—µ5!Á'R|œ>ÅVÁê„aL™2QQQ8zôh…‘$M©ÏŠBª3š‚EQ%dü(ÈÛ ê $+ uTå ‹NCnÑä}@Xt.>|§yE¸øðu•×VöóÐõ| ÃÀçËÉØ½{7Æ.\%ÊŠ®.Âgµüïó¸rå âââ0síN4ô_ˆù?o÷¿G:û¬!¤º£BˆÒØœTz8cÙ3`Š \ÖP¥²‚¼]D# =œ¬ñ×õ;‰E¤d!|Bå× Ó#®!øD*V vý\ØIQ—°°0Äüýà18-ÕVÏÖ„ ¬ˆºŠÜ›q(JÅâìÇX,ãܲ歰ÌàFŽ Ý|nжá8¢ÎÆ¢EÙsŒtwÆ”)Sààà ífBj @!JÓõN­&y™¾ÁA=},7T¥rÄ×i8.>&ú\2ˆpšP'k$=ÎA· z8Yƒ›[Ñа,m­ÿœÎ$mzÓ¶mÛ°hÑ" úzî4í«–ïŸÏÇùóç1oîrÝ¿ø¨Ó² ÆÍž‡éCŠ‹‹aÂáCÀ+Eqq±B÷h`` 5@yöì^¿~ ‡WWWôêÕ )e6¸Tj…Q®Øî×û÷ïǬ•àå<¡=¾™Ž8}gZÿBH%¨¿¦: @t}¡‰®awïÞEÓ¦MQ¯^=ÄÅÅa̘1xöìÀÙÙÑÑÑ:—ÕüøñãØ·onÞ¼‰wïÞaÕªU˜8q¢Ì·Öl°³³Ãøñã¦Ðu’r@¾¿´à©È-ú= `KS#˜›ªÜ™”ÖFim‘¬GrA½äÈÔ^-áä䄎;"¥ý8d½-–Y‡"ŠŠŠ0-tþ߇Rî]XXXàË/¿Ä„ àîî®ô÷€ÇãáÂ… 8|ø0Ž=ŠìììrÇÛ·o'6‘׸3Ê݇´g!-ˆÌ\æ †aPZú1)))Á΋iX{6(û€Éîöèïlââb©¿JJJDÿß AxxxàÓO?E½zõdÞ×–‹éXºão4ú/·“.}§À¡Çç*ÿ©©¨¿¦:š‚EÁ¿ÿþ‹S§NA__“'OFÓ¦M…Ÿ~ú )))€æÍ›ã¿ÿþƒ——®\¹‚ââbx{{£gÏžˆŽŽFëÖ­µ|ÿ³`Á0 ƒ!C† ;;“'OÆÁƒ±cÇ8::²^Ã0ÈÉÉQ*“6Mžµ5²¦T‰%%6oÞŒ 6 ''hì+ßïu`LMM•.WÈÐÐ>>>ðññÁï¿ÿŽäädäääàýû÷pqqAûöíËXâ¤ý¼„ÏU<ˆ>&ó411í¦¶ëî¼3m8üÚ¿ÌðQù^ÄMól…iž‹Á0!èõ….Ûƒ€ÑX­ƒBÊaˆÎ¸~ý:€¹~ýº¶›Bj‘;v0ÆÂ‚Ñ××gš5kÆ`z÷îÍDEE1þù'3kÖ,fÆ LYY™èÚ§OŸ2...ŒµµµÎ|o ‡ÃìØ±CôÙ™3g˜¦M›2Mš4aòòòÔR¯¥¥%ÆJY[.¦3!G™-Óu¢eëÙr1ÑŸy€ÁôýŒCÈÑ ×…††2uëÖeJJJTª?;;› fêÕ«Ç3Ó¦Mc–ŒaBŽ2_þ‘ Ð3`û™±QÞ–‹éŒå÷Œå÷jÿY3;wf˜œœµÖEHuEý5ÕQ¢Cè M4-&&†áp8Ì·ß~˦  €Ù¼y33fÌ&..N®2rrrwwwÆÜÜœ‰Ws‹«víÚ5sùòårŸs¹\ÆÜÜœ™>>å^8B>¢þšê(!µXXXºté‚M›6Ãá nݺ˜>}:öíÛ///¹Ê°²²BLL :tè€(¼€–m·oß´mÛ¶Üçöööøù矱sçNDGG³^¯ŸŸ¢¢¢ðþý{ÖË®Î=œ‘¹Ì·Âô£ÕÇþÅÕ«WQ·•»Œ+e{üø1áää„Ý»wcÞ¼yàr¹X»v-ìììÊäíK3¹§v)z¾¦ËÓ„ÓY¥Ð0Ñ11X²d‰¶›C©(!¤–zõêbbbðí·ßBOOµ¿ ÌÌÌPTT„®]»ª”œ ·oßFóæÍQ·nÝ Ç¦L™‚>}úà›o¾AAA«õŽ5 ÅÅÅp»˜•ÄŒò&y¬®É ×ì 8œ/µ•ûšû÷ïcüøñhÙ²%Ž9‚Ÿ~ú \.Ë–-ƒ••U¹s…Ï€ÔHY“¤€Ý‰0˜Ž€Ý‰¬”§K¢Óðº~KÔó ÀŠ+£í&Bj @©¥ø|>àáÇ*•uäȤ¤¤`ùòåjÝiJ–²²2\¸p³fÍŸþ WWW©çq8ìØ±ÙÙÙ bµ NNN0j쌜ëѬdЖ7s¹¶3œËÛ—Ôäí}7ià¡Ý+=ïÕ«Wؽ{7† ÄÆÆbݺuÈÌÌDPP,,,¤^§îç‘’¾€ADJ–ZÊ×&á¨ÍÊ¥?ÂÝÝ?ÿü³¶›D©a(!¤–²³³Ãwß}‡+VÀËË ʽAçóùX¼x1|||àééÉr+e+..FTT&L˜[[[ôéÓGÅW_}…Î_Δ9*ЬY3„……á÷ßG||¼Êí7å[àÉxp+=OžcòNÝÑöe:âÅÅŸ—œ„:Î]Ë}Î0 ŠŠŠpíÚ5,[¶ îîî°µµÅ¤I“pç¿'h00 öœÆ¬Y³ªÜÕJÝÏÅßÍúzœ "u2#dÂQ›iž­ðí·ßâܹs¢†„ÂÊ¢Ch_i¢ ñññ˜4iž>}ŠeË–aîܹ23+K³ÿ~Œ;W¯^E×®]«¾@ùùù8yò$Ž=ŠÓ§O£°°­[·Æ°aÃ0|øptîܧʼnnnhÛ¶-ÂÃÃUj“x]Š#F 11wîÜ%iÜš‘Éår=H+C_ƒÍ~]trºŽ¬\»‘’7{¹“ž9sŸþ9`n=}=Ø………(,,„ðŸ$ 0ƒ Â矎®›þ­ôgªËTI䨪ªþ,T¥¸¸Ÿ|ò ¦L™§/&ií>Ñ%Ô_Så!¤–óòò­[·°xñb,\¸‘‘‘øã?о}û*¯åñxX²d †ªÖàãðáÃØ¹s'Ο?‡.]º 88Æ “š¤ª¼zzzèÚµ+RSSUn›x]¿ÿþ;Úµk‡6mÚ`öìÙ˜9s&¢ÓÀ0Ð×ã ÈÛ¥BÁNÖxšW¾€Q9g‡ºÈÊõ>¡Â'(VV›6m`Ü¡JŒêÔÁô/ºÀÌÌ uëÖ…™™ZµjWWWŠ®©êgªËäÉë¢.ò>7YAR:u0~üxüñÇ0Õwtö;J©F´» GÛºm»|ù2ãââÂ2K–,aJKK+=ûöí ‡ÃaRSSÕÚ®F1úúú̯¿þÊdee±RæªU«˜zõê1€•òÄeee13fÌ`LLL˜ºuë2>_NfšÌùC´­pkVñšÊÙ¡,]ÌQ]T‡{­l»à´´43qÉ:¿B4úkª£D‡ÐšhBU¡’’æÇd ˜víÚ1W¯^•z^qq1Ó¤IfôèÑêl.Ã0 Ó¯_?ÆÕÕ•áóù¬•yèÐ!óúõkÖÊ””™™É´mÛ–Àè™Zˆžù—$0ú30]VŸ¢S=:èŠPçý¨«ìªÊõòòb¼¼¼X­“êŠúkª£Eè„Ô2UídllŒåË—#99†††èÞ½;6l[[[ØÙÙ¡qãÆhÒ¤ ñüùs,]ºTím^ºt)RSSñ÷ß³VfË–-|ÜŒmééé˜7o:uê„»wïÂÄ©Ÿ}#zæIsÀ0È~_Zí¶hUmïäUEr«ó~ÔUvUÛ">>÷îÝcµ^BHíD!µŒ¼»¹ººâÊ•+رcfÏž3f`Ú´i˜2e &OžŒ)S¦àèÑ£hÕª•ÚÛܳgO <!!!¢EʪjÞ¼9àÁƒ _+«CšŸŸÉ“'£uëÖøóÏ?1qâDddd`ýŸ‘pèÔKôÌ¥ý ØÌç¡‰Ü lÖQÙwRòœ(ÚéWç\ÚÚõlذa°±±Á¶mÛ4Z/!¤f¢]°tíª@ˆl{öìÁ„ PRRcccVÊlܸ1&Mš„eË–)t´…N:…)S¦àÝ»wX½z5&L˜ wRƪvÉR”ª;éJš¬§2ÚÜÅJYò´YÑûúᇰé÷­°ž±‹ºU›gAÛ¨¿¦:!„蔲²2,_¾GŽÇ”––bóæÍhÙ²e¹‘TÕ¸qc¼xñBáë$ßB/_¾ƒ B»vípçÎL›6M®àCøv?øDj¹]²ä½NÖ¨€&Þ’+:Š£ìH†¶óœÕ7›yU£6ŠŽìÔuóFñûwxr5Vg§ËBª @!RikêËÊ•+±xñbŒ1˜4iš5k†Û·oãàÁƒÐÓcï¯-@ PÎ!ñiTT/^Œ¥K—âôéÓ°·—?1°–fRs€Hþ„£%•uµÕa®¬C+ëXUß3]éüëÂT0Eȸ)ÜíJ{XÙƒó2£Zn‡LÑ€B¤ÒÆÂàË—/cÙ²e AJJ Zvû {žDó®žHNNf}¨›Çã)€=xðcǎŰaðxñbp8…®vW v•ÙÉ–ü9HæÑißYڀ݉Èz[S#ý ǪËôà©:ÝNIònŠwAÞ.0à—¢Ÿks­„„êBˆTšžúRPP€¯¾ú ]ºtAHH:vìn{?”ü‚¬£äJŒ(©ª·Öeee* óçÏGÆ ±gÏ…ƒ@¾ äÏAø{áh‰¶ÞÌKû~ȺŸˆ”,0 PZ&¨pL¦XUFr”JWÛ© -J³P–÷ ÓG ÖvS!Õ „©4=õ寿þ—ËÅþýûE눎ÊîQœŸHM#’¼^Â'ôBÙ¯ŸÐKcu²EÚwPÕN?›ÓÎ45…íСC¸~ý:V¯^­Ôh!„ˆ£„¢Z·nû÷¨ˆµ2+ `nݺàc¾e‘Šƒ]ñfŸ\£BÂàdÅ`WÑ4¢7kü侞H§j§_•‘=Éï—&¦°ýüóÏøï¿ÿ°jÕ*µÕA©](!„è„æÍ›ÃÓÓ?ýô«£ Ò„E§!ïY&õl•žNÒ¾}{Ô©S—/_®P6ÛSb¤M½R„®¯³ÐU²‚Im>OE¾_lÃçÎCHH-Z¤ÔF„"  „±uëVp¹\Ì›7O­õy» ^£Æ0,ÌÃ0J•ahhˆ.]ºàÊ•+Êf{JŒ´©WDýtq‹`E¾_ª¶ÿñãÇ=z4|||ðÓO?)U!„H£üþ“„§¨¨ ,ÀëׯQXX(úennŽÏ?ÿsæÌQiÛÚª´iÓëׯG`` ú÷ï___µÔèá §E0`ÀßxðàÒë8ºwïŽððpðx<ÑÎ]Îr½ßš°è4y»Ty¾¼evy»ˆ~FºB‘ï‚*í/**°aÃРA„‡‡C___á2!D!„ˆÜ¿¿ýö²²²`hhˆÆ£cÇŽ(**ÂÂ… áçç§ö6L™2¾¾¾˜4iž={¦¶zºu뇃¤¤$¥Ëøâ‹/ðâÅ têÔ ñññ ]ËöÛuát›€Ý‰Õ*c·.«îS×”m?Ã0øæ›oðàÁ=z 4PS !µ „###·íp ˜·ÀŽ;pùòe,Y²çÏŸW{8vîÜ ¸ººâ«¯¾Â¾}ûðêÕ«*¯UdÎ{ýúõáââ‚K—.)|­§çÇ íæææèÝ»7ðüùs¹®ekª–d¦îˆ”,›6D*ÒVÌØÃ IDATIyê߸q#ÂÃñk×.¥·©&„ÊPB /ßTèÀÚØØ °°Pé5а²²B||<¦NŠû÷ïcܸq°µµEçÎŒ„„ðx¼ ×):ªàîîŽ7n”»vFd²BB777$&&bÏž=8þ|¨ô:¶vB’ÌÔíïf¯P`£íް.µEVýêh—&×—Hk¿¬úïÝ»‡yóçâûPä5î¤ö¶Bj' @!"¤¡™a…¬™™JKK5Ò–-Z`ÅŠ¸~ý:^¾|‰½{÷¢M›6ؾ};<==amm#F`ÇŽÈÊÊ ø¨‚²³³E×êëqÀ0 w õôô0~üx¤§§câĉ ‚«««(×ÛÄ;’™ºÃ'ôR(°©ª#¬É €ÍN¹2í–U¿:‚¶7+¨ì~¥µ_VýË—/Ǭ>Þuô¥Q4BˆÚPB.¤ÞеBÖÌìcB»ÂÂB·«Q£F;v,öïßW¯^áÚµkøþûïñêÕ+ÂÁÁAAA —kii‰ÜÜ\G$6ûuQ©SX¿~}lܸ)))(++Ã?þ¨T9Uï< GR((TÕ–ÖyUWPÂf§\™ AVýêØÙLÞ0yŸue÷+­ýÒê¿ÿ><¿É3à`S_§ßBj†èŒëׯ3˜ëׯk»)¤–zýú5€9vìX…cgΜa0\.W -“-77—™;w.chhÈ4ž½ƒÁôýŒCÈQ¹®Ý½{7€9sæ ëíÚ°achhȼ}û–õ²¥q9ªÐ½ËkËÅtÆ!ä(³åbºÚëb“´vWGò>ëªîWžçñÕW_1Mš4aJJJTj3!5õ×TG# „á¬R3+¼uÕæHe4h€¥K—¢nݺp~– Ð›ê!C†ÀÃà À AƒP\\ÌZ»Fމ²²2?~œµ2%‰¿ïád }=z8Y³:B!íM¹:FØVÝw°’÷YWu¿U¥§§ã¯¿þÂÂ… all¬r» !¤2€BD„ §Ý~^¡³¢«˜››cÖ¬Y¸|2Wgô»Óiii‰øøx9r±±±˜>}:ÊÊÊXiSãÆáááíÛ·³ºp_<¸î||"IsÀ0Hzœ£öÎ5¥s_°õ¬« dBCCagg‡I“&©T!„ȃBˆÈ“'O“¼»Vè¬èr³fÍ‚¾¾>Ö¯_¯ÐuÆ Ö-[°{÷nXXX G˜9s&öìÙƒ;wîÈ”HŽ<üøãHJJ¾}û¾Yă‹’2> ¤Œ_®ƒYF(;äíª,ÉÈÈ@xx8~B4†2¡BD¸\.`®¯'Â6,wL€¼ÿ^ãí’‡¥¥%¾ýö[üöÛoX°`ÂÉÓ¾þúk´iÓÿþû/®_¿ŽsçÎaóæÍ€:uêÀÍÍ ;wF«V­PXXˆ¼¼<äçç‹þ{?ë={ 0 –ü7@ ѥï ÌŸ?_|ñ,--U¾OñìÖÁ'RQôý ²këè„"æu¡\U‰¤Ê¶+44¶¶¶4úAÑ!„ˆp¹\˜˜˜ÀÆÆ¦Â1]€¹sç‚Çã‰EuëÖ sçÎÅžžŽüü|ÄÅÅaùòåø`j‰-cÖìï†í»÷b[äID$ÜÄ“¼b¼äX]S ä\;ÁÍ-Ä‹öÃQZZŠE‹)ÔÉ7ÛÂßÿ Bú·±mÁ«IÚÎ×Qe¦ŸìN„Á¬pìN¬pL2Ñ£®mM«êh×Ó§OqàÀÁÄÄ„åÖBˆt4Bár¹°··‡Ã©p¬: 5ÂäÉ“±aÃÌ™3uëÖ­pNÀîD¼ÁEC}ü2¬S¥o-,,àåå///¬|e²V£aij„7küà¸øÞüÀ|K3¬ýÿ àûÏZâøª9¸wë8¸ô@wWðš…böìÙ˜0aºuë ê7ê’o¶%;ÖÂäƒÂ-x5‰·îê">B$¯ˆ”,ð "R²>¡ü1á½Zšéä´6É‘/E-Üô' ð¡Y7[E!•£Bˆ—Ë…ƒƒƒÔc†††022Òé,X€’’„……U8°;]ç‚a€¢|•Þfy»ÀÒÔ–¦FåòqLÿ¬->ýôS0EïDsî¿ýö[¸¹¹aæÌ™¢ë«zS/ùf[øûNÖ((á‰êÕÉ]^c¢Ì¢m7{èëqàïf_îó­ ¢g-Lô¨H¹òŒU6úÂf=²ùç4`ã„MWž+]?!„(ŠBˆÈ»wïP¯^=™ÇÍÌÌt>iÚ´)fÏžµk×âáǢΙ0ø25Òu åéÀ­ìZnºS ‡3Þ¬ñÛ5~:¥oß¾í(úúú:t(?~,úL< Vw ‡³èmþÖ„ QÇ:éqr‹>ÀÜÄPc£’ÁRMÛ+|B/”ý€ð ½DŸmMÈÀŒÈd•žµ<ÓÁÄG_”¥ì®g|>œ§wQϹ“N“„š‹BˆH£Fðúõk™Ç«C|Ü}ÊÎÎÓ§OǪswÁÍ-,×ÁãpPnú•<8y;ÝÏž=ÃŽ;0mÚ´rŸs¹\8::V(/éqŽÌº¥µK£º4â¡©õ'aÑià èëq”¾oyž›¬Ñ¶ê Øý™`6ç`…g–’’‚ÂwyˆZ1£Æ“„êBˆˆ­­-^¾|)óxu @LMM±yófœ;wõ/lÆ'œ‚r<†‚O¤Š~?ÃÝÖ/n¢ñ°··Ç¨Q£”ªW `þüù055ÅܹsË“5½MZçQØÉîád]î˜pÝH'kÑȈ&èÒˆ‡xîu&vôw³Wú¾åynÒF_ج'"% (âUœrxíÚ5ˆÖ%Bˆ¦Ð"tBˆH“&M••…’’©;âT— „ÈÈHÌ™3o’¿CÝqã`÷¨/Š€JLMr çÎõk×À0 º¸ ~ýú¸qã†Âõñù|Lš4 ÿý7öïß_a*—ËEÇŽ+\'¹ˆX8õ‡/ø˜¼P|‘¹pDäÉÛBÄ‚(]ÜV]JxürÿU—³÷^€/`pöÞ µÖ£nþnöøû&ú‚ÜvÿëÆ”ûƒ¢q4BñööFII ââ⤯NŒ9÷ïßÇüù󑘘ÇI¨{/œ+‘(:·[¶lA³fͰk×.È @Äë òv¾ÞÇm“ç ,: ¹EPÄ㣈LJ¹‰!~Þ©Bþ_gss°Ir3!a fµ ’•g «žš@¸»çí3ôîÖIÛÍ!„ÔB€BD8† ‚¨¨(0 Sáxu @dáp8Xs¯Â"oKKK0 ƒ¼¼¼*§Ã××§OŸÆÑ£G1|øp©ç 3ÌžüOjçX2¯Æf¿.¢µÂí~M õ+lùèá,ê(›êëd¢<¶ÉZï Ôr‹>°ò tiÝ‹¢ª œƒO¤"÷M˜¢|Œà¡áÖB „ C† Á³gÏ’’RáXM @é À---¹¹¹•î.Ä0 ¦NŠøøxüóÏ?4hÌz„È ™Ôα0È((á•ë4^|øaÑiX1Ø…ëGKÝòWØQ"ªîT¥ËYÎ+#™—¨¾÷¢*Y³ðy”ð€§w½z)¿øB”E!¤Ô«W«W¯Ç+w¬¦ ÒÞr‹ •½ß¾};öíÛ‡;w¢_¿~2ëØši;N°N]8ØÙH =œanb(z{/ì@F¤d›[ˆé×`6ç ¬D"`w¢Ì¼!l¼±W6§„< 9_8dnb(úL÷"®ªvj:’8 ŸŸan*ômиqc´‰BÄQB)ÇÐЛ7oÆÑ£GÑ·o_lÙ²ÿþû/âââp÷î]èéÕì¿6¬¬¬oÞ¼‘yÎõë×1kÖ,L›6­Â‚sIaÑiÈ{õ°°®4@ï4 ÿ_˜#B¸jnÑQP2#2Y-ZuæüP4 Pö|á³ÑTþ’ªÚ©©@HHV0*|~›@ïÉ-ôë?@#í!„I5»'AQʘ1cwïÞaÖ¬YèÕ«>ûì3ܺuKéÕ…øˆ4¹¹¹9r$\]]±~ýúrǤ½éòvIé[´iѬÒzÅ3Ÿ_|ø1¤g‹†Øì×¥ÜaPÂ0jéЪsíƒ0·F'k¹ÎW4€.à>›Êî…ÍQ‰ªÚ©+‰…ß±ø¤+½CHàX­¶‡R{QBˆT^^^¸yó&JKK‘žž‡ƒ¶mÛÖø:uêÀØØXj"0~üxäçç#..®BþÉÅä0¤y]Ì{~ÃÇ,¨²náõOóŠDhazkB‚O¤âì½ðw³GÒã­wh«"Lœ(\8Ÿô8|ƒ¤Ç9r]/™#Ežóˆ’5 “9 Ÿ•ä6´’?+eUÕNEïCU’Ï]\Xt^^¿=S J@HÑššÝ“ „¨ÌØØ:t@ûöík|ð|ÜËÊÊJê¬Õ«WãŸþÁþýûáààPá-º´7Ý!!!¨S§fÏž]eÝâS¯$Ëßå)éqNµØ¡Irꑬ‘6G#„£IsÊ­£fŽßîX“£âu«{MHeS¾æyµ€^F"ú  zIÑúÛ‡RAeoPkKKË # .\@ð?¢^/?d™·Pñ-ºä›îÔÔTìÞ½þ³~DÇuqU>ÏÊÞ”y»ˆ’ êúȇpJ™°½â÷'þSe4B¼à£%Z¶l‰KfÊ=OeÞ€z8ãÍ?©[ñêi÷TÙ ñï˜"£’õˆ/<f…HÉBnј›³Åÿ2}«kÔCžŸ§´Mm‡°Y;¡ UöÜwî܉ž={¢uëÖ ÕM!l¢„R®,šU„x'0// .„¥¥%V­Z¥p boo'N`îܹøþûïÑ»wo´lÙ¡›vÀÁÚ¼Ü}Y½3gÎ &&kÖ¬ÁÂÊ=Ïšà‰SôžÄ¿cŠ,|—6­Kð Jxü SØ$GWÔ1ò! |„#T҈׭l;$·gVôû“™™‰èèhLžû ‹-ÂÈ‘#QTT$wY¿üò ÆŽ‹C‡áÈ‘#ðõõELL æ r—ë¹”••aþüùðòòÂ!CDÏ€ha´"ž:Ö °]¦¢A«²ß1Éz=œQ¿Ž ¤Œ_aѹªÁ´.%3¬lùä;v £GFHH‚ƒƒ5Ò–mÛ¶!00ÉÉÉèܹ³èsÇÅÇÀÍ-„ƒ¥™( ‘$mý<×)JejšðYõp²FDJøF´ /[÷¥ìÏŒ-l•ÍçóáèèˆAƒaëÖ­,¶Ú‡úkª£Bj)†a°gÏ 85ÂÊÉÃõWVD]ÑvÓVTT„?~š‹†uôq÷ÎlÛ¶ Ÿ|ò À××cÆŒÁÖ­[QVV¦ö¶¼{÷‹/ÆØ±cË@Å·÷[2`µ V "+¬iŸ^£Ê[|YoðÕ=ÍN£6ÂguöÞ Ô31åIastIžç¤ÎC¶¦ë;wOŸ>ŤI“Xj!„(F@tEÔD“¶nÝŠiÓ¦ÁÓÓ#GŽDò‹"ì_ 󺦸úoœ«Ï(ŸÏGÇŽaff†K—.Ãá”; m7Q!úúúøõ×_qåÊüõ×_Ž›™™x<kuJ{3ýäɬ[·½ý¾†ÇŽëRߪKîþdijKÓk¸¹…¬çøP4û8[Ô1Â"mýGæ2_¬ìZe]²F:ŠyürÿÕ5ŠŒ®ÈºÇׯ_#** “'O¦àƒ¢(!¤JKKÃàïï_îóO>ùvvvÈÈÐþ‚[E}öÙg6l~øá‡r η&d`ðÊýàp8077g­>iìàà`XXXà®§Ìi3’»? ·Ö•§­ E³WEÞ©Uꘖ$«Lyê’5•it'èëq0º“kíÔY÷¸wï^èëë㫯¾ÒRË!¤< @©…’““=zôðqצÄÄDÌœ9wïÞÅÔ©SµÙ<¥­]»¯_¿Æˆ#——‡­ ˜¾/¹¡NëîhÒ¤ kuIvz¯_¿Ž}ûöaÙ²eXôEg8X𡇓µÜ¹1$?gk Û»@±µ&AÓ»KÉzáz¡ìׄOèÅJ=lÞ—¢eI»Ç/ÿHÀ÷+ÖÁÖÍ–––*·‰BØ@k@tÍ)$šrïÞ=´k×mÚ´±MܼœAI!¬­­ñÍ7ß`åÊ•Ún¢ÒÎ;‡Q£F¡AƒxV׸w€Òb,ÞŸÆ~Îz} ÃààÁƒ˜>}:š4i‚7nÀÀÀ€jë te—*«‘È-úKS#¼YãÇÚš]¹¿Ê(s¯lÞeé\ÁáeÐó]þÑ*µ‡òõ×TG# „ÔBmÚ´ÁÅ‹ѲeKÜ}˜ Aûþ°¸/_¾¬ÖÁøøøàêÕ«èÞ½;øÙY€E#Ô¦–à#;;þþþ€bccEÁ Úèƒp}HA O'rP±5µJ;{±A<ÛøŒÈd…G{Ø\ûÂFY/¯ áÿE•ÛC!l¡B5Ñuæ0Ð6ñ{Àê}=zS§N…@ Àï¿ÿ^a=¢m”¶û•¦G ¤µPý¹±ý>áÎa••«hݲ…ôõ8Øì×¥ZþÙÈÏÏÇ'Ÿ|‚àà`,Z´HÛÍ!¤Æ þšêh„Z®:f=——ø½±µv¦NŠáÇ£G¸{÷®ÒÁð¿5)Y¬æÿ`«-l|?Ø|öÀÿž €*ËU´î oèë}Ü)ŠÃꙪÞ`-9xð JJJðõ×_k»)„R „Z­Î|jj*¶oߎÞÐîj4jÔˆ•vIK §éà°²¶°Q®´EùÊPdû]ñŸ{eS·„ÇÀßÍúzÔ1ÔGnÑÖ'MÛ¹s'(JÊI!ºÂ êS!¤ú ôpf¥#Ÿ’’xûâ V¾‰iž­t¢]•‘w’¼mÙšà©€ƒ]«¼FX®pz“pdEUŠ>;ñÑ@g©I!gD&ÃX_|0Ðè›RSS‘œœŒcÇŽi»)„R€BˆÆ¿™‹À¹¼ðE¢-uÛS Â¢Ó[ôAáÑeG¡TYt.™øQ¼þyGn€›[ˆyGnˆ¦^ñ JÊ>&%41Ô¯¶ÓwíÚ[[[ 8PÛM!„ (!¤–Ñtþ]ÂÆ½ëéé!â׸“š‚O¬ëãÓO?ÅòåËQVVÆj=l’§ã/o›·&d  „SC}XšÉ,S²¡W…ç¥ ?Óʈÿ¼÷íÛ‡·oßbâĉÚn!„HE!µŒ¦wVÒ%lÜ»xGÔÈÈË—/Gbb"îܹƒ^½zA ¨åK{_Ù[yev’§ÍÊ.(Wå™H  ä)OÖnYÂÏGwv€¥©êIÍÏ ">’¢‹„?ï ç1uÆlµõÄù—´Ë>!D7QBûJu«É9?4Eòòù||ûí·Ø¾};~þùgÌŸ?_-õJË RYž€Ý‰ˆHÉ‚¿›=Â'ôb¥ â‹Ï ·èC…º+Ëk¢òÔWÙ÷¾²g(<&\¢ëYÛW»ƒç{£,÷%0z%ìêl{ ©Î¨¿¦:!¤Ñõi$ÕøÛø’’øùùa×®]ؽ{·Ú‚@úÿʲ¥Ÿ½÷|ƒ³÷^”û\ÚÚ áïÅßøKm™™,Z|Hß!Jø“¬W]*Ë£"TÙ´ÊFRÔµ-±²*ñ ôpÆ\ë'(˺ óß²A­·—Bd¡B5Q7aO~~>†Š+W® ""ƒÖJ;d½Á·Z‰Ü¢Ðã¿ùw𱳞ý¾Eø°45ŠÁ®˜™,z»@æa=z ~#ôoc' 2Ä·â~Ç JxRGHئéu‘çÏfe£5÷îÝC§N0eÊlܸQM&¤Ö¢þšêh„Z¤&g=פ—/_ÂËË ©©©ˆ‰‰ÑZðH ؈¼â£æãv³3"“ÁÍ-Dñÿïü| Høúzy»TúÆ_xì7ÿ®x³ÆIs¤nÅ«H’@6y¶hX­¿ÛòŒNÊ­áñx;v,¦î¦BˆÊ(!„ѦMm7‡BB!¤V+++ÃìÙ³ñûï¿cÁ‚Xµjôôtgp¸´´£GÆÉ“'all x{{—;GØY/(á›[çÇ õ9àñ?δMzœSe}’k´µÖCWÖ˜hReÓÎĸڂwn+LÛ#tÑ÷Zj-!„(Owþ•%„ ãñx½Âùâkˆ¶Ðí߯jü´« oÑ=kò3õ¡ž IDAT^«Ú&XZÞ6X?ŠÃk;gŒêïÅJy„¢ ”D‡Ð¾Ò„Taܹs'Nœ€­­-ÆŽËÚ¤¥¥¥xñâÞ¿ÂÂBœ9sK—.Evv6¬­¥ï Åf¾ŠÜÜ\ôïß>ÄÙ³gáîîŽÒÒR¸¸¸ U«V8uêT…k7·úzÔûÿŒè(_‡š Ÿ»ð9K>Éãl¸yó&ÜÜÜ???VÊ$„(Žúkª£)X„j#&&-[¶D‡°råJLš4 ßÏÞ.@ÆÆÆpttD»víЭ[7Œ3Àǵ"²T6mFÙÙÙèÛ·/?~ŒØØX¸»»~ýõWp¹\üòË/R¯ òv¾|ÁÇwIš^p®ÊT/uL_ÓÉiU’ÏAÞiWŠØ¸q#š6mŠaƱV&!„hMÁ"„T LJ¯¯/ÜÜÜpêÔ)[TÉסÌô5E§>©‹ä´*ÉçÀö6Âk¢.aϾýð<ôO7!¤z£)X:„†ô‘.-- ݺuƒ"##ñêÕ+¸¸¸`ðàÁØ»w¯Üå0 ƒÓ§O#((·oßFƒ àää„;wîÀÚÚ§N‚««k¹k üóÏ?lßàÙ³gèÓ§ ‹Ö­ÿ·­j`` þþûo<|øVVVå¦[ñL…é=[2Ê­‰HÉ_ÀÈ<_“$ת(U5µISŸTÁV@T¿÷—Èÿ÷š|·O~Ëb !Š¢þšêh !D§åååÁ××سg|FàAÿŠ‹²e¹zõ*úôéƒAƒ¡AƒˆÅëׯqýúudeeÁÀ¼:º ‹Q‹ËM rwwÇÕ«W¡Žw5\.žžž(..ÆÅ‹Ë·o߯Ž;°xñbXYYøß´7{©Ó{Äw„àÖ¤A¹ó5=õikBfD&‹F;„#)YrwÌ…mîád]éÔ&¶§>©ú¬”™¢&Yç£GP|å8Ì;ù xH7¥ÚA!º„BˆÎâóùøê«¯ÿcïÎãcºÞŽ’Éjˆ=±ACb¯ˆTí´¨„êªÕ6-_º AuCZÝЦº¨V•P´Šú ±±/±FQŠ$D"’ÌÜßz§“df2“L<ï×ëû¢™{Ï9÷¦¯~Ï3ç<çY¹r%ÎÎÎ 6ŒC;ãÑu{9»þ.´K—.F‡¸zõ*«W¯&..ŽýV–Zµj¡ œ µ›¾ì¦|¥¿¿}ûö\¹r…ääd›>Û©S§èÚµ+Š¢°yóf7nœçóéÓ§Ó°aÃ<'_Öù0Ì;1œœ«9 am¼ÐØß)‰~åæmýj@õ K½Û&GôZS`O]‰‰èá—'oÅÒ1¨ùmg®šÍ¹±UNNþ~‹ú®Šö©Óé1buk×ââ†_î«D!ĽK6’ !Ê­wÞy‡?ÿü“5kÖP¿~}† ºuëŸ6›µ·ê:©ËÈÈ oß¾\¼x‘ùóçóÔSO¡ÑhŒ^;©_ “r"ÈX÷5×~ÿœ½{Ÿ$ €víÚ°bÅ ^{í5›<×ñãÇéÞ½;*T`Æ Ô¯_¿À5ûöí£_¿~899™lGÝÞ“ž•£?ýêÚÌÿNGêÚ¸à¶'õ:5(Ks8 ó# ¯³&w¤8¹&ÅQÜ~‹’ bØç_|A||<±±±TªT©HcBˆrGåFBB‚( e=!ÊÜöíÛ@‰ŒŒTRSS•Þ½{+ÎÎÎÊÚµk-nãË/¿T”ýû÷[|Ovv¶ÒªU+¥}ûöŠV«UEQÂÃÃF£üñÇV?G~‡RjÕª¥4oÞ\¹xñ¢ÑkrrreîܹfÛòž²BaÔBÅ}|´â=e…òÕæãf¯ÿjóqÅ}|´â>>ºÐk-ñÕæãõ{7°äYJûy;¦¸¸¸(cÆŒ)•þ„–‘ùZñÉ,!D¹”žžÀìÙ³©V­›6mbõêÕVFµaÃ:tèÀ<`ñ=ŽŽŽ|ùå—ìÚµ‹o¿ýV?†ÊöíÛ­{ûöí£[·nÔªU‹¸¸¸§n©’““ÉÍÍÅ×7ï‰Vù·;©Û{¦ð·hÛQx/×f†rmf¨M¶òØz»SY²d«UiV—×jµ<ûì³xzzòᇖxBQš$B”K:uâé§Ÿføðáüøã9r„îÝ»[ÕF||<ÁÁÖWŒîÒ¥ Ï>û,\¹r-ZDÛ¶méׯ‡.pOaù[·n塇ÂËË‹7R³fM“ý'%ÝiÃ01œüª}ê=Ãço)vº¥¹†×Ù²[,ËÕ(‰Ú¦Ìš5‹;wòÃ?P¡B…ïO!J“ Bˆr©R¥J,X°€™3gòÔSOÑ A«ÛðððàâÅ‹EêÆŒ(ŠBDD®®®üþûïxzzÒ¦M† ƦM›ô§c™úv<;;›·Þz‹®]»Ò¢E 6lØ ?ÕÊ”ƒâââ‚§§§þg†“_K¾‰Ï?៼j¿þä)Kï55q·t%Àð:µÿÅ{“KmÁš KVsJkÅ'üƒ/ysâ$œÛöç ®F‰ö%„eA!Ä=kذaüðÃŒ9’´´4«î­Y³&~ø!ßÿ=[·n%*>‰ÖŸÄ1bæÌœ9S¿ª^C_ªõxŸŒÓÔåãCšèÛ8rä:ubÆŒ¼÷Þ{ÄÆÆâææf¶ß0uêTˆ½ýÿ‰6œüšû&^ ò€Ù#|ÝkjânéJ@D?Ü+8q%=‹Ô“ß]5¥¶ŠPœ‹²ªÒ¾dɾ~ëа-Y•J &„¥M –#RØFÛÒét|ûí·Œ?žŠ+òå—_2p åÅé´Z-:uâܹsܬ՜Œ*žÔjÔœ³ÿG¥J•ˆ‹‹£ÿ¨·È<¾tZ4 ^^^øøø°uëV|||X¸p!…öwùòeÚ·oOµjÕØ²eKS̵Ë"–{'*»8Z\ìO­Õ¡Õ)TpÒp;WGX/èbñû2F- `osÃÚä[jË‹ª, .X°€çž{Žv=Ôrvö¦ð/—ïGˆû™Ì׊OV@„÷,{{{^|ñE>L`` ƒ "44”K—.Yt¿F£añâÅ 4ˆ9)°} —L¦jÕªôéÓf}=¯‰K˜ºx=111Ì;—!C†àææÆk¯½¦ÿ?ªÂdee1hÐ ²³³Yµj•Ñ#WÍm)R?ËÊÑ¢±·£Wó:Fk†˜bX«ÃÅAƒV§°íÌÕBÇml¥Àðg=üø· n®Núq”fBwQØ2ßÃ’Õ”'ÆOåÙgŸ¥SßÇØ¶f9)³ÙaBQÞH"„¸çyzzÒwüÇx z?c6àççÇ‚ ,ªnÞ°aC¾úê+ÎÙOö­ 8À÷ßÏÑ£GéÚµ+·÷®åìÔÁ¼5´;?ü0/½ô3gÎä×_Ż΢mÀ_ßOQòAò×™ÖNZ—%ÏRØ2ßÃ\°uñâE†΢߆V=ø«õ°<[ï„â^$ÿ•B”ª¨ø$ªOXJõ KKuýŒõG¹Z7·‘ŸÑ·o_ž}öYz÷îÍÙ³g-nÃÑÑ‘V­Zñì³ÏròäIÆŒ믾JXX7nÜ(p½5ßò¯_¿žàà`Ú·ooòs“bõ3ÃàÁÛÎ\Õ.j[£—î±:$ÿÏŒ»´ð-‰œKÛ4öŽrrrøôÓOiÔÄ—_V®†î/âúÐ&öli³ñ !Dy%ˆ¢T©Õ¸S2³Kuû: œühG.\ÈêÕ«9tèU9!†™5kË–-cíÚµ¼÷Þ{&û,,ÐjµE>28¿¢NìÕp[–©g(Á…%JbË—¥mªïCQêšË3“" dܸq8úu…áA³®dë”rõ΄¢¤8”õ„÷—ˆ~L^µ_ÿ÷Òä›gr×·o_¹}ûv±Ú}ì±Çxÿý÷¶“¿OSöíÛÇ7èÖ­[±ÆRÆÆªùkM¢xyM.7|–’lsøü-D'ž#¬óB[³k×.¶oßÎöíÛY»q3º[éü±{÷nveTâå{ÉÊÕÖÆËfcBˆòL!D©²tR^yâ‰'ôÿ\”ÉsT|‡“ÿ¦^k]‘ÛØ´iŽNÎ<±æo&*IúûÊz2_”ßUþüò¢¤ÿ½ûjóq¦Eoäâñpé¿ür’%#ÿB§ÓQ¥J:tè@ï¡O³ç¶;žÀ}ÛðïØ„â~"ˆâ¾tõêUΟ?OëÖ­õ?+Êä92æÚÌtv\¼U¤6¢â“x+j1Jí&œ»‘ç¾ü[|Ì#QñIú•%[Ýj©ýv¬oqWÊ:è²FdÌ’÷ïàõ%uþ8Jæ¿y@Õꢩۄ¯>˜Ì9§:üx2›Á=[–ûçBˆÒ"9 BˆûÒ¾}ûhÓ¦þgE9™i|ˆ/ädÑ?°‰ÕmDÅ'1jÉ.n;Œc}óÉÜ…å7·ÆXBµaŸêß «¤^Üüò~<¯êøñãTÙðü>ƒšöY8û÷€þãq ÿ÷‘ŸáÜ#œˆn|yøçRo•ûçBˆÒ$ˆâ¾”˜˜HÅŠiÒä¿Ê冧?YzbÒ°j0°}³@Q†áó·Ðàí•töñÀ½‚Sžk¬alâo©7WI]Uœ§JãxÞâŒ/;;›ñãÇÓ²eKn\8Mtt4gŽìçÓàݦ3Ÿ ïJeG2s´¤ü[ý½<7,„eA¶` !îK‰‰‰øûû­¹`Í6ª´´4ªU«fUÿQñI\IÏ‚3 88»2ý…ÇL^§V(÷v¯X`{Öù´L´º;õL®Í µj †ŒmÊŸ7aͶ´¢æ”t®†áû´v|W®\!44”mÛ¶ñî»ïòÆoàââ·­·Ã !ĽD!Ä})11‘îÝ»ýÌš<†ÔÔTÜÜܬê?2æ™Y·áðF\Zë'²Æ®3v®:FÜŒâ°åÄ¿$Nœ²KŽVæ£t®šÅ£>JFF7n¤K—.&ï{©K†µªÉÕ«W¹ví×®]£zõê¶~!„¸kI"„¸ïdddpüøqÞxã £Ÿ[3/ê HD?Æ}ô™×ymÌh³×KÊ.NÀ &¬gåhqqÔЫy£‰åÆ’Ð-I7\¥1üçüc(‹dsõè¬-o,ßËäUûM®R¨+9oÏžOæšÙ4iÒ„M›6Q¿~}vîÜÉï¿ÿÎ¥K—ôA†p¤¤¤ ÕjõíT­Z•éÓ§Î7ÛNÝ5IöBQR$Dqß9x𠊢äI@/ª¢®€„ù–@pp0ï?ÝÏìuærJŠ’Ï &¬«y ¦Ë%¡[šLmIÒ¼µÉ涨fä«ÏÑPŸßØnÞ¼Iל£8ÿ>+K#éÓ§K–,aÑ¢EøùùѱcG¾ýö[>LNN>>>ôéÓ‡±cÇ2g΢££Ù°a{öìÁÿ+£G¦fã–¼÷㪻"É^!J’¬€!î;‰‰‰888вeK£Ÿ[óí|ZZvvvT©RŪ1ù$=ögÏžå믿fРA¾Á6µ‚ð÷ßóË/¿ðÒK/áëëK½zõ˜?u7“‘UÇ¥K—òÏ?ÿpðàAF6}Š•16l Zµj6I‚·„µ ßQñI¤gåè7W'¼Ý+ÚŽ©Šê–}kŠ©` $+§[³ºdI äËãÞhìíkãEŸ>}8|ø0&L 22’V­Z‘`ËGBˆrI!Ä=EÎŽ9@FFÏ=÷œEùÿý7‹/&<<œfÍšQ·n]†Ζ-[èÑ£ÑÑÑÌømÞ£f3ó“Ï2d5jÔ(Òׯ_oq³-XòM¾áZ=%K <¦ðçìû™>À¿ÐvÌmi›Ú¶ÈÛ§LæžÍÖ«#æX©Û±¸SGÄÕÕ•©S§rðàAþúë/þøã«B”5;EQ”²„¸cïÞ½’@@@@YGˆ»’:~óáæ¼?´mÛ¶eÈ!¸¹¹Q­Z5ýŸvvvlݺ•¸¸8âââ8vìÍš5#$$„nݺL­ZµŠ=ü…ôôtÜÝÝùâ‹/xùå—mò̶Ðàí•$§dè'óEÍ·(«úÆú5|¦³ï-ÙßÒçQ¯3, iÍó_ºt‰:uêPcÈÞó¼Ô¢“ùZñIRŽÈ¿ÐBØVDD³gÏ&33Óä5M›6¥[·n„„„LíÚµmÖ¿± ðêÕ«éß¿?ÇÇ×·üL2Ë*p°cïÚ’g*ìkƒ˜¢=ëÖ­£wïÞðä,¼}9`B”<™¯ŸÃ+„¸gEFFIvv6iii¤¦¦êÿ¼}û6íÚµ£nݺ%Ö¿±cc7lØ@ýúõiÒ¤I‰õk à øÝ6é5»±wmÉQ¿…¹líÑ¿E=*xÿþý8»V Vƒ6KzBˆòJ!Ä=ÏÉɉš5kR³fÍRíרxýúõtïÞ½ÜÔ~°Uq¿²`8ö¢E\XÀ`X ÅðŸM)J}€}ûöئ5Oõliq_Bq·’$t!„(%W®\áàÁƒtïÞ½Ôú4—ˆ­žvUœú¶GQÙâ˜\KNº²4Á¼¨ÏxúôiÖ¯_O@@@‰žê%„å… BQ ¢â“xàÍïhÕªU‰öµeËRSSã“gÃ"ƒ)™ÙTvq,ñoÛKbb]REó³4Ð)J ròäI‚ƒƒqsscâĉ6¯="„å‘ BQ "cŽpéÒßÔ©SǦmŸ¿‡1‹ûz 4 ((ˆÅ‹Æ'ÏêD9+G‹ÆÞŽÎ>61¥9±¶õj‹¥ŽµÊÔÅ1“cïHf¿~?u³Ô‚*!„(K€!D)ˆèá‡;·°×8àáaÛ tâ9´×.°4üa’““xñÅã“gu¢ìâ¨A«SØvæªMÇcLiN¬Ëj“5J]]*)?¿Í•l{n÷›È…gÙv%„¸oHºB”‚ð _.ü_M~8XۢˆÖh—y„‹¦àèèHJJŠÙ"‡j¢´aíŠo¯¼kàÍÏÒ“¨†ÏßBtâ9ÂÚxé cøžÖ½³Š5}€wŸÄìa¤¿½»‘’’Bjj*©©©ú¿«foÝŠÖ©"9ý#°¯ä†·‹£l»BÜ7$BˆRò÷ßÛ|ûÕŒ3ØñÝàÃÝ݃R©R%«ÚXwôoR2³óœ„U–uAŠÛ·¥'QE'žC«SˆN<Ç¢¦¯SWTΧe¢Õ)úŸöŸÄ+Ó>GYÿ5ïè´¼cp¿ƒƒîîîܲw!gêÖ¬ÎàÁƒiÜsw_ºg?!„°”lÁBˆRbëdêÔ©DDDP¹rebcc­ªk¢N¬“y"–l ²uÎ…­¶P6®°6^hìíkãe¶uËZX/Ü+885,*>‰QÎE‰‰Â®IG^ýlûöí#99™ôôt²³³¹|ù2™¡Âcïp9ø|ýõ׌ÐQò=„÷%YBˆRò÷ßÓ¾}ûb·£( S¦Laúô;+†¥K—òÀXÕÆ„î͘¹áXoà­=ž×µD +*hmáA¾…Žkш.fW>T…­¨¼=g>ºus±kÒ‘9QßðJ·æF¯ kã¥ßò%„÷3 @„¢”ØbDQ&L˜ÀÇLýúõù믿˜;w.½zõ²¸³gÏâããÃ3Ï<ÃÙ~(ðydÌR2³ñv¯hQ@QÔ€!Ÿ†EÕŸAÁ‚|†Ææ“ÿè'õÛÎ\ÍpØb\…Y»v-)ËgQ¡i{fÎ5|€åBÜëd –B”­VË?ÿüS¬DQÆŽËÇÌÃ?Ìùóç?~¤íßĨI"BKH"„¥àÌ™3èt:êÕ«gõ½QñIxOYN×GgöìÙ¼ð lÛ¶ÁƒÓ ßså_¨ù#ßý”;wP?xÑkKrâž?/Cýg OŸ}#cŽ|ô³^ž€€~ûí7\]]-ê[!„E”  $$$”õP„¸g}µù¸â=e…òÕæãEnãòåËJPPâèè¨Ìž=[ÉÍÍU† ¢øûû½~Æ  lٲŪ~²³³•ÐÐPE£Ñ(K–,QNŸ>­888(}ô‘ÕcÎÎÎVêׯ¯tëÖM”%K–˜½Þ}|´Â¨…ŠûøhEQlóÞ¬ñø÷ñŠæ?+mg¬)Ðï§îU*¶ìªT2IaÔBÅ{Ê ›ôYØ3ö~÷{ç ŠG£–Ê7lÒ§âî#óµâ“!Ä}¥¸5&i×®IIIÄÅÅ1zôhn޼ɪU«xâ‰'ŒÞ3þ||}}éܹ³U}½öÚk¬X±‚‘ïÁ„CN<9z<Õ«Wç•W^±zÜK–,᯿þÂÏÏzöìiöúéüñv¯Èôþ@É­ˆ˜¢n­ºróvß×+!-¨Ÿû7—}@…syÉßÝ&}šË!Ù»w/ÿ7c,T­…ëà*W®l“>…â~$ˆâ¾ îßïìãaÕ O†–,Yƒ>H5ؽ{·> X¾|9ÙÙÙ<þøãî¹~ý:Ë–-cĈØÙÙYÜ×üùó™;w.³gÏæÏ¬º$Ÿ>Ŷµ+ˆˆˆ B… V[Q>úè#z÷îV«¥E‹¸¹¹™½§¨ ݶflÛ”““ëÖ­ÃÓÓ“Ì£Ûyï©>T{øæl¯2÷gK¬Z¸% ßÁÙ÷æù,*>IÿÞáÎ Eg¶¹šçÏÍûŽÑèÜF¶¯^FÕªU ò,{ª´aRÿ¶<Ó¶>;vì 66–ØØX’’’¸víZÁ-Zö¸6jÍW“GóÈ#˜ ­•––†gð`2oE÷ïÿ ù¿^{*µy˜ÃË¿ÆËËË&ãB؆Ì׊ϡ¬ „åÕºuë8xð _|ñÏl•Q'ëGŽá¯G ÏØ<==™±àW^iºU3yKwƒð 9yÚ0œø—tp¢¾“µ7 ¶(%§dp>-­Ná¯Ô t ÿþéŠC«0N~É|À×ó>E˘ùõÙÙï!Ú¶mKÿþý™4i...èt:>ý3©+¶£ËL'°¶+§4µ˜4 ÏØðy×­[ÇóÏ?6í:®Ãε-ê¸qêZ}[Ôã¡fu±··Ïó¿9›“ØžxˆìÃ14nܘgžy†‰'Ò°aC›K!Ê’ BaÂO?ýD«V­&Bs¢À$9**Š •«âÑúA“Û—²²²pqq1ÙGx/OÔ£E‹<üð懸fÏž=øúúš=¹êâÅ‹¬^½šU«V±~ýznݺEPPK—.¥V­Z®­wN?üBĸ׸¶j.Uƒ.9}/wm ä-ö§½;}€‰#áA¾&ÛÍœ¨+ ëŽþMjf6.\5¤gå°&9‹¨¨(¼~œY ¢iaƒòóÏ?“““ƒƒƒu||I­ìɣ݃ˆ}¥-[¶Äѱxùù¥§§3nÜ8æÍ›G=øî»ïò\`ÎÄ£+QÚ6¦V·Á´½‘Èw æñíwßÓ±×£,ø<_ß²[­B[!„0ÁÃÃӧO3cÆ žôÌ“ópþüyæÍ›ÇÄ ãHþ Ôä:++KŸËaÊòåËINN櫯¾2zToZZšÑ  ))‰víÚQ¯^=ÂÃÃIKKã½÷ÞãÈ‘#lÚ´Éä}£Bü¸±çOܺ?Í-Ë÷Ê Ü¾}ø/É<+GkòÄ([2•b˜k¢þ}ш.TvqD4övÌ@eÇ'´-áA¾éó÷çââB»víxùå—ùxöWx¿òŸ¯ÛK­g?„NC¹¢qcÆ Œ1‚–-[âàZGÏæ¼úÚë$ïˆaêâõ|¹é˜Ù`$33“W_}•«Ö 't:)>AÌXÔªwetEôðýjeÜ;=§+6Q­çódž=ÌûO÷',,ŒXÕ¶B”²K!Lˆ>|•ežTñ¨EjêUÒÓÓ8wîß|ó S§N5Y[Í¡H¿~³ÐäòåËøøø˜ü\£Ñ››[à犢°zõjlò`ScË¿­*|˜ÀÀ@ú÷ïÏÎ;­nS!J› B‘OBBdìþ·nOðÉ•4kÖ €Ó§O3þ|Þ|óM*Uªd² uìl§+4©[·.§OŸ6ùyþ-XŠ¢pùòeÞyç\]] 1y¯±"ƒc;{á;VLC»|:ÿ{j®hÕ9„1cÆ Ñh¨]»6±±±´nÝšG_xM¨í.ù RòOô}äk³ ëæê”äŸá0€×\*W+hû(ôyžùžýÞ Û¯;)µZ£“p {ïFMèìãarÕÈ\DkMìýÞöá³eëY¸p!§N¢cÇŽôêÕ‹-[¶«m!„(I€!îK·oßæ³Ï>£_¿~y&ÿ‘‘‘tèÐggg÷&ºñ'F…ü7Qœ6mÕ«Wçå—_6Û¾:Vr³ @ÚµkGRRׯ_7ú¹F£!;;›‹/Ò¾}{ªT©BíÚµY¶l , bÅŠ&ÛV¡Î>4x{%_m>Îê'àza?í[4¡‚›;ö.ÉR8u-“3WÓY{0ª×ÇÅçª7y€UûÎ胂ˆ~hìíÐê"cŽŸDõ K©>a)QñI Ÿ¿…——ì6D`”F…õücP·€dåhq°7Ÿ;ãho‡Swì|ÚàÐá1z<ýpuräìûÙvæªÉg òåÚÌP®Í4}p¥ÔÇF…ø‘îÕŽÌǦ1òÝO¹xñ"AAA<ôÐCÄÅÅ!径å BˆûŠV«åǤiÓ¦¼ñƬY³†E‹wŽ»8q"¯¾ú*;wî¤U«Vyî=qâ?þø#'N¤B… …ö¥(ŠEIèmÛÞÙz”`ôóFqêÔ)¢££ILLäwÞaåÊ•œÿfÞOLâ“oâF÷1dõz+½JVß \ë1¥C¨>—!<È—9¡mõA˜e{ô[Š^Y²›%{“õ}›Ûne*À°e…uSòA ª2s´h ™°çêêTuå˰vTv¹s|¯½ú*é¥Dås„siYÄh°ÿ~–/_NZZ!!!tíÚ•˜˜ D„å† BˆûÆÉ“' à™gž!00C‡ñàƒrìØ1&Mš„ŸŸ3fÌà»g lš:u*µjÕâÅ_´¨¿9°59ÕìuM›6¥R¥JìÙ³Çèç>ø ·oßfÜÛSñöógܸq<úè£üùW¶ÅùêÖŸ”-Ë©×Ð7OÞHþS—¼Ý+ÖÆ+ÏŸ†ùj{‘1GÈÑþ7©Urg S…OÏÊ¿BRR†º­jøü-F߉ᶫücPƒ*÷ NTpÔ胸ó,Ž; EЯpLà·{E憵ËÓ^IQù=ööö 4ˆ„„V­ZEvv6={ö¤sçΜ={¶ÔÆ$„¦H"„¸/ìÙ³‡Î;“••ÅŽ;øõ×_iÞ¼9Í›7çèÑ£lÛ¶˜˜¦OŸŽF£)°MçØ±cüüóÏLš4 WWW‹úühÝÓŽþ8zÅìu†€€vïÞmôsÿ;߬kÓS¸êößQ½ÖæK¤?EÎéD²Zõ1yD¯:yîÚ¸&]×4šŸ¡þÝQS°…;+ //ÙÍäUûõ+$£¢w;¹Üu<щ猾“É«öë +äËôþÜÖêŒUº|‹ÖœØUŒ=vvvôïߟ;vðçŸrðd2>íC:oCŽT!$B܃RRR8yò¤~ËÉŸþI·nÝhÔ¨[·n¥C‡úk›5kƱcÇôy ={ö n£yÿý÷©[·.#GŽ´x£¼s´nhÛ†…^Û®];“+ ŽŽŽ´ì ÀØ‘OënÍVŸÈ˜#èö®†JÕyoì ]Ÿ"oØŸú÷/†´¥­—»ÉvRþ­Vw&ñc—%à0fÃçÛ6I:ÿÊMQ‚5ÄÞÜ+8ñx 7îœpÖØçY±ÚxV#2æˆ>°)É"ÅeggG¯^½¸õðhH¹ÀÒϧ•õ„÷9 @„÷Œ””ú÷ïOõêÕiÒ¤ £Gæ‡~`À€„„„°aÃ<<<òÜÓ¼ys233¹qã€þ8\Ão”>ÌâÅ‹yë­· ­jnhhëz ldöº¨ø$œV8{ö,W®_-Ù·Ž[·nñÞS}õ?³f«Ï¸náÄ=9‚Q!- ½^ݲ•ž•£_µ0V• ñ¼ù-fðßÉRÙZZÂâ„ä[¥Lm£²äè_uûض3Wõ¹*†÷©[¥Ô< SϬn§º63T_q=3G‹›«Þîq¯à„òï3'§d•£EcoGg“í–C{vŮ۔#qx<:¦ÄV£„¢0€!î ÇŽ#00íÛ·óí·ßòÉ'Ÿň#xöÙgY±b…ÑÄqõxÝK—.­ÇñÞ{ïáíí͈#¬SVV@¡Iè‘1G¸ZñN°b*ÝÙÙ¹ÐvÌéß°èr ÔâëÃ|©ìâHJf6“Wí7™WñJôn´:¥àѵùØçÛòe˜G¡2µÊÒ­fÆN·2,FXX°fì5(™>ÀŸ³ïÔ2êJ‹‹£­NaÛ™«…¼²·hDt뿦R뇹¶:Š÷Z]ÖCBܧ$BÜõRSSéúpo.ÜÌåõ¨e<ÿüó¼öÚküþûïÌ™3‡yóæáàà`ô^oooœõHfffžÏ8ÀÒ¥K™2e NNNVËÒ$¢‡^ |¨P¹ªÉ<K˜[)8þ<žžž·§N¾¡`°wò*Ôƒ• S$Œ#¦N–2<™ÉÔ6*K·š;ݪ¸§QKX?ûþ@è’' )Où …™þÑ,=<É]óiiie=!Ä}Èøÿ# !Ä]ä™gžáZÊ5t½Ï7¯3ùß“iÍUWi4š6mJFÆ"t{÷îÍ3Ifô8ªÕæ–OSMŸÄ{?¬ @Ô-M=w~e2Ä’þF/Ý£¯Ï‘ÿ›þ¢ ê¸Ô„=üòüýæmãÕÛ C ÷ w‚6Ã\CçRÿ øÔþLÃÒñZ{Ÿ9†Ï[š§Z•¤1?@ÿmë `Ĉ,_¾Üä¡BQdDqW;xð «V­â™qïâíã“ç›hs+†Ÿ9V¯Ç²-û¨V£6«V­Ò_³wï^öÅÇð(Åž°j\‘1G¸”š€¨5jTäcRÕjS§3?žÊ•+S¥J«Û6V©|òªýdkuúkLM_Õ°àN­ õ:5©Û«Z³ÇçcINˆ­¶ýËV•ÛK[Æ ùñÇY¹r%üqYGqŸ‘DqWûæ›o¨]»6_OS`ÿ¾¹É¡ág'µUȾrZ÷æ»ï¾c̘1Ìš5‹°°0j{5Ä«c«·ØDôð£V•;Çõž3ÜVôîÈ;I#´—øî»ï8~ü8éééÿüsªV­Š³³3&LÈs­¢Ü9†·8ý™sþüy.ë* Õ)D'ž+ôzÃ ÃØ·ü†ÉØêQµ5*¹ðeX;}Þ‡ÊÞ*8ip¯à¤?MJÝÎ¥VNÏÊÕÒÙǃmg®’œ’Áè¥{Ln±*‹JãåYq¶¤988ðË/¿`ooOXX999%0B!„ÈK!Ä]íÂ?)ÜÔ9äÙŽ£Õjyî¹çðññaèС :ÔlõêÕ£I“&y¶¡ØÙÙÙ$1·nݺ,^¼˜7n0nÜ8®_¿ÎìÙ³iÔ(omÔÔTÒÓÓK,¹rå M½ë¢±·#¬W¡×…Møó_{mf(_ m§ÿÜÎÎŽŒO†qmf¨Ñ#náN‘Â%{“‰èá‡ÆÞ­N1yü¯È«¸[ÒV$]G×ëlÛ¾ƒ‰'ÚxtBQ Bˆ»VVVv)T«QSÿí¼N§ã¥—^bÁ‚Ì;—N}³n›éoÓUݺu#..Žáó·”H¥îþù‡‘#GÒ¿£ÕÔ;…KBnn.ƒ|˜Ú–mg®š˜o cJx/zx ûPïSóB\4„ù2'´­ÙãE^ÅÍC‰Œ9ÂåŠ^(‡1kÖ,~ýõWP!ò’Dq×Ú´i9·³ØüÉ„ù¢( ¯¿þ:ß}÷óçÏç•W^aï¡cäº{:‰ æðáÃ,ÙzÐâmJ–R…_|EQøöÛo®¬lܸ‘5jàçgÛ¼5 ºrã'æÛ"Ñ{ш.ä~1}úðå—_òæ›o2eÊ>|g²þözõêQ³fM¶mÛfQ›þþþ6ßz2ø™—¸eïBËÐQ&¯Ù²e ¹¹¹úDQ¾ÿþ{† ‚··7îîîpðàA«ûW·A¹:ØÒ¬ŽÉUò´º`jõ¥<ÕÜ(îv5[8,‰ß[‹-øæ›oX¸p!_ýµÍÚB• Bˆ»’º=äõ×_gÔ¨Q¼ú꫼÷Þ{y¾a×h4<òÈ#¬\¹Ò¢or+W®ÌÍ›7m6ÆøøxöÅÇ íÆçÛLç”ÄÆÆR»vmš6m À_|ÁóÏ?ÏþɤÕkÃS ÕjiÛ¶-³fͺ³µÌJ¹¹¹è̬¢”§ÕS«$åéøÝânW³UÃ’ú½ >œÑ£G3vìXvíÚeÓ¶…B  !îJM›6%88˜ºuëòÑG1xðàùQñIüv³WNœàÝ…²àÄm³îΞ=‹³³³MƧ( ãÆÃ«i èÐÝìD266–ìììˆçõ×_güøñD»tæFJ›+rlÏ&OžÌ¸qã8zô(ß~û­UãéÚµ+¿/ˆBy´‘Pà”fq¿{úþÔwvö}ãÛëÌÝŸÿw`XüÑÒ‡%ù{›5k»wï&44”„„<<¥ˆr#!!A”„„„²Š÷ï)+^ú^±stQ\ƒWµPqmôÚ-[¶(€²lÙ²bõùÕæãŠ÷”ÊÈw?U%66Öìõiiiн½½2oÞ<%''GiÕª•Ò¡C%77WßÖW›ë¯ÿòË/@Ùºu«Uãºqã†âݬ•b_¡ŠòÎOkŠòhŠ¢(FÇT\Ei³$Æa-ï)+F-T¼§¬°É˜ò·Wœ;wNñððPzõê¥äää”õp„(d¾V|²KqÏŠèá‡wÍjxú4Bûϳ×N:•–-[2hР"õ¥îÅŸ¼j?É)üôý7tïÞnݺ™½/>>NGHH .äСCÌ;FctËÑ‹/¾H`` ãÇ·j|•+W&aK,Í}êómÄ œ={¶OY2[~¬m3*>‰ÑK÷”ù–±üÛ¤Šûnl•ãb˼úõë³hÑ"Ö¯_ÏСC¹}ûv±ÛB @„÷¬ð _Ö>Þ”¿’óäÐP¼Ý+2}€žkéÕ«ëÖ­ãwÞÁÞ¾hÿYT'Ÿõn‘ý×Qžzê©Bï‹ÅÓÓ“F±zõj:uêD```ëÔIå7ÛN1~üx¶mÛÆéÓ§­cõêÕ‰‰‰á¶bO“€NÌX‘·Ø¢%×’H·¶ÍȘ#hu {»RÛ2¦¾›áó·(¤¨ˆÅ}7¶ÊqQÿ]½´ðœ–èÑ£+V¬`Íš5ôë×ôôôb·)„¸¿I"„¸§EEEQ£F ¾œ4*ÏäîÌ™3<ñÄœœÌòåË2dH‘ûQ'ŸÓøóº× œœœL»kHÍÿP…¸¸8“Gñª++“Wí§ÿþ¸ººmõ8ëÔ©ƒÓàÉäfß&bäã8¾4ê–êó û¿$Á k3`¤¾ë9¡mK-!]}7¿$$›|Gå%I^-,¨Õ)6[!0`ëÖ­c÷îÝtïÞk×®Ù¤]!ÄýI!Ä=+##ƒ~øçŸ^Ÿ\~åÊ }††}Y½.†yóæqèС"o½RN>ùåúöíKÕªUÍÞ“’’¾}û áðáÃ\½zÕhŸDÚ­l²rµ´˜CóŽÁE @¦„…À#yÜ•3II»®Od.ê7ø%yŒoþÀÈð][ÚoqǧNê<+/Ö´[ZGë Úx¥ªk×®ÄÅÅqöìY‚‚‚8þ¼ÍÚBÜ_$BܳV¯^Í7xî¹ç¸~ý:Ó¦M£Q£FÄ­ZíSå…Ù¼ð 88Øî@ÀË—/³gÏ‹VS6oÞŒ¢(„„„°uëVìííéܹsë&¯ÚN{;pqМ’Á¹ê˜˜È‰'¬cx/÷è L€´‹8¬ûŒ7º6"<ÈWª’µòÔ aòªý¶*—¹ÀÈÒ¼‹âægNê W^¬i×Vù3–2¶\1ì¯M›6lÙ²…ŒŒ Z·ëHý×ç—‹Ú1Bˆ»‹ Bˆ{–££#¾¾¾¸¹¹1uêT^xáf.ÛˆwǙԷÍûܾ};AAA…^Kƒ hРõêÕC§ÓqñâE“×»¹:1}€Œw)« IDAT?Þî™òâp*V¬XäUE#º ,y‹Íë×áxå41_L&''Çì$Ù\òwg4övdåhINÉ :ñœþºâ~óon2m骥י«±q¨ÏÝÙ§ð#jaøü-8ŒYÄðù[ÌÜ™—áv¼Òÿß ___âããI˸ÅùŸ§ñÁšÄR‡âÞ!u@„÷¬¾}û²páBrrrÐh4tíÚoooÆõ/™>·oßN½zõ¨_¿~¡×ÆÆÆòÐCw{{{âââhÔ¨Qžë¦ðÏSîL ›w !::šÉ“'y¼AAA,_¾œþýû3gÎ"zô3YWÂ\ò÷¶3WÑê\\4Ô¨ìBg¶¹ª_QQ'°¶Î0¬—‘¿Ž†©ëÌÉ?VµMÃç1lG}îmg®Z5VÕâ½É(Ê?èbÉ#—:cµF¼¼¼˜ðÉ·D¾2åÿ¾Ä[ãÀÄ^­Ê<ÿEqwDqÏrvvæ‰'ž(Õ>·oßNÇŽ ½î£U;8xð Þ9)ËÍÍ6mÚËóÏ?ŸçÚüWu’ü—StþàØ±c4kÖ¬ÈcîÝ»7z dÜ”÷ødyˆÉ¢z†Qs… MBK£È¡-ü“mµÍói™ú¤nö‹[ÐÕQCf¶WGþgæ)È–SÁÛ#ѹöR<ò(h+iÿ¢ B‹È,!„°‘œœöìÙC§N ½væ‚åĤ»ëB\\Š¢˜½WMˆÖÕoÀŽ;Š1ê;Î6ìîÖMÞýè3“×˜Û UÔÏlÉIô›Oþc´Í6žÕŒnµ2÷l–l=›5(o÷ŠÌ ÿYa¹"åå´-€þýû3tÌdØ¿–Þ.¦· !„! @„ÂFöïßÏ­[·, @ü´pp¯Ã[ý—+Â… 8yò¤Ù{õ Ñ5«Q­FmN:Uì±O ¡RëîäîþŒŒ ³×–ÖiNÖö[œ‰¹:é7Ì]1lóÊÍÛoµÊߦ¹<cc.n=‘Òþý,þì}:vìÈùmkJ¥?!ÄÝO!„°‘íÛ·ãèèH@@@¡×^9žÈsCä™xvéÒFClll¡÷«W¯ºµHII)Ö¸Õöâæ}ÀÍ멼¿pÙ lITC·Dqû571W“ÉëUuͳҡÞÓÙÇÃê À0°fìÅ]U±ö=%>¿'žx‚µ®£þ¸åT,!D¡$BÙ±c¸¸¸˜½îÒ¥K=z´@Í*UªH\\œÅ}V¯^ÝfEáêÔ©ÀüØ}f+i—D5tKµ_uÒ®želb®&“_¸~K¿Òaxê×¶3W­^]1 $lõÎ, .¬í+:ñZBtâ¹"+,, NÇùÝK=0BÜ}$BÙ¾}»EÛ¯Ô£[·n> !66¶Ð<•»»»Í;ßú÷ö©¤¯¤­Öõ0 DŒ}C_œm?–Þ[Ô-Vê¤À½‚éY9úR'íam¼ò¬Zhuw~–³[cÏÏ’àÂÚ¾ÂÚx¡±·#¬W‘ÇU³fMZ´ï‚ó饘 !î>€!„ \¾|™3gÎX€ÄÆÆÒ¼ysj×®]à³nݺqéÒ%Ž?nQ¿Õ«W·É,'''ªV­J+w}Ñ=µ®Ga5'г=ª¤·t©“öéü©ìâHJfv¾ÔIû¢]ò¬Z¨ÕÏ­Éý(I%‘€¾hDr¿^ìc€'þïEnŸ?ÆÔèXÙ†%„0K!„°µ¡¥HþíW*5ÄÒmX¶Ü‚¥ÓéÈÑÁôÕ{;÷¬\­E÷g‹QIoéR'íéY9¸Wp*З±UÃêçò­~ሣ3âd–Â, @„Â,-@xáÂNœ8a2©T©íÚµcõêÕmÃÚyòo.¤gÛäç;w’™~ëîMˆŒ9BdÌt hìí˜>Àßì½Åùf¾¤Ž•ÍTDÆ!%3›Ê.Žú2µ SÖGÞÚòD«’>«bÅŠ4õÄõÚi Ø„fI"„6`iBõ„+cùª‘#GòÇ0tèPÒÓÓͶ·mÿr+yØäç+VPÉÍ/?"zøQ£’3m<«Y=/«£z å*Ì­´”Ub}al¹=MmËX^­ êLµ›çËE!Dù%ˆB“5ccciÕª•>áۘ矞_ý•µk×Ò¡C–-[Fff¦ÑkÝsÓ¨T£^±'Ί¢°bÅ † Lò´ÇØ|òöœ»“[’x>ÕêöÔÉ®©“´JCþ ¢<K´–-£ˆ~¸Wp"íVv‰åÜ´oßž‹/rá›·-„¸wH"„ÅdX€°°š æò? <˜Ý»wS¥JBCC©Q£5¢AƒÔ¯_ŸºuëR»vm.žNâÝÇ.öÄùèÑ£œ®¬ý—†þôëׯ@ÎAy8ÍÊ[Ëðd(µFHg¼½ Hù…ÍÔäÞÖÏôþúŒÆ*½›cIeͰ°cD?j6öC¹ÉÉ“'mòBˆ{bÉAó¢TìÝ»—ÀÀ@(ëá!,ðÏ?ÿP«V-–/_ΠAƒL^wðàAxàV­ZEÿþýKq„æ=úÂküþýlÞY°ŠwŸìSàóo¯$9%o÷Šúb~å:.÷ NTvq,ò¶¥áó·xg=™9ZÜ+8q=+­N)ò3—×wfkQñIúí]Óøëßjj*îîîüôÓO<ùä“e9D!J„Ì׊OV@„f)ŠBvvvY£ÜR·™88˜O©›9s&žžžôìÙ³4†e‘¿þú‹õ‹æñÆk¯ > lëc˜[I°Õ‘²ÛÎ\E«SpqÔàí^­N)Ö)Q÷Ë6¶ð _®Í åÚÌÐ<Á_µjÕhÒ¤ »wï.ÃÑ !Ê3 @„hµZ&L˜@ÖmиT¤båÊ„††òÛo¿I0’ºˆlªNÀ©S§øå—_˜0aNNN¥5´B ñ2YvNÔ{Øt²yYÖÇ0—a«#eÕ`aúξ?P¿m)¬‘1GŠ´Å«¼Ö)MíÛ·g×®]e= !D9%ˆ¨ùóç“|úJà#T Ɖ'8p Í›7çĉe=¼r£V­Z´k׎‰'’––VàsEQ˜4iÕ«WgäÈ‘e0Bãú¼÷{6¬F×>”Ï·ýWó£<å|¶’ ~>'´-áA¾E»©`aÝÑ¿K,!¼¨ÊÓïÆœ¨ø$Ö\qfÏÞ½ò……Â( @„h4"##ÑÝJ§–ï|øÎdöíÛGbb"ŽŽŽtéÒ…ÄÄIJf¹`ooÏ’%KHIIáñÇç?þàĉäææ¢Õj™6mÑÑÑ|öÙg¸ºº–õpõþ\øT© MÌ3Á/É“˜T–N¤ [IÈÿ¹5c76†¨ø$F/ÝCrJ©·²q¯àT®¶Q™z>k“’d&¯ÚOjåúäfgsèСéCˆÿgï¼Ã¢:º8üÛ]zEÀF5¢`AìKb—Ø4‰š˜l{ÃÐDMl FX0øYb‰‰•fK¢ ("( Ò„…Ýùþ0»Y–-÷îÞ-˜yŸ‡höÞ™9swϹs ¥fC  …¢É“'£S§N¨wûgLéÚжm[$$$ÀÕÕ½zõBLLŒa…47nŒÈÈH\¾|¾¾¾pww‡••êÔ©ƒåË—cùòåð÷÷7´˜Þ*Ÿ 6n€×á#øwjZEÁ×$~­B«+#§[cø"1Á’“wU Š”ù€žîØ2¦C•¸@û]0’ZlNk˜<E5>˜"yŽ6.Ía÷ú)«¶ å¿5@( Äb1nÞ¼‰íÛ·# ]ºt­­-<==qýúu8::¢¤¤¤JsssDEEaåÊ•X»v-ºvíŠädã Ø¥(æñÙ(4jÔ{Ö,ä¬O¦§&²Š¸.RÕôtÇXoø<”Uˆ42ÍE[Yuéò$/Sc‡I€¿½•™Æq0=Ýñý´±ÈÉ|„ââbÖí)Ê» -DhDÐÂ6CPQQ9rðööFÛ¶m¥Ö©SGeIIIøøã‘‘‘°°0ϧï7ŒG¡E‹ظq#fΜ©÷ñõQ O¶@¡Ù"y† "> aç’5.–ÈÉü|^•S}Ÿ†ýg½c6bccáããc9(]@õ5í¡…ò£®ˆ P(ĸqãpâÄ DEE¡¨¨þù'"##1wî\ôéÓG­ñíÛ·Ç­[·€9sæ {÷î4@Ý …££cµtÀúŠqÐG>Ùº\ºyióŒôYDÖ MvÞúΔv.Ù‚:à™šÓ‚„ ¥Ô¡PÞ!þüóO¬^½Ÿ|ò :wî {{{XYYaöìÙÕjTTVVbܸq8}ú4Ž= ???­ÒÄZZZâûï¿GLL *++ѧO 0IIIÚN‹ÂOžR)„IÝF˜7åc 6 ;wþOƦ<}úM›6ÅêÕ«^Ò\çqŠ¿'Ñ·³0ÖÛ¥Zê_MÑgl…¾©És“ÈÞ­±.\8çV!99†B᪯i‰¡ P(ÜáììŒS§NUû¼K—.€›7oJO;>|ˆ&MšèÌø „ ((>ÄñãÇ56>D"Ο?½{÷âØ±c …¸´úM¯i¬ß=Ýá¶ü8Šê• íÅzÓ¹»øúÇŸñ~q*víÚ…µk×ÂÉÉ õêÕƒX,†H$‚X,†™™6mÚTí„è]bݺu°µµÅ´iÓ`w'[ªØr*¥ùàä88™Ûñzº×8åœ)²§;5m޲ßKÉXoÔþy bcc©B¡P¤P„B1rD"Q5#A(âùóçÈÉÉANNrssáìì gggäææB(V©ñàêê '''\¿~½ŠòþûïëLî+V`ÇŽسgF.^)))è2e ïÆ%/Á¯ÛMœŽ-ËæÀý»xTTˆ`i**: ûyVQ¬ƒúy!¨Ÿ€·ÏpAÄÏØuuë[ÁËÙ|>qqqð÷÷ÇÝ»w¥§Cïÿý7vî܉eË–ÁÖÖ=mu¦ÐÖd¥ÙØ_Ï5kkk´oß±±±0´8 ÅH …b¤Ü»wëÖ­CTTjÕª”——#77 ÛØÛÛƒ‚ììl¸ººJ?çñxøðñmÛ6|üñÇhÞ¼9222зo_Ⱦeˬ^½k׮ŤI“¯^½Â;wpçΘšš¢k×®hÓ¦ 233ñçŸJîܹƒæÖ@³®@‹ž;5Áíº6hÔ¨,L(­ÁÂô_ÃLÕÛp@€ÿåZ¡°ídØ[ã’ŒëQnn.¼¼¼ðé§ŸâÌ™3ַß~ KKK̘1Cçcuk쀿^•¢[cÅ„šìÆ$»žkò<"âÓp—ÔÓ¿Ã'.>Í -…B1¨B¡W®\AXXNž< ggg„„„233aaaúõë£^½zUþtttÄÕ«WŠß~ûMaÀç–-[н{w 4W¯^EË–-qõêUNe‹ÅGPPæÎ‹ùóçöî݋ɓ'ƒ ˆD"TTTÀÊÊ &&&(,,ØÙÙÁѵrlÜðEÈ4üVZO‹*ÀPG¦ Ú_/Öo‡½Q–(vã‚C±iÞgøî»ïÌÝ10¹¹¹Ø¾};‚ƒƒagg§óñ®däA$&¸’‘§ó±˜`l'2²±W2òÆ6&Hæú¢¨ eŽî@É |}‘  5@(£@(âüùóX»v-âââàááŸ~ú þþþU\©Táãã”——ÃÜܼÚõ:uêà×_E—.]0wî\øùùaôèÑxøð!š5k¦õîÝ»‡€€\¾|Ó¦M÷ß~ ‡ŠŠ ,[¶ C‡Ehh(š7oŽð˜¬9p Jÿ“¼Bø´ntb%£zbíù”àl…5²BIsåû/Qì~A,\¸K–,4f¦¦³~ýz˜˜˜`Ö¬YzOÛ¾ß䛓d½ýõªTZ§ƒÉs0¶yÈ¢,¹€d®|€†î‡¾ÖŠOn)ÊwË×€B1rÄb1ÒÓÓñË/¿à믿†ŸŸZ¶l kkk 2eee8vìîÝ»‡‰'26>dQd|HpssƒŸŸ’’’0xð`ØØØàçŸÖfJ())Á‚ àííüü|\ºt [·n•º2EEEáéÓ§Hløâ Labb‚õqéȵvÁŸõºã•Ç@$ˆá™ÈKOý¡³t§ŠR¶ÊŽ‚:Àßß¿ZÍ”šH^^¶mÛ†™3gV+&©m‘9MÛë»–†> Ɤd½õvaµÆõ=6(K¯,™ë¸v®p­ïwOð²S $%…B16¨B¡è‘aÆáý÷ßÇðáñaÃdgg£wïÞØ´inܸk×®aøðá:ChÑ¢ÒÓÓabb‚aÆ!::Zã¾Îœ9ƒ–-[â‡~ÀŠ+pçÎôîÝ[z],#,, –Í:"ÛÄAªxÊ+b&Uc9ž„ GÜ£ç0 :ˆñ{ŽÍV VdØÈ*v¦¦¦ˆŠŠÂË—/ß 7¬Ý»wC$aΜ9Õ®-9y™%Xrò®F}K ‰‡«<uFMª¥¡ Lë’œÜCçÅø= *÷WŒõv€ÏÃXo—*ŸËÏuÔàþˆÕ©, ¥æ@  EO\»v §NÂÆñìÙ3äçç#66[·nE`` :vì§s9š7oŽÊÊJ¤§§ãƒ>À½{÷P\\̺ŸÄÄD 2îîî¸wï–.]ZíôåäÉ“HIIÁôÙs«(žòÊÉú‘íàjo5¾^Ò¶ê ×±}›Îä-²››f̘cÇŽÕøÂiGŽÁàÁƒáàÀ}@øÂ~žðyR7"ÙÏí­ÌPTV¡Ð04¦7ùÚž)˜ ,]~TÄÁÉ=P¹i¼ÔýJÑsˆOÃþgæÈÊÊ“'Ot*…B©P„BÑëׯG³fÍ0sæL4lØP/Ɔ"jÕªÈÈÈ€··7!øã?Xõ!‹„V­Zá×_U˜Î—‚ÐÐPøøøàÛi~*OEŠ©²7«t¥ìõéÓyyyHNÖ›.xúô)nܸ‘#G*¼¾Æ×«šÁdž€žîØ2¦ƒÂ%((j|º¢/ä X. c2°Ôí]¡èÅ@عd¼°uÀ£§   B§PôÂÓ§OqôèQlݺUg…ÿ˜²hÑ"@ûöíQ»vm˜ššâöíÛèÖ­ã>8€«W¯âÒ¥K01Qük$..ׯ_ǯ¿þª‘œê ×éª]×®]ajjŠ˜˜´lÙ’óþuMD|¯Y‰©Òú+\<»š^P>°»&fšRW…Ù&P0ÿö3 ²©;bcc1qâDí£P(5zB¡èK—.A,cܸq•£¬¬ ·nÝ‚¿¿?aff†–-[âÎ;¬úX°`F]%ÞCžÐÐP´iÓä@rýaee…Î;#&&ÆÐ¢hDعd¼üó2LÝZë%õ®<ªNWtáö¤)ò§Æä>Å\ùcW†ãýSˆˆOãüípعd” QP*d¥ð1Ueã@jGE¯^½TžPi‚¼2«IšW.ƒ´U}—LÖ×.W†váR—fÚ∓“<<<¨B¡P¨B¡è’G¡wïÞpvv6h,DRR`ôèÑàñxX¹r%¶oßÈÏÏg]xÏçcïÞ½°mà†¯¿û#FŒ@“&M°mÛ6lÛ¶ ;vìÀúØGR‘ë·Ã’t¯öVfŒ¾ˆø4•UTi£Ì0ª©q /_¾Ä… 0jÔ(Îû–WfåÓ¼êÛI•Â/YV¦½¥fÛÓçÅ…ë›.ÐäûŽˆOÃc3güø¿SFD¡P 5@(ñÇ G033ÃåË—uR)!!!ðññÁˆ#žž¨¬¬DPP6mÚ¤°X:š6mŠâþs ž´fíĉ'””„ÀÀ@ðx¼* "×o‡zº#Ýä¯ÃXá’¼·µ0¸-?.-ȧÈ0êÝ»7bcc!‹9‘Yœ:u •••>|¸ÎÇ’OójLUÎ%ëÃÑÖ‚õ)™¾`ú¼ íÚ¥ ‰\KNÞ­bˆDħaÆáD¥…*Ëë¹C\ð7æî¿h(Ñ)Š@  E¤¥¥¡W¯^hÔ¨âããáâ¢ß\üò˜››ãÈ‘#(--Å‚ ðæÍØÛÛcóæÍØ´i¾ùæÖ}JO¬Í±t”|}}ѦMéuYÑê#ÈAå €RÃhÈ!ÈËËÃÁƒõ-*+D"‘ôïGŽA×®]ѨQ#+_€ÎÐ.HdßÌ‹LŠ`*›!ç ê”C"€*RعdˆÄo“7ˆÄóŽÞªò} a À›Œ?áºì˜žfB¡PŒ Z„BÑ¿üò ***p—!eù IDATñâEƒ¤BUÄO?ý„ÒÒR >|ðÊË˱aÃÌœ9S£þ$' ®öÖ5¢n‚|Ý uµ ºté‚Ñ£G#88Æ ƒ­­­¾DeDQQ>ýôS\»v ;wîDïÞ½ñûï¿cõêÕ‘ÇXê‚ÈžÂèeZ7ƒéó2äseRe€G\ÉÈÃÂ~ž¿'O_–ÀTÀC¥ˆ€(«!³ Ó¢oÂÒTÓZö¨pp2ï Ëyí! …ònAO@(pûömxyyñqóæM,Z´>>>X¹r%ÒÓÓ‘ÀÈõJÙ[Pc~»¬¦'2ëׯǫW¯ ¦Ô+#==]»vÅ… àáá___ôïßeeeJ«ŸÿWÐf]Ê®u&1ºJ}«‰¼ºh§ìYʺYEßÎ’^JÊ„˜ÿ>íÞ³” E¨À­-y|RsÜ) ·P„BÑ·o߆···¡ÅÂÏÏ•••ˆ‹‹ƒ ®]»OOOìØ±?VÙ^™B¥K·*C×Tàââ‚E‹aãÆxðàAe‘PTT„.]º ¼¼ׯ_Ç… °cÇüñÇh×®š4ibh Š6ëRv­31$t•úVU{ASc‡i;eÏRÞÍjzôMÌ;v«Zû±Þ.xQ\^½c·v@y ÄÙi°žsÈàûœB¡èj€P(S\\ŒÔÔT´k×ÎТæÍ›‡ÇÃÅÅ{÷îERR7n >ŸÙ³gãúõë*Ûâ¤Ã˜oçÏŸÌš5Ë( æåå!//[·nElžWüQ‹^xøð!Nœ8ahñj "‘999xþü9òóóñòåKÌêúÞ³ácnÏÆ˜çÓ.vfîÛ\é÷®Ô·ò{iŒ‹2Ã…M68etkìŸþ?5FÅÿœnÈsèV&þ~U ÙR¤V¦¸´hXÙOn£´BdûœB¡èB¡pLVV!pss3´(lذ°°°~nii‰‚‚‚*Ÿ)Â>è’@qeŠ{®øéfŠ:ŒÃÙèPüòË/zÉ0¥ 333oèª>úú“+"> KNÞ¬ñõ2ŠØuTTT )) qqqˆEBB Þ;kí¿Ÿþ 0ýŸ¿ ðù|鉉 :uê?”¶w†••çrËï¦1.Êâ7–œ¼‹‚R!ì­Ì¤Ÿ«‹õßsW2ò “*†…,¼þCPññfoe[ SiŽ¿mG^úm˜ö_#Ý8)ŠvP„Bá˜fÍšÁÆÆ7nÜ@ß¾} -æÎ«ôš:ãCÚêÚª2z˜ÆrIعd¼pð„ESoÌ™3 €¥¥¥ÎÇU†Ä …* 5epaÀIoZ}„lÉÏÏÇÔ©SñÛo¿¡¤¤ÖÖÖèÖ­‚ƒƒÑªU+ðx<ˆD"ˆÅbéìÿ+»öôéSDEEáÂ… ¸pá Uî5E0ù.ä÷ÓïœÍÚPt¯¬lò{NòÙ‹¢2”Vü{òÁç½= ±4¼OEø¼·†*ðv½,9yÂFm€Ä³p¿6ÊuC¡Pt ƒOpëÖ-´oßIIIFã¾CÑŒ!C†@(âܹs†E%ׯ_ǧŸ~Šøøx899±jë¶ü82 Jàjo'!ìÞ¾kÓVß' ’ñ&·°ÄšI¾Xºt)–/_®óq•ñúõkÔ®]‡ÆèÑ£Y·×æÙK= ͆¦iªÆ‘ÿ®Ù|ÿ?Æ AƒPPP€ùóç£W¯^h×®LMM5’'??GŽATTbccajjŠÁƒÃßßLJ™™™Zù)öLžWëži?²ëDÖ@‘m#Yc”ÏÞ«c¢² ég>[Æt@@OwiŸPÇDŒ—[>ƒU¯±~å"j„PjT_ÓB¡è€>ø (++3´(*iÔ¨ú÷ ÖmÙÆ†pUŸAß5E$ã­?sçÎEhh(233õ2¶"$ʳP(Ô¨=1=²… ×øzé$FH6Ó’lŒ€¤x¤¬¤ˆ7n K—. „àÚµkFçÎYÅÅÅ8pà†Šúõë#00¦¦¦ØµkrssqìØ1Œ;Vz2¥.~Iö:›ï‚«¸(¦ûGV6Ù6’}<~OÂÎ%c¯üÛ»BÀça\;W< Ž5¾^°·2ƒ½•™Ôøô)©PÏ3³€é{-Qšv“Æ€P(ÿEÅhHJJ"HRR’¡E¡hÉ;wrñâEC‹¢sÂãR‰ë²c$<.Uå}®ËŽLßO\—Ó“dÜSTTD5jDºvíJJKK "Cee%±´´$¡¡¡jïeúÝ誽6HÖ‹`æ*ãÛÏ&˜¾ŸØÏVÚöĉÄÒÒ’tíÚ•¼xñB£ñ¯_¿NÆG,-- Ò­[7²yóf’““£²ºg¦é35äw!‹ì÷¢É~K•¶…ÏD¾€ŒÞú›Ž¤¥PtÕ×´‡ž€P(: uëÖpppÀ…  -ŠZòóóqùòeÛ3}3«îm¯¾Rïj3Ž >^ö=®%ÞB×U©B®/Œ£G*¼.;?mßš2™d½È¾A =q‘ÄÈ"‹±eË >Ä… àààÀzì»wï¢oß¾¸{÷.–/_ŽŒŒ \¾|3fÌ@½zõT¶•ÄH,9yuƒW[gLN ­Q}Ÿü)Cò½Œõva”K~.KNÞ•¦ð…«7 !æây}NB¡Ô¡Pt€X,FÆ qëVõÜøÆÆîݻѿTVVjÔž©a€qÖmÑEí ‡ž™€ôŸ» dÔ¼£GÆÍ›7ñäÉ“j×4uñQ„>kZÈ£LáVôyEE"##ѪU+Ìœ93gÎÄáÇ5Jð÷ßcèСhÞ¼9±páBÖí$Aú¥BÖ™® ?.Œ|Éó?8¹‡Òý̤ž €•C=\дø‘ÆòP(”š 5@(ދŸüóÏ‘œœŒ   C‹£–‰'âþýûµW÷f–«e°­F͉RÞ®&ÌÁ¶mÛ¦Q?Ú0tèPXXXàÿûŸbùøîk‚ºölZ®kBŽ9‚3f OŸ>¨_¿>&Nœˆ¦M›âòåËøþûï¯gÙ9”””à£>!'Ož„µµµFòIbdkm°m¯‹¸]6ŠÖ€¬üòsàÑ@X˜ðáÀA¸ÛbR8“‰B¡?Ô¡P8„‚Ù³gcß¾}Ø·ohh‘Ôâää777ðxʲúkŽ¢¢g²×dM•eEAÉòJìX\)åû×.ÁŠ+°xñbìÝ»W£¾4ÅÆÆƒ ÂáÇ•Ê'›5JW®mlZ.ëòòr|ñÅ=z4.^¼GGGáÎ;8yò$ºuëÆª?ÉBÏÞÃ'Ÿ|‚àäÉ“hذ¡Æ2ôtÇ_/ØZh–m‹íUô«3 ´EÒ¿dÿÉ®ÙT½@Õ“Ï+yUú¹kêqi!Böþ¢µL ¥æ@  …CV®\‰Í›7#<<~~~†‡1 å¼_‰+Š­…i5eJ]6#mgyNÛ7¿Ê¼="/t2S¦LÁÙ³g5ê[S&L˜€7n¨WÑÜSSS±k×.3iIP§Ð¦¦¦â›o¾ÁÑ£G! µ6þ²³³Ñ§Oìß¿{öìArr2¢££±bÅ xyU a3‡égpüøqDEEÁÛÛ[£¾da³æ´5¥è3MO´T2P¸”íoÙÓ¡5¾^èÕ½+`a‹ü{WuÿE¡PŒj€P(±aÄ„„ 44S§N5´8¬xñârrr8ïWVAÕ•»Žª dErh‚2/ëe)þjë‡þýûcÔ¨Qzù9r$z÷îiÓ¦áÍ›7Jû£GЫW/L™2­ZµÂéÓ§5–A™B{óæMôèÑ-Z´À×_Q£F¡Aƒ8~ü¸Â~ÆïI€IÐAŒß“ t¬‚‚ôéÓ™™™ˆ‹‹Ã¤I“4–[~K]òp6êGlذ¾¾¾œô+yîÝ;¨]÷ÚÈŠÖ·&k^™Š>—ô¿Æ×‹±Q)IŒ°Æ× ùëÆ  §;®e¾ÜÚ¢òñ-µ©•)Ê»5@(-ÉË˃ŸŸæÍ›‡àà`,\¸ÐÐ"±Æ±÷8übׇ³7òçªÕtPg80U ˜¼U×öÍ»*oÑ€ÖˆŽŽ†‡‡ŒŒŒ Æ` ÇCxx8²²²Tž^Éν´´ýû÷‡.]º„÷Þ{C‡ÅàÁƒ‘ššÊ‰\»víB=ðæÍ:t¸wïÚ·oiÓ¦¡¤¤¤Z›èÛY‰ ¢og)쳬¬ ÇG^^bccÑ©S'Nd€‹/"00˜5k–Ê{5 ¢¿’‘§Ö¸Ð6Cœ¢õ­ÉšW&‡&ÆŒ¢ý­Ì]’çæ üÑëçŒû§P(5Ãf¦ÈBóJ×>>ÈÎÎÖ븋/†‹‹ Õ¦ÇÀáîþö­8ÇÃÈ‘#‘’’‚U«V!""îîîØµk«'Ïž=CïÞ½±gÏìܹÛ·o‡¹¹y•{ÜÜÜ„uëÖáÎ;U®œÜ•›ÆÃç}§*ë ''C‡ÅÏ?ÿŒýû÷£k×®ŒeRG^^† ‚† "::&&&jÛ09 `’\m|ˆ|"¦Õàu‰¢g¡n^²§"²÷ÎØöíWnèIz …bh¨B¡hÈ‹/pãÆ L˜0 40´8Z±Æ× Ž?ÇüiS·QVoB>ÈT¾ Ó€Ùšˆ^¿~­×1---Ž˜˜ìÛ·Oé}7oÞDbb"¦M›Víš……/^Œ´´4ôë×S¦L··7vìØââb¥}–——cÏž=hß¾=ž>}Џ¸8L™¢| -]º-Z´@ïÞ½qüøqDFFbÊ”)1b±pérdÆÀòÍ»‰Ö­[ãÖ­[8}ú4FÅîÁ¨ ¼¼#FŒ@qq1NŸ> ;;;F호51YËl\šT%r0$Šž…ºyɶ‘¿×××—.]BQQ‘^ä§P(ÆÐG0”¡GzÆÏË—/Éîݻɀˆ@ $99ÙÐb6n ’{ýwÇûùÑR Mú2f–,YB\\\ 2¶¿¿?qpp ùùù ¯Ož<™¸ºº’ÊÊJµ}]¾|™øúú>ŸOlmmÉ´iÓÈü!½þêÕ+²nÝ:Ò°aC€Œ1‚¬=~™ÑwXXXHúöíKð¶iÕª0`ñöö&vu x|éµaÆ‘çÏŸ³{ ˜4i177'W¯^å¼o®×²"÷4cß/šÈ—žžNÿýï:”ŒB᪯i5@Œº —[·n___bffFx<éÕ«Ù¶mÉÍÍ5´hœQXXH6nÜH=zÄyßqI,úšÄºuëˆAÆÎÎÎ&vvväÓO?•Æ"É*‚õë×' .dÕgff&Yºt)©_¿>@ºwïNfΜIjÕªELMMÉgŸ}&5ÀÙÄG”••‘øøx…Æ’H$"ÏŸ?'ééé:‰©züø1@ÂÃë]36Å^6~ª&íI¬oÆ~V/(\[´&½zõÒ½€Š–P}M{¨ …¢Bvî܉®]»âñãÇX·nþúë/ÄÄÄ 00NNN†‘3LLL°|ùòjþù\ q·ëí¢Q¶U1"š^SÛ¶eeeØõó1U ±,õë×ǦM›‰E‹"uúæT"rrrЪU+V}º¸¸`õêÕÈÊÊÂáÇaaa¨¨(àÉ“'صk<<<°s+277G=`oo_íŸÏ‡££#š4i¢“˜ªƒÂÚÚŸ|òIµkÆæ (?ÅuUtY¸ŠÁ’ôSVñ6~ˆ¨}–ñiÒ y¥m† 66qqqZÉA¡PŒj€P(Jxóæ &OžŒ/¿ü“'OFbb"fÍš¥U…dcÆÒÒœúÚKø~œÜC¥=›:Ú^S›¶B¡£GFÚÝ$ˆ?œn0öÓO?ÅÆ±víZ¬\¹Ý;@ÀçÁÃümêÛæÍ›kÔ¯©©)FóçÏãÅ‹X»v­tȧ\6¦8y!8pà†kkëj×UQ†H” ‰§²cPQ]ù”­uÙ>™ô/éÇÂT Sg8ÉY«¦OB›6m°zõjÖs P(5 j€P(Jøê«¯ÈÈH„‡‡ÃÂÂÂÐ"é&™€¸D^Á‘Ïö#A•bÈöSEéý/^`ôèÑ8wîf„mƒk›Ž:}[­ŽÙ³gcíÚµ Á™ÈpˆÄI¾U,%Ù¯¸ÄØN Tq÷î]¤¤¤`üøñ ¯« 27Ä<zºÃÖÂ¥B…ã*ËDÇek]>»ÓàzI¡AI±A&coÓ>ͱtéRœ?W¯^e= …Rƒ0° EêSh<¤¤¤@@¾ýö[C‹Â9ªüÜÈ{ï½GÖ¸ª_xÙ¸Mj,°…KŸz‘HDÆBø6ÄÊÖŽœ:uŠ#)¹aõêÕ©ýÁ§dðÄi¤~ýú:ÇØâ&TÑÏÿs·ªE¶\¼Çº-“yªºGÓ礪ìžÑÅ÷ _ßG¶ÙÄ\Ž+‰ˆ§§'4h'ýQ(º€êkÚ#X¹råJÚ@ ÙÙÙØ±c¦NZãÓºÖt>ÿüs”••!22R狀Dâoý²Tˆ{Ù¯1»O‹*×ù|>JJJ°ë1ð´X¬ð.±0áã^ök,ìç‰M¥ïàZW'ãÞ—¥Bø<|ãë%'"> £wÅÄ®u«ý¿<·oßÆÈ‘#ñÛáý ïwF=¿EŸ1V'2kŠD"ÎîÝŒ¢Ü§hÞ¼9&MšÄù8\ëbvŸ:ûθB,ã³Ï?‡¸qGÜ·hÊz]+›§ìZ‘œ(Ú7£wÅ+½Æt\ùu)»zº+¼/1+¿ÚZV·¾-?É|Rr «ý>aÚ¿"x<êÔ©ƒµk×¢cÇŽ:9µ£P´…êkÚC]°(9bbbpâÄ „††¾snWê‚Z±nÝ:,Ñq@±6Ⱥ¼(ráÚï^¾&‰y÷eî&•••˜5k:tè€ââbÌÝ|®cæbÉðnœÈÇ5!!!FNNŽÆñï ñññæ£^û¾œ¬kÉÚ””¯‡#› }eHÖåŒÃ‰ˆˆO«²gT•_Ë\2T•XB2æ’“w5Ú¿ãÆÃСC1bÔh4ø,¬F(¥P(Š¡…"ÇŽ;7nÜ@jjª¥áe ¸,999p¯øKe@±¾r¹ö»Wæã/¯*‹i4q56mÚ„ܾ}ëgŒÇ“áÞ¬>[¾u 04IIIÈÍÍ…X,æDnMáñx ÃÎ;1kÖ,ƒÊbh8777dï^À8P^Õ:—(ñe•"éZQC¤ˆ¡:öó„€ÏƒHLT&j/ ªá£ì¨J,!€FûW  ::üzMsðk„øM#Ù)Šch0Ê¿PŸBãàéӧ䫯¾"uëÖ%HŸ>}È¡C‡Hyy¹¡EÓ k×®%ÖÖÖ* Öé#^ƒî}êµñ“w]vŒ`ð\€dgg“üü|²bÅ ÒªU+iá<Ù"zø&ľ^CÒµkW2sæL" YKÑž²²2R§N²xñb…ו­ Uë\RëÂ~~´F2qÂæs6c3ÙëlebÊúÓ7‰ÀÑ•ðlìÉ×Ñ5êƒBÑT_Ó!„Ìú¡TáÖ­[hß¾=’’’Ю];C‹óŸ§¬¬ GEDDâããáèè(MËÛ´iSC‹§3òóóQYY‰zõê)½Gâæ!yëËlúu[~™%pµ·Æ“áŒú—´ðy*O”ɶ|[$^ZƒiÓ¦aß¾}‰D;v,N½¶G^í¦à[ÕÂ7¸áU^.Öýrâ¢ÔcX+DEEaþüùøæ›oIá†_~ùÇÇýû÷áéYý$ nða” aoe†üuc¤Ÿ+Z’ÏmÌqû¯—ë킃“{°–IÝúåji²OØÊÁt MæôÞÜ=øk×BðÄ•¨ÓkV͆}ÙÕ³¡P¸†êkÚCƒÐÔd\˜˜˜ uëÖ˜Xðİýã„A‹þ—8vì ª@£ŽHŸ¹ü÷ËtÝÉ*â’àë5¾^Œƒ¼Ù$oÐ$+›þÙ$x`S„PÙ3 }Vk|½XËÐÓÏÂgâúÙXy9µš hÖlØ7pÆÆ òûŠB¡h=1"¨E]3)..Æ¡C‡°}ûv$&&ÂÑÑ-[¶¬öS·nu·Bzõê…‚‚ܹsÇ(] ôq*Á\ú¡Ë÷%i#yÛ @£·¸0þ|DFFâÙ³gFù}¿k 0åå刉‰‘~Æ6.BÑ÷ïßÞ•u쇶ñêÚ³éŸëmdaÛFr^å·Nâa[»–-Z€ÀÀ@µ.¤жP}M{è …¢%666˜2e nÞ¼‰¢¢"<þ—.]–-[…Æ9rñññظq£Q)£ÅÅÅxõêîSáê ¦éF™¼í–í+"> Ó£oJS®Ú[™ÁÞÊ k|½¾±U÷zìØ±xþü9âââ4›(…19998þ<&L˜Pås¦kE¾Ö‡,Ñ·³ªÝ§îäAÛ”¸ªÚGħ¡¨¬öVfŒúgsÚ¨Éɤ&sez"¹°Ÿ'xP»>Ð÷ àãï |¯-–,Y‚Æ#,, EEEŒÇ¥P(ú‡ž€Ô¢þoAA³fÍàáá“'OZœ*ìÛ·“&MBAA¢þÈ­' ºBú¶€•©%ýª]“}c«ÎÏ‚&Mš`àÀ×Ï$þ£lÚ´ _}õrrr`ooϪmD|fN„HL`oe[ S,ì牸GÏ¥1D’m²«±•I²TÙ—Úž®°_×Ùï$±ZÞÎupû¯—‰I•¹EħaÉÉ»xY*ÁÛ½YGTˆ¦Ocpí×#°±±Áœ9s0sæLØÙÙq&+…P} è …b îܹƒôôtÌž=ÛТTãƒ>@tt4ììì8) V“éÖØAúw ӪϽ±-«UùS‡1cÆàÈ‘#¨¬¬ÔÄ QQQk|½¤{Àç}'8×¶‚ÏûNÒ{%kD$&ZUg"“² ç\TZg3¾®û¾‘˜ 1«@ú=ÈÎ- §;ò×Á¶qaoe†²Jž‰­ºšæ! IDAT‘Ùz,ÒÓÓ1~üx¬Z½öõaègAxùò%§2S(í …b N:…Zµj¡gÏž†¥ 6ĨQ£ -†A‘¸}üž’ RET‰q¼=ù¨|à(Ìïá)tÏ3f ^¼xAݰtÌÃ'Oqé9ŸQP¶<…^þDC¢,/9yWú½^ÉÈ“^/«)tÇb ®N&EÎÙÒk*‡®ŒI¿Ý;Heë퟇.ö ¿ =Ýaka 1ÔHqvvF˱3!ž°âæ=ñë¾ípssòeËŸŸÏ©ì E3¨B¡ˆ“'ObàÀ0333´(U¤ßÍÊÊR³ŽàBYÓ‰¢ @¥$¹· Tˆ‚R!,L¨ý÷-”œÞŒ† bþœ df=Eعdé¼ßÔBݺu¯Ï)ýç(±°GáógŒÞØ+[sqžW‹?pµ·é[û…ý<¥±A¦d”`zôMÔ >,mÇÅ鬑¡éÉ$9”= ]†Jú•¤Å;—Œƒ“{ rÓxÜ ¤pLY‹aç’!¶ª Ï'=|_~ù%6lØ777üðàÞçŠa¡…brrrpóæM :ÔТTãñãÇØ¾}»Aƒ8!ð]¢ÔȺߨºW68}ÿœ±Þœó'Bpt>nÌ—ÎkíùtêÔ 7nÜÐ×tþ“thí³’ƈº…ÒyuêÔ ×¯_§obuDD|ƒ_ôS{4S«TKŒÈ¢² Ì;z "1ŸŒõvŸ÷o|‡d ¨²>$ý_ÉÈÖ1ÀçU•E‰˜l³ÀéB.NXÔɨ¨/GGGlÞ¼§N•+Wàåå…ØØX–3£P(\@  EÏ$%%!,, ݺuƒƒƒƒúz†ï­¥/w(uÊ? û“uý3¿~ýúpvvFbb"4h€ØØX´k×'6­Â£åCÐÓ;wF~~>?~¬‹©üç ;—ŒW¦µQVRŒ‚‚F «­…) J…xóOŸ‡+yÒä¯Þ¥)yec@€·è|𢨠°ulGé šºuÃÕãê”… W+U²ÈŸ61;“ßL2dîÞ½ wwwôéÛu}iPwO å¿5@(=Q\\ŒtéÒ¶¶¶Ø¹s'ã¶ú2Äb1ÜÜÜ)ýL_îP²Š2táÆ¢È—\YÿlÆïС’’’¼­³qãF<~ü_†ü·åÇqåù[%7''‡³¹Pþea?OÔÏžžÎHaíÖØ< 9“ªd”ÀÂD u«zõæmŠeUöÅï)Ù ´BTÍ-¨[cø¼*ÕdájSÆ:U²Èî#¦s—u‹ãâwQ£FpþüyØt„‚ßÄü~‚õœCÌ<€ñ{´îŸB¡¨† ŠÉÏÏÇO?ý„aÆÁÑÑ!!!X´h®]»†-Z0‚"o°05`„B!¦OŸŽÖ­[K?Ó‡ï:S´U°=u¾äšŽß¾}{$&&J]¬¼½½1pà@ìß¾™ùÅØ~æ* qãÆÍ…¢š€žîxðÝo &{àJFd=âLø<ðyo3[I²2‰e®++ú'oh\ÉȃHL};KáøÚî1cHÚÀÙ}¤nî²Å %nqEeœÌU  lí·°|¿=JN~ÒçO!&U‹LR(Ý@  …c ±eËôíÛõêÕÃgŸ}†üü||ýõ×xøð!BBBXg¾b« È,L  ÃÛÛ[ú™¾ÞªJ‚zeSÝj£X©36$(Jªiÿ²899áõë×Ub</^ŒŠç™pÌOAo§·Ï»~ýú¬çFa†êÖ­‹{÷î1Ú’3öVf05áKO5%eB,&°2{ëŽUP*„­…)zºcüž¼|#„$ìãJF^•õ!['DÑøÚî1ÉÜ$òº@WFŽº¹Ëg£«mi†‚R!«ØULëíœÄ ¨× !xg6‚W^‚±Þ.šM†B¡0†  GˆÅbìÝ»îîî˜;w.ÌÍͱmÛ6üý÷ßHHHÀ¼yó4~ÛÍVA‘7X˜0—.]BJJŠF2j‹¢9jâš"ûÆT™±!_ÐL>(Ô¹Œ½~ýµjÕŸÿï¯Ùž={ÂÇÇ¢søûV,7n\å:…{ÆŒƒmÛ¶aFÇúj÷€ä¤%ò×…É¿…'É??¥Bx4¨ÒWôí,éɉÄÕJvíJê„ÈÓ㊅ý}úàñãÇ8sæ ¾üòKƒ¼á–Wæ™0³fͦM›ô!"#d ¦ üSEƆ:¿t.xýú5j×®]íócÇŽ¡[·n¸|ù2š4iÂÉXå¬Zµ b±¿ícýi¯²é¬þá÷”ì*}I2eoO9®dä),¨ª–Œ6ôtÇ–1¤ãIªˆËº)* ÈmOa5…Íï2möðûï¿Ã‡ãüùóÖJf …¢ÁÊ•+WZÊ[²³³±cÇL: 40´8†\¸pýû÷GYY~ùåÌ›7µjÕ2´X1iÒ$tïÞÖÖÖ¬ÚEħaô®xX˜ðÑÁµ.gòtp­‹Ù}Z ƒk]ŒÞÌ‚ÜË~Ù}”ÇÏX˜ðq/û5V jý“º3–Gv,&ØY˜JÇQÔæØ±cÈÍÍE```•Ï---áçç‡÷Þ{}ô\]]GÑ kkk˜™™!44£F‚“““Ò{;¸Ö……ÉÛz-&|ôt‡“9®fäÁÒT€ 1ÀÎ+¤ëýEqÎ$¿ Bçó>‡š×—®?¶k `¿§dÇxó)¹…ëí‚Qÿ¸IöEá› ä•”ãjFôkÉX&s•¹GSGÜË~…ý<9ý ­ŒªhÒ¤ êÔ©ƒ+Vàq¹9æÄåsþ;òn@õ5íáš„Þh¸uëÚ·o¤¤$´k×ÎÐâPÔ@Áwß}‡… ¢oß¾ˆŠŠ2HZ]}ÕP…ÛòãÈ,(«½5ž„ ׉|ªúÑt ]>»O>ù™™™ˆ‹‹ÓËxå…B´jÕ ®®®8{ö¬4Å´"˜¬å¢² ” ¥÷HÚø<˜ ø(­Ç¶í¨ñ÷¬Jm¨|¥o3yå¯ÃY¿s™yB0uêTìܽ¶‚FÍuvrE©¹P}M{¨ …¢„|òÉ'Æ‚ ðÛo¿¬¦W56oÞŒ   d`šó_T¹^h:W~íŠ>¿ûøsÞ¨ ‚¯©ˆÅbüøãpvv†··7¶mÛfh‘”bff†õë×ãüùó8uê”Ê{U¹ý)ª‚.Ûf˘Òš!„€qP¸¢õ£‰;‘ª½.¹6À£4°6ñŠâL˜Ê¬í>P4¶*ØÄ£ðxzõê…/¾ø>>>hÖ¬¦OŸŽˆˆC‹¦”¡C‡âÃ?Ä”iAp]rX©2*»–•ÅM¨ŠKXãë{+3ðxʳ^É£hýh’KÕ^—­Ô.)¸¨ÍK ù8e§\WªÆV[ƒÇÌÌ WÎý {[k˜ÛŒy½Þ×HN …¢j€P(,¹ÿ>æÏŸ3fÀßßßÐâ¨UT˜ücŸ†ÐgõÐÄwŠÂkÚd³ÑG_MÇPÖNÙœ•=KùÏ#âÓP),‡ 0~*ñàÁdee¡¬´XƒÙ«W¯FÛ¶mñüùs\¼xDtt4 „cÇŽZ<¥ðxÕÓÂÒmˆÍé‹ì½òo]Ùžâh;ç…ý<áêÝ ß¹„¤¤$$$$ÀÊ£+`b¾¥MtÁ‰D[4pǃ&ƒªàåå…çÏŸ#''Ç@2ãÈÎ`gi†ôÓ?`¶6äݲ J…PôêN¶  ¤r7µ?T¥–Vu i¬…¢¢ êPvªÁætÒîšêžÑŒ30bÄLž<Ož<Ñ™\Ê j€P( yýú56lØ€I“&¡mÛ¶†‡—ŠéÑ7*Zßâ÷3¿"èÃ6ծ髺"˜¸‚HU$Ø*òHæ @#÷3Iû9Û¡]»vèÞ½;êŠ aõ¾7¶ŽëT#3êì޽ϟ þ Ï±¨õô­÷+ìkö«ò64X±b~üñGܽ{—õÚXØÏöVf°·2ƒ{W¸Ú[£‰ƒ L‚ÂÑÆ\Zgµ?ä‹ñÉöwprTnƒ“{(m§H¡WexérÏ«wa?O„Kf½ç˜¾dŸ›:£‡Çãa×®]¨]»6üüüPQQÁJ. …¢j€P( ±³³Ã”)S°ÿ~$'×̬(b…Š–““ú÷ïo‰¸CV‘`«d(ƒ«,YÙÙÙxšvÛ~Y#ÂÂB,]º&L@ö®`…søñÞkÀÔûÏÄ)èÁ¸˜>}:š5k†9sæ`Á‡¬Ö†$Æ#ÝœÜOB†ãö_/!Üþ르  "cA¶ÙœØ¢‹Ìqš êt’+¹4iÇÔ=¬N:8tè’’’°xñbVrQ(ÅP„b0!(..†X,6´(Œùá‡ФIŒ7¥¥¥†‡1’Ì<öVfU¥Ý–Ç·'¯aþüùøë¯¿ª|®MŠN®`ã ¢JÙÒô.[ÃEى͙3gÀãñ0pà@Vã aaa(**Bhh¨Ò{º7q\Q«øo=J¦¦¦¦Ø°a.]º„úùÉZ¿íg-áç[™‰ ~¾•©ò>Eʵ¶û´[cø}8Û±UNÊ£¯Œvòr©£sçÎX»v-¾ûî;œ>}š•l ¥:4݈xƒšŸÚµkÃÞÞuêÔQùgûöíáììlÐ9Ý¿;vÄgŸ}†-[¶TmcÖ/ˆéÙMˆ‡««k :×® £) Þ=z4ž={†«W¯r!®^yòä Z´hàà`„„„(½ÏmùqdßÓì_<Õ£„š3hÐ ¤¦¦âÞ½{°²²RzŸ®©­çBi…V¦”lôc5>ÓqÆïI@ôí,Œõv‘ºiEħIäí­Ì`kaªvn²2Hw¦¿#ôYxÍXŠž*ÂãR1oÊÇàç>ƒûüß"Šáxõ5}CO@(:!55&L€§§'–,Y‚Ç#55æææèØ±#>ÿüs|ÿý÷8xð ÂÃÃŒ‘#GÂËË 666ÈÍÍÅ•+W°oß>¬X±Ÿ}ö†ŽV­Z!66–•,¯^½Btt4Nž<‰ôôtˆD"­æÖ²eKÌ›7û÷ï7èé¶o@%o WLüYYYpuu­ò¹1Js}JÕ;Š¢¡Pˆ³gÏbÈ!ÚŠi.\{{{«¾¯Ÿ'ì]›¡²ào¼yóFOÒiÇ?ü€ììl,Z´Hå}lÖ›ý³~d;¸Ú[cýHÕ Œ¢<¦ã(ª™v.Y @zj§(­°l¦§²ûSƇªýÏæ»º’‘‘˜àJF£qמOÁŸÏQ" ÷ᨬ¬d-;…BùB1’’’’””dhQrõêUòÓO?‘””"‰ÞóàÁ2aÂÂç󉳳3Ù¶m)++Ózl¡PHž>}JúöíKÌÍÍÉÿþ÷?FíöîÝKLMM é……iÛ¶-?~<ùúë¯ÉÑ£GIJJ  …Œå9{ö,@RRR4’Ö¸.;F0}?q]vL«~***8’Hp5w áq©ÄuÙ1—ÊI²\¼xѨ÷µ*._¾L={ö0ºÿƹqã†nãï¿ÿž /^Tzÿîx"˜y€øïŽçdL]¬7e}vXû+Áôý¤ÃÚ_¥÷ÙÏ&öó£Ix\ª´ýüh‚éû ¦ï'öó£«õÅFfÙýÉõ^•ï_6r²ý^ÃãR oÆ~‚‘Ë x|ÒÏÿsÖ²SÞ Œ]_« ЊZ1hÐ tíÚ“&M‚‡‡ѺukxxxÀÝÝM›6…››<==ƒÍ›7ãÑ£G ¬–®SLMMáììŒ_ý#FŒÀ˜1c°uëV•mÒÒÒˆQ£FáéÓ§xúô)~ÿýw„……¡S§NÈÊÊÂúõë1räHxxxÀÚÚ­ZµÂرc±råJ\¾|Yé GÇŽׯ_×znšÂÅIEEEqðàA%Ó=\ŸÒè"ëO^^BBBàçç——9­°°3g΄··7>ýôSFmÜÜÜ F%i˜9s&zõê…É“'£°°Pá=lß”«ƒ«ä²×gNTØç‹âò*JÒÛZ˜" §»tíËÆ‰Õ /2Ý#ñi(*«Æ›éâD•«>Ù~¯=ÝQÇÒ hàtóǹ¨]5Ú —B1(†¶€(ÿbŒudd$@Z´hA~þùgòòåKrîÜ9²jÕ*2kÖ,2wî\2þ|²páB²dɲsçNòæÍÊ$‰Èœ9s²xñb"‹«Ý# IÇŽI³fÍHqq±Ò¾Äb1ÉÉÉ!/^$[¶l!Ó¦M#½{÷&uëÖ%ˆ‹‹ &·oß®6N‹-H`` çóÓ6oKJJȦM›Èƒtz À–š"‹¢k©©©$ €XZZ @ÒÓÓõ)²Ö|H H÷îÝIûöí¹˜ g„Ç¥ÁÌ)š(º2˜È¢íØLÛ+“eíñË„?0ˆ óbíÕ—tïÞ899ÄÉɉ„„„/^h$›!¹~ý:©W¯iܸ1INNfÜnÿþý‰ŒŒÔ¡tºcûöí9}ú4§ý*Z?l÷š2cBþºìçº4TõÿöÎ<.Êêûãï™aUPÄDwqÏp/·RsCÜûffišY¦i–Yi©eššRZV¦)öSƒ²Ì=—ÜKÈ-·TÜg˜y~Ð3 ÃÌ03 à}¿^¾„á>÷žû0À9Ï=çsŠóἦÿ¤XIñoº˜×„ïl^ßÙ¶}º3IònØ^rS«¥mÛ¶9eNAé ¤ùk¥‘‚%°Èúõë9wîo¾ù&*•ªDɳ†BðU«VÑ»woîÞÍë¼}ûv>øàf̘aH•²¥RI‡ˆ‰‰áÊ•+üôÓO´hÑ‚¹sçR»vm‚‚‚8pàíÛ·wæ–ŠŒqq©-é ñññœ8q(~K{°Å–¢®mëõƶÈ?‹¶ýÉÿëƒþ—…p|•4iÔ¨Qƒ1cÆKJJ o½õöKœº’7Ò±cGjÖ¬Éþýû©W¯^¡×Äì>ߨE ñ­º>ÅðáÃÎgÔ¨QtëÖçž{Ž«W¯:m^sïe{Öäô§}ÉiùÞ³òû°©HÝ™¿ÃMç·f‹)¦EêÖŠßÍ­ y}9¹ùEEœÙû¤°>-s·ýÅݶÏâV½}úôáØ±c6Í+„ o‰¢¤ÉºµjÕ ___¶mÛØ'/y?Ùºu+}ûö¥^½z´iÓ†… Ò¾}{¶nÝŠJ¥rêZYYYüôÓO\¾|™R¥J§Î_TìUœ©W¯=zôà£>º/ë9“¢®mëõÆã&n8J–F‡û©]h·-§ÊȘþtÏRÙ\ДÜÜ\ÊW €à:Ì^²œñzAÎuÇ—|”êc“:gÈ}°ÖùÄì>ÍÌÿÛÍí•Sy¸Fu†¿¿Œ{S]òÞ¶dŸÜ_fV¯F· ·ûwrqþ·gnã±WoØ%ë;qýQrru lZ¨„®ü3Ⱦä4›¿§nãWèä.,ø¾–çÐ&”Uo>Ï… Ø·o5kÖ,tnA馤ùk¥WÁþ£$ééõz bbb ¯•¤¼|SŽ9"IžžžÒœ9sìR´zÑh4Rff¦«Í(ѧ}0ö[‰1_K”¯,õïßßÕ¦9•ä)ÅõÛæ´Ð·6H¼¸RÂ7P*׬{‰üÝ`+ò÷9xÔÇRùòå%°‰Ñ_9”Âdîw¥=¿?mM©*,5«°yù;ÝÞýÉJ\ƒ¿ÜO•«8p4ÍžZ¾ â$üªH>•«IW¯^uÔTA)¡$ùk¥‘‚%0˽{yŠ)ÞÞÞ†×F· ç—!uéf¹a—«hÖ¬'NœàܹsLž<µZíj“Jjµš *:®¤¥ßY™vÊsE†žÔpåܺÆk¯½Vä5JÛ·o§œ§!uÚœ4¥K}‚õp;³^.'Ž"§÷LÞƒ~øÜ‹‰xíþ‚É×5;ÞÜ{M~mZ|‚¡·†<ÆøµÂ0M2V–Š 4Ìi)5Ëòx ŸÎH¡´GInt»p|=Ô¤giØ—œÆ¹¸1w€Ùkñ3í¨jÖêmÉ]8Ħ&…qçnC¯Éܹs‡'Ÿ|’ôôtGÍD"0‹€xxx I»ví¢GÔ«W§žz ©fîU®\™àà`W›Qj˜9s&ãÆ³øuã?üÅUëálŠb§i.º<—œ²à¥Váqù$åýiÕª•³Íw)Û¶mãñNI™e“³û4lþ¯½_Q³fM:tèPüF#ÆtÇŽùnõj²÷pfãgfß™{¯}ðëIR®\C—~™ ÛÉÜûk);70eÚ[è2þ±ÙS‡ÙX:×\°1¥K}¼ÜU¤fÜ5[¯`êÄ˶ÅÖtT^sÈŠ=f[ƒs÷ÙÞ ¤8d¶M‰n‚Ê/ˆî“?&%%…V­Z‘””Tlë ¥€Ì’““À®]»hݺ5;väÂ… Lš4‰cÇŽ±gù¢å”׌=–jö¡€­A¹ß=%ñˆ|ZÒû±6¸šI¶^EëÖ­ùùçŸ]mš@P");ANE£Ñ°xñb¼¼¼Ø´i Ì™3‡ºuë²páB[((*Ï?ÿg;õòšÑMCŠôðœ­%ùÈì-‰\–|P ˜A‡èÙ³'óæÍ+‘YKqm ŠÀ˜’TÔ¤×ë¥yóæIû÷ï/ðµO?ýTR*•Rjjª ,8ƒ«W¯Jÿýw¾æŠ%YdÀ-ú5.X5.B]úÛ)ɧIgÉ»‚ŸtNXº IDATóæÍû°ƒûÇôéÓ%I§ÓÙ4Þ³M´H^?[Ì–¹½^/9RB©’è9ÉPȬÑh¤^xA¤#FXm¾¸mÛ6 Ž=Zd{ŒßŸÖšz½òA<ÁRA¼qñzqýü—”ß+÷Ëãurss¥)S¦úUåääëÚ‚ûGIò×J+B†·QZdÝ®\¹BÕªU‰‹‹£W¯^®6Gà}ôo¿ý67oÞÄÍÍÍÕæ¸cYÐ)]êç+NÏÒêïͦAá4jÔˆ?þ˜—_~Ù…Ö:Ÿ¶mÛR¥J¾ÿþûBÇ~òÉ'L˜0¿NCùàé%þTÌQŒå—Ÿ{´&Í:tåÏCûèøT4mê…²{÷nöîÝKLL #GŽ´:—F£ÁÛÛ›?þ˜—^z©ÀüöÜî“¥c ©èÍí­á=l\€ž’~7ïTO/«´º9y^WÈwïyñ€÷õ}ûí·ßòÜsÏѼysÖ¯_OPPÐ}[[P<”­$#R°v#7W»~ýº‹-8ʳÏ>Ë–-[ÊLðQÔüõȰ@TJ‘aùzà¿"Ý©S§ÊèÑ£iºËÉÈÈàÀ6Õ|õÕWL˜0I“&‘¾me™ > J’››û·üÈÀþ}¹št„¯¿þšË—/³uëÖBƒÈë±’›››OqÎÞ”'kþŒßÿr*Ö f¡œ·³zEXl„XÔô¨Âl•Ó¿äZ*sõeöÌåÈú2SºÔ7\÷»vdذaìÚµ‹3gÎðÈ#}_×J""ØZ­ÆÏÏO ¥"##]m†Ó°Å¡±æÈìKNC§—Ø—œ,Òm¨¸F\\3gΤ\¹rŶWðñÇãîîN¿~ý¬Ž[¿~=#GŽdÔ¨QÌ™3…BqŸ,t ò{@–½ýæÈE¾ûî;NžÕ9{…¬½ÇÍÉöÊ6›ö&¹OÿMí‘?òI[ËöÙ3—#ëËØRÌïLbvŸfܺäÿæÇO fs²»½ŠJ¥rê:A©ÄÕE(‚ÿ(MEM‘‘‘R@@€¤T*%???ÉÍÍMš?¾«ÍØÀï¿ÿ.Õ©SGº~ýºÓçÖjµÒíÛ· Ÿÿõ×_ÒÅ‹‹<¯3 H—þvJzhÂ’Rå&)Ü=$Zô‘xî3«Ý‘/_¾,µmÛVrss“vìØáðÚ%•I“&I …Bòš&y¶‰–j6h*õë×Ošóo×÷±ßJå¢ß‘¼¼¼¤'Ÿ|Rºwïž«M¾ï8ã½7òíù }¼é°-³Œ9QsÅèÖ®³¶oGï‰%±WSêK;%©^Z%9D$·æ=¥Š¯­qy1¾À9”&­¤"N@Ѻuk‚‚‚X¼x1/^$$$Äf (Ù´nݚ͛7çû~mذ?ÿü€ÔÔTÞ}÷]nܸÀwß}ÇÔ©S c£¢¢øüóÏHHH ((ˆ?þø€éÓ§Ó¸qcÃØ>}úðñÇæ}î¹ç¸víšÝ6;ã åèvá\œÿ,ïÌxI“‡7ÂÊW‰øç7nݺ•olÌîÓT1›z"8wî»ví¢cÇŽ¯]Rùá‡$‰ÛßÏ"ûP<4jþüóO掎†ïCâ.îmœC‹-X·nÝ™:â êõûN€[9ì+Ø££¸1N'´vê³û4/Æ2tk7wŠâH ‡1Æ÷Ò‘“âJ•2¶ËYkÌÞ’ˆ.ëZOÇ~ÃÐŽ'ýÃeºnJ °€bÞ¼yœ4hŸ|ò‰alll,¯¼ò gÏžåÀxyyÿ¥¥Ø‚3uÿ§NJ¹êuÁ­ÞõZóËןR¡BªT©Â£>Ê!C˜ôÊË\ýæMr¼9zôh™ª—1fË–- ž8ú¼Ï.Å·Ïk$&&2êÝOPh³aÇ2üƒ«oø¾ ì§y€·òþLíÚ(Þš(XƒaKoœiñ Èš˜™Ùš|uÖz9Š#Ýýh@è¬5¦t©O…ÓÛP+aÍ’‚,‚!Ã[‚(Ͳn½{÷&77—Ÿ~úÉÕ¦làâÅ‹äääððÃpçÎ<==‹=7Y’$ wïÞ%$$„7ß|Ó ÜOf¬ú…w†=Á¨w?á­gú²cÇ’““ ÿNž>‡&´ï¿ÿ>ãkxßí»ß˜“E•$‰ýû÷S¿~ý|êMûˆÙ}š‰£Gò»†ÓÇêŠSþÖ’Ì­5ùÛ€Éë Êoþ^îøz¨óÕ•Ø*›[T™]Gì/ikdffR£F ž}öYÃ)° ìPšýµ’‚@J¥ù ýè£R·n]V¬XájS¥½^O||<Íš5£zõêÄÅÅ‘™™™ïT¦¸iܸ1Mš4á›o¾¹ok Ø“žÎÅ‹‹b¢@P¦' 0YYY<ýôÓŒ?ž±cÇrùòe¶oßδiÓhР¡¡¡àááAnn.̘1ƒ–-[’””d˜gçÎäææÒ¼ysîFPÚQ«ÕÔ®]›©S§êS–/_Ι3gìšK¯×3|øpvìØÁêÕ«Y»v-£G&((ˆèèhvîÜÉ?ÿü œ¾À˜­[·Òºuk|||î뺶tþ–O9fõŠpÊzÖN=œÙÏÃUØS îópS¶îØÅ¢­ÜË‚Rˆ‹äf¸ŸºÒ™™™RDD„Hƒ ’¥œœœB¯;~ü¸"EEE^{öÙg¥ZµjIz½¾8M<€Ü¹sGªZµªôé§ŸJ’$I¹¹¹6]wâÄ ¾þúëâ4O °Jnn®äçç'͘1C’¤âé7a KëÙjGQì5ôÁ(!½>œ=÷#øù U:ã>X&¸ßˆ> EGœ€< deeáåå…kÖ¬¡~ýúxyyñðÃóä“OòÊ+¯°téR¶mÛFVV–ẈˆÚ´iÃõë×ÈÉÉáûï¿gèС"•Eàt¼½½9wî#GŽà­·Þâ©§ž*´nC®!§rWrôèQ233éܹ3à‰W{j)líümi΢Ø;{K":½„J©pê FÌîÓL^GÀäuÅ&cl {¤ƒßÚ•OE"ô +<ˆˆä%88˜}ûöqëÖ-._¾ÌÎ;‰‰‰¡OŸ>¸¹¹ñóÏ?3~üx:wîÌO<‘Ïá«X±"™™™lÚ´‰[·n1xð`WmEPÆñðð0ÔµiÓ†îÝ»£P(ÈÉÉaõêÕ†Úc²³³ × ®àäÉ“Œ1‚ÀÀ@Zµj8'¥ÈAŒ©–æ,нÅUl?{K"éYÒ³4ÅÚ¤¨½ZÆ´¯Ã¾=¹žtÄÉ– eQ„þ€£P(&88˜:äûšV«%..ލ¨(âââèÝ»7~~~†dõêÕ4kÖŒºuëÞwÛ=zô0|¼}ûv†N‹-ÏïàääääKî’$ñùçŸ3aÂjÕªÅÎ; õMÎ(@—µ  ±–æ,нÅUlÈ…Œ»x¸©Šµ6Äž¢yKtíÚ••+WråÊ¡†%˜ N@Q«ÕôïߟÇœ7ÞxNä H’Ä–-[èÛ·¯‹-<ˆ<ùä“$''Ž$I†?ö€áý¹sç\i¢à#33“èèhFÍ3Ï<áC‡hРS×p¤ƒ¸3ætv÷vy¾!+öØ5ï¾ä4ôTòõpHÅÊ^)à¢9O>ù$^^^ÄÄÄ8<‡@PVˆ PfÏžMbb"ãÇ'77—Š+rëÖ-®\¹Â­[·œþV °•îÝ»Gƒ RÐÞÞÞT¨PmÛ¶¹Ò<ÁBÌîÓ?;›Zõ²eËÖ­[ÇÒ¥Kñôôtµi€ýξ9GÝR𖣉<_ì±T»RÊŠKf¯3½Ø“ièêuä½¹óX°ù˜Ãóe€ ¥E‹,]º”Ï?ÿœîÝ»sóæMN:`K\…‡‡óçÏç±Çàƒ>@¯×‹Dp_˜±|ÿ|5»n>?~œ¨¨(«ã}šPö:ûæ‚ KŽ¿q3C{ç‹nbW@Q”ÀÀibg2{K"÷tEÒäðîÇ‹‹}= 4!j@61zôhêÖ­KTTÛ·oÇÏÏ””jÕª•oìŋټy3Û·oG¥RQ­Z5ªW¯NõêÕ ûûû Õ,A±±dɪU«ÆìÙ³9}ú4ãÇgÉ’%Ô¬YÓÕ¦ Ê Mt©lõñ£Ïô:~yœ)]4VdgÔ؃\ãȾä´B}s5!ŽÖtXjÞw¿2#¯WÔ[™Ò¥>7äUûQîúFƒ»»{±¯+”Ä ˆÀf:vìÈ¡C‡hذ!áááœ={–‡z…BÁæÍ›yõÕWiРÕ«WgÔ¨Qœ9s†¿ÿþ›U«VñÒK/Ñ«W/š6mJ`` ÞÞÞÔ¯_ŸãÇ»z[‚2ˆ§§'Ç'77—5kÖ Ñh  11‘ÜÜ\[((K\úû4ê l9sݦ†È°@TJ‘a÷Å>ùÔ`õˆ¶N­‘Opü½Üó534>á±Wµ«¸O‡Š£†ÆÚZ•|< iO²2®ñÝwßûšAiA » ãÈ‘#lݺ•³gÏ’––†¿¿?Ý»w'66–Ö­[³víZÒÒÒ8xð {öì!%%…{÷îqéÒ%öïßÏ÷ßÏ„ HJJâÊ•+®Þ’ ŒÎÀ™7o_|ñåË—G£ÑбcG¦OŸîjóeˆ¤Ä“䔯Jf¶/÷BŸ®ïKNC§—Ø—œV¤uÍ9ëÎpàm­•%q3³5L‹O0Œ•¯ŸŸÀí­Å{bO­IqaÏýräÞNéRŸÐÚuhÙ‰9sæÄ\‚€ìF­VãëëKóæÍ騱#³fÍâÏ?ÿäÂ… |ñÅDGGãïïŸï•JEÕªUyä‘Gèß¿?­[· qãÆ®Ø‚à!&&†Jnn.îîîlÞ¼™1cƸÚ4A!33ÝÍë(CÐKàë¡.ôéú”.õñ÷rçvŽÖî@¡°Ós¯Ùë8›ÖJ7ÿ²báãȰ@ ÐKž•„Ô˜¾‘J>åP€¡_ÇÍœ‚½z,Ùê õ)S¬íßÖ€'f÷iÆ­;lwp$Ÿ¸,Ÿ?›¤¤$V¬Xa·ýAYD ‡™4i¿üò‹!õÊžšŽ?þøƒŠ+RµjÕb´Pð ãççÇêÕ«9xð ï¿ÿ>M›6¥zõê.¶LPVøë¯¿˜:°«ÍAÅèváøz¨j¦gì0ËÎzdX ÁÁ6vàeÇ[.·¶–±RÖì-‰ùŠÃ›ÿ­=šbøø»#)¨•yn„R™ÙRÒïr85Éhn^2{šb.Ø0N‘rV:–µ ÃÖ€GîìPÉÇþþB­ZµbذaL›6[·nÙ}½@PÖˆÀ%”+WŽ{÷î¡×ë]mŠ Œóè£òüóÏóå—_ºÚAD–ÚíU?È® ÂšãkÍñ6:ä d_rZ¾¢vÙ—o P'ÛT)k_ršaž)]êã¥Vy§Æhtz¼ÜU|ݲÀ׌Ñé¥JY…Õc8+ËÚ½¶µ&ÄøÚc3²cöìÙܹs‡™3g:t½@P–ˆÀ%´hÑ‚¬¬,ÃÓC 8éÞ½;)))$''»ÚAcëÅ{|ñë»Ò‡¬9¾Öoù:ã Ãܺ1»Oê/fõŠ(ôTÁ’,nÌîÓL‹O '×ríB¶Vg“ oz–ïWÖ0y]õÍÙå¬t,gžnÎàæ¡¨” ¢›†84ÇC=Ä”)SX°`gΜqØ , Á}C’$N:ŲeËøôÓOHH°O;^ p„öíÛ£T*Ù¾}»«M”1fí<nåXµã¨ÍŽna©E¶8ÞÆcäu|õ!éYš5)–‚KJYò<ÖN7<Õ*Ò³4V÷,“¥Õ™=%2g—#Cqªh­Ñ–Ü…CX=¢­Ãs¼öÚkóÚk¯9Ñ2 ô!A±¡Óé8~ü8 .$**Š*UªP·n]ÆŒCJJ 'N¤sçή6SðàççGóæÍE"p:÷tzð @{óšÍ×–Zd‹ãmnŒñ¼‘a(pývN‘Nä‚yS€Z©@ÜÓÚŸJ+IR¾@ÁY§%YE òRöæÎK\\[·n-fë‚’‹@NG’$6lØ@íÚµiÚ´)“&MâêÕ«<÷ÜslÞ¼™ŒŒ <ÈG}DåÊ•]m®àá±ÇcûöíH’•G¹x¸©ÀÇŸÜ›7²bÙ1¦Nª©³íèSû!+öà6~µa]ãy÷%§¡—òNŠrª0º]87æ EH~eC Ðê%$@÷ïÏ”¹@ ¢—¥"¯P]&5#+_ `]¶ÔÈW£AÓµm•,6&::š¶mÛ2aÂÑ“HðÀ"SILL¤k×®ôë×:uê°}ûv233Ù½{7³fÍ¢k×®øúúºÚLÁÈc=Æ?ÿü#êŽNeV¯¨ç±öÿÖ›cúTÞÔÙ–Uªl©£‰Ù}šïޤ ÓKÄK-0¯|raK_kkÈÊXÖ ¯U …¡ÖD.V7&#K˧Ñ-Ñ-j¨£hâïp `KŒ£]Û ×–ël ¯È~âú£6­£P(X°`‰‰‰=5¶Øš. %€œBff&¯¼ò 7æüùóÄÇdziÓ&:uêdP‰\I›6mP«Õ" KàTF· §Yÿç ¬úMŸ0â͹NÙœõTÞ´ˆL9•²€+Ÿ\ܘ;Àáâkce,•"j½ ëôn\ •RAHE¯|c&®?JéiÿperáÐä'Šë”Öô-ã.öÓâòÕ¾dku6Ÿd5oÞ¯ÆHß±šYqb¿@Pšˆ Hèt:–/_Nxx8Ë–-34%ìÙ³§]}A‚âÆÛÛ›V­Z±k×.W›"(cÜÈÑC×±ÉW³^§AƒÌŸ?ŸŒŒ C° ‹›cV¯Cú’­OßeGØË]U ÍÊŒ› š®-ב(ÉK¯Ü<´@š•é Ë'.¢ÓK¤Ý¹‡´x¨a|N®ÎiµÎ*ö7Å–ÀFîb¿9é ™ÙÿÙ·P\ü·¤í¤¤¤NG [û­ï¢ÐçâóÇOÅV8/”TD"p˜»wïÒ¦MFE·nÝ8}ú4¯¿þ:åÊÙߤI ¸´lÙ’£GmK“leJ—úøûxR±×K¼<ÿ+5jÄ«¯¾Ê /¼`ÓSu[?}—a7U‘NŒ› š®-בhõ™ÙÚ?\™sàåž—få®Râë¡æ·³× ´,×+ÿ?«W¡þÞ ljÖNã4/Gœð¢v9ÏÎÎfìØ±DEEqá—¯½—Ø…³¨øØpžo'Nœ ++ €Owœäêù3pz/·v¬D7VŒƒ/_Dúa6Úí_¢Z?ƒa5•6­ýzŸ6¼1i"mß@Êå«v¥à ¥7W (½ìÙ³‡ðóÏ?Ó½{wW›#J³fÍX°`7oÞ¤B… ®6GPFÝ.<ßÓøÂüˆeÈ!<Pßpb ¹ã¸-Oß÷%§åoo“|*Èí-^jjUµ§t©ÏØØC襼„r£Ãy}›1{K"·s´¤¤ß54;œŸ€‡ZE¶VÇÀf¡fï)²£~13 ^2¬a+ÆŽ¾éu¶ÜÓk×®±dÉ3_Q°lÇ·,›ž÷Ypp0W®]]^Ѹ¾| žA5¨ùØS\u¯ÌØ~ó|§ÆôìÙ“E/gä{‹Yo>¡s߯ñãÇ3kÎ\øc thó¾‚ÒŽ@sôèQÊ—/O×®]]mŠ@`M›6àøñãtèÐÁÅÖÊ"ÙÙÙL˜0nݺѻwo …M©B¶¦A‡ñXã†n*fõŠ044ÛÔéõ÷6ô1µi`³P6']1¬o<À‹k!W‡ähudiu„ú{[í•!Û Ð­^0·s´»M×°¥C¹¹ ÃÖ9BCCÉÉÉaÏž=üüóÏüüóÏ$&&‚BA•š´l\Ÿ°°0îܹÃê¤›äø…@åDE6`j&c»6dLû:†ùvíÚE¿~ýøtÒs¬ZµŠ(“{n(U®\™ö=°ç×y{æ[V÷*”%D –ÀaiРJ¥x JuëÖÅÃÃC¤a Š9sæpéÒ%.\hsœ­½+du+¹ÆÀtŽô, YšüþÌÍm©ë¹9›ö%§1«W¾êónŽñµ:½!EÌsÒµrÚ×¾ä4|=ÔditÜüWQÊž^–êA왣\¹r<þøã|ôÑGœÿüs^xႃƒ]mN¡ÄÇÇsãÆ FŽéjS›P*•ÄÇÇ£ÕjéÛ·¯«Í”1þþûoL§èÌ¿P7%-B ½ÎÃMÉŸWn2¥KýBÇG}±›”ô»üyå&:ÕÍ7ÇïÉi(à[NÍÛO4¢Eh€Ù¹[„0¡S]ú7 aB§ºf×4¾NvæåÏONC“«§‚‡šnåpùf6—¦%IðwÚ–í;kØ¿ló/IW¨ìS޶µ*ñ{ržjo?ш¶µ*ñKÒtzɰ†­÷Ã÷Ô???Z´hÁàÁƒ™8q"ݺu#**Š-¹¡dUoF`£6DGõåB…:ôëÝ‹QƒúR¾|yfÍšEnn.;w¦o߾ܽ{—éÓ§“À”gòFffm©X±"§N"66–qãÆ‰‡z¥€Ò毕D’èÊUb8zô(Í›7çÈ‘#4kÖÌÕæʸqãØ³gÇwµ)ÍŒ3†Ý»wó矺ÚA£wïÞ=zÅйpGg6µ©¨Ø’Zd:Æž”&KóM‹O G«Ããß>éYBý½ 5 2JE^0âï厯‡šÈ°@ÖMAú÷µs8´/WcÍFI’øè£˜C­V³qãFž{î9Ôj5+V¬°X/yüøqš6mʪU«2dÈýØŽ ”6­$"ÂlÃó×_±råJW›"ØLÓ¦MIJJ2(ÛÎ`rL,qqqt17z4³Y™Ê4=©0ùVk´òµrcCsiXÖdw-!¯•¥ÍKïÊÈÒäwåÔ"Y¢×ßËÝ xÒ¸*zì’n¼×¢4¼_X³Q¡P0iÒ$V®\ÉÊ•+éÝ»7wîÜ¡OŸ>üñÇ4iÒ„'žx‚—^z‰»w︾I“&tëÖ¹sç²ô·SB–WPæEè‡yå•W8sæ O?ý4{öìaîܹBYHPâiÖ¬z½žÃ‡Ó¾}{W›#(#,úh6T¬Ê6} ¾,Dùɹ™Ý´øF· ·ªêTòµþ^îù È°@.ffQɧãÖ64´g­Îð±ùjB,Z˜¬›‹e¯%•aÆD¿~ýèÔ©?ýôÁÁÁlÚ´‰%K–ðÚk¯Cƒ hР7oÞäòåËÁæÍ›™³ŠkþuÊÔ}L' ‡ñòòbÅŠ,_¾œ¯¿þš   ¢¢¢Ø°a÷îÝsµyYš4iÂÃ?ÌÇìjSe„)Ÿ}Oιcx·ÀÔnŠ6Wº|OéRßÐøO¾>`ò:ÖIA§—8œšŽN/¡Pl Xrê•ðrWq;G[à¤e L@ IDATÅãs§ÅÕÑÜÕtéÒ…ß~û‹/ÉÙ³gQ(Œ;–ÄÄD-ZDË–-IMME©TÒ²eKnÞ¼ÉG}€ú`l™¼/1" …BÁÈ‘#ùûï¿yÿý÷ùûï¿éׯUªTaÔ¨Qìܹ½^ïj3nnn¼ùæ›üðâ~Iàþ{úÑÎî'Ör£¾Y½"ëJWÆXJ¥ÊÌÖNTdµ)ÓBOyò·²­–Ò¾Œ_—í\2°%•|äS 6àjs¥˜÷Þ{¥U¤Z­ ûÁØ™6NM2v ‡¬Øƒò¥UŒY{ÈPÇyÅwGR Ì™¥ÕaÚ‰$¤¢*…Âà蛦BÉk„ú{˜/ Ù—œfšäkå1ÖNäëå&„¦k[ ,¥j·4ÆZš—|χ¬ØãÔSã5Ù¶m;w&-öR÷[M­ª[·.’$ %,A™GÈð– J¢¬›V«%''___Ãçqqq,[¶Œ_ý† BÛ¶m '<<???[-Nnn.uëÖå‘GaÕªU®6GPJ)_¾<¹M{‘ÝèI‹³¶PcúFRÒïî²b±ÇRiZ­"‡S­?W@¾t+…"¯/‡Œ»JIpOCpa«$®l›\_:­ËL^Gú¿êX–î<ÆK­¢’¯Gâu{¥xåñ‘aìKN³[ÂWÞ—J©°ØÞ–õm‘;ÎÍÍeìØ±|þùç¼÷Þ{L›6ÍæF•‚’GIô×JâD`I’X»v-5kÖ¤|ùò„……Ñ£GªU«FTT”!ÅêÊ•+ÄÄÄ0lØ0Zµj%‚A©ÁÍÍ®]»’˜xÿR3e‹¥¿âö»4 ÎWÇaŒ­5Æ' “×áýê&¯có¿ úŽ]̰z½¨èåžïÄcP³ìKNs(ÍÊ–ŽðÖ0=±±–îåææFLL ½FŽç­·Þ"(²'ªqß2d…è~.x0ˆ tìØ‘AƒÑ¢E V¬XATT’$1pà@Nœ8Áï¿ÿγÏ>‹···«Í¦R¥J\¿~ÝÕfJ!1»O3ní~ô$ßʵØœSjαþíì5.dÜå»#)¤giÈÒèòz—S)ñR« †éÃs œïKN@«—ÐK°9é kLRµ&®?jWïK)M¦Åôæî×´ønçh©èƒJ©È ÙSbšÊ娚–¼¯Õ#ÚÚ[Åܽ1]·0; 'ªv‚N£¸~àô›°öà»lÊ "«QRŽô:D«V­X¶lÏ=÷œËìЛŋ3qâDrrrD:„À.jLßHÊå«ðÅhF½»ÏßzÉì8si9ÆéV‘aÄKÍWÓ!£TÀÀf¡†'üƵ•|ÊåKÉrW)ÑI’aùD$G«#K«C©?OwCP#£Bü½Í¦9³;¹¼gÀò$wJŸÒ¥¾¡Šq —ñúr0êïÍí-éY” ø4ºe±ªEYJsyOê‹'8»ò}!TˆšÂÑm…êU)¢¤øk¥q"(@:uðððp±%AñR©R%4 ·oßvµ)‚RÆ”.õyÈ'¯7F¿–µ-Ž+¬ÿ…µàC/a¨mån!/íèúü½–4:=*…µRa8%IÏÒ­Õ¡ø7™Õ+µ* -‘רМœ®½ R…ÈÒ£›†àïåNF¶Ææ>"Æ÷ [½`TJz ‡Õ·lÅÙ½Jä=ùr:Už~)ó2¿}“™ëv:e~ ´ AÊ—/OµjÕøã?\mŠ@P¬TªT @¤a ìft»p¶¿Øww÷|_³'¥)ºi*¥‚!þùÆ ljp|G· 7Ô^L‹O ÆôD†HÃÒèôhõÿ£K䢯=šÂ´øt±þ“ä5­í°×ù¶°Œnι¸1w«G´Å×C$å†LéR¿Ð.9€KÏÒ°æH åTJ››)EŠ×\é,Þ~¦†ÍB)é¹½êMÑ—Hð@!YºvíÊÂ… Ùºu««MŠ 9¹víš‹-”FªW¯Žwy?úLor²bãÖ¶êð(í®L5?/F>Z‹ÁÍC Áˆ±ªSÌîÓÜÎÑT¨d)ÜŠžîfç—15ôRžó®Ñl +ŸÀ8ò¤ß¸!¢ÜÄÚòÞå±ÑMC ÷É\SBsÁœDžÄ°¯‡Ú¦À ¸;®;Ú(qt»p2—½ÄåS „× ¥}ûölÛ¶­XlJ"˜åÓO?¥cÇŽôêÕKüB”Y´Ú¼”777["(xzz¢kð8·nỽyOÙå”*ùÉ~aÅÕÆÕ²âÕÑ éÔ•Ò³4øz¨ 'ò©| bz®á¥VQýßžÆ(-”:Õ ô±ÚѲméYb¥œ|K¹<§ÜKD®o™Ÿ`6p3¶aV¯ü½ÜñrWÙ|úÅ{Šaj£­cŒßAAAìØ±ƒ6mÚðÄOYpÁ@fñðð`Æ 4lؾ}û¢Óé\m’@àtRRòBCC]l‰ 4³û4÷ê=’þÌ;-V)ø{¹Ó´ZEÆ­;ÌÄ G 8§Æ’»Ùšóꥼ@AV‰2~‚oìLnΠf¡(ùûdku¤fd™Ûæd~-˜6Mô÷rG¡È;I™½%ѪCn:gdX *¥‚­Îlàf|ª"§qÝýx7æ0œ9³‰ #óÙrÂb©Ù£||||ˆ‹‹cèС 6Œ?üÐé{JⱟÀ"çÎãÏ?ÿä™gžA¥R¹ÚÀ餤¤àééiHÅìaö–D$Ï P§-œøš<†å ¯y¹|P䥶þg^–áý;íŽ!¨0^ËÜi†¼o Ÿ³n|2cnÏæÒä 7•Ùæ‡…¥Y9RßaÏ Mqaé) fΜIÏž=Ñlÿ’ê^»-+ˆÀ,gΜá?þ`Þ¼yxyÌ#Ê•*UâæÍ›h4Ó`[¸•­aÇu%ê‡[ ß„^¯gÍѼÔ>/µ $˜¼Îl7oÈk28ðߎåþ^îx¸©ÐKPÉ×£À‰ƒ¹Ú¹ˆJ©Àí`’¥-XtnŒ†“Ó þK‘2n(;ÏÆõ(Ö0–ä¹bvŸflì!à ÐÍlmmSÝY)IÖ‚Œâ®±…BÁ’%KÐßËæÉ[»Å釠L"R°f‘ƒQœ+(ËÈ©WiiiT­ZÕÅÖ”$IbëÖ­œ9sww÷ÿ*V¬H›6m\mf±ríÚ5&O|•Û'v@÷—¡ñ°þ]”)ÇÑ×hF–Fgh¸—¥ÕN äô¹™ž¿—;û’Ó˜Õ+"ß×cÓtYKN×R)D7 asÒü½Ü©蓯I¡5¼Ô**ùzäSÜ2^KN‘Úœt¥ÀµæRÌ¥7ÉÁ’è|w$…ïL:²ë$‰ñ뺛›¦unn6=ª¸R¦œAQ9V¯^Ù³g3vìX† Bûöí‹ÉJÀ5ˆNè%ˆ’ÔY3==€€:tèÀðáÃéÙ³'AAAèt:’““ILLäìÙ³T¯^æÍ›&RY¥ŠƒòÈ#püøq""Ì÷äg‚¯‰™÷÷.žÂÍÍÜÜ\³ãú÷ïOll,JeÙ9hÙ}š÷±·ôTßÒëå^þÎlƒAs(( XzB³û´Ù”¨È°À|-a¬de ãS[æ, æNgŠzzbzŠÃö÷Þ{wß}—Ç‹“ÚBIõ×J")A”æ7´^¯çÿûk×®%>>žnݺ¹Ú$ Pz÷îÍüARRåÊ•+ü‚”‡""¹|#“AïÄðÝHÛrÑsss騱#©©©?~¼Ô?ð~u Y;VÂé} ZøkŽ]0|ÍßËôŸ?‡¤]ÐîiØý ÔlAÅÞ/S«Ryޤ¦#a[ð–Sw̽>dÅž|õ¦Z¥@«ûïãÄ´þÃ’òoæhÑé%›SŠZÎý¹ÐZ”Š^(Šû’Bep5E òß#{ç±5Òh44oÞ~ÿýwQ›Y(ÍþZIA¤` ŠŒ$I¼úꫬZµŠ•+WŠàCP*¸}û6qqqLœ8Qf0NW¹|Oz±Ç/~Ὸ¹¹ñä„™\ºžA§§PÚŸuy¸© ¬de²ó÷†× Ò·m†@ùÊðǯô|ÅÙý´úgÇ.fþéédhÍ¥YJÝ1÷º¬¸à®R¢—òþ—;žÿôc^¿f†÷!+ö°%2,Ð jLnçä)VÛon/æšš’š‘Uhqyns6ZÃÔ&Ót-gHîÊíéÌ.c.•ÍÜ}twwgùòå9r„… :l«@P’ˆ ÈÌ™3‡O>ù„Å‹3pà@W›#Ø„åË—çî]ë)"*ÆÎ‘›§äÜ5+ójÏOd¢l'ön'à‰Q%ª£³N§c×®]üï9xµŒºIWÜk·¤eçžœ;w®ÀøY½"©ß/ß \=ix½’G^z’›;t™ÿ0$Dχ~Èæo?C÷ãÇ(®œBÖ›U*þëë0->ÁÐ{ÃÌÕ;÷ñ)—÷d\«×[¬»¨è¥òNcŒ•¥b¥p†å&‡•|óöèïå@z–¦@ÇssÎttÓ›öÿ5æ°f£5¬Õª€s$wåîìrgv{0Y²ù‘GaüøñLžúªÿ-`ÈŠ=Û,”D"(2ÿ÷ÿ‡§§'¡¡¡ù^×jµlÚ´‰áÇӶm[ÿîÝ»sìØ1Y+ä¡P(¨[·.ýõ—«M)‘;GõjTÍ]z7®fÿÍÛS®ù“dlùšw¾‰/’MÎ("ÎÍÍåÛo¿å¡šµéر#ß|0…ìC?’{ñZ–c‡Ò°aCæÌ™ƒV«5\7º]8)3ûÓ¯w/NÚex=2,ÑíÂóœó€ê¨ÛeÑ¢Eü­óå驳Q߾дþ=”ëß½«QZOÊA«'B…9ÎÆônT •RAïFÕ ãƒþí+"#+^ÜÊÉS-»~çžAÎ×ß˦Õ*è÷aüÝ._µ!°‰ Ì÷usýBÚ?\¹Pûeä Æò:ÑMCì:±¸_MÅ\dÍæ™3g¢+ç‹þ·oˆ=–z?MœŽ¨)A”֜´´4žyæ~úé'z÷îM•*UÐjµÄÅÅ‘––FýúõiÙ²¥A¢÷È‘#œ9s†иqc[/xyúé§9{ö,ûöísµ)%ÿî£ÈØú5!S×2µk» w~¾Ø7G¢Ðd1cé·LÜÅ!;Œóí7·.kJnn.#§ÏãÛ˜OÐg\A]«9ÚˆP© µ;žjn*¦w®Í…_¿eþüù4jÔˆe˖ѲeKÃ<±±± 8åÿ ÷ ,PÐ|íV6Ù碸vŽKçNÄÏ?ÿLß—ÞD›ñŠ\ ÒtúôéCûçßä“ß/œMãþ¶¡[«c0–ÐÕ+¢@¹èØ"y+[gfkÐKëÌÙáýê²4ºß ¥ü<ÝéV/8Ÿ|°Ÿ§{‘ ¹K²$¯³hùôkþv>ýýÄ÷c»»Úœ–Òꯕ$D%“ ÈÏ¢E‹Ø°a/^D«ÕòÌ3Ï0tèP"""òõÉÎΦjÕªüðÃ"¸”ºuëòã?"I’èac‚±3×§eVlÖ2±}M‡¿¸x ºGŠ›ÍÛÏô&ñà$¶¥Ü¡[mZ{s÷î]jÔ¨ÁСC­Î3¥K}Æ|w.'±æøO”ûí üüü¨U«–á_5pssãï¿ÿ&!!„„Nœ8ÁÎ=û¸yã:„5‡./âZÇ0o§·kLßÁOÓê‘Ötê?Œ¸ŸâããC·nÝP«Õô«˜Î~ßÐ|±£Û…0yÙ?kß`ذa|õÕWôèу…åkóÁ¯'y&¼Gc—²qãF.^¼HòÁƒ( ƒ?{K¢Å´ s÷Þ´I¡1rÐ!;ä–æ´¯5{K¢!˜ñõP›­O1µ#[k>øÈß{d±ÇR)§RNAìU³vl¹Î‘µŠBQæþ¿™ã ]9 ?þÌ/»‚p $!SP(Œ?žñãÇ:ÖÓÓ“ÈÈHöì9¬×R¯^=222¸xñ"Õ«Wwµ9% cgnidVýêàîáiÑáµÄ”.õy1ö.ÒÀ™¸ïùšµ Þ`ð½§÷²³ ±€,ÚúS>\ ã!ó ªržœÔ4$åŸë\»tôy©E ¥7µ;Ú{9Ѹqc¤ðH¨Þ EåP<Õ*r´:<Ô*‹OÜ›7oŽ"ú]Øñìܸ†w²dÉzôèA‡ÈHÜÏ”7‡Ò†ä9d§¿ÏÌ|ñÖ8jÔ¨A÷îÝ)_¾<÷vìàÝ«WQ«Õ´k׎ê­:öö†ž…ÝW[ÆÈXsr¿f|Ša<.2,‹™Y†”*ãµM›Z’ÐÔ,”5GRò¾ë¥¼Ú™}Éièôÿ)rY¢°à×Òý‘¯·îp}:º–Œ#Á„#A¼LHHTCþ±Çaõ».J ¢DàÚ¶m˾}û,vQîíÛ·G¡P°uëVW›R¢k¼ÜUÜÎѲ3õéééîŽnÎ’è–„V©Ä'Ÿ}ɇñû©þúj>Ý™„ÿÿòšjv5{mff&³gÏæ•¾ÈúuøWƒþoõé/Í»ßn¢nݺôìÙ“ÒªU+vìØÁû?.P«!ߟþÇ{ßïÂïÉÑü•z…äädFŒÁ¯¿þJFF¿ýö{½çsD »¯æÆXª1~Ý´vÆ–90ƒymÀ0WaÅá«G´E¿x(ƒ›‡¢R*hâ_ ¾Á´©¢µýVÓaéNéR•RN/Ù\Ànkýˆqpckm’:BݺuùòË/¹Ò’y»Îš-x¶&S[¦vÙRÐmª%ßuxóaÆfÇ8‚%ÇÛ¸W‡½…ÿæögîus÷Åңɠám Lǘû»:ø()¶Xºß=zôàÿþïÿ¨æ¡+±}NkˆăQ_¾|™“'O’’’‚»»{¾@£R¥JøøøØ-“š››Ë‰'X·nK—.åîÝ» :”I“&Ñ AƒbÚ‰ 4Ò¿®^½*”ÙÌ`ìˆMxåî%lC1ì#–<ÛÕ.Çìåù_±ø­ ¸!Q¾ËHÒ”>°ãKȸDdd$¯¿þ:={öD©4ŸìÈéEq`©?˜‘óµ{N,Š{÷4dEž”ntÓC:š5{KÒ^-aÜCÅø¨¤ðÏ?ÿŒ¢Ë "äxï3²¿æ,T3f̘áj#y\¹r…Ï?ÿœ^xàà`W›s_ñõõ¥V­Z4kÖŒˆˆj×®ÍC=DÅŠ)W®œC=”J%ÁÁÁtîÜ™±cÇâïïϪU«˜3gwîÜ¡kWóª;‚›7oòÙgŸ1~üx‘®gB‹Ð&tªK‹Ðæý©%çø¯p;¹Õ™Ö½¡MsŒó‹_ƒô0ú^¯“ué,lY*ÓyÜ{ì\C:u ?ç1»OõÅnžOc↣x¸)i[«^¹É”.õó}Ü"4 8·_ãûõÅnþ¹•C¶VÇ/IW¨ìSÎ!›<Ü”f÷déucäûåá¦tÊýhÀë]ðz—6Í7pÅtz‰¤«·x¿WD¡öÚ²×é7 {2þ¸Eh@¾ýš~ÍY"-; IDAT÷cî–D²µ:<Õ*^ïbý•-ë9û{äããÃ;K¿œ;$ùÔaúŠ<§ÀvdÍYˆ"tÁ¯¯/¯¾ú*sçÎÀËËËÅ JݺuC§Ó±mÛ6W›R¢ù`@$´§ö}ñ”M×lذ%oŒƒMPt‰Ð¿âa÷7tê;MêI¶|ðbkä4§ïޤ˜U±*®‚bGµ” Ì*!ÙZàmiO²—,§knÎâ*ܶ•è¦!(PÎ-Ï¥pDNØôuã=™îoZ|)éw™Ÿ`vïθ²Á¬^…޵e½âø5x$OŽW—«cÈ qz+(]ˆDðÀ°k×.FŒÁàÁƒcBCC©S§Žã-„ÑíÂ8ìi Åcß7øwAÏ/qôèQ³ã×®]Ë€hÞ±+ÁÝž¡Â/sI9´ƒo~Èöï¿A­ÎS¡2u¨TJE±å¸Û£þd YuËÏÓ/µ*Ÿ*Ñ{³öÝŽga†#²ºö¬g/«G´%¤¢7YÓlã=™ªxefkÌŽ³öš5Ìíß\àg‹­ŽŒ1^ßžïÅò7Fý»põ,±ÇR /”$D H Bä tèÐæÍ›³iÓ&Ê•+çj“%Œ—_~™7rþüy‡Rþ$öíÛG»Ç»¡×å¢P*©ìçKRR+V ''‡3fðá‡2tèPÈðáù;¹]Ç^ßj¯PÀ’è–ÅvÒáH͹bøÛ9ZÒ³4†~ò|nãW£Óçý‰]:Ðö}˜S¥rD)ÊÖqòz*¥‚ÅZØu¿ ë†nÎ(("`\Gb\Ï`º‡¢Øj WפØZßdz/t:Þ~hêvdЋ¯‰:ÿgïÌÃcºÞ8þ™$"ÖŒXbÉB-‰­‰”J%EUéB¤´B%ö¥AÑZKk­%øÅR[$j)J--‚*"¢J)"!b‰D=3ç÷Gz§“É™»Í܉œÏóxèäÜsÞsÎô}Ïy+Bõ5ñÐÊ IQQ¢££ÐÐP´kמžžØµk5>(¬¼ñÆHMMEj*=I4‡¿¿?VJ€{ä6ÌÝvyyyˆŒŒœ?íڵâE‹ðÖQØ“Z„àà`tìØßlÞ ÷fÞ&‹æ@~QIM–Êv*ÉŒ¶“e!7l®AX ò…ú¸A¥T`@;w^µ> å2tYâê‚ÆÅí‡É²¥0âBffŒÓÉ&e2åR±‰©ÐhI™“|c·=Rú}š{/¹Â÷FÉØm!†k¡R©Ð¥SGt®ö””ò¡Ø IHH[”rKqq1Ù¸q#iܸ1Q(¤eË–ÄÏÏ,Z´ˆäääÈ-ņyðà@bbbä¥ÜÑìt€ø÷êKT*ñññ!‰‰‰ÄÁë5€8ú¿O4ÑçW¸Fܧí"«N\#«N\#ʈÍ#6§±ÛtŸkÏ÷i»Fl&îÓv š#3æ€uñ¥då*‡¹¶Bå3Õ/ù˜qÕcͶeëùÌoþÏD5r °.žµ½±3 XÏú¼zb,QOŒåµ×\äÒWľkÆ0”}þžÓ*{R90Ì¢ó¡”…êkâ¡.X6½ÒãNqq1víÚ…´´4dffêþ$$$àúõëx÷Ýw1sæL´nM3ƒP¸Ó¸qc¼óÎ;X¼x±Ü¢”+ܧíDêÚ/€GÉøzÆtDFFbôèшZ½èu›£©L£â¯cDì9h àd¯BF –@¥T †£=2s ˸£I‘*¶®ƒXwsÏ •ÏX¿\ݶ¸ºP™›ãn¦R*P¼, Qñ×w¾”KôådNü¥\sk¸UY«†HÍÎ}jðÑR¸×¯+{êâŠÕ×ÄC]°(厇"((¡¡¡øòË/±~ýzÄÇÇ#==í۷ǹsç°k×.j|Pxóꫯâ?þ[ŒrÇäî­ÐpÐtÌÜú ¦OŸŽ¹sç"** Lœ÷ö]ËdŠŠ¿Ž*cc ¹ãw^À¿aÈ-Òèb&B}Üt™ˆ¤Bçê¶dÌ}Æ0šoж9w¡™½Œõk*sÛ¸LýS.X¦æÀ¸›…ú¸éÆÓh  vq36×õ—"@]ÖÈÒVPPòçTjõ:Ôj5-FH)wЂZÔæ9wîúôéƒÂÂBÄÅÅ!00Pn‘(/Ë–-äI“Mc…²mÛ6„……aÞ¼yº¸C˜ShPþï¯5ø?sBÍœlÉf.'ärÌRmÜØ­Ÿ>0ã99¨P»ª#k¿ló0Œ®Üëˆ{¥x7n܈Áƒãï¿ÿFóæÍõAÕ×ÄCo@(冴´4¡~ýúHHH ÆEr:t耂‚$%%™oL)!¦~…ÊMýPÃÿ=£í"ƒ¼ád¯‚RôóuÇŠÐW Rþ—yL¡(IÅë1}7¶_Ha N¶bSªZcÁå¦nŒÕµ0D.4E/3ž£ÊèÍ Û(åj€PÊ„|þùç¨\¹2<ˆ† Ê-å¤Y³å+%%EfIÊ''OžÄ½äëÈózó\5Ù¶v5G¬}[Ã;aX@3,ñÓ%ý}Ýu.A„”Ü’0®=€e ïqqŸ‘»"·+ÆåjDì9“ƃ9e^ìZ÷ðr5Ú?)c5: ×ßœ¡¶þ$ìFmåT°‹ÑÅÅ2¶vb ¨o_Aê©ý¸{ãoŒ;–÷óŠ­@ J¹ &&{÷îÅÊ•+uµ(©©Q£ žü=]Ìlè߬+èÇ6¶ág\ ývl2Kók®/cp1B½§b ØO€ß¢Ñ)¸Þxã ÞÏS(¶5@(6Ï£G0jÔ(„„„à½÷Œ»uP(bQ*•¨Q£²²²ä¥Ü‘œœŒ;v rì(¤ÌêFÝO˜lIú™Ž ƒŽ™[æ¿õÛÉ}!5æ”zfîqçM*þúëÒÃË  @‰„Ø<É+ääNÅæšeh<šB/ z>n]\MSãeƒä¥ÓR¾§„Ì™3±Kgcüøñ8±g-˜J)×P„bóŒ5 Z­ßÿ½Ü¢P*ÎÎÎô„'„Œ9õêÕÃ'Ÿ|À¼û SHŽùoO—2¹ú \y¸õ0§X `nƒø üåj:ˆžáÁ %(s blLÃõ64Majï¸Þjð Ö6÷®l ï„âeaœ öÉmà¾'„|ñÅøòË/1sæL4yûxÎØÃ;.‡B±%¨B±i~úé'ÄÄÄ`Ù²e¨[·®ÜâP*5kÖ¤7 <Ù³göïß^Ÿ}V Ž˜t“2VÕÛ\X¹•Bsp¹àÀær¥$–übÙ6lë-´ ù°€fð÷tADÜy„­?ÉɘäsÛÂEv¡ ƒá{òÅ_àÛo¿ÅâÅ‹1mÚ4Ì?rÕb1Pе Åfyòä † †·Þz aaar‹C© 8;;S„·o߯¨Q£ðÖ[oá@~}^nRúÊœ7b”LæY¦î…©ÛcµD¸Ä=ðQª£â¯›62X’ïsY}ø®™~ [?aëO–êÏð¶EC€‘ÃÚʾþ{²råJ|ûí·X²d ÆŒSæçJy… ›e„ ÈÉÉATTõu¥X ê‚Å}ûöÁ××vvvX±b&woÉI1ÒWÚõ ý`e>Y‹Ä"FÉdžPêvÀ\ö&Scr½!0¦sø r  ùÅÑ©aù¶7ƒÁô›˜Z*ˆüY~œìU¨áh7bx,{½¥á’•K*ô2Üžù.=ý#GŽÄèÑ£1zôh];CcT.ãŒB5@(6ÉáÇo¿ý–¦Ü¥Xê‚ežââbLž<ÁÁÁ@BBÜÝÝ9ŸÒ*톱qç­ZÿC̉rd7ÔNºsÍÞdjL.ëhªO(ÿy4DKP& ÝßÓ*¥þž.Fo%¸Êφ± ¦ŸP7]S÷&!3·yEdæb[B ˜’É\ÜǤ„Ëí”T€~߉‰‰èׯ‚ƒƒ±páBÎÏQ(å;¹ P yþü9>ùätíÚUÐJ¡X zbšôôt 0'OžÄ‚ 0aÂÞ7”þž.¸û$=¼\K)¤‘AÞˆˆ;–ÀÉ^…–SÖ"kÁmx›Á|ÎÜæSЇ4£`ªÿ_®¦CKJ2`C£%{N'‹~@&çî“\]໡¬bå7ì'*þz™âƒ,žbÈ+ÔèÜÖä€mÝÙößlïÓ÷gmÕxë­·àåå…-[¶@¥Rñ–Éœœ$''#55U÷çÎ;HMMÅýû÷Q³fMÔ®]uêÔAíÚµQ»vm\˵Ǭjø²O'›½¢”_„¶ï8E.\¸€víÚ!!!¾¾¾r‹#£FBtt4þüóO4nÜXnq(Œ9sæ`éÒ¥xøð¡Ü¢Ø'Nœ@hh(”J%¶oߎ€€AýxLߔ̸««àöÌwKýL_1À9 ’LÉ£O­IqÈÌ-„R¬}¥” ŒX9…öÁö#§%J¼R8Ú©[Töö€™3Ûºû{ºà—«éJ*›[k˜[¬ÜBV#ÄÉ^…ÚÕ-þ^pEÈÞ{犋‹Ñ¹sg¤¦¦âìÙ³¨W¯žhùNŸ>ž={âÙ³g•J…† ÂÍÍ nnn¨[·.²³³ñðáC|Xê‹‹ ºté‚Zµj‰–·<@õ5ñЊMqæÌ,_¾ .¤ÆE˜ tB=ÒãÀxï½÷бcGÄÄĈÊJgêÄVÿdQÒÄž,›kÿ,¿j'ÎîDZ‚R2ñ½ `“QÈ)º±çæ·ÕL!@ $ýn~±Fwµàh¯ÒýÌpbö@úïİ€f˜º7‰Õø€Ü"M©xS«Æ¡9„ÜûÌ;¿ÿþ;Ž?.ÚøˆŠ¿Ž™["{ët´{ùe|óÍ7pssƒ««k™[6´1ÉÁŸ gѸ0 .\À† Àvf­R© Ñh P(а©7²k5ÅG}ƒñÍçýññö ˆMLE¨§È”н±!¨E ìÞ½}ûöE»ví°~ýz´lÙRn‘(ŒmÛ¶!,, ÏŸ?G•*UäÇ&Ø·oúö틯t“Àa˜ü¦eOä§NB`` ¦M›†¯¾úJT_Qñ×ñù†_íS ¨\Y7’P£F £íõ× (YG¦ö ³vOž<ÁéÓ§ñüùsÔ­[uêÔA:uàì쌴´4=z‹6 çæE 7(¬ÝhØ ŠF-ñýðL?ðò‹4p´WYüVÍ’P}M<Ô±!è ]™3gŽ;wîàÖ­[¨S§ŽÜ"Q*?þø#Þÿ}Ü»w®®®r‹#;{öìAHHz÷î¯HÍ.ä¬Ü3*v«N\Ã7¿ü‰±M0¦‡¤ò ¹£tò5x ÇÊBú´uØŒ7cí˜8 c8Ù«_¬A?_w¾TG²k­;›LÙÙÙhÛ¶-4h€ãÇÃÎNœƒŠÇôÝH‰[$'@1`>´ë#8Ë Ì ŸÈy‡þB«JÏñûÉãxr=äî (ŠJN n/>oµ=ËõûMõ5ñPĆ /ôdff¢Aƒ˜1c"##å‡R ERR®^½ ¥²b' ܹs'úõë‡wß}[·nEô™dNÊ\AA.]º„„„$$$`ýÞ£ÐädC¡)‚4(ÈÏs¼ýý÷ß#"´rd c &W…W æÆà¢üš» ‘Rn9Oø™y€J©0Z̉_JbW˜`zFQ±W*PÍÑ™¹ü ac0ë"Dá‚ážBðÁ`ÿþýHJJ‚‡‡‡è1Æ,Ùˆ¥cCÑe(úl÷'ý÷‹q T;9 ªƒýãà¡Ãøóן€§`çÞÃGÃ’1•KWWª¯‰§bÿß•b³¨Õjôë׫W¯†V«•[JáÎ;عs'FUḸ8„††âý÷ßǶmÛ`ooo2=ìýû÷ñÅ_À××ÕªUCûöísçÎAUÇhG¿Þp 膢ëÇ`2×ô¦ÆR~sø 2s ‘™[h6=©Ð4ªÌÕíYׄKzT¶t¶ÆÖYlºW!éZ£â¯£Ö¤8Ôš'*Í,“®X©€.³ÆÒ쪠vr@Ñ¿7#RâcÖåtr†ÉôÇR¥Û5ÜóœœüøãpuuE~~¾¨¾ //ûWÌF`` Ь)e|X²fˆþûÅÌqNp[¤Ì÷ÃÓÖ½¾ƒKŸñh­¶Ã²qáxå•W°k×.Ée¡Ø>ûÿ°›¦¨¨¹¹¹åòt„R>Y±bªV­Š>úHnQdåêÕ« C¿~ý°iÓ&“î ówŸBõW߆›»V¯^¶mÛbÉ’%8sæ ž={†‹/béŠ(¸¿ùÍù s¿üîocÚà÷ÞÞÆ•H¡ ¼~!;.ÁåBë(˜«…¡_[Ã|*œ‹­÷ ¤Þ CÎÚáñ‚¬}Ť Žv%©Bôóu‡J©PÍÑs‚Ûê”Z®kÆ®ë"U½ Ã=¯Zµ*âãã>>>X²d‰¨ƒ·Ù³g#55«W¯.sbÉš!úëÈö^GyÃÝ¥:fù 8|ø0œÑ§OŒ3+~»B *V$ÅfHHH HBB‚Ü¢ÈΉ'²nÝ:¹E¡Trrrˆ³³37nœÜ¢ÈNïÞ½‰‡‡ÉÏÏ7Ú&==Œ;–(ìœHÀþ$++‹ó;vì ȃŒ¶YuâqŸ¶‹¬:q—üîÓvŒØLܧí2ÛvÀºx¢ŒØLœÆlã=Ž”rpAèzˆS=1–¨'ÆêƵ¤†ãÉ1gS²YR–œœ2zôh€4óiOŒ\Í{¬K—.;;;òõ×_³þÜ–Ö“aÅŠD¥RÇ—| >Y#Ù÷Å’P}M<Ô±!è ]Bqq1iÛ¶-éСÑh4r‹C© ÌŸ?Ÿ(•JrëÖ-¹E‘•£G$&&†õç†,]º”T®\™Ô¨Qƒ¼>’4š¸™·BÓöýaN¤òè­’)CŒr5`]¡>nP)‚+®›ri1ç^eêY9â=¸"Ä•ËVú·äºè#fÿºvíŠo·@o<Þ»o¿ý6îß¿oò­V‹ÁƒãÂ… ˆŽŽF¥J•„Šn¶õ3¶¦|Ö (( gÿ€[u,èS§NI.;Ŷ ÚŦÈÈÈÀ—_~‰!C†à•W^‘[JaôèѨY³&fΜ)·(²’‘‘ÄÄDŒ;¶LìÕŽ;кuk\¾|¿üò –-[†š5k «¹Ú°³‡“^1<@œ‚(DqÝÞ ÅËÂxg b”+OÁʲ)yåˆ÷à Ÿ¸S0k¶þ¤Õ|ÿ-m<1ˆÝ¿±o¶Ãó‹G±gÏœ={­ZµÂŽ;XÛB0fÌÄÄÄ`Ë–-èØ±£Ñu°lëglMù®——þøãx{{£k׮شi“$ó Ø(r_ÁPþƒ^éNjÔ¨aÒ/œB‘’={ö$66VnQdçÎ;9xð !„¥‡“ˆëgKˆçk= âózÒgÙ>¢¹… X/j¬áÇ“Mšsrç0üÌÜh,í†d s´„ ú1ꉱ:÷7ýµ´ôÚr•SÌÜ¥\»‡’>}ú$,,ŒdffB)**"qqq¤S§NYµj•¤r0û ¹EÐó\Ç6lWPP@ÂÃà 2eÊ›tŦúšxè Åfˆ‹‹Ãúõë±páBZ|bòóó1jÔ(ôèÑï¿ÿ¾ÜâÈNAA`Ò¤IpwwÇè —‘¾z ’ÏÞø>Þ²¡ÑÄ&¦Šë‘3Ò’o %ùV©R¶ÓuÓT)\>Äbé“t©n á³F|N°¹ö«ŸU (I§êãVj--µ¶¦d4ü™Ø ®ûÇeÝj×®;v`Ó¦MØ¿?š6m wwwT©R!!!P*•øé§Ÿ0lذ2ÏŠ½Qdª¡ yžëÊèàà€èèh,X°óæÍChh(rrrxO±mT_}õÕWr A)!==kÖ¬ÁgŸ}Vá*0§¤¤ W¯^xûí·1wî\šz—b~úé'¬Y³{öì©ÐFoTüu¼ZÕœ@݆««+:wî ÏN½ð IWô2¹jOLîÞU+ÙáꃧõqC_q0þÄ#s´Sârz6"ƒ¼áç^«Ì3¼”Ì\NÏÆ˜.-Ä-ŠüÜkaL—¥Æçƒá<Ùæm ØÖÈØØÆÖ™k¿l8Ú)ñ{r*Û«0'¸-6~ }}ÜJ­%ßµåºv¦d4üŸ¹‹‘ë~( ´iÓD~~>|}}ѧOÌ;“'OFóæÍYÇ3?÷Z¨SµR™ç…¼«¦ža“Q¡Pàµ×^Ã}‡:ؼz96ÅþˆÐ>ï zõê¼æ`)*²¾&´º QQ+kæåå¡[·n¸{÷.’’’Dù•S(|èׯ®]»†‹/Ê-Ь°Uã¶4aëO"fÃZ ~3®\ù -Z´à%‹aUokT>—ÃyJ½¦*Ä~.ÅØ¶Peï;Ãõgbaª»«ðxAˆÙqåø>òAˆ|Bçä1}7R®]êàbTuP¢ò»“0ãÃ`Ù¿ßU_“ê‚E‘•œœ#11111Ôø XœœìÛ·5ÛSEÃZ¹úœNÎñê R¥&ELà- ›[–©ªä|ëÎeîyÃyòÙý¾cÌõÆh8c›š“a¿B*¨öÏuŒ£4|Ö”K_—7©ÜýÄì‡\‘OÈ3LAQµ{SÌÙ¸y5pÃL_-DlŠAo@lˆŠfQ?{ö ½{÷FBB~þùgZl¬¿ÿþ?üð¦OŸGGG‹C)?ÄÆÆ¢_¿~¸qãš4i"·8ލøëˆˆ;Í¥#Àñ ¸yó7nÌëyæä¯Û°õ'›˜ŠP7£Ù¯ŒØr=)·ä)¶~ßDÉ©󌿧 N'g”y–Ïœ˜¶8¯”·B–¾EàÓ¿Ô·+lýqy§­Ÿ¹škk¸ÆËŽ\ÂäÑ#{å$¾ûî;Œ?ÞRÓ0KEÓ×,½¡ÈBvv6zôè‹/âСC5>ž={†wÞyGÌVTTd±±(å‡íÛ·£]»vÔø‰aͰ<Ä^ ‚½~úé'£mÍfó½ýˆML5H/6µ¨%O±õû66Ž vfn±‰©¬sä3§È o¨ vrе·ä­¹¾¤†OÿR'`{ͽÓÖJÐÀ'èÝ\[Ã5Õ­ ž_>qãÆaÒ¤I¸uë–¤²S¬Œ¼I¸(úT”´n™™™ä•W^!5kÖ$üñ‡EÇÒjµ$,,ŒT­Z•,_¾œØÛÛ“ââb‹ŽK±m Håʕɼyóä…BéÑ£éÚµk©ÏôSsšKËÊ7Õè€uñ‚S Mkj©”¶|ûäR¹k%y¾ãî£-¤Ö—ƒë¼õŸ‘Cv¶±Í½ÓÖJmÌg]ôÛòy.''‡Ô®]›|þùçRˆ,ˆŠ¢¯Yj€Øá…~ôèñññ!jµÚ*ó\»v-@¶nÝJ!dÇŽD©T’?þ˜äääX||ŠmrêÔ)€œ={VnQ(„¿ã”*ÒwùÝgú “­(ªb°„(¤OcÏYc¾ãŽa õ>ôå0¬GÂå¹e犵êšÇÔz²õ9{ölR©R%rÿþ}^ãHEEÐ×, uÁ¢X‡¢k×®¸{÷.Ž;fq¿ÉK—.aäÈ‘øôÓO1`À@ß¾}èèh¸ººbذa8wî …ªPœ8qU«V…Ü¢P\°s´ìÜ÷³î3ÆýÂßÓE¶ìJRbèN"…KŒ”ÁÀBêEðßÐIèšHíNÄÈaX„Ë3–pñâ’d€/bÝÀ¸¾BÞ#]°¹ž»ž¹>‡{{{,Y²„û$(6 B·!^ä ¦ôôt¼ñÆÈÊÊÂÑ£GáímÙìÏž=ƒŸŸqæÌT®\¹ÔÏ᪠IDAToÞ¼‰õë×cÆ HKKC«V­0tèP 8...•"?½zõ‚V«ÅÁƒå…À{ô÷¸ºl^úh:þÙðu©ŸÙzJR¡0óR)Xâ'™qÅ7àÙ\à¹5áº×¶ôN 07õ—$Ö†ë<…¬‡¹ý4Ög÷°qäÇ­¨1læ½ßѪï틬¯Y zB±8wïÞÅë¯¿Ž§OŸâøñã7>!6lîÝ»‡¸¸¸2Æ4iÒ³gÏFJJ ~þùg4nÜcÇŽEýúõ±páB‹ÊG‘Fƒ“'OZ4ñ…©ÇwUk¡°a›2?³õ”¤lp9µSeÚTÿ|O ™ö§“3Œž[+€ÙÜ^3©}=Ë7zZ.!ócž™º7ÉäzóM“ pK2`m˜&ogÌÝ´°=cnŽÆú¼Rפ¸OÎþ,¸b=E>¨B±()))xýõ×QPP€ãÇ£Y3ËžPbâĉغu+Ö¬Ycr<­V‹S§NaÏž=8yò$ yóæx饗,*#E^.^¼ˆgÏžáõ×_—[ €Ç£àêIÔlÿ&&÷h]æçRg e•‹Àd¢\2JïÔ½Ieäá«°ri/Ä­FÆöZ_ÙÏÌ-Dn‘FT½Ã5cæ7uogC„y€Éõ3¶v¦Ö}X@3DycêÞ$LÝ›Ä;•²%Eýùy/ØžaÛw.óø²O'Ø¿Ôvwÿ”Ý@£ð‡ ‹qãÆ ‚‚'N”JwJALL zôèÅ‹ãÙ³g¢Çûûï¿Ñ±cG,[¶ .ÔÅ}èCARR¾øâ xxxàõ×_Çðé§ŸâÒ¥KøóÏ?ñÎ;…b»üõ×_@¯Ím„Ý»wC[\Œë1‹8Õ °ÆI¼©ñ#âΛUºŒ)—†òKa\*t|ûäÒ^ÎSxý5Ï/Ò@©œìU¢d1\3f~X÷ÖÔ©ýœà¶&×Ohšd&µtfn¡hߨL}n ±·3B ²1, ztjÍ㻘òÓEÙ~/P„A ŠE`j,TªT 'Nœ€»»»îg„ 4 @ff&&Mš„F!22÷îÝã5NVV°hÑ"øúú"''gΜÁ¸qãJµKNNÆÜ¹sѺuk¼üòËˆŽŽFïÞ½äädÌ›7­[—=}¥¼xÜ¿5kÖduÍ£XŸÔÔT¸ºº¢víÚfÛZú$Þœ2öÍá+Ðh TJ…IʘrÉU~sÊbc—ªP)hìRÕdð®9²µ1¥,[Ò(Ô«Ô–„ªæi %@n‘ãw^<¦¡ÌÌoNp[Îú\ =¡F¦:*ls35SŸO>BªÇsÑOBajÎgžVÉ{†¬ÇÔ «œA Фäää`èСèß¿?Þ|óMœ;w 6Ôý¼¸¸3fÌÀ–-[°yófœ;w·nÝÂÇŒ•+WÂÃÃ!!!X¾|9QPP€ääd9rkÖ¬Add$BCCáççggg¨Õjøùùaüøñøè£páÂÝÉvjj*V¬X×^{ 7Æœ9sжm[ìß¿éééX¹r%:uꥒ~ *<@ݺuåƒò/ééépuuåÔÖÒ'ñæ”1FÙ4ÎU©b“#lýI|¾ýR2sx7 -AâÝ,NõI¶¾™Ÿ‡­? é»1~çK’9ôÝÁLËåsÃ6úÆègÌÉ-Òp’ cŠ3[œ Ï Ð°€fx¼ „èääz+À67cs057¾Æ‰9˜þFÄžC­Iq&Ÿeæq:9ÃäœG¼Ó¹ä™wQ»j%βPä‡j^ɸxñ"Úµk‡˜˜¬[·Û¶mC5EEEX¿~=¼¼¼0kÖ,|ýõ×øàƒ5Âwß}‡;wî`îܹHKKøqãàëë GGG4nÜAAAøüóϱ}ûv<~ü¾¾¾øâ‹/°}ûvœ;w™™™˜:u*~üñG :7†»»;ÆŒggglݺ>Ä–-[ЫW/ØÛÛ˹T¹ÿ>êÕ«'·”1f€ p‹9eŒOµu6¸*UlrèW¸fÒÅrM«ãðèy> Àßó¿lŒ±-!)™9È-ÒšŸ±qùœºë·Ñh‰ÎåŠboe cB€’=ùæðAêR§ b™3ºØÞi¡Æ‰)ùUJ´ÈÌ-DDÜy³kcnÎ_ö”v@fΧfr–…"?vr @)ÿBðý÷ßcâĉðööÆ… мys@~~>Ö¯_ùóç#%%ï½÷bbbЮ]»2ýÔ¨Q&LÀ„ ——‡óçÏãúõëhÔ¨š4i77·R†Czz:~ûí7¬Y³¿ýönܸhݺ5‚ƒƒÑ¥KB­V[g!(åzb[äææÂÉÉ©Ìçú ޵з6TŠSps}1r0 ld7B}Ü›˜ŠP7l ïÄk<O¤få 3·P÷Ùéä %7+úŸë“_¤ATüu£®Wß¾‚^®ºô½\çiø9›kÓæY~2s ¡TZƒ¢=¼ØoÎľ;úcë+Ù|û”ú6õ~ M,tðì@éõ4µw§“3 Ñ[˜!̳ŽÿÆ‚¨” ¬}EôºÊ#öýÒOk oéÒæÞ¾sšqΙꌥMfæòI×¶pDo×DмP,¢¼]éø×“#çϟǘ1cpêÔ)Ô«W^^^ððð€‡‡<==uÿ®_¿>T*~‡Š9îÝ»‡ `ïÞ½èÝ»·ÜâPþåàÁƒèÕ«`_ ƒzcá—ãñꫯZ].§·|Ý¢¤p£2‡9¹kMŠCfn!(IÊJEI;%ЂÊö*i´(Ò(¬ì÷ ',sr1?÷÷tÑÅ‘˜ËæeK7T†DÅ_LjØsÐ@íä€Ç Bt?ãúð£¥Ö„k¿†nj†7@ÖeÕªU9r¤N'±åM_³E¨ E0| 8wîºuë†ÆcçÎxûí·©‘A±*§NxxxÈ+¥={öDýˆ(¤ù?ŠŽûw 99ÙêûÄÅ-„¯[—€kSŸƒ«{P¬Í°Ç$¤˜4Bôƒ½™ˆ‹Ü"îD¡`ŸæÖ“‘'ãÌX| K¡ïÊe.ðÞ¦ö’í±”["×€wÃÛ‰ÌÜB¸««ˆ’ÅpžæÞ#{{{h4B P¹«£ÈuÁ¢X…ÄÄDtïÞ-[¶Ä‰'ðÞ{ïQãƒbU 1eÊôìÙST2Šeø2¤3u}5ª:¡k×®¥Š—Úb+‹IMk¬½9÷}§Ê¦ï‹I'z?ˆ;¼Ýà ݤr©cÖ"61U°ûT.RBÒÝêÃ7õ­5JôÓëÂ4% Ÿõåë ɆZó„"j€P,Î¥K—Э[74mÚ@µjÕä‰R‰ŠŠÂ­[·ðí·ßÊ- ……aÍзà,ò²3±fÍÙN2-í«/¤ œ¹~Ì)·þž.P)ºBmbW–IŸÊCÅRªº.ÌZp­‹µ&Å•*†g‰Ø!ð­ËaéÚ8l0r(UÇ”,|Ö—ËwA¿¿7Kb‡V¿*pF9 1 6Ä‹èSxåÊtîÜ 6ÄÑ£Gáìì,·H” È“'OФIôéÓk×®•[ŠaëObû_¡Ýñ¾]°&LM11¶£ÀÌI®ñ †(€£ ŽöªR5@äŒWà‹þz¨” ,ñÀ?ÍnEÇÔ~šJiÌŵŒÏØÓ–¬EÆÎïÐhҤΓl~¦xõ5kCo@(ãúõëxã7P¯^=>|˜Ù˜;w.òóó1sæL¹E¡°sî&´G×.3fŒ¬²ˆqi±•StC"ƒ¼!Õ…’–”Ä„dæ"æBIåt.­m‰È o¨ P T1Ë-(—{TQ¡Å"\¹r]»v…Z­Æ‘#GP«V-¹E¢TPnß¾¥K—bÒ¤Ipue¯œL‘»«¿Y÷àô)ïäR+Xb\ZäðÇç°€fp®ìPê3S·ÎNö•«…ñŸÐh ¦îM2ºÌMÝ›dqËû0, /ÁÊÐW8í—­–\KvÃï‚)9Ä~oTÿþÎx’“W.÷¨¢B Ф܏qƒF›6mP­Z5=zuêÔ‘[,JfÊ”)¨U«–¬n=ÓÔM; §æ°xXÞÏÚ’r(‡?>Wæ·åû‘•[ÐpôÐVý[hÄØ>0{ô$¯P°Ì!Æ%Ÿ÷AŠÀp©°T}©Ãù>c¸¶¦ä`Ú`íÛܘœ”*(*ÙœñO15@(’ððp´hчÂâÅ‹‘˜˜H ¾QdåìٳضmfÍš…*UªÈ-……K—.áî?W±m~$/ÿoF!á¢Ú‚ Ü2œ¸ñPṖ9” `yˆæ·e݇¨øë¸÷$À¶L¥wÕ_#!Æ%Ûû ví¥0,ÍÉ & š)Øds#%Ôà粆B3Ä%_\›Ã¹zu›4þ)ìP„"šG¡k׮ؽ{7/^Œ[·naäÈ‘ptt”[4J†‚ & U«V>ß}÷­9c£ãèÞÐ6y£w%=‘[?ÂÒ.4\\!2H©8‡ú¸A©øÏÈP)ÐÎîê*º¿Û¹©¡R*t1 ¦B@r 5ºô«†0inGÄžƒ†¥°ÈðØs¬ŠºáI™¦Wíä€gùE¼Ý{¸"ÖÀ0æ†dL>)ÖÆÑ^Uª®ñ3–r34WCåtrF™5>yò$ óóp|ÑxzûQΠE0÷ïßG@@rss6mÚÈ-… ¤èà¤I“н{wôèÑCnq(F·t#HΠE'{›’&¶~„¥c3¸BdÒpÚÞ šï?ÀÊ~%×ËCü°5¼nÏ|W÷÷­ŒçÐh‰.„+6” •kêÞ$dæ/jHJÚb©LTÚ¡š£=2s E€4†©SzF.ûo(%now9Ã9nŠÌí«9w˃¢~ýúhݺµÅd¦Xj€Psÿþ}¤¥¥ÁÃÚSl†ââb 8)))´è ½~#à\¨ã µ“æ·eUÒL`ÛBŒ KŸ6ó99gn,2s KµUÀxeôš•xË%&°XåX_yåCÄS§ôBå4%·²²}ϸ®YôÛò5°Ì¹[8p={ö”­p)E8Ô¡æå—_Æ¡C‡péÒ%têÔ ÷îÝ“[$JG«Õâã?ÆÎ;Koål˜»wï"ÿïßáì׫úµÇã!FZc'Ørv‹Á”âÅ÷”˜í9¦Séqõe14>TJú·s‡ÚÉj'8Ù—¸1*¨ÐÃËÕh¿Ì ;ó P3Òß×Jàd¯âí¯/6¸\_yeÖ&"î<°*ãBß-¾á8†J6›Ü–º¡àcðêË¢?¶uÓokÊÀbÃÔÏSSSqåÊôìÙSàŒ)rB+¡Ûåµ²æÕ«WѱcGŒ9³fÍ’[JåáÇ7n¶nÝŠ-[¶`À€r‹D1Á¤I“°zõjܹsÕ«W7Ûž­Z²˜ªårÃ̧vÕJH¼›…P7l ï ì¼¸ÎS¿]d7¾9|Ïò‹™[hòÙ¨øë˜º7 ùEàßJçs‚Û–¹%Ñ_.21ý@/WÄ&¦B£%P;9 š£½èªØB÷Ÿ Ž7%‹µÞ->ãØJ%yCYÃ]]’i0%3§Ôº–©2¿zõj >V/t\^õ5[‚Þ€PDãåå…æÍ›#==]nQ(¼¼<Ì›7/½ôöïß~ø6ÎÓ§O±zõj|öÙgœŒ ôé,sÊêïéb“…ÿ¸ÀÌ'ñn4ZR*KßSb¶ç˜þ¥Ç5”åñ‚ä,îœEýYo£øÔu`ö/Áã!8œ–°Ö 1å¢Ãu¾|Ð ËCüJ)̆ãY«¨¤±qØnl©ÎŒ¾,ús`þ À¤ë”!BnœbbbÐ¥K«i EêÖ­‹È-¥2vìXL™2Ä70pà@¹E¢˜áÿûrss1zôh£mL)$Œ’z:9Cv…L¬X¨TJB}ÜtŸ™rÃ1[&%Kv›;‰gsÏaŒE¶š!¦\t„Ê`>_„º†écK6ÙП£þ„®«á|Í­ajj*Ž;†AƒI6'Šu¡EêÔ©C Š,|øá‡¨T©ž={µZ-·83äååaÉ’% Cƒ Œ¶3¥€Yëtš bÅ­áP¼,Lç~eM™„ÊÎ'å,›±hê6Eh¶(¡°Ý¬ñ½‰1&[üÌùöe Ì­ßÛÃùšëÿíñó;|þ‡¦\Æ€Q¨B‘zB‘ lذ›7oÆÌ™3å‡b­V‹AƒáñãLjŒŒ4ÙÖ”fIW¾J%Œ!±Š¥—->cs­iaèžc ®ûi‰ìUú¹‰aÃÐ )"î<ïêî¶P`Ó\\ðø¼¿|\ü!Húuàé‹mÁˆÍÄ}Ú.+JÆ.ƒj䓲ZrlkΟ˾b\6®Ï›wÕ‰kD=1–¨'ÆJ²î«N\#ª‘[JÉ,TVcýóé‹O{1rZúºxñ"@ðÖx¢±ÙêßBÊ·¾f+ÐJ)ŠŠŠpéÒ%ܾ}†ósõêÕCAAΟ?oAé(ãLž<ááá2dNœ8!·8Ö®]‹ `áÂ…xçwd‘ÁRË¥&2È*¥-±ú鮹ùs9ÝfÚ„­?‰Z“âPkRœÙ4À\NòÉ&¥+Yö¿YäXwý`w©«» é‹Ï:‰¹]±ôwhóæÍ¨ZÃnm_ÅÊ~¯ØDP>Er[@”ÿË¢þã?ÈØ±c‰¿¿?qtt,9Yˆƒƒñòò"C† !§N2y»ñìÙ3Ò¾}{R³fMröìY+JO¡üGAAéÒ¥ Q«ÕäÚ5럊QØùᇈJ¥"Ç—õ–TÌ©®¹g¥<Ù¶DRaît[ÿÔŸùÛÜi¸Ø}a»µàÒ§a9ož¬7 R½—\ûakרQ#2bÄQã‹…Þ€ˆ‡Ö±!¬Wº¸¸³gÏÆ¬Y³Ð Aøûû£C‡h×®rssñÏ?ÿàúõëØ·onß¾ oooŒ1Ÿ~ú)ìììÊô—^½záòåË8xð :vìhñ9P(†deeÁßßÅÅÅøý÷ßáââ"·H–ÂÂBŒ?Ë—/ÇàÁƒ±víZÖß¶Ž~Ý•Rå!~eN]ÅÔ¤°Vm)Æ2׳Lf¯_®–¤g7¬+"Õ˜ÆÖ]È~ØR ©‘jnlµf„ô)¤¶Íí™ïâáǨ[·.vìØ¾}û ž‡XhñP¬ JJJ :wîŒY³faÆŒ¸uëbbb0vìX¢gÏž9r$¾ÿþ{ܼy‡BË–-: !!››‹«W¯âàÁƒˆ‰‰¯¯/ž>}ŠîÝ»ãæÍ›2Ï’b $''ã“O>Aaa¡ùÆàììŒýû÷#;;ï½÷´Z­UÆ¥”&==]»vŪ¨ÕP¿ùÚ‡GêŒòVÁü›ÃW Ñ–œÕs‹êvbÍ@b)Æ2çöìÃò?l 狼"¦Ò¸Œh‘AÞP;9àY~ç÷ÌêlˆùnpI]Ͷ†|ÆdËpfI7-Ãv—/_´jÕŠ÷˜Û‚ ¸¸8´mÛwîÜÁñãÇ1}út“§’J¥AAAˆÅ™3g Ñhо}{Ô©SUªT··7Þ|óMŒ1{÷îE`` BCC9£¼Ølܸÿûßÿ°wï^«Œ§ÕjñË/¿   ·nÝBnn®UÆ¥üÇ©S§àëë‹[·nÁeàLd6Àü#Wu?竸XÚ`1×?£ hçÎ;3×¾…úË U-…%Òèò͈ƜöàÏa †±Cù|êÞ$A©«ùìß g\ú1ÄX Ä©T©š4iÂ{LŠmA DNN>þøc„††¢{÷î¸xñ":uâ—{¾}ûö8wî–/_Ž‘#GbãÆ8~ü8nß¾üü|ܾ}ÇGtt4j×®m¡™PʇPR|ÎÒ\¹r>|8BCCqùòeT­ZÕâãRJ „`ÅŠèܹ3š6mŠ .à«!}Ê()|ŠÍ™S¬¸®}¸|ù2¼¼¼Ê¥+'¥4Ô© \»v íڵömÛð¿ÿýÛ·o‡³³³ ¾ìííñùçŸcÚ´iøðÃwwwú R†¬¬,üñÇèØ±#~ùåܹs§L›œœLš4 :t@‹-àêêŠ*Uª iÓ¦3f >Œ‚‚“ã<}ú3fÌÀË/¿ŒŒŒ ;v k×®üŽSø“——‡Æz!"";¿‹£G¢^½z¬J ßSrÀ¸b¥¡B#6»’Huò,¤):ëÓ€Ñw@]„¬³&s‚Ûòª2.v¯¤rqcܛ̜¡`n¾æd•Ò0åãfl½ü=] R*àïéR¦Ï?ÿü­[·-'E~¨ÆXA?~<ŠŠŠ€-ZÈ-¥‚pôèQhµZ¬]»:tÀ† 0mÚ4ÝÏOž<‰ÁƒãÞ½{ E­ZµP£F T«V ׯ_Ç?þˆ¥K—¢jÕª Bï޽Ѿ}{üóÏ?HJJÒýINN†"##1uêT8::Ê8ëŠEQQvïÞY³fáöÕk@·a¸é{{{Ñ}› r5<7TªôŸ7S[Qñ×1uoö@kS}s•‡m-Lõ¶þ$bSêãÆ»Ò:3Þ3½´´†nN̼W§»Oru±2†í ÷ˆ ÃuáºF æö“mÝÍÝ´pÙ+>ûiŠ©{“™[ˆ±çP³²ƒný BÞ_S²Š¹™3µ¿†c“átr4Z‚ÓÉ¥úœwè/d^¾Œ÷Þ{—LÛ„fÁ²!,•UáæÍ›hÚ´)Ö®]‹¡C‡JÖ/…bŽO?ýñññ¸zõ*†Š_ý7oÞDaa!¦L™‚%K– cǎذaš6mZæyB.]º„ýû÷cÿþýøý÷ßÁüÊrqqAÛ¶muàééií)VX>|ˆ5kÖ ** iii@•7Âqøq%A ¯ 3äȑň‘ï XBÆá3†rä0ÿ‡ÐΧ“3Ê(õÆÖ‰Oíä€jŽöeÚVƒÜ¢’ZQLO³Y¯l5Ó”Ð,f– Ö¤8dæ–$íÐ_[fÿ,½n\2ß{ IDATÖÂØ>Z"Óóߟ´®/C»bÿþýèÕ«— ¾¥‚fÁ’SS °T^é &ggg’““#i¿Š)Š‹‹‰››5j!„S§NdË–-¤W¯^¤R¥JdáÂ…¤¸¸˜sŸ="¿þú+IKK“µžDEæìÙ³dРAÄÁÁØWr$U}º‘©ëöÈ"‹-ÔÊ[=[L=s8ݦ«Ã¡_‘›K¥jsã)#6ëú¶ÕšÖªü-uŸlïŸêâbkÖp‘›«DåÊ•y?/5Ô‘ù¼¿(†XÛ§0''‡¤§§“¼¼<ÞÏÞ¹s‡TªT‰|ýõ׌b >|H¦L™BÔj5Q*•$44”ìß¿Ÿ¤¤¤F#·x+³è@qìð.ÊžTW×&LšMܦîÐùb‹ ¶6†Ô~øRúÝÛ:úsåX.vÝ…¬³á˜\ãXøÄºð™±¾õ?g橞+:p›¯„Xç}æ+;›Læú3””âääDÆÇûYKAc@Ä£úꫯ¾’Ù¢üKzz:Ö¬YƒÏ>û ®®®ÏÞÞU«VT@pâĉ¸yó&¶mÛ†J•*Y@:Š%Ñh4À0dÈlݺŸ|ò š6mŠ5jPש Dqq1V¯^1BÑÝ«€Ï[¨óþÄÏޱ]½áç^ àç^ _µÄA-uŸIÁûÑñHÉÌÁåôlŒé"¾F‘£—Ó³ä-©œ¶ˆþ\µ„àꃧèé劾>n¬íõ×úä­G¬ëïGÇÃÑNitý¢â¯ãÀ•{¨l¯ÂŒ7[s^ç+~Åý§ùø=9C÷éÒÂäó\ޡ鈴¾õåbÖxÆ›­±yðkFûgÚ~søŠÉµÊ®±©9ò}Ÿ¹î×ñÙ`“É\úÏœO}lVF}ÂÃÃñøñcÄÅÅÙŒ¾am}íE„úIPxAÁöíÛ±nÝ:DFF¢zõêr‹DÀêÕ«qñâE=z‹-‚‡‡‡Ü"Q¬ !ûöíCëÖ­1bÄtx½j~¼ê.aèÔ¼‘ų¥ Â6†”U!&p]Ê wý¹2ÅÛbSö­¿ÖÆÖ]?ؘ¬ß¾‚ÌÜBd牞ƒ9̽BÖ“yÆßÓÅì»gî}Ò_h"Ss46¾©½1&óÌÔ½I¥Úø{º@¡=Ïç´Žl2™Û'®Aë†Ìš5 »víÂ’%K¨¾ñ‚A  g’’’Ð¥Kôïß½{÷ƈ#ä‰"€GaêÔ©:t(Ú·o/·8¸xñ"ºuë†àà`Ô¯_ 8ýóÈZ5 „àtr†Å²*–2,™ÝJhö¤¨øëˆˆ;oVÁBd7TJ4Z¢“ËT&%c뮯H›'ÛXlã2'¸-ÜÕU0'¸m©¶¦ž3÷~pÙ ¦ÿ°õ'QkR†ÇžCJfbSK»²úãs5¦ Û ù˜Úc20Ï(Õætrr 5‚¿óRféb˜?>¦OŸŽ9sæ $$D\Û… ³<~üLJ¯¯/>>¥Ú ¹•àªÀI}ãa K¦X“:W£%ºÔÅŒŒqçE!Úayˆ_)¹„¬¾"É6Oæ¤?ÔÇ­ÌÏÌgì\Ì^q¹!aŒ¾m )ÈÌ-ÔU‡×7 ¤HõËU gÚl€›·)˜gæ·-Õ&2Èj'¨$ù^†­? »Q[¶þ$ëϹ¬ÓâÅ‹‰éÓ§cÊ”)¢e¢ØÔ¡°BÁ©S§777lÙ² .Ä¥K—н{w¹Å£D«Õbýúõèß¿?j×®-·8+ ÑhpäÈ„‡‡Ã³ÉKø!v'ú™†K—.¡wïÞ¬ñ>\Cƒƒ‹ë×¾¥À’†ŽÐ902-ñÓ)øl7 \`[cC¹Ä®##³§Àû|:9ƒ—Ž¡¼þž.P)ð÷t%'—&{›>*e)…ÛZ†±¡lB /!ï 1ÃgX@3Ì n‹jŽìõárЛ˜ªsŠ+0nÜ8DFF‚†)¿¸P„RЬ¬,,Z´-[¶D§NpüøqL™2ÿüóÆŒc4+¥|pìØ1¤¤¤`È!r‹B± „$$$`ܸqhذ!‚‚‚°ÿðo(~¹7´aßá÷ª>¢¿Ë¦üØ-]à –6t„¸ìÊÄvkÁ®…Å®ñ lý01+§“3¼Æ>3„‘w@;w¨ÀØÛ…­NfS²›CŠÛONï’¹›®°É,e!PŸ†Î¥þæÃÚµk±cÇbîܹ4!Ê 5@(:®\¹___Lž<mÚ´Á‘#GpãÆ L:uêÔ‘[<ŠH 1cÆ 4oÞ;v”[Š„0JÒ¬˜#˜9s&¼¼¼àçç‡ÿmø9níðET*‡/ñ{ŠJN¸“•SJ‰¢L›òc7ü™µ«[c¼B{›bé{1ñ úûnزùa/ÕA5G{ô÷u‡ÒˆNËöžšCŠÛØ+cß17 ¦ö‚Ï<¸´{ô¼ Ôßl2°±qãF|öÙg1b.\HZˆÐ†³°ÍÑ£GÑ·o_4jÔûö탻»»UǧXBˆ.ÝîÑ£GÑ©S'¹E¢HDQQê½Ì G7QµjU´|í üU­%rê4Q¨JÝL¤få€@¥T`yˆ¾9|žç#·Pµ“/>ØSêªÎb‹š‰y¾Ö¤8dæÂÉ^…ÚÕmª@œ%SÅ\Ê}7UœK±>F¥p´SÁÑ^…^®¥žc“×p\K®4ìÓØº…­?‰ØÄT„ú¸ak8¿ßáLŸj'Ts´·è{klL½[¶lÁ‡~ˆ¡C‡"**Êæ‹ÙÒB„â±í¦X…uëÖ¡gÏžèСN:EBNž<‰N:aÆ ˆŽŽ¦ÆÇ Äýû÷ñÆoàÉ¡hT®®ÆÐ‹ñàÁÜo?Ïëzƒ(Tº€gæ´µ¿¯;TJB}Üt§»yE‹Ê)õi½X/1Ïç—¬U1K\-Ã÷ÊÜM—z)÷íæÅØ ‚1YTJ´Èý÷}ML-·ô,¿Nö*<Ë/bͦ?o.ï×5绳5¼Š—…ñ6>˜>ÕNÈÊ+´¸{$— k øðÃ1pà@|øá‡åÂø HÝå μyó0tèP 2ûöí£y¶_òóóqàÀDDDÀÓÓÈÍÍÅáÇ1pà@¹Å£HÄéÓ§áëë‹þùã–mBþSà÷F/899•ÊjÃ<3è+1ŒBÐß×5=ªTH!V±ó¼£ P¤ÕrRä„®§ÔûÀ×è2–²•‘íY~” ˜  ·…„Ì:Àò?Ý÷@™Œd™¹…(Ðh‘™[ÈÙåŠmŸ˜Xñ;/Rö-±nÚ¡š£½îöÓšÁöiiiˆŒŒÄ™è¹èñàz{:‚M›6¡E‹Ø·oÖ­[‡uëÖQã£A]°lk_éýðÃøè£0}út|õÕWÔß²sïÞ=ìß¿ûöíÑ#G›› £wïÞèÖ­ýÅþ‚@ÁÊ•+1f̼ú꫈EÇUHæê"µ»Ty«k ããÓО˜m/t=ù>gN~.óÓoÀh{cî<–pO‹±u4æZÅÅË\ÿv£¶B£%P*€FÎUlf=äÚŸyóæaúôéhß¾=nÞ¼‰¼¼<´iÓ'OžšvDÛ~¸8+ÌjòHuÁ’B±’`ñ±Ž;FìííÉ!CˆV«µøxéÑjµd×®]¤]»vQ*•$ €ÌŸ?Ÿüõ×_t__P&NœH.}·)qdÕ‰kdÕ‰kÄ}Ú.²êÄ5ÑýKÙ—µXuâQOŒ%ꉱ¼åf櫞K0b3qŸ¶Ëd[ÕÈ-eÚ™Z3¡ëÉ÷9÷i»xÉųꉱ‚d3”Áï’±1˜Ï¬‹·¨ lã XOT#·ëây?k ¤Þsß¿aÆoooB!™™™$<<œÔuó$xkÁˆÍ#6K"‡5±¦¾ö¢Bo@lkYÔ×®]CÇŽQ§q äõ‡É=ÛØÄé …;Z­ @ll,‚‚‚Ž=z@­VË-Å‚t¿ÇMÀË!Ÿ#«Ew›»©ë„•9… ø¦Ëi>Ó– à7üÜÚ{aîÆ‚¯\L€=—dQñ×1uo€’ çlkfu16†µ÷DÈxúï“FKlZV.ýìß¿M›6áÃ?Ę%±ëqõR©ºÀÏMs“Þ-‡5¡7 âQ}E«¼Ø éééX³f >ûì3¸ººZdŒG¡K—.pvvFNñ¸ó\ƒËéÙÓ¥…EÆ£X†o¿ýË–-Ö-[0þ|´nÝšV¦ÁÉÈÈÀˆ!€kSòŠþûˆŸ{­R2Žo8ž)Y¸¢?ÆùÔǺ>˜}5·'BÇ5%×~˜gzz¹âYA±ÕÞ!²šZ's߿֭[ãèÑ£øqçxâñ~¿‰o¶Æåôl|óöËXöªds³ÖÐ×^x侂¡ü‡¥¯ôòòòHÇŽI:uHrrr¹tµ rþüybggG&Nœ(·(+¡ÕjIŸ>}ˆCÕD¾Ü¬k_¤ú]`Íß)BÆb\„ØÜ¨¸ôokó+›Ûùøº½™OŒ,bú0õŒþúru«b{ÖÚXbl±û“””D PtìoÖů<@]°Äc'·D±Z­ƒFbb"Ž? óu½²III¸{÷.´Z- PPP€ÂÂBÔ¯_Ý»w📓ƒ°°0´iÓ³gÏ–XjŠ­ñÊ‚8Ÿš çq{çNüøãèÓ§¨>Ù‚mõ3$‰ù0, ™èß)\ݸ„Èìïé‚»OrKó‘A?õ,`™ßŸÌØÏò‹tÙ˜ŒÃg½Ù‚®ŸåAíä ¸ˆžâ‰ú.c\Æõ0Õ‡±>ý=]tÏ¢ÿŽÝ}’ öÿì{XÕÇ¿»Ëýâe/௠‰’š–¤hTj‚biš¥¥iY)åÝòj™i’¿+E5SÓÌÔ¼A¨¡’‰  ¢€rß=¿?hÖÙafvf/²èù<±;sÎ{Î ö¾ç½l=›‰~m= ®û~šž(õ^溼â2”Tj0{oªYÞQSßèÚµ+ú<÷Nû‹?]h²L”º-‹ó˜0gÎÄÅÅaóæÍèÙ³gm‹ƒÛ·oC«ÕÖ¶¡ªª Ý»wÇsÏ=‡çŸ#GŽÄË/¿Œ &`ðàÁèÓ§þúë/£Æ~çwpãÆ ÄÆÆÂÎÎÎÌ’S¬‰è„tœÉ*ŠoãÚÑðêùt ãØR­ŒbÄîð°ºj Á^‡Ôr±l™£ÒÑhf<ÍŒGtBºà¾$eäC£%È»WŽ Vn˜1‰5®’é%!VzÖTÄÊßšc\Fn¦ì¬«ƒ­Q ±Ü÷Î-VzVê;Á7†¬Ì˜Iù‚óµrƒJ©@P+7„ùyé>sûiDÄ$ò®Q¨Û¸¡5ˆí)sï콩¢ûÎ\Çôª‘2¶øÞcÆ éÕ ”ôà“€ {öìÁÒ¥K…#FÔš999øè£ P(àææ†ü±Öd±$666HLL„¯oõÿx~þùg””” ªª ‡Â;w0hÐ äææÊ÷»ï¾Ã7ß|ƒ/¾øíÛ··„è+B§¨h*;dþ ­û A³©ë *Êb0ŠQ˜Ÿ—NAzXý„`¯Cª1Ä–™QоµrƒBäÝ+öäLh´q)Y5®’ar_¬`°„)0s/ífÒ3áÊÅ]“)F§1ïÓÐI\—ƒ%d•2&c°&eä#v|]ÿØ–œYã¹³ ®±eh>>9™gÔÊ Þjg¼†mô„³úúˆíTød7fL…BñÈtyO>ù$Î;‡N:!** ŽŽŽP©T8p ~ýõWhµZ >EEEǺ~ý:†ŽqãÆá•W^Ák¯½öV@©m˜ÿétõ^ùx2ž@ö73±ä§dú'´BpQFqßÇbF‡\¥œ­à° ©ã°/FûêöÅÝÅ-çíFDL"ZÎÛÏÝ!@I…޶*]Gx®‚%Ç 3U¹ãÂÌ ÀäSk¶\Ü5™btr½Oæn\ÉÅ\²Ê“{ïâÐnp²UA©mU5ž;s=PÓP04Ÿ˜’Ïxi‡v5„~·Mõpre76$K©T¢´¢Êâï ¥ŽPÛI(”X*©)''‡( ²aóŽ+ÄÝ»wÉ·ß~KBBB½?o¼ñ)((x(rX;wî$ȹsçô>?yò$©_¿>éܹ3ÉÈÈཷ²²’¬\¹’8;;OOO²}ûvÚÛã1…I* ýt;@Æ~¸Œ"­oƒ9’{åbhN©I²rz[°?ç&›3+§nÖým®ÄmK%›úÜŒíbŽþ#rÆ•›Ümˆ‡•üm‰Þ/ÆŒcèkIH///' ;?IàXï¡ÿ{d hºéPÈc@“&MЯ_?ÄÅÅYlŽ’’ÄÅÅaøðáhܸ1Ƈ辟8q"®_¿Ž¯¿þ 6´˜ÖFÿþý—.]Òû¼gÏž8qâJJJˆ'N¨îr}íÚ5ÄÆÆ" |ð&L˜€‹/",,Œv«LaN ÷Ì Ã3Ï<ƒŒÄŸ$ß[ùÆ„›HGè^v‚8²Â„™13¡)kÞ0Úó#ä-LóXšG®§ar_¸:ØêÂÒ¤"×£cLÈ›¸”,](œ9¼)Æz¤ŒÙ_!Æä¾>º„xSÖ"ÅKcès{èùÿ¦äää yç'p'í W˜n ÊcNm[@”XÒ¢^»v-±±±!ùùù„BŠ‹‹ÉÑ£GɺuëȽ{÷Œ³¬¬ŒüøãdôèÑÄÙÙ™ O<ñY¹r%Y½z5@žþy’––fÎ¥Ô)´Z-©_¿>Y¶lï÷yyy¤OŸ>ÄÞÞž<÷Üs¤I“&:oQ¯^½ÈéÓ§²Äk'66– —/_6©¸øN§Íq¢jÊb)åuÍ-ƒÔ.â\¤zØ^uÇ/[¬LïÃ.Ë^¿9¼uRFlÞ¼¹Æg¾¾¾øá‡týš5k†Ž;¢cÇŽèСþùçlß¾ÿþû/Z´hW_}£F‚ŸŸŸžqAÁ°hÑ"üùçŸHJJBƒ ÚÚ¬™[·n¡uëÖºŸå4Ë¢PøÐh4P*«Ï^ÌFKpðbŽÞ5Ü÷Œ[-‡}B+ôNÆŽïƒØñúsËi@Ç×,}úÊ÷=·$¯ØïŠ”s¾1"ƒ}uÞ„e‡Ò•^füš7DÊ;ºë'÷õÑ5‰ôjè¤WÁK.|{Ì·/@ͽ—[¥KÌ+dÄž×Ôƒ±÷Ö˜“#ƒ}õ¼&l–JÓyµ¸c²û¼ˆy3ŒyÖR1´Þ~m=t†Âþýû1eÊäää dܤz< U×n¸q³àý”%wñj‹rØÞLDZcÇp»¸ÅÞP<âÞP( PQU“RêyÌQ©T8räNŸ>ï¿ÿãÆƒ««+:„éÓ§cË–->|8~ÿýw\»v QQQð÷÷×3>®_¿ŽþýûcèСP©T8xð jqUÖÅ¥K—СCÝϵÝsR÷ÑjµP©T¢×pß3î)*;ù×R嵐$r¾ï…Jòò!¥¹Ÿ‚Ë×σ{_Ëy»±ý¿^!g² j(”g² YwJ̾wæ<ñ–šÈoO‰XB¾Ü^–ôÜ•¦j²'䑺5·£FÖxöA­Ü Töªš*–¡ÆÆ®[Î}B¿Wìç‘‘#GbèСh×®]u´CÓþÈ*ªÐûÝ];>Î@tt4.^¼§ _ ¬g8ˆG(• ¨ìd{)4ÄŠ°¶˜ÂÊÊJ¨T*ÝI+?ýôÆŽ ggglذ¤aW,òóóáîîŽ;vÔjHÊ£E£F0sæLÌš5ËèSdC1êlrss‘€“'OÂÆÆnnn5þ4iÒ...ç5ç©·¡±¤ævå„8ÙªP®Ñ¯yCäÝ+×›‡ñ€x©qzfˆÙ×f,lèÉÃ|ÔÊ Iùzrš3·ÇØ}gˆˆIÄÖ³Õa«Rs›ä콜ü‹k‹^Ôý £{xëý¾ðý±¯Û>9¤ìßZÍñü¢Ò±ôàyôº÷'lüŽŽŽXµjF…B!iɧ©‹X›¾V'©ÕxŠu©ªm IDATBEEyï½÷ª«®Ey€V«%Ë–-#È… j[JD¨*»»;™>Ó¦MêU«èQdíJÜÈwÎI@êŽhìÙ³¡¡¡²Æª¤——‘wHÚœ;ˆ!C†`ìØ±èÛ·/š6mª»§¢¢ÈÏÏG~~>¾øâ ‡hµZI²®>tŽØ{ùçz ÈÐÅ[t§¯rîîîØ·oÚ¶mkôX„äääÀÃÃ66u»BÆ™3gðâ‹/¢¸¸:uB‹-вeKLš4I¯ú…b*ìØx”—Àv÷"(ŠnáwÞÁVtÃõûÕÿœ3'šfÆ£ ¤B×§€ï´€î„½à\pôÀÁ‘+×aéÄá’ek9o72³oÁöÇO )-†60 ^½ŸEæ'ÒrŸ¤ô3`–Óls÷2:±7Ç<ï}¹Ÿô6Hy)PYU}w|ûÞò„è}lïÙš‘FõQ‘’£`-^!Ì™"w\±käxyŒ‘Ïòòòµk×âæÍ›xî¹çðÞ{ï¡ÿþ›³®aíúZ]€VÁ¢H"&&ÁÁÁðóóÉ'dùùù8pà.\ˆ!C†ÀÝÝÍš5CÆ ñì³Ïâûï¿·ä–eóæÍèÛ·/š5k†´´4$%%aûöíøôÓO©ñA1;±ãû`]øP;ÙAݰVÄîÃìÙ³ñå—_¢ð›ép¾’ˆ†6{ ÐU»Yv( ¹Ù(?¸8ø%àÕ ÿ[³äýï!2ØÞM=°hý4÷õެGÑ·³ÐuØD¨žŸ‰a«~ \­G¨ò·|«9*Nqç« $¥º»¢˜”5I{ÇŽXóþ<Ð /‡¿$þ¼ήõ ViŠ öÕ…îÛGÅP•2Àp%²ÚF¬2c«êÃÝ›è„tl=[]am[rf{ õé°t wwwwÌ;™™™ˆ‰‰Aff& €}ûöYt^ÊcF-{`(,¬Ñ¥§ÑhȬY³òÆoŠŠ ƒ÷”––’¤¤$²jÕ*2zôhÒ¦M]è@£FHHH™?>Ùµk™?>@úõë÷Vc>*++uIøãÆ#¥¥¥µ-å1fÉŽcĹs?€øûû“ãÇB„“Ø™Ï?‰;Bú„†(UÄ¥š¨‡¾IðÖ÷D9µfò¯ÔÄŒ˜Ol[ûØ;ë~ÿ===‰c»‚€aÄ=,’deeéB¼„ÂKŒ ùáK"66L‡ùNõöÁ0©Ñ †»È÷«¯¾" …‚Œ5ŠìÙ³‡ Ÿ~ú)ï}Bã˜3üÍнÜwÌ,ÞÅ$©«?ˆ3ËübÉþbã­;~Y/ÉÞéÝ­zï—\9Œ‘]î˜_»DzõêEž~úi³]×±F}­®AC°¬kséiµZ„‡‡cçÎX¹r%o²¹V«Ezz:Nž<‰S§NáäÉ“HMMEUUìííáïïž={"00={öDëÖ­ucüüóϘ:u*n߾Ç[Åš QVV†Ë—/cæÌ™8|ø0V¬XéÓ§ÓsJ­Â„f(o^A‹ ;‘yé<ÂÃÃ//¯¡™™™X²d 6nÜ—z° Eðˆ1ˆ¿pK7&Y3ÆhyØ¡_Ïvh‚¸cgärý”b÷á\:Ÿ mI€êf¨.\@«ù?J.Ýj¨Ì§PUn虔Юè„t]ÓBK%Õ³ËâNêÓ ,À¢E‹0}út|ðÁðó󃿿?öïߥRY#DÇÔ0(s„ö°Ç`7º“#%CŒ¸áˆRæ+ùËmBÈ}ŽÌgÜ{9 à«°ê0:æýJ¤—‚%öŽ=æÒŽ¥ˆˆˆÀ… ЩS'³Œ_—±6}­.BC°(‚ÄÄÄ`ÇŽعs'Þ}÷]=%»´´+W®„§§':vìˆW_}GEçαzõjœ9sEEEHJJªU«0zôh´iÓ …ÿý7BCC‚æÍ›ãرcV÷ LÁ… °uëVÌ™3ÇGûöíáììŒîÝ»ãÌ™3øùçŸi0ŠUÀ„Ûh·yi¾ýö[?~í۷ǼyóðnŸ–ðV;£›k\{ B«6mð¿ÍÛ èŽ{aQ¸Û>;ÿz`|4t²5IžÅ¡Ýà­vÆâÐnØ:¡/4ß¾ƒ„µs°xñbüõÇqüq'<==aooñãÇC¡P ¨•TÊê¿øB[–JCAI J*éqCU„BϤ†vÕw°…ÚÉ‘Á¾º&syÅe¢!PR`æMÊÈGfÁ}LÙ~ý^E‹aÙ²eX¹r%^y娨Øà»ï¾ÓõdâÊ+%4MLF±Ð©kcalX–1!FRåÔÑ*¥ƒ:zJžŸYÇ콩zsÌÞ›Š‚’ ”Uitkd?GîûÅGCG;]·s¦)&£ÃÙ¤†ûEÄ$J~WÙcŽ1îî‰‘-…Â5@(¼â£>˜1c0lØ0ÝçX·nÚ¶m‹ÈÈH¼ð øõ×_q÷î]¤¥¥aÓ¦MxóÍ7Ñ£GØÙÙéYTT„™3g¢S§N8þ<âããqôèQtíÚõa/OB¦M›†.]º ""7nDqq1BBBÄÄD\»v ¬mQ)ú½?|¶3ÆŽ‹ôôt̘1QQQX>á9ô¹º{"GáÞÅ?€^á /†Ê®!€­ÀÁFå¶´¦ÕB qII ÆŽ‹àà`´oßçÎÃûï¿HÊȇFK”‘¯»žO‰ jå…p²S vÕRÐÃÈÝÅYwî׃Æàqu°Åä¾>HÊȇ–%•”OSó "ƒ}¡ÔVB»ÿ $î‹Ç¦M›0kÖ,,Y²¿ýö¶lÙÞ{£ÒÑhf<ÍŒU*Åd3`¤v+ga¬!aŒ×DêÞ3ï×çnÀfZ,"bk\#”𥕽ÏÙëÚ¶qΗ1’ØF¸T˜}_v(÷=`ö).%KÒ~qŸGUUŠ‹‹Ñ¸qcÙ²Q(|P„ÂË¢E‹pÿþ}|úé§ÐjµÈÊÊBLL :tè€)S¦àé§ŸÆ¥K—°~ýz<óÌ3¨_¿¾àXZ­›6m‚Ö¬Yƒ9sæàâÅ‹x饗¬Î{@Á¬Y³°fͬZµ ÈÎÎÆ¡C‡°jÕ*¼þúëxòÉ'áêêZÛ¢R(zp•',^¼s¾ý ·œ[`ë¾_Ðý¥Ih1íkŒzíM¨ë׃“ N¶*¨ì°r¸?8Ú˜Å4æÌ™ƒøøxlذGŽÏE“«°EÄ$ò Iù pwqÐSTù>îé8³G)7¼J @<9™Ï›¢v²ƒ“­ Åe•¼¹‘Q]<Ðú÷µP\?·–­Ã¸qãpìØ1,X°óæÍÀïòZ¹Å˜¹ù”YcŠH5$¸rJ5v˜ëʪ4Ðh ¶žÍ4ø|¸†+3c(ôh¡Öûœ½n¡=Û>#\ê>ü{È\ÔÊ Þjg„ùyIÚ/îX‡FYYžþyƒ²Q(’¨Õ ŠÖ’ÔtéÒ%bccC<<xóÍ71eÊ]„”^ R’¡kt7Ћ„G,dˆ›¸Î—Ž·þ‚²]Kál§ÂÁƒѱcGÜ»wýúõC~~>N:…&Mš`,¥·Š”õ˜Cs‰õ1%Q[h~¾nôDŸ9:ÞËéÑÂßP!!Y‘]«Õ¢Y³f3f V¬X!KÖGkÑ×ê4µmQð¨YÔû÷ï'HLLLm‹Â˵k×ȺuëHhh(qv®.:gΜÚ‹B1+µÕ¹š=ï¼yóˆJ¥"ÉÉÉz×TUU‘ÔÔT²~ýzòÚk¯‘Î;…BAœœœÈÔ©SÉáÇÉúõëɘ1cDÒÒÒ!¦—ž5$3û3¦lªTÒè ‚§èׯ_'ëׯ'Ží l쉭{ rýúuÝ~¼ð ÄÅÅ…¤¦¦š¼&¡ûj£‹·ÐüR»­›ã=–âyXwü2qzg+QNÝl°¬²™ØžÆg¬WRÊó“óì ­ãäÉ“ùí·ß ®óqáQÓ×jê±"%‹šé Þ¡C¹{÷ìÁСC-¶¦Úì^Î=½—ãu2)¥xé%m yÛžˆ:€3YðRãôÌ£JóÉ"eo„îã–ž½7wK+ %5=>„ÄÆÆbæÌ™ „ ++KÔ{ù8ñ(ékµ}“(áÃ?DAAÖ¯__«ÆÇ¿ÿþ«ûÿ¯¿þŠââb4iÒC† ÁÂ… 1pà@4hРÖä£PUØ Vç‘‘‘’’< Ïg"Ы>žêØO<ñzôèNŸByÁ}”ø3¿@u‡ñØñÕãõëש©©X´hæÏŸNâ°sãFôèaYZŠ¢È(Ñj';x«Ñ½AÂÑ_Ñðü¸}1EEEhܸ1Œ¹sç"88 6ÔcvÔ(:ñ#>;Á¢Æ]’´1˜j0IóÞjgÝýì~,ìëØUÍ,!›ÐõìgνŽ-/s]P+7L‰; -©Vè™±ÎdèýÔÊ 7î–ÀÝÅ^°¿÷s®,€´çÇ·&,Ž_¹…¤Œ|”T (þ»‡aö†ÝX¹ðC”_¿„#F`ÅŠÔø ˜ê±"‹:11}ûöŪU«0}útY÷j4h4š%|¥RUU…'Nè¼ç΃R©DïÞ½u^ŽnݺéâÈ)ÊÃ!"&q)Y°·Q¢¤BÃ{â͜ζvsAÊ;z6ÉÉÉxíµ×pîÜ9|ñŘ:uªI²«Ts Žð(Áo1+‘œœ ¥R‰^½z!$$!!!ðóóüwçàÁƒ2ô98uˆ¨ÏVáÍ~íuã ÅúËÉ0)96Æ4¼“º×¦äY剈å~Hñt¨” Ôw°ÕPÜüzÞÆâÕÐ …yÅe(©Ô@¡©.%]^¥…_ó†È»W®û^íd§ó™ËÄ–TJÂü¼°õlfõZ-Pp¶·® IÑU\?{hØCßÀÍïç™<ÿ£Æ£¢¯Õ&Ô±"…º¬¬ Ý»wGÆ ‘˜˜•J%z}FFbcc‘’’‚K—.áÊ•+ÐjµèÞ½;„aÆÁÁÁApŒÜÜ\üüóÏØ¿?~ùåÂÝÝ]gpC­V›{© E6Ób¡Ñ(€WCg“«ÊÊJÌœ9«V­Âš5k ê,+á\ŽR“ˆíÉ™P)°UU¶Õÿ¶”T …« ^*?‰U«V¡wïÞxûí·ñì³ÏJúwgß¾}1b‚ƒƒñÃ?ÀÖÖV7§N9j(Õl…ÒÃå$°›‚”ñä-L(œØ¾ÈMäf<N¶*¸»:ÔHàç‹+ƒJ !:oƒRhɃg-ôNÚ¡"Ç…}þ?¸–“‡®nöÈÈÉCQQPt Èý¨(”*À£5Ю7”]žÁÚQ½j¥p…µó(èkµ õ§QÌÊÇŒŒŒ ìÚµKÐø(--Å®]»°qãF9r... Dÿþý1iÒ$(•Jœºîç¶*^£†m  ä?ãC  G 5Òr QRQýN1ùBkÛv¨Õ²Cix®•âãã±mÛ6dŸ:PÙØâßõagçU• Çú€ßs@ÓöÕÆ‡Ñº(©PˆQ×-ê?ÿü˜?>æÎ«÷!gÏžÅÆ‹ÂÂBôëׯ½öFŒgggÞ1ÓÓÓ1wî\ÄÅÅ¡]»vðööFrr2  V«1xð` 2Ï>û,ÜÝÝÆ2)ŠAÁŒ3°jÕ*¨‡LÂâÈ‚a7dÞG'¤ãÍí§&ÖÂ!e*Nî‚¿¿?¾ýö[øúJ7bcc1vìXŒ9}Þ˜ƒåGÿFP+7lO΄–TŸ’Wh´ºë  ¡£Ùí¸adæNL7ä]2§D̘î.öºp¿¤Œ|ƒ^¾}⮑IvB©ø¯±Ë£’uç>©ªZ!Iv¾ý`dQV•¢×õŸ‘´'ììì0dÈ$*Z#ß­¼›¸ > K†õ=JÔu}Í ˆQ×_èž={"55ëׯG×®]áããƒÒÒRlÞ¼7nÄùóçÑ´iS¼úê«xõÕWÑ®];ÉcŸ={Ÿ}ö***бcG 2O<ñ„ä“F …òè²îøe¼ûî»(O>€ˆ÷aËò ¦ä,)’6ÚJ(|Êô“X°`>úè#Y º7nÄĉáÔu¢V­AÔ‘Ëzñù \#€®¢ƒ1á8lØù B}KL1Œ¹×Ps#Lh ¨ h©±ÇìyÙá]ì$ôƒsT+îïýŒ’ àœ^j$_/€–Gû²S)ñÅK=L*°àÛQùK4 nf£^½zxæ™g0qâDd8¶Äò£éµRýìQ£®ëkÖ5@¬ˆºþB3GENNŽî3•J¥R‰^x&LÀ³Ï>K …bVZÎÛÌÛ÷€„ï€ó‡0惑èÐÙ(¯çw·U' £úÄPZ ìÿ ŠüLìŠßŽ_”gÔlݺpé1÷ÇÀ»‘+"ƒ}õ*b]ø‚§ï\¤&f‹y@LM<—‹Ø|rd‘b¬psm~/cŒ:Ù©àî†VnˆKÉ‚FKàd«BIeµÁá­vÖ%“38ÙªPZ©t÷óœ R÷™»>v^CãÆÑ°aC\ºt 7ÆË/¿ŒE‹ÁÉÉÉàøa꺾f Ð yŠÙزe ²³³qçÎüñLj‰‰ÁÚµk‘øøx„„„PãƒB¡˜È`ß꥾c.±eù\d&þ¤‹‘¿¶èEÞ“ô–óv#:!]p\&Ñ\WI¼ð&°s!E7ñÁšÍ‚Æ‡ÐØgΜÁ„ ðÊ+¯ ê³/tÆÇä¾>X32j';H)Z¾ìPšÞÚ™Óx>˜ïêîÛ³÷¦êÉÆìOìø>¼û$es#6ŸÐw|{ÎΕ"v|Œîá ¥¢:4J¡¨ÎWÂÁ¦:$)#_g0²È`_Ý{ðr¸?¾ Þjg¬æ¯[C€×ƒ"JEµ¡¢v²“´ÏL®GfÁ}L?ƒè„tœ>}«W¯F`` .\ˆ3gÎ ;;iiiHNNÆèÑ£ñå—_ê(JmA= Vµ¨) Å8˜2¿#»·@öÞu8¾{œOŠÞ =«ò@çøéð1íúJ,øê;Ì5PPîØÑ éøpëo(üþCx·hŽ‹É'+û‰æüÇèÞ²ùÅ*DÕvcBsÌÍ×0RêØR¼*ܱØÉÞŒ‡ÌÉV…ûŸÒ«š%ÖôP¬É%ß||%„˜1^ëÕJWI7Þx{÷îŵk×`oo¯77”Œ†i Cõ5Ó¡ …B¡ÔybÇ÷AÕêlÐGwn†‹0îÿü5æ¬XÃ{½ÐI:·ÂPd°/~=°EÛ <¡>Òî‰ÊÂ{éTÜýaˆV‹ÊAÓáàà è%™Ü×J7HC§Je\J–¨ç† [y]ÚMO6öI:Ÿ§ :!fÆ£ÑÌxYsJEŠ—B ‘Á¾º<f,!ïß½ÞjgµrÓ=c1^+oµ3Fõð®ön  ˆ6p´Óõó04/_µ)î¾pfÖËÀ¬[ÌøÏ¾Ã››‹I‹¾¨1W\J J*PPR¡óªP(–Bµ`Á‚µ-¥šœœ¬_¿“&M‚§§gm‹C¡P(u…BžÀñÔË(:¾ vvvP*•°··‡³³3 ¼áàÝHï^%.ä"2ØÞðì3q{ïZصë‰zÃ>€“³+æ‡t©qöØ„Ä>7ÎB½°9øøåÁðn„—6$ ³à>.äâôîßwá_d–ê}¦„®¶(«Ò@K€ùX—ð7l”¢²Ð›kó«Oê­û¥ ¸SR•R%¡ÝjŒõ҆䕡´R£'ktB:^Ú`p~C×q÷Û«› n—apGOŒø/ŒŠ=ÿ™¬Û´ö¢¥¡¾ƒ-¼égë¿‚Ü¢2œÈÈÇé¬Þu3cZ{GÒob~Hx«‘x5}Ú¸ëžmnQÊ«4Hºš¯›‹+Ïä¾>¼ï ß¾pðn{\È)Äߦ(.¯’´‡ãwþ…ÂÌKH;ˆ9ïM‡B¡Ð=¸£'² KQVùà›Üɨgò¨Cõ5Ó¡!XVuéQ(ŠùÐjµ˜:u*Ö­[§ûÌÞÑ ÚzhÒÜ…vj„öñÇ„ÁAhÛ¶-š7o¥R‰è„t,=ð'Ú^Ù#ñߢ^ï±téR¼õT‘ÙjŽÙK?CÁ¯ñÝwßá•W^ÑûÎP)Uµ“î–V@Kj6©“ÒlOÊ\Rªhñ•f•ÛE\jx ¿h€X%/öüj4odÏì)ã¹xoW2ʪ4÷òƽªŸGaY¥Þ¼|×0aX|áy|M-Žùë·áÖæùˆ‰‰Á«¯¾Zã&áž-wm†éY#T_3ÚˆB¡P($J¥_}õ–/_Ž«W¯âŸþÁøµ»q7ç:®ßºÜMÖ?~Ä–åÿ•ºUÙ I3/ä+]Q•ó7²*Jðò œþ~¥Qóÿ m‚KAzÆ ÞÐÛ¯J•”f{Ræ2ÔXïûè„t—UJJ˜kòÈÀ„M?ƒú¶((yÐpQ ìr¸Ì ÍÏmÞÈþþø•[ˆKÉÂ Žž˜Ü×G/4©_Ût]CB&“€êð'•R¡“‘›Éaï[^q” ¨•›ÞÚÙëå ¿ª^&ÅpÔÑS/·#÷»¹£¹„ñãÇãøñãxûí·Ñ¹sg]øÖâÐn5ž™Ôfr`d,«ÒÀÁF…A=-Ò‹†bPˆA-j …B±,ܲ³ï÷o‹Û¹ÿbѶÃÐÞ½ ×òÛ(»‹ÊúMŽý R75ØŽo @_] IDATüY;bÍqùÒE,ßþ ÞÌÿoº9N–™|st™—"¹Ëò²=Bå‚|Þ F.n“A'[lU(«ÔÀÁVÅ›´ÍÝKv_!×ãÄ(þܽ–Z~™ s=!111˜>}:îÝ»øûû#00={öD`` Z¶l Å%àä¾§UUU¸yó&²³³uòòò@Á™¬ÛH¸zUZ”Vi«»¯7ï¥Ra0qßZ úšéP…B¡PøNô[λ­W7¨Z*52tá7b%Yù`ƹŸGãö©D¸‡Ggƒ×›r²¼-9„Tÿ-f€HQ"¥È#Å«!öÉ¿¥ )¡NÜuMîë£óЏ»Ø£å¼ÝºSú¼{e:cÂÝÕAVh›B½9Øß/;”¦ ­ãî CÏ 2س÷¦âNiÈ!| x¬ &L˜€Ñ£G#99§NÂÉ“'±{÷n|þùçÕërwGÏž=ѳgO´oßQ Ù)ؾ=ÌÙõ¾ä+Øwò/t©OЀÜGjz²³³¡½ìóm¸¹¹A©T"§°DK4U@y  nòÌë€G—UJ}¬”: õ€XÔ¢¦P(”‡9ãÛ#b±=él¶EÂÆ» JúO–UÞÕœglCI…Nv*Üÿl”Þ¸ì°$¡Ót¡ëëJŒ”=äËkâÉÊ/ašTÐ匰C㤔;6&ÿC('ÇÐÞ¸»Ø#åÆI^²[·náôéÓ8yò$N:…S§NáÎ;ü+”€c=ØÕo„A¾8úo9îÙ¸BíÑß¿9M›6EÓ¦MuÆ÷Y|ò\W,ü&Å»W¢¤]_ ÷((€æË1¢2Ö6T_3ê¡P(Êc¡<9$eäC{ü{Ti4øxI¾:sSÔS`޹WóŒÙ¿q·DW¢UìÔœ¹€Y:ŒKÅc±sHHVÊ™< ±çÔÊ 7î–À¯yCäÝ+×]ëð_÷s¥ºœz¡dÜ2Ï|Þ®·ÉÐûÀxH˜ÿ6´Vf<›i±Ðh âR²;^xO˜ç0tèP :@AQQ ….$‹ùïM§2±üh:¯Q5D@6&´ÌÝÅoï8‹°°ï—ÿZ-Âý½E×Dy4 }@( …B1ϹæéIxù9˜ù|ï}(¤t`— »GÓ¿"¯¸ j';ø5o•R Vn¢}1ät;7WïsÅׄ Óÿ„W‘”‘o°OÓñ<ï^¹^e­A=á­vF¸¿·nß–JÓ%¤êh¸4+»ÿˆÔ^+‘Á¾P;ÙIî˜Îæç•R!R(ö êׯzõêÁÕÕ®®®pqq³³3¦ ð­ÑÅО2פܸ£3ŠŠ+4!P*&ç1QêÔ¡P( Å Ü»w{×|‚àà`lZ<“÷s*ïBã”T ¤RW[äÝ+‡FK”‘/zŸÔ¦}€3¹·òðõ×_ëBU¸˜CyS¹'äæ4ä+†d–;–7¹¯\ÿ+ák¨‹7ãÕ2ʸ¡QåUZRÝž»Ÿìu±ePcß™kgïMå]ƒR!fIãUì90òÎÞ›jVc$v|¬€¤Œ|Øh*0kpwêýxŒ …B¡P(&²pÓnŸú Î}ÃѪU+ÁëØÕ–ä*q†XfüÛQ#u'äÆ –À\ʳAÅô&Q* ŠÅ O« Åžƒ}RÏÝO{‡v«±ï̵wK+ôægÂÃÖ†=!úœøÖÎgXÊcÁ^wsöÞTdÞ¾‡Ûùyhܸ±9E¥X9Ô¡P( Å*** <ºvžmðñ‡¼ž}¢,¦'»“·9½–TZó…m TLèYG;A7˜~"Åe•¼{ÎÈÂ7ß0?Ð@æÌñac®=–ú^š/>ñ PbGÚm¼UG ŠéPˆA-j …ò¨óçŸbóæÍøf" s² (º¢ÕTic‡fÞ­ÐÛ¯ |||àããƒöíÛ£]»vhÔ¨"b±=96*¬îoPùQ¿·w®ÿ§‚ ŒhZ‰“'O"=½: Dáè ß®~ò4ѦM8::ÂÉÉ NNN°··äææâï¿ÿÖû³wï^tëÖ Û·oGëÖ­õæ;íå;½g6{o* Jª+$ÝŽ){o-í‘2Ž12È‘ÏØÓ{)÷1רìàê`+ISöÄÔqô@᩟àýþ·ñøXª¯™õ€P( å¡°råJDFFÂÃÃ…6î€WWM0íÅþXs®Z§°iäŠx%$v|Y}*À£Z¶Çwÿ)ô ߎÁÝkAnþƒ¿rÿAÚ² e÷jÞ«PÀÆÆ•••ºŸ½¼¼Ð®];Ì;³fÍ‚]ûÄN{ùNŒ åg˜C5äy1ç8B׈Ý+ÇC#õôž»oRî jå†wK0¨£§à{ÆWŠìR÷Ÿí‹KÉÒ+'Ì®ö¨&ªr:Õ, @y4¡…B¡PtXêäõãí‡1ïýÐÄË8û ž\ug² à¥Æ#''À0a2ì1•Ž.€w·ê?¨N$oŠ"ĆuBü©tĺ‚¡ÜлE}TTT E‹h×®Z·n-)Dn¸W1æÊ+ÇxºÖ”@_1..« 1›‹QîMU2¥î/w/¤Üg¨A!߸b ©ûÆÝ]ˆ»‹½./„1FøæX¹óº^£Ñ óòÀ©è¾S=h, …B¡è°T9ÖŸ~Ø;!Ñ}ìììpzfÈš18=3€ôŽØ1‰°™‹ˆ˜D£ä`*Pîá]]…ÇÙsG ÄSO=…}ÅîÈkÜGíðÆo`êÔ©ÈQwÄméØt:KÖAeÎx<õ’År^(Ö 5@( …¢Ã\ ãØ„Eÿ mÚo@ǧP¥ª¶ÄÆb¹=9-ÁöäLƒóò)?Œ‚;¾^Çp€íRB¤ •s5e½r:§[ªë9{_˜fzBÝÆ„”ks½WÜýåÎÇìERF¾d…yr_%t½¡~&쟅Œ¡5°ßM¦_H˜Ÿ¼ÕÎX32“ûúr†ö×\¥wå>G¡ë¯_¿Ž×^{ .„CÐHTyv”-¥nC  …B¡è0·Žø¸m@y Ðy ¼Ô¢×RÜlTº¿…”*æó Vn²NÁñ@É+tWf)†ÊÃ:Ý‚ë¥a7ÓBH¹6×{ÅÝ_¹Ï ÷‘Ú7ƒ;/ûgC^1ÙØÆ{ßÜ]ìõþæ^/%7G.ܰ39Ï‘k@¯Øwõ{¿ˆÖmÛ"nç@ß—QÚu¨¨ÑGy4Q-X°`Am A©&''ëׯǤI“àééYÛâP(ŠÉ<»æ0ÊF[cô«qpê3¢×;Ø(q!§‘Á¾ðnTãûFÎv¸SˆŸëªSŒ.äât×¼´!™÷Q\^…k‹^Ä{?$ó^Ç%:!/mH€ƒR7w€w#¼3 ¯,lyƒZ¹á½’u÷ ÝÇÈv!§6JHˆ£­ óCºœChOÄà[“1°Ç™Ü×GtOL•Y Üýšï9ðí ÷a_Ï~fÜ÷‡;/ûç>mÜE÷àLÖm$^ÍCŸ6î’÷è­í§Ap³¸ óBºˆ®‰+牌|•Vâ³#QßÁ¶ÆuBc˜ú,_ڀ̛ø}ç·Ø·2åÙW í>ªÁo£²q{(” ¨ìD¬ ª¯™õ€P( ÅbTý{¸—€ÄŽï#²È;):Aæ~.õܘSb¹¡>lY˜²»Ì8†æ0TAÉ”P0CÈÇP¨’¹‘óÞð­EìË'áÎËüÌÌ#–¬-eO¹ûÆä‡p{Á‹ /+©Ôz„Æ0Å{UYY‰'KÎAû>жã©çF/¯zŽ@¹ÒÞjg|ö„^($åñ€  …B±>7ÿ€¢¡'î5˜DÑ1ElöÞTƒá BJ¡!‡«„ÊQš¥9|²”UiLVÎM A2„)9L‡osäƾµˆ½#Æä“Hy¯ åˆð;¾ªVGÔ(,–@Ï/S;ÙAíd'jhÉyW„ž!ñññèÔ©¶~¶£^‚ôË—ptÇwÝ·+TJÂý½-’³D©P„B¡P(!;;©Çº  D\JV EIJå!à"@’’“åÛ[à|n­}†*ñÑ†ÝØ¼y³®i§Ey¼ …B¡P,Âúõëaooáaº°®¢$¥òð@¡[ÚM’’—’B€’ Mq¥*¬–¨ƆQøCÄP¢û콩:¹ÅB×ÌY*•ñ8ÍÞ›Šè„t4šF3ãkì”&¦’CU– ­Ç˜03SÂí¤(è|×rKHKy¿¤þ~°Çsw±—<±'nÒ¾»‹=T£ósO 8¥•À‹³¡ú>6gheMy< IèVMj¢P( xùå—1jÔ(ô‚߯æáŸü{H½qi¹…z‰×B‰ÜlØÉÄR«/åâ¯ÜB8Ù©ðñЮ’“Š…æäÃÔoæþ>mܱùÕ' &¡WTi‘[T† 9…8–Ü¢2œÈÈǬàN¼×KM»>êPJ+5(¯Ò éj> J*PZ©©±wb{eh™çñÓ_Ù¨ç`‹„ÏÊJ‚6&IÚ\Iòbï÷»ð˜Dh´oaÞï¾”÷+¨•ŠË«jÈÊŸï­í§%Ï#ö» ¶6vÒþ¯c;ã£÷Þ9þîUî¡o¡$ ¨çÎûûW—!„ ==;wîıcǨ¾fÔB¡P(³³sçNäææbÊ”)Xv( %((©À¶³™5¯åÆØK9½ŽßÚ/Çàþg£@ÏsP\V)/çDXî)º1%xéžîõrJ¥ ]¿8´TJþkÌ-šCÀEJhãõ`ˆK‘×ðÑü漇©Þ#@8ÜÐØB …æfæñkÞPVèž¡µñyªF6)…¯¯/òÿâé×µ‹ÞžïF.Xþî6ªNçxÜ¿¿ýö–,Y‚çž{nnnèС.\XÛ¢Õylj[ …B¡3BÞЦmÚãbò)8::ê[× „ ++ IIIº?©©©Ðh4¨W¯zõê…iÓ¦!((vvvèß¿m‹\§QB ü/ò°HNNF=pöìYøûû×¶8 …"™ÜÜ\ÄÅÅaëÖ­øã?àää„}ûöaÀ€ªãßãR²à×¼!òî•ë”Y®‚m¹×sïÄ•i©ã3ë óó’¤TF'¤ëN‡v“,{Ëy»‘YpÞjg]yW©÷0ËåÜkN¸{)ç9ˆó0‘kÌñ­±¸¬Rgô²•zK¬…ýìÃü¼L6@ÙpŸƒûˆ÷‘¿k%ý¹ßÎ1ƒô—òòr¤¤¤è999€víÚ!((H÷§cÇŽP©Tº{©¾f:Ô±"è M¡PêwîÜÁ®]»°uëV=z*• ƒÆèÑ£ ݵBŠ´\Û…ÜØL‹ÕUvªZaðz)ró)ÚÆhŒ¡3¨£'^¬V¨ä=–ÂÒÏΆŠ\cŽo1‰Øžœ lU:cäÚ¢Í.3Sò˜OVsÎU^^Žf­Ú¢ÄÅŸmØ\ëï–rssqâÄ ±qöìY”——ÃÁÁ={öÔ½zõ‚»»»èXT_3šB¡P(ID'¤Ã+r^[ð9^xá4nܯ¿þ:!øú믑››‹={ö`ôèÑzÆ ½i w>n »%+SÉÉÿóó‚RQý?Q¾ªP\¤ÈÍÓ/7WÉ·qu°Eìø>’+(ƒÔýâVL2׳“›SÃ\“È+·Ðû¦v²ƒ½RRî ßsNÊȇ–%•úe¤ÍÑ(’[vyÍÈÞ~6ì:¦Îõòû qçf6ÎìÞdÕÆGyy9–,Y‚Ö­[ÃÓÓÇÇöíÛÑ¢E DEEáôéÓ(**±cǰtéR„††4>(æz@¬jQS(kÆí…i¸½=PUŽÀÀ@Œ=aaaðôô´è鳩'æReã›Oì^æz²eä í„Ã’¤®dLØ—¡q™q¤>Ky>˜qÕNvpu°5¸—†¼Æxé¤<±ð;s„ Ú_î>™ò;ÚrÞndæÜ‚rË{˜øJ¾þúk£Æy}º®¥9Nr¹˜ËÛ!U6¹=(˜ÓqC'ãìjîit\J–ÁÎîbrêÂxC,QíIêóºÎÔ®ç̸jT‹“7ÌÏK²7ÎPÕ4)ïÖä¾>‚ ÙÏK¬ÏŠØ|†žƒÜ:bµrƒâÊ ¥°Ö.YYY1bŒfÍšáÏ?ÿÄúõë1räH³ó@û€X´…B±V4 >üà} Ó”7ïZ£g€œ¾ Rûgê“ ©²ñÍ'vo€w#Ì î„YÁDÇe÷Z`úw(4mà„6n.¸Y\†Á=1B –34?]è ÓLpqh75ÃgâR² Ñ½†|b!6ܾ&¾ûå&ÿ‹}Î{|vò7ŸñyÅe­Ø±u1û ÀàÚ¹ïó3€{ÁŒÃ^çä¾>pwu€–T'®›²¹ámo6…ýþ帗° ßÿ=,X€ &`ذaxê©§³þàÛi _OÊŠ1)üyÙòYŠ]»v¡OŸ>¨W¯þüóO¬X±Â¢ÆÅÂÌ™3k]‰BjOK*P†Æ·6CÃXÄÖa¨÷HEEÚtê†W.AáÜäþ]tîÝ_¯XŒ   É2ð%ì³å0µ§Šìû¯Š¡°'¡9…Œ"îõìnê+‡Wërz¼”””`ÿþýˆ‹‹Ã{÷¡¢¬-|:aÊ„W0mÚ´:å=ؾ};F…={ö 44´Vd úšéÐ, …B¡ˆ²ê`2 qéž Àà m’’D+·6P3ÄElcúT’Ahï䆤ÉÅÔž\ÄÖa¨ûº~Ú¹¶¶¶xwÒ|ÿý÷ÐÞ“O>‰:àùçŸÇÓ#ÇA=è5<5ýS4¼«¥Ö')#-Á¶ä̽3Äö“ý]DL"l¦Å""&Q÷½¡~ìû …=± 0 _X Þ!=.%K×MéchŸ !8vìžçújŒ9;~;!cß•+WuùfÍšU§Œââb̘1Æ «5ãƒb¨B¡P(Q–ÿ˜øö¯»ˆNH·¸² H3&¸×SÙIlSóNøæ|{gÉê_|•½¸H1P»víŠE‹áóÏ?GëÖ­qþüyìÞ½ÁÁÁÐh4H8zwã«#‘óõtL¶;lÕM0(âuÌÞø#ÔÄáújÅ  ¤¢Fn‡ììïùªŽ1 Å”{æy¿r SãÏÀÝÅ^ÏÈ`ö}jü]óI¶œBM¹{æç¥p²Ué>ÚgFƒ7>þÍÛ£ÿþ8wþð0fHØ'HiÜmÚ´]—µ²`Áܽ{«V­ªmQ(&BC°¬êÒ£P(ÖÈôÏ7aõŒñÀ+ŸÁ©‘'înù˜k)9rBPä†>É_ΜÆ"5¬ˆdJõ/)UœÄ  QUU…¾}û"//©©©pvvÖ›{é/à×P‰?Î¥áÞ­lÜϺåÕÓЖ ›m{>½žP;Ù€hnßóà“_γgö(«à>ØÊ”“ î.(*«À’J€­R-{•%•Ùï…¡0®ýZãŸ@|Ìר*Èšù£ßpé] IDAT,˜ü2Þß‚Ò m«C¸êB˜—óçÏÃÏÏŸ|ò "##kUª¯™í„nEÐΚ Å¹šü;öøè ˜?¤+ïur»k‹Ýc¨{³¡Õ\„:V3óœÉº­'3¾£­ §³ d­ÉМ†Ö.„X×söw‘Á¾²»eK»¦ð˜Dh´oa^HY몬¬DJJ :„£ù6˜t(—r 1ÂÏ g²nã÷«ùxµ¯/¶Mj¯¶¸`߃ÂÇã/â”ß.þ<õ­¿ðÍÄgѳ{gœÈÈGE•õlkÌÍ÷è„tL‰;»©Çphå8wì ´M;¢ÞÐ)hòt8æ†Ä›ýÚcö Î˜?¤+fî,û=¶&Ož ­V‹ï¾û*•ªVe¡úšéPˆA-j …bã|ö]ä?ó®èI·1'þÆz LI$–r²ÏMV;ÙÁÕÁÖ¬Iâr×þ°«ù’ž…Ɣ۹!!!¯¿þ:þùçDFFbIA[h6P)¨Z¡¼Ô8=31‰ÿgï¾ãk¼û?Ž¿Nö!¨˜‰ÑX±GU¤(U-m BÝ´n¥FUÕ,mµˆÑA©Tú«ªU¥öŠM©¤fŒ $ˆDÖÉùý‘žÜI$f’“Äûùxä‘uÎu}®#wïë}>ßÁ‚?Ïþï I ,iU˜Y³f±~ýz4h@¸× \)Rb…j¯’òEø­Seš ûŠØóapù†Èó˜LÉ@ÊÒ´V6¶Ä›¬À:åk+[ 99kWg'¢“ ¨³#ÿDœ'éÚEÀ”òØ8•­LuïÚœ³-Iœ‹;QñÉw¬¦•v~Ò½ö)ýæDüþ5\SÞºûPA“ÉDûÉ‹ù}à WNÁ•S$_9 I )K»•ƒ’•0¸Wâ¯ÏR½zulllîºüoFÑÑÑ|8w9?,_—áÑçþ&ôè10%ƒµ +Oåê5¹hW’X×rP¼,³º6¡¯¯ņ-N ¿×&wJwÜÏVîåÃ?äÖÞ?°v+E¿‘ã˜þîëw½Þü쯿þ¢nݺlÞ¼™¦M›Zºݯe€AKö’h4Ñ ¼O–pIí<˜Éýì’ö]ý7}žäçŸfàÀÄÄÄ`ëÓ•È >X[[cLˆ§ÐÕ¿±½Áð~o0ü唀Ópòì ¤Ay7N]½EdlÂ×dmeHÙaÝdÂ*ü/Jý 'ãî݈ÛÅ*ñJÓúôiû îî†òÕâ?X¿u;Öÿœ"æÆõ”.¡d%LOT¤dåŒ h˨?Ž—d¤s=t¡ëQ»MÓÖüÅÄ«ˆ>Fì…ØF†“øÏ¹”Pbe ÅÊQ©š7öîĺ–£h¹J\œð*cXÆ·¿¬ÆåÆYÂîcEšuæòŠÙØÙÙ=pùÉ—_~ÉСC¹qã–.G÷kÙ@$Ñ´ˆä%K–,Áßߟg;õäD•—éú‡½i{ЮJvì§‘ÛÃÂrk»½^i»0£—H½Ùw²µ&6јzŒ®õSnÆïg3>óq\“nÒôâ,_¾œ:0cÆ –ŸJY‘«~qVL}øsÿî¬m0ð\«V¼öÚk¼üòË©ÓÍÝPÔÉŽŠÅ ¥vLþyÓ¿õm;u…ðÝàÐZˆŠ€¸èt¯ƒ•£ É%*âêY•:õê³%ºŽ.Ei_«l®t¢ÌÒþ{ŒZº‡¨s'àŸÓðÏøç4VQI6&ae24-11¬m¡„'”ò‚Úm˜õúsj¨UVüýý¹xñ"[·n½÷ƒsî×H¢?hÉ+1—iC{ÓЯ ;W/ÃÊÊ2«¶çö¦‡A!a¼»t_¦ï|ßÏssjŽÆ£ºWÇÂÌ8¦ H]Ý©Ay7þ¹GÐÈlÕ­èèhJÿçnØÇB(U¼(3gÎäå—_N=×ßÿMÛ¶m¹qãñϽÍMÇ8…ÿIýÛG ÁÙÙ™—_~™×^{v嘼áø}½~æký':ŽØD#E­“ØÐ«6/^¤jÕª¬>ŸÈ¤uGóÔ< sÍi‡¢}ßµ‡âóE+Yz‘† q4É•ðñ@Ê(±ä/»Y¸òœg2™(]º4={ödâĉ–.ÐýZvPÉCô-"yÁþýû©ßøLî•)Úq$…såf-³ù9yãžYØH{Cþ¨C©ÒΛØ~új¦“Üsë&8« 7kËqüß’mSîhIézÜN4¦7';ZW+Å¢}gINLÀu¢8v Cä9ˆ½‰ÁÖ+;ª—-«U";wî$11ë"Oà׺K¾þ WWW.]ºÄüùó™0a%J”`ÅŠ¬¹”îõ8}ú4?ýô?þø#aaaà\ß^ï±åËQ÷}͇•=ê²Ê–’KçGçÏŸ§\¹r,[¶Œ—^zÉÒåº_Ë yˆþ EÄÒNœ8Á3Ï<ƒS1wŒ/ &Ùæž“¯³KÚ›ÿÌ&Þ>ŠÌÂMÚó¥Ûð07ª'OždÔ—sXµûU]LDG^ãèép0™0!yÏ28½·6½?jèˆG ––fé9rooovìØAãÆ-] ûµì`céDD$o¸té­[·¦hÑ¢lݲžâÅ‹ßñ.rN #:.ñŽŸe×—ywkó×}}½hR¡8áÿÞ”šçôõõJ7?Âsì¯Y©1g% a»(vùçÿ>н½=åË—ÇÞÆÃ1ÉPº*˜’)}ž%ÓÇ“””Ö¶,xÂÊ×ï–4©àñÀ×lòtþz,ÆdSêõÜMÚëJëh¬mÊõ^c"Ä^OùˆKù|;£½3+ 弡N[(VÜÊ€#ð¿ÉöÓWSW K¾?C¯óçéÒo;Ö­ÄK“&Møê«¯ð÷÷¿#xdvíƒÎmüXôD¬¶/ rÕ7 ŽäÍÅþíØÜóœó×ùIVÿv‹˜˜”ÿ:99Y¸ÉN ""Â7hèëGÄ?7øè»Å/^Ƚ›s@°2@G;Æ¿X;õF{À⽩µÀÓ­ªóî/û¸h¤I…”kÛ~ú*&RÞÏl•#óÍ´ùßd2qäÈ–,YÂ'3¿ÇxõØ:éÕ€%K–ЦM›ÔIÓkŒ‹‹KYÅè×5¸D!|ï2Ø÷;¿zŽr‡þfôËÏÐ××+õšï*Ìó.Òv@î÷5Éø¸—ÚµcÙÆï¡ˆ;¯&évô&Ù+ܜ퉎O$ÑhÂÔO3$«äº;Q©þ3$ÅFcªÙšÒOµbÛŒ~YÖf¾öÑˤ«q~/æ÷ò!àO~W„›ÛæãÓ®ÛV,¹Ë¿xzûM|~ (€4‚•‡¨¥'"–G›6mÙµ—äïãñdÕ\¢’v8Ñ¢}gI6ýoøUPHïMªd¾ñÎlOŽY&×¼©`VC˜Ì³³¶"!ÉHu›ët(Á’%K ÃÕÕ•Ûej“àYÊ×dVÀ3|s;yÙvÆOþ”›{ÿc…ê¶àÐâY¬:—ðP]Ÿû¬ŸÙãlÜ+bt)‰ÛËCh]­TºÍþ @—ú6 99;¯§0††ŽáV¶Â=‡´eµçŠùç7oǵk%l_€kq⮜³øŽØ’óV®\É /¼ÀÅ‹óÌ®ãº_{t–YÖDDDò„¯6¥X]?¶ïØÉO¿Áãɪ¹:DÅü®÷ê£d|7¬¯¯3:5ÀÍÉŽè¸DF/?n“ Åñûkê ª¹s•­ªãá–Ò¡8CðþðLßÁ¿y;Â7ÂIù þo¡Ó„+V¬àòåËL úúM*| kß„Û~æÓ_¶PÄ·¦¿wòä“Or}ÛR†µ¨JàÚP‚BÂîûxæk»×¿]fkÛî% g÷ón£l?}øw>';¾êÜð¡&:û…ñäÞ”Mý–O¶7}ž¼ësúúzqf\Æ¿X;]kC9{òo¢~ !ó ZS:|üƒÂÇcB‚Iø€[ûÖ`hÙ‡–­ïÿ¦03Wîk(‘yl~Æ bfç¯ÇÒºZ©tïÆ§Ý/pm(ÆdÁûÃiZ9,Ý|ŠŒs Ìõ® ¥“{ `éÒ¥DDDàZ¬.Õž¢w÷.Lékï²;;;3aš6mJÇ.]±^<ÿÀY>>($Œ‰üE‡±‹çÖ­[Ô¨QoooªU«ö@ﻺº2mÚ4üýý)aW c‰8ØXS¢ÃCwÃÆ zƒÀµO§¾æ%»}È•AŒëù ¡C3fÌ}Õ8zùâö­LY‘«Ë°±»¯N±±±ØØØä™ð!ÙCDDä14cÆ >þøcŠ´èÁõ*MS‡Þ<ìÊSW™î9™:-s0h8ù"Ã#1¯od©sCÌ5f|Ž™¹«a>gÚ9#kéëëEèî¦öïMÑ'Jѳ[^}õU$còúcxÕ­n‘!>mÚ´á衃téÒ…ÏuÇýöÞyç¾Þúwº— +÷sîÛáL¿zÇB…I°¶ÇxãŸbÀP¤$6ÅËѲIþÓ¶ÞÞÞxyyey×±cGj×®MÄöxôúü‘WËøoóQß&zT§Öå­|þùç,X°€éÓ§ßs_‡äÛÑð÷Nhô V¶v¼9¤ä±±±~U)€ˆˆ©»BéæR<È hfËœ>Èò½æàs.*eއ••²EœÒíÓažóa¾9Î,,™¿Ï¸|pÆZâââ˜5a ”©†K¯OøìãWèöï°®½þìT®\96mÚĨQ£x÷Ýw™:u*7ŠT ¶X%Þ9y”þ‹ÊRtç< ×#<ýG~¾âDxÔmʲ"ñŸs\:}Sä9#ϳféBþ˜7 [[[ªT©‚··wêGõêÕ¹zõ*sçÎåÀP¿= Ùgûµÿ/øsbä  @ûöíy饗˜6mžžž™>¯QäNÖ`bòÈÁ¼÷bÞØBrWlllêêrRp(€ˆˆí°¦‘Ù2§ÚA9ƒ”•—ì­­hR¡8ÿDÇ—dL·›¸¹Ãbîx˜‡X™—×M{¼Àµ¡œ×áŽZ:õFÒõ+¸vx‘Ïy?òõg7[[[¦L™B‡øý÷ßY¼r-'w, nkØØs-)žü‘îÝ»ã•.lÕO¶”hÄÁÖšñ/Ö¦Sõb9r„ǧ~¬^½š¨¨¨Ôó988@³^àÝ‚½á‘9zm•+Wæ?þ`éÒ¥¼ýöÛT¯^±cÇ2dÈlllˆeãÆ¼3u6'·üN­Wû(|<ÆbbbÔ)€4 =Ѥ&ÉIýõ¾¾¾øøøðÛo¿å©1Õi'†[ ÙDêž æ%Y3Îù0wG ¤ì]ameH·doV;š¼pc»·…Úmðxáõ|3™ÙcT0áÇ@Äq°uÀ´yÎCËd2qéÒ%Ž9‚››ÞÞÞº„Äd¶V¦d_áwÍG}Äç_|A²Ñ˜þ—…Ÿ€*>X=õ Æ/»åJ=’÷ 4ˆM›6qðàAK—’J÷kN‘Î<Éyõ§¸”(Å‘Úÿá»§óÜÆl®)(.ÑHl¢‘dSÊ׿áWi‡Y•(dŸ@ÌáÃÜ%1ÉÊl8™ÉdâãQïca Û[¼Óñ F>_‡A·’H,åEƒònt,ƒÁ@©R¥Òí«0½Sƒ\ïþ¸¸¸0uêTæÇxqü+kþÓ¸k"¹hpƒÎõ<î} )°4¤`Ò> ""˜¹³pöäß„îÞJBÍç9wËx×ý2r£&óþikŒŒMÀÅÁ–öµÊbe'[kl­1&›R' ›CÅþó)ǬþݯbF§Ìïå“n¸Uf{^üòË/$žþ |{P´pá<Â¯¥‹¤Üˆí?õ@û„Üïñ3®–Æ´ÆÚûYLU›²ÑÊ‹1][áQ¬³r)84¤`R)@‚BÂ(6l1ÎCRlØbÞýeÆd^G!×¢|0°wêÆ~Ù}›Y-iƒ†YÆMÍKèš;ÁûÃI6A ‡ÔMéÌЛT(Ž›“öÖV¸9Ù1Ó¿!×&wÊô¦yˉ+œ¿Ë–Wèú}¯öê‡Á³Ek4N].8?Ѫ:À˜lâÝ¥û,]N¶1o:iŒ– C’·hHÁ¤""R€ ú·“›`$òÒb÷­†UÓàÈFõïÇÀ–5qq°%26!Ç» iƒFÚ0’±3aþ~F§l?}55Œ¤½5O@ß~ú*.¶Ä&qq°Íò5($ŒžMÝ`Ñæ}pó ¦j~v´Ë—7·}}½0ü»Fq\’ñîÎg:$3‚U0)€ˆˆ ‰Éÿ®+ò÷N˜ÿ†­?bŸÍ =ú2jÔ(‚BˆŽKÄÍÉ.ÇÇú§ çc¤½ÑLû}Ú0’öF´I…â©ócÌ]‘´C¹Ìß§ WöÖV…„a{õTÊJVÊ•PN ÃÁÆ+š!‚IDD¤€ ÃÎÚ ­…µ3éÖ¥37¢¢ˆ ?ÊïßOÇÙÙ9uÃ@s÷ ³ù™ ›zÐ:<Çþ pG°È*ôdöœ´¿ Þž:$cW$íP.ó÷æó¹9Ù›hdôòX]9…Uḕx"W:@9!pm(±‰FÊuÖÜy,(€L ""DàÚPNì…-sygð`æÍ›ÇOE¤ ƒ@fó1Ò~ŸÖý†“ŒÇÈlÃ@ó±~ØŠçØ_½üÀç5?fôòé†e™e5”+íЭñ/ÖÆÍ)e)߸ aJVJW’ŸVÀ2»W)hbbb4 ½R) †6¯ŒÍÎTkèçŸ~Š••Õa ãð§»ÝÄgt·p’Ö½BNÚŸïO]N7ãyÓîõáæd—ºL/dj2›CÐ×× [0&Á•ÓŸ¨ÜÙeÉ/4OB7ê€L ""Ħ¥?‘u™ŽF`øw¦ò½Þ17ßÐY2»ßwßïrÒþÌ¿ny<ÜœÿbíÔç˜;M*ÇÃÍ™ÖÕJq#.1ݰ©û C2„Ès`L„’•S7(‘¼O¤`ÒF„""À™3gXúít¨áÇÌñŒû÷ç}}½îëÝòÌ6íË(í±2ë@d%³îVWÚÎLjVÕSwHO;+í®èA!aYîznž?Âå“`e %<ïùZˆHÞ¡R0©""’ÏÅÆÆÒ¡C ÎðT'¢ã±4Ÿ€¶Þ÷1F´ªþ@ûƒüë–O]Ò7m—Å<±>26áŽîÆ»KÿÝåòI(Vƒ­«•ÊâÌ"’—Fâãã@ ‘|lÖ–ãªÓ‚GޑܿÜÜÜ0šLéö¿¸æ¹÷Z*ã𨙠vây±a‹)6lñ=ÃŽ9¹:زúhD¦¡gD«êX2~\’L&¸p ƒ{eLº«ºˆäm±±±š„^)€ˆˆäSA!aôù!¦¿wB‹>P¼<.¶t®ç‘Ú1Èêy™­fu?]sçcûé«4:($Œ·‚÷p62†žMíXôÞs×ÒÓ#¸s¢:¤„§™þ Sç’¤Õ¹žGJ÷#úžl짤DòsQ¤àQɇ‚BÂè?õ;LÛAý— òSXRBÄü^>$MÈrŸˆ¬†OÝOäa—ÿË6L[çÃU”úód™v4Òn4h¨žQV«CÍïåƒË¹=àT„0Û²DÇ%>PÝ"b9 —ˆˆH>ôñÂu$¯žµéÒï]L3º1Ó¿aꉌÒv=î"îwÕ¬ûí|˜L&Þûj!?~¡aûBø}*$Ä¥>¦D!ût™Œ >h·%í5{¼ÿ3‰Çv`ðz V™Î‘¼)&&e1 ‚GDD$Ÿ çæâñàè ­ÞbÇÙHàîÃ3kº['Á<ù;c¹ÛF„ |ºråÞˤ_¶rüøq&L˜@•*U˜Ú¿+Æ„x¬:ƒö#àÊ)X> âSÞÝÜ>*˹2d*pm(á‡öw3’áý{cÈbžˆˆäMšRpi^‘|äìÙ³ÔÚ‡[ñ‰Ð~4֎Ι.M›ÑÝ~g^Æ6.шƒ­5@ê0¬´!Åb&®>Äù“Çøbá$]:Á·#¸t:ŒÄÄ”áM#>ƒ€ÁÆŽF-žçí·FóË5ž©øËž'¶ýÈ”²lE:Žàùú5Ø~új¦s;¤ë‘qià&оd…J–£¼W І¸cžˆˆäM‚Up)€ˆˆägΜÁÏϨØè0«ÂřѩAºÀﶇüo¾…yÿÀµ¡üGl¢€ØD#nNvé&£÷õõâúõëøÆáòÊ`".†1>>0€["ËyñÅoñ×5#¿¾H§úXrð"WœÊ°×Á™žõ0òßsúJ= ýll`Ù$®ÏHQÃÙzù®MîÄèåOÙm ŽÇ6°hÑ"fÏžM÷îÝ9r$^^w¿¦¬6A̸9aTènHŒÃôäÓ@æ+h‰HÞ¥9 —ˆˆHwúôiüüü¸v;‰Ø¶ïR¯¢'ÿÜŠà›éŒÃ°F´ªN¿E{R?«sCÞôy’íÛ·Sþà"έùnßâD:Œ?ž.]ºP¦L™ÔÇz—s¥í¸ŒhUýމ߿ӤɶoOó[Y½t.sçÎÅßߟQ£FQ«V­LÕ®íi;@åG,àVÈBlJW¡LÅÊ÷µc»ˆä-ê€\ ""yØ©S§ðóóÃÎÎŽØgß%ÙÉýç£Hšp_ÏÏØ-ÈxÃþÝŽ“ì ÄÛ1– k~¤Ò~âôéÓ”+WŽao [·nx{{?TíÏ—6ü˜ç9öWÎÝJÆÊí)Nú€9sæ0iÒ$j׮͋/¾ÈèÑ£yê©§Ò÷~æ³Üø}ܺÆè/¿ãÃnmª~±¬ØØXlll°³³³t)’Í@DDò¨“'OâççG¼Éã #¨Wº4ûÏGe¹Á`f2ë˜CI“ ʼnˆˆ Qدì^»œs®®têÔ‰îÝ»ãëë‹•Uö-”˜Õü”´aÂÁÁ¾}ûòÆo°`Á&NœHãÆ±ò¬Mò³}èêS‹ù½|2Ï’öz#ÿ\GC(Öþm…‘|ÌÙÙ£ÑÈ_ýE:u,]Žd#-Ã+"’8q‚æÍ›ãèèˆí«ïs!ÉnÅßuƒÁÌd¶”màÚPÎ^½É‚ï¿æÂÌþìÞº‰o¾ù†K—.ñÍ7ßЬY³l w“Ù’À¶¶¶ôèу³–bÕfÉWÎ@ðX­ I i–î5/\èÖ%Ø2Cõf˜¼žÉrGwÉûºtéBõêÕéÓ§F£ÑÒåH6RÉcÌá#Á`CLÛá4­]垨³Ú£#³ü®å“±ýy,lý ª<SèÝ»79vMcò†ã$WjÇ£ ÉK>ÂwÀàÎ`¸6”³—¯qdî'Pø Mÿs×ÝE$ï³³³ã›o¾aï޽̜9ÓÒåH6RÉL&‡b̘D ‡ IDAT1<óÌ3*TÛWÇp!Ñ>ÝNàY»mB˜ö_ý5ŸõïJͲÅpèú 4ë…“‹kN_ÞC1‡ŒY½Û`xe xÔfëÌÑŒ?ž7}žä̸¼éó$W¯^Å¿TŠöµÊæÖå>´óFÞ]ºØÖ±Ý·Œ÷ߟ/æ,âjt,\¿ñ)KuZ[[3gκwïnɲE$›Ì›7Þ½{S¯^=.\hér$)€ˆˆä²ÐÐPZ½=‹n‚¨ ¸ººRíégy¢NGÆü·36¶v4þj'M*O}޹Ãáæd—é;ûw›˜ý÷ßóꫯrâÄ ~üñGÞ+Dxd nEaL6±ýôÕœ¿èGôé+õRÖäñìÛÔ”of EKƒg=Š—õdýØîTªT gggK—*"Ù`Íš5¼þúëôèу   ­„UÀ(€ˆˆä‚3gÎðã?ÌáÇÁÎ*Ô‡&]°òªG˜-‘± LÝt€³‘1œ¿›º‘_ÚGÚ¡Xi÷·È¸âUPHc¿üžè•3)_¦4»wïÆÛÛ›[iVÁÚ~új¾¦”¶â¹6ÚÀ|ܹ!µji‘‚âÔ©StìØ‘Ö­[3{ölllt»ZÐL&“ÉÒEHŠ}ûöQ¿~}þüóOêÕ«gérD$›„……Ѹqc’’’hß¾=þþþ¼º*ŠDƒuêc¬ PÄ1eràŽ€q [ϱ¿r627gÎŒë¤ßóØ”ÄÀ¡Ã0í[SÕ§‰ØµŠÂ… çÞEç ó^@º]ØE¤`hß¾=û÷ïçÈ‘#¸¸¸Xºœ;è~íÑ)RŠˆä k×®ñ /àîîζmÛ(Z´(Ó‹¤ÜDÇ%‰K2’lÛÔ›é{ÝTg6çÃÜ%ˆˆˆ Bã–˜ÎÃàÓ©ãǘðYï)""ùߪU«øí·ßΓáC²‡VÁÉ! tìØ‘¨¨(~ÿý÷Ôð)7Ñ×&w"æó.ÌôoøÀ+6™—×Ò­Š5âë%”óªÕË”ìñ1_MK¿¦U²÷ÂDDr@BBo¿ý6~~~tìØÑÒåHRDD$˜L&úõëÇöíÛY¿~=+VÌò±ò޾yÞÇÛKþ¤ßŒÅðëp+C±®#9÷Y¯‡-_D$×M›6“'OòóÏ?c0,]Žä u@DDrÀ_|Á÷ßÏ7ß|ƒÏÿv. £Ø°Å¶ø¾wéÎjïHŠåædGBÔeøm)I¹2úåg²íZDDrÚÅ‹7nýû÷ÇÛÛÛÒåHSÉfA!a Ÿø9 [¶£Gü°«?ÑoÑ"ch—î»m2Ø×× [Øû+XYQ§ïDÂ'hŽ„ˆä+ÇÇÑÑ‘>úÈÒ¥H.Ð,‘lÆ[Á{0MŒJNýyðþpÒ®9he€!¾0ùlú“§}›rø¶Ó+^…„—ˆ›“ÝsD~ØJðþpj¸áø6^~ó–~Ô9ǯQD$;mÛ¶ÿû¿ÿãÛo¿¥H‘"–.GrˆˆH6 \š4 Vü¿â_·< þ<ƒÍõ‹Øž?„GÌ)†}ó'ñññ`0°â¯¡ˆ;oý^°^]™Ü¯ 666® %267ç;ºÁûÃ1&›8ôÇ"\]œ™ø~._­ˆÈ£1 8 Ы—æ­=.4KD$5©P+¬­iTþïä½ãmOÕõãIúi8¦]Kð,^˜ÀÀ@ÆÎ[I¹aóñ8C骘ŽoãóA¯Q´ø¸÷ø˜…ì±2À?ÑqwÌñ¯[«„X¬C7ðÖ[o¨¥vE¤à‹‰‰áÕW_åÀ̘1++Ý–>.ÔÉ&A!aï'ÙN%ÊptÛ:Μ9ÃÂ… 3f uêÔaÕªU4mÚGGÇÔç}”úüW™¸æ0]Ë%3-ð./ø„^x—ä²5ˆM4¦îpn6¿—5.næc’yûí·sùjEDÞåË—yñÅ eùòå<õÔS–.Ir‘ˆˆH6 \Š1Ù„µ•&NaÆÀ.T¯^¸¸8†ÎG}„]–ÏO»o™ŠUÞ¯ñ+>¥P‡¡ØU¨sÇÛ·o3mÚ4^ýuJ–,™£×&"’]BCCyá…HHH $$„ºuëZº$Éeêu‰ˆd“­ªãáæÌŒN (TÄ„çÞ¦|µÚ¬_¿ž‰'Þ5|d4°eM¢o£”w#n-Œwü©ÔpróæMþøãúôéõk×:thN]’ˆH¶Ú¸q#Mš4ÁÅÅ…;w*|<¦ÔÉ&i;žc%Âî ì^ŽŸŸßCÏÞÞžˆ&ÿ…›ñl™1ßÓû‰‹8ɾ}ûHNNÆÝÝš/ÿ¯/vâ_÷"ó{ùÜû ""2oÞ}šaÆQ¶lYúôéCùòåY³f ¡¡¡ 0@«[É}Ñ)F´ªÎèå8‹aÀO4(ïÆžaÏ[º¬G¢¹"b 7oÞdË–-|óÍ7,_¾WWWÞxã Þzë-*V¬héò$R‘©¯¯kC‰ŒM`ox¤…+É.]ºDHHHêÇÁƒINN¦fÍš|ýõ×tëÖ '''K—)ù˜ˆˆX#ZUçí%’`L¦Ay7K—#"’ç˜L&Nœ8AHH[·n%$$„'NP±bE|}}0`>>>xyyiÉ "R`iÈ’ˆHzF£‘ƒ¦v7¶nÝÊ¥K—0 ÔªU‹6mÚàãワ¯/¥K—¶t¹R@)€ˆˆˆˆpÑÑÑLœ8‘™3gróæMìììhÔ¨={öÄ××—&MšP¤HK—) ‘*99™ü‘‘#GÅ Aƒh×® 6ÄÁÁÁÒåÉcJDDDD¤Ú¾};ƒfÏž=tîÜ™I“&áááaé²D´ˆˆˆˆHArîÜ9xæ™g0lÙ²…… *|Hž¡""""RÄÆÆòÑGQ¥J6lØÀwß}ÇîÝ»ñõõµti"éh–ˆˆˆH>f2™X¸p!Ççòå˼óÎ;Œ5J»’Kž¥ˆˆˆˆH>µwï^||| ~ýú„††¨ð!yšˆˆˆˆH>A¯^½hذ!ÑÑѬ_¿ž_~ù…J•*Yº4‘{Ò,‘|"..ŽÏ?ÿœ &`ooÏW_}Åÿû_lltK'ù‡þZEDDDò8“ÉÄÒ¥Kyï½÷8wî `ìØ±-ZÔÒ¥‰<0‘<ìÀ <˜M›6Ѷm[V®\IÕªU-]–ÈCÓ‘(($ ϱ¿féRÒ1™Lüý÷ßÌœ9“‘#Gò×_Yº¤<+**Š7ß|“zõêqéÒ%V®\ÉŠ+>$ßSDDD¤ \ÊÙÈ׆Ò××Ë¢µ\¿~ 6°zõjÖ¬YÙ3g°±±¡páÂR¿~}z÷îM×®]quuµh­yÉ{ï½Gpp0Ÿ}öo½õ¶¶¶–.I$[(€ˆˆˆ@#ZU'pm(#ZUècüþûïôíÛ°··O÷ÙÅÅ…jÕªQ³fMj֬ɓO>‰­­-IIIìÙ³'5pìÚµ‹ääd¼¼¼h×®­[·¦Y³f888°råJ¾ûî;ú÷ïÏ!Cxã7øòË/³ñ•ÈŸnݺÅÂ… 6lo¿ý¶¥ËÉV """P__¯Gî|ckkK@@ñññÄÅÅ¥ûÅ÷ßODDvvvxyyqîÜ9nܸA‘"EhÑ¢AAA´jÕ OOÏ;ÎѾ}{Ú·oÏ… xï½÷øê«¯˜>}:ƒá‘jÏƒ‰¥gÏž–.E$Û)€ˆˆˆH¦¶nÝJ‡?~ü]wíÚ5:ÄáÇ9räîîî´nÝš Ü÷ò°eÊ”¡^½z¬X±â±ßÿ=­Zµ¢|ùò–.E$Û)€ˆˆˆÈ.\¸ÀéÓ§ñññ¹çc‹+FóæÍiÞ¼ù#3::—G:FApìØ1¶mÛÆ¢E‹,]ŠHŽÐ*X"""r‡}ûöаaÃ\;§HŠ~ø777Ú·ooéRDr„ˆˆˆˆÜ¡P¡BÄÇÇçÚ9@ 11‘¹sçÒ½{wìíí-]ŽHŽP‘;”*U €K—.åÚ9oݺ•|WkÖ¬áòå˼þúë–.E$Ç(€ˆˆˆÈÊ—/½½=»víʵsº¹¹¥®¨õ¸Z³f žžžÔ®]ÛÒ¥ˆä¹ƒ““íÚµcÁ‚¹vÎ püøqnÞ¼™kçÌk6mÚ„ŸŸŸ¥ËÉQ """’©€€öíÛDZcÇrå| 6Äd2¥N€ÜDEEqðàÁG^ML$¯S‘LµmÛ–Â… çZ¤Zµj899±gÏž\9_^ckk‹ ÑÑÑ–.E$G)€ˆˆˆH¦xõÕW™?>&“)ÇÏgmmM½zõØ»woŽŸ+/*T¨O?ý4ëׯ·t)"9JDDD$JLLäâÅ‹$%%Y¬†€€Nœ8ÁŸþ™+çkذácÛhÙ²%6l°è¿¹HNSÉcL&‹/¦Tù ”)S†ZO7Ï•Dfüüü(Y²$óçÏÏ•ó5lØÓ§OsõêÕ\9_^Ó®];nÞ¼I­Zµ˜;w. –.I$Û)€ˆˆˆä!{öìáÉ: ñ÷÷ç¦sI¨õG÷nãÓßso9Ü´¬­­éܹ3 ,È•›áưråÊ?W^T¯^=¶nÝJåÊ•éÙ³'•+Wæ‹/¾àÖ­[–.M$Û(€ˆˆˆä·oߦG4jÔˆ“®ÀK#pye†øp+ËŒ=¹·!`F}úôáÒ¥Kçø¹*T¨@»ví˜8q"F£1ÇÏ—5iÒ„ß~ûC‡áççÇ{g‡‡~ø!W®\áòåË8p€U«V1gÎøøøÐ¢E Z¶lI¥J•òÝMzDDݺucÓ¦M´k׎I“&áç燷·7VV5/‡: yˆµˆˆäuÑÑÑ”+WŽ>}ú0yòä\9ç˜1cX±b… ÂÙÙ9ÓÏqqqlÚ´‰]»va4ñðð eË–´hÑ‚-ZðÄOäJ­kõêÕ¼öÚkØØØðÓO?áççgé’$ º_{tꀈˆˆÈ}sqq¡o߾̚5‹÷ߟ… çø9?þøc>þøãûzìÍ›7Ù²e ëÖ­cݺu|÷ÝwÔªU‹¦M›âææ†ƒƒŽŽŽ888¤ûÈø3OOO\]]sòÒHLLdìØ±Ò¦MæÎ›çÃ’È£R‘2pà@>ûì3¾ýö[† bérÒ)\¸0íÚµ£]»v@ʰ¦ 6°nÝ:Ö®]KLL ·oß&..ŽÛ·o“œœœå± uëÖ¥Y³f4kÖ ___ÜÜܲ­ÖððpºvíÊ®]»˜4iC‡ÕP+y,hV¢–žˆˆä={ödÆ œjé"RÀém ‘&($ŒSgÏB¥†$¿8ÇžŸsûöm.]ºÄ®]»è2ä¯Xƒgå'y¡×’’’é|Í›7ç7Þ`ذa\¼x1›®BD *‘&pm(ÜŠg7œl­Ѫ:ƒ’%KÒ¨Q#v8×Á0jµa圙,[¶ì‘Ï9yòd4hP6\ˆd """Ìð–ÕàV$V.ňK2²åÄ•t¿Ѫ:nE\qkñÎ…8yòä#ŸÓÍÍiÓ¦ñóÏ?gK ‘‚KDDD¤€ ¨í‰q$;»‘œlbÁ¦½¸öúÇצàÚëSnF]ãÚäN´®VŠ8û"|»fW¶œ·sçÎøùùñÙgŸeËñD¤`Ò$t‘æÜ¹s)_\ [ÿb¯sóßßÅô%¸ó[ì7”†d#Ÿ:›-ç5 T«VíÛ·gËñD¤`R)`pss# Š”òÇÂÿ{@Øvþœ?íߢaÓg³íÜöööéVÛÉHDDD¤€©\¹2×®]#à‡­ï§nÙ¢üs+ž­ª³åÄ‚K?Ió¶/Òÿ©2´mÛ{{ûl;·ƒƒqqqÙv<)x@DDD ¨ù½|˜ß+ýÏúúzÝñ³ì¤ˆˆÜ‹&¡‹ˆˆH¶QDDîEDDDD²: "r/ """’mÔ‘{Q‘lcooÑh$))ÉÒ¥ˆH¥""""ÙÆÁÁ@ðD$K """’mÌKú*€ˆHV@DDD$Û˜; š""YQ‘l£ˆˆÜ‹ˆˆˆˆdu@Dä^@DDD$Û¨""÷¢""""ÙF¹É6ꀈȽ(€ˆˆˆH¶QDDîEDDDD²: "r/ """’mÔ‘{Q‘l£ˆˆÜ‹ˆˆˆˆd;;;@ÉšˆˆˆˆdƒÁ€½½½: "’%ÉVꀈH–@DDD$[©""wccéDDDòšëׯsèÐ!¨U« 4À`0Xº¬|C¹ylÅÇÇsìØ1:”îãüùóéçééI§NèÔ©“ÂÈ}PDDîFDDDÑÑÑ|õÕWìß¿?µÃ‘””@ùòå©Y³&Ý»w§fÍšÔ¬Y“J•*±cÇ/^Ìœ9s˜2e žžžtìØ…‘,¨""w£"""…¨¨(Ú´iáC‡hРÍ›7gàÀÔ¬Yooo\]]3}^‹-hÑ¢3fÌ`Ë–-3wî\¦NšF:uêDÆ Fþåàà@dd¤¥Ë‘Ò²±±áÙgŸ%((ˆ‹/²~ýzÚ´iüyóxê©§¨ZµêC·WíÚµcÉ’%z=D$S ""R EDDЬY3"""Ø´iõêÕ{äcšÃȬY³¸xñ"6l 66–€€€Ô!]³ÁƒS¨P!>ùäK—""yˆˆˆHÑÑÑR«V-¢££Ù²e ÞÞÞÙ~kkküüü˜?>Û¶mÓM7P¸paFŒÁwß}ÇÉ“'-]Žˆä1 ""R Ü¸qƒñãÇãééÉØ±c騱#»víÂËË+GÏëëëˇ~ÈÇ̦M›rô\ùAÿþý)Q¢~ø¡¥K‘øà<==™8q"ÿùÏ8uê3fÌ \¹r¹Zµµ5?ýô ôìÙ“É”«çÏkz÷cÆŒ±t)"’‡h^Éu‘‘‘¬[·ŽU«V±nÝ:pwwÇÝÝR¥Jeúµ³³3ÇçÈ‘#>|˜#GŽpäÈ®_¿Ž££#ýúõcèС”*UÊ¢×VºtiæÌ™C»ví˜6mƒ¶h=ãÚµkØÚÚR¸páG:Ž~ø!={ödÏž=4lØ0›*‘üLDDDrœÑhdÏž=¬^½šU«V±{÷n’““©Q£:u¢H‘"\ºt‰ˆˆŽ?ÎæÍ›‰ˆˆÈt3;{{{ªV­J5hÛ¶-5jÔ I“&”(QÂW–¹^x!C†0lØ0|}}©_¿¾¥KºoQQQÔ«W£ÑÈÒ¥KiÔ¨Ñ#¯{÷îL™2…矞iÓ¦ ýRDs ""’#.^¼ÈêÕ«Y½z5k×®%22’"EŠÐªU+z÷îMëÖ­)[¶l–Ï7™Lܼy35˜DGGãååE¥J•°±Éûÿ÷5qâD6oÞLçÎÙ·oß#wrƒÉd¢OŸ>ܼy///|}}™5k¯¿þúCÓÚÚš72hÐ ºwïÎÂ… ¢L™2ÙX¹ˆä'yÿ¿à""’/ÄÇdzmÛ6V­ZÅêÕ«9x𠃆 2`ÀZ·nM£Fî;< \]]quu¥J•*9\}ö³³³cáÂ…Ô«W~ýúñÿ÷yþÿï¿ÿž%K–°xñb^|ñEÈo¼AåÊ•iÚ´éC·D‰,X°€.]ºÐ¯_?ªW¯ÎÔ©SéÝ»wžMD$û)€ˆˆÈC;qâDê°ª7ƒ»»;­[·fäÈ‘´lÙ’âÅ‹[ºL‹©\¹2_ý5´lÙ’^½z=ÒñöìÙÃ|À­[·°±±ÁÚÚúŽÏ™ý,ãïìììxã7xòÉ'S}üøq DïÞ½éØ±#_ý5;vì 00ðˆÑh$66–˜˜˜tNNNôèуI“&ѧOxíµ×¼™Œä½IDATé5‘üGDDDîÛ­[·Ø¸qcjè8yò$¶¶¶øøø0fÌÚ´iC­Zµô®v]»veݺu 0€ÆS­Zµ>FBBŸ|ò &LÀÛÛ›Zµj‘””„ÑhL÷9>>>ÓŸ§ýl4¹|ù2ÁÁÁìÙ³‡bÅŠa2™xíµ×([¶,_|ñEêy #FŒ {÷î 8äää;BEÆØØØLçî˜9;;Ó®];Z·nM‡ê5‘üMDDDîéðáà 6ŒuëÖ‘˜˜HÅŠiÓ¦ mÚ´¡y󿏏¸XºÄÜÜÜîøYfNNN©_—)S;;»Gª_Dò7ÉR\\ãÇgÒ¤IT¬X‘Ï>ûŒ6mÚP¹reK—–¯8;;³hÑ"5jÄ!Cøê«¯îÙ%2|úé§Œ3†Ê•+³sçÎl[MËÓÓ“E‹ñÜsÏ1zôh¢¢¢(_¾<-[¶¼ã±666¬_¿>[Î+" ""’…-[¶Ð§ON:ÅÈ‘#5jööö–.+ߪU«Ó¦M£oß¾-Z”ñãÇgBNœ8AÏž=Ù¾};C‡eܸq888dk=-Z´`òäÉ :;;;FŒµµu¶žCD$3 ""’Îõë×>|8³gÏæé§ŸæçŸ¦F–.«@xóÍ7‰‰‰áÝwß%66–Ï?ÿ<]1™L1tèPÜÝÝÙ²e >>>9VÏ!CøóÏ?Y´h={ö̱󈈤eeéDD$o0™LüüóÏT¯^ 0sæL¶nݪð‘͆ ÂÌ™3™6mýúõ#99€óçÏÓºukÞzë-zôèÁr4|@Ê$ó9sæJ… rô\""fꀈˆ.\ ÿþ,[¶ŒöíÛ3cÆŒ»n(æ­·ÞÂÑÑ‘7ÞxƒÛ·oÓ¢E  D¡B…Xµj­[·ÎµZìììòå>+"’)€ˆˆ<æŒF#Mš4!!!%K–ðÊ+¯hÝ\ЫW¯Ô}0æÍ›G÷îÝ™>}:E‹µti""9JDDä1·cÇÂÃÃÙ¶mMš4±t9•®]»R²dIâââhÛ¶­¥ËÉ yо}û,]‚ˆ`__ with the Met Office and get yourself an API key. The process is simple and just ensures that you don’t abuse the service. Connecting to DataPoint ----------------------- Now that we have an API key we can import the module: :: import datapoint And create a connection to DataPoint: :: conn = datapoint.connection(api_key="aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee") This creates a :ref:`manager` object which manages our connection and interacts with DataPoint for us, we’ll discuss Manager Objects in depth later but for now you just need to know that it looks after your API key and has a load of methods to return data from DataPoint. Getting data from DataPoint --------------------------- So now that we have our Manager Object with a connection to DataPoint we can request some data. Our goal is to request some forecast data but first we need to know the site ID for the location we want data for. Luckily the Manager Object has a method to return a :ref:`site` object, which contains the ID among other things, from a specified latitude and longitude. We can simply request a Site Object like so: :: site = conn.get_nearest_forecast_site(51.500728, -0.124626) For now we’re just going to use this object to get us our forecast but you’ll find more information about what the Site Object contains later. Let’s call another of the Manager Object’s methods to give us a :ref:`forecast` object for our site: :: forecast = conn.get_forecast_for_site(site.location_id, "3hourly") We’ve given this method two parameters, the site ID for the forecast we want and also a forecast type of “3hourlyâ€. We’ll discuss the forecast types later on. This Forecast Object which has been returned to us contains lots of information which we will cover in a later section, right now we’re just going to get the :ref:`timestep` object which represents right this minute: :: current_timestep = forecast.now() This Timestep Object contains many different details about the weather but for now we’ll just print out the weather text. :: print current_timestep.weather.text And there you have it. If you followed all the steps you should have printed out the current weather for your chosen location. Further Examples ---------------- For more code examples please have a look in the `examples folder `__ in the GitHub project. Perseudonymous-datapoint-python-cff0700/docs/index.rst000066400000000000000000000001671456150136100232610ustar00rootroot00000000000000datapoint-python ================ .. toctree:: :maxdepth: 2 install getting-started locations objects Perseudonymous-datapoint-python-cff0700/docs/install.rst000066400000000000000000000041671456150136100236240ustar00rootroot00000000000000Installation ============ DataPoint for Python can be installed like any other Python module. It is available on `PyPI `__ and the source is available on `GitHub `__. Pip --- `Pip `__ makes Python package installation simple. For the latest stable version just fire up your terminal and run: :: pip install datapoint or for the very latest code from the repository’s master branch run: :: pip install git+git://github.com/ejep/datapoint-python.git@master and to upgrade it in the future: :: pip install git+git://github.com/ejep/datapoint-python.git@master --upgrade Easy Install ------------ Or if you really feel the need then you can use `easy_install `__. :: easy_install datapoint But you `probably shouldn’t `__. Source ------ You can also install from the source in GitHub. First checkout the GitHub repository (or you can `download the zip `__ and extract it). :: git clone https://github.com/ejep/datapoint-python.git datapoint-python Navigate to that directory :: cd datapoint-python Then run the setup :: python setup.py install Windows ------- - Install `python `__ - you can see supported versions in the `readme `__ - Install the appropriate `setuptools `__ python extension for your machine - Install the appropriate `pip `__ python extension for your machine - Add pip to your environment variables: - Run **Start** > **Edit the environment variables for your account** - Create a new variable: - **name** pip - **value** the path to **pip.exe** (this should be something like :code:`C:\Python27\Scripts`) - From the command line run **pip install datapoint** Perseudonymous-datapoint-python-cff0700/docs/locations.rst000066400000000000000000000021221456150136100241360ustar00rootroot00000000000000Locations ========= There are around 6000 sites available for forecasts, and around 150 sites available for observations. Forecast sites -------------- The locations of the sites available for which forecasts are shown on the map below. Forecasts are restricted to locations within 30 km of the nearest site. This includes all of the United Kingdom. Most of the UK is within 10 km of the nearest site. .. figure:: forecast_sites_map.png :alt: Map showing the locations of the sites for which forecasts are available. :name: forecast_map The locations of the sites for which forecasts are available. Produced using cartopy_. Observation sites ----------------- The locations of the sites available for which observations are shown on the map below. .. At present there is no restriction on the .. figure:: observation_sites_map.png :alt: Map showing the locations of the sites for which observations are available. :name: observation_map The locations of the sites for which observations are available. Produced using cartopy_. .. _cartopy: https://github.com/SciTools/cartopy Perseudonymous-datapoint-python-cff0700/docs/objects.rst000066400000000000000000000135061456150136100236040ustar00rootroot00000000000000Objects ======= DataPoint for Python makes use of objects for almost everything. There are 6 different objects which will be returned by the module. The diagram below shows the main classes used by the library, and how to move between them. .. figure:: https://user-images.githubusercontent.com/22224469/51768591-a54fb580-20d8-11e9-851a-cbc3dc434cca.png :alt: classes classes .. _manager: Manager ------- The object which stores your API key and has methods to access the API. .. _manager_attributes: Attributes ^^^^^^^^^^ ============================== ==================== attribute type ------------------------------ -------------------- api_key string call_response dict forecast_sites_last_update float forecast_sites_last_request list of Site objects forecast_sites_update_time int observation_sites_last_update float observation_sites_last_request list of Site objects observation_sites_update_time int ============================== ==================== .. _manager_methods: Methods ^^^^^^^ get_forecast_sites() '''''''''''''''''''' Returns a list of available forecast sites. - returns: list of Site objects get_nearest_forecast_site(latitude=False, longitude=False) '''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Returns the nearest Site object to the specified coordinates which can provide a forecast. - param latitude: int or float - param longitude: int or float - returns: Site get_forecast_for_site(site_id, frequency=“dailyâ€) '''''''''''''''''''''''''''''''''''''''''''''''''' Get a forecast for the provided site. A frequency of “daily†will return two timesteps: “Day†and “Nightâ€. A frequency of “3hourly†will return 8 timesteps: 0, 180, 360 … 1260 (minutes since midnight UTC) - param site_id: string or unicode - param frequency: string (“daily†or “3hourlyâ€) - returns: Forecast get_observation_sites() ''''''''''''''''''''''' Returns a list of sites for which observations are available. - returns: list of Site objects get_nearest_observation_site(longitude=False, latitude=False) ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Returns the nearest Site object to the specified coordinates. - param longitude: int or float - param latitude: int or float - returns: Site get_observations_for_site(site_id, frequency='hourly') '''''''''''''''''''''''''''''''''''''''''''''''''''''' Get the observations for the provided site. Only hourly observations are available, and provide the last 24 hours of data. - param site_id: string or unicode - param frequency: string ("daily" or "3hourly") - returns: Observation .. _site: Site ---- An object containing details about a specific forecast site. .. _site_attributes: Attributes ^^^^^^^^^^ =============== ======= attribute type --------------- ------- api_key string name unicode id unicode elevation unicode latitude unicode longitude unicode nationalPark unicode region unicode unitaryAuthArea unicode =============== ======= .. _forecast: Forecast -------- An object with properties of a single forecast and a list of Day objects. .. _forecast_attributes: Attributes ^^^^^^^^^^ ========== =================== attribute type ---------- ------------------- api_key string data_date datetime continent unicode country unicode name unicode longitude unicode latitude unicode id unicode elevation unicode days list of Day objects ========== =================== .. _forecast_methods: Methods ^^^^^^^ now() ''''' Get the current timestep from this forecast - returns: Timestep Observation ----------- An object with the properties of a single observation and a list of Day objects. .. _observation_attributes: Attributes ^^^^^^^^^^ ========== =================== attribute type ---------- ------------------- api_key string data_date datetime continent unicode country unicode name unicode longitude unicode latitude unicode id unicode elevation unicode days list of Day objects ========== =================== .. _observation_methods: Methods ^^^^^^^ now() ''''' Get the current timestep from this observation - returns: Timestep Day --- An object with properties of a single day and a list of Timestep objects. .. _day_attributes: Attributes ^^^^^^^^^^ ========= ======================== attribute type --------- ------------------------ api_key string date datetime timesteps list of Timestep objects ========= ======================== .. _timestep: Timestep -------- An object with each forecast property (wind, temp, etc) for a specific time, in the form of Element objects. .. _timestep_attributes: Attributes ^^^^^^^^^^ ====================== ======================== attribute type ---------------------- ------------------------ api_key string name string date datetime weather Element temperature Element feels_like_temperature Element wind_speed Element wind_direction Element wind_gust Element visibility Element uv Element precipitation Element humidity Element ====================== ======================== Methods ^^^^^^^ elements() '''''''''' Get a list of element objects in the Timestep. - returns: List of element objects Element ------- An object with properties about a specific weather element. .. _element_attributes: Attributes ^^^^^^^^^^ ========= ==================== attribute type --------- -------------------- id string value int, float or string units unicode text string or None ========= ==================== Perseudonymous-datapoint-python-cff0700/docs/observation_sites_map.png000066400000000000000000003107071456150136100265310ustar00rootroot00000000000000‰PNG  IHDR xX}¹ÈsBIT|dˆ pHYsaa¨?§i9tEXtSoftwarematplotlib version 3.0.2, http://matplotlib.org/8€;­ IDATxœìÝy\Vuþÿÿç%›‚à†*A* *®“ûšˆ¸ä–™š¥‘™å2šKé4M¦¦¥•™i™[ã’[–ân.¹¥R ‘AšKn¨¸¢‚Àõû£oü> V \ïsûíÆ­ñœëœóººMƒsÎulv»Ý.0 Õ¸ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` ÀW«@v'NœÐ… ¬ÿÃ××WþþþV‘¯ NæÄ‰ Ö7¬ÿÃÓÓS?þø#r'sáÂݸqC‹-Rpp°ÕãàÿùñÇõä“OêÂ… È= @œTpp°êÖ­kõ@žâ&tÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` ð?Nž<©úõë+$$D[·nµz @!@$]¾|Yß}÷RRRÔ£G%&&ªX±bêÓ§.\¸`õx@A€€ûÞªU«T©R%Õ©SGµk×Vtt´V¬X¡+V(55UãÆ³zD À @À}-##C£GVƒ ôÁè×_ÕŒ3ô·¿ýM~~~jÚ´©Nž­"EŠÈÇÇ'Ûº/¿üRrss³`2 `"@À}íÌ™3òóó“Íf“$ÍÚ¯€ñ«5qÅ:tˆË¯€<æjõVº~ýºŠ)’ùçI›ât<)YSç®—‹‹‹""",œ(x8îkUªTÑÏ?ÿ¬ôôtIÒè°=PÒK~I‡Õ´iS•(QÂâ ‚…3  @»zõª&Ož¬mÛ¶©lÙ²*]º´Ê–-«gžyF Ö­[·tâÄ êùfAê[·‚J½õ„úM˜`õø@ÃP ­Y³Fo¾ù¦Š+¦ÔÔTEGGëí·ßÖ”)S$IÁÁÁ’¤ü1s›øøx¥¤¤ðéW€phkÖ¬ÑÃ?¬¨¨¨Ìe‘‘‘Ú³g$©R¥JòôôT\\œÚ·o/I™7¤*Äïj¼F€€+%%EëׯרQ£²,oÔ¨‘æÍ›§k×®ÉÛÛ[­[·Öû￯ääd•*U*óá„VŒ h(°¶oß®k×®éÑGͲÜßß_JLL”···¦OŸ®'Ÿ|R}ô‘.^¼¨ÔÔTyyyÉßßߢɂ‹Öš5k 5jdYþóÏ?ËÕÕ530*W®œyI–ÝnWrr²ìv»¼½½Ï t(ìv»Ö¬Y£®]»fÞÓñõ×_+**JëׯWåÊ•ïø„s›Í¦¢E‹š¸o  @úþûïuòäÉ,—_õïß_ÉÉÉ QïÞ½-œ¸  @Z³fŠ+¦æÍ›g.KJJÒØ±c³Ý”À>[HkÖ¬QDDD–ˬtüøq §@€€ç×_ÕÁƒ³}úU`` ~ù勦  ŸHHHÐ!Cäçç§ÀÀ@Õ©SG>ú¨’““³½ö«¯¾’«««Úµk—ey@@€Ž;fhbwÂ= Àé7N&L¯¯¯žzê)yxxè‡~Ð_|¡Ó§O«jÕªY^ÿË/¿ÈÇÇGžžžY–êØ±c²Û홟ŒÀ,΀§vðàAM˜0A£FÒ‰'4uêTM˜0A ¤;~dî3Ï<£K—.iÁ‚Y–W¨PA·nÝÒ¥K—ŒÌ ;8­ŒŒ ½øâ‹ªQ£†þýï«pá™ë~¿ôÊËË+Ûv=ôºuë¦É“'+---sùï7¤ÿßeÌ"@€Óš7ožöíÛ§3fÈÕ5ë•ãׯ_—t瑤1cÆèÈ‘#Z¾|yæ²B…~ûÑÇn·;hb…N)))I£FÒ“O>™åY¿KNNVáÂ…åâârÇíëÕ«§°°0Mš4)38~ŒŒ Ç àO À)7N©©©š2eÊ×_¿~ýÏ~ün̘1úþûï%‰œœÎ¡C‡ôá‡ê_ÿú—Ê•+wÇ×$''gû”«ÿÕ²eK5hÐ@'N”D€Î€N#))Io¼ñ†ÂÃÃU½zu <ø_[¢D ]¼xñOïç°Ùl;v¬víÚ¥]»v)%%EÒÿ"Ìã9 À)|óÍ7 Wzzºú÷ﯱcÇf»ñüÿ Ò7túôiU¨Pá_×±cGU¯^]'NTõêÕU¶lYùùù9â-È8…‰'êÁÔæÍ›U¦L™¿|ýïLHHøÓ)T¨F­¾}ûjÆ peË–ÕO<¡9sæèÈ‘#Úµk—Μ9£;wÞñõ/¿ü²Ö®]«eË–éñÇW§N4räHݺuËðärŠN«qãÆªP¡‚6nÜxÇõ+VTûöí3?ÕjêÔ©:uꔦM›–íµGŽQdd¤’’’:3€?G€§e³ÙÔ¶mÛ? ÿ¤!C†èÍ7ßÔ™3g2—ýõ×zøá‡5wî\8qÂQãÈ8µ¶mÛ*66V§OŸÎÑëÇ'3FçÎÓ¬Y³&IúÓg†p<8µ6mÚÈf³iÓ¦M9z}‰%ôúë¯kþüù*W®œ ¤jìØ±rssS©R¥<1€?C€§æë뫺uëæø2,I4h¶oß®5kÖh×®]š1c†åçç§B…øñ°"N¯mÛ¶úøã•‘‘‘£€°ÙljÞ¼y–e§Nâò+À ð+àôÚ¶m«óçÏëûï¿¿ë}œ:uJ~~~y8€»A€§×¨Q#yyyåê2¬ÿ• ÀÀÀ<œ ÀÝ @€ÓóððPË–-ï:@.^¼¨'N¨N:y<€Ü"@@¾¦]»v)999×ÛFGGK’êÖ­›×cÈ%ä mÛ¶UjjªvìØ‘ëm£££åå奪U«:`2¹A€€|¡lÙ²òôôÔ–-[r½í¡C‡T»vm>‚püWœ^TT”jÖ¬)www………åzûèèhîÿœœÖµk×4`Àµoß^¡¡¡ŠUxxx®öqýúuÅÇÇsÿà$x!°”Ýn×7ß|£øøxU®\YU«VUùòåµ}ûvõïß_çÏŸ×G}¤Èf³åzÿßÿ½ìv;g@'A€K9rD .ÔÂ… uôèÑ,ë¼¼¼”œœ¬æÍ›kË–-zðÁïú8ÑÑÑrwwWHHÈ½Ž  À¸‘#GjêÔ©òööV=4wî\5hÐ@¿üò‹” ’%Kêé§Ÿ¾çÇ:¤5jÈÝÝ=¦p/`\||¼4h ­[·ÊÓÓ3sypp°‚ƒƒóôXÑÑѪ_¿~žîÀÝã&t`\¹råtóæÍ,ñá)))ŠåþÀ‰ À¸fÍš)&&F¿üò‹CóÃ?(--OÀœŒëÚµ«¼¼¼4g·çСC*T¨BCCz9Ç= À8/// 0@'NÔ¶mÛäãã£äädݸqC7nÜP£F4{öl¹¹¹ÝÓq¢££U­Z5‡_ê ç`‰wÞyGÍ›7ׂ äêêªråÊÉÓÓS...š={¶5~üø{:Æ¡C‡¸ÿp2°„ÍfS×®]Õµk×lëbccõÓO?ÝÓþÓÓÓ£=zÜÓ~ä-îNÇËËK7nܸ§}ìÛ·O7nÜPÆ óh*y3 Àé”,YR±±±’¤'Nè½÷ÞÓæÍ›åêê*yxx¨R¥Jš1c†¼½½ï¸•+Wª\¹ràdàtºvíªE‹éÑGÕºuëäíí­nݺÉÕÕU)))JIIÑâÅ‹U³fM1"Ûöv»]+W®T—.]îùIêòœN‡äçç§~øAÓ§OW¿~ýT´hÑ,¯éß¿¿¦OŸ®¡C‡ÊÝÝ=˺K—.é—_~Q«V­LŽ ø•p:ŠW||¼œ->$iĈ:uê”–.]šmݱcÇ$Iž@n À)yyyÉÅÅå×W¯^]mÚ´ÑÂ… ³­;~ü¸$épØ|îò­¦M›*::Zv»=sÙ¬ñŠœõ•ÜÜ=T¦L §p'È·j×®­ .èôéÓ™Ë&mŠÓ¥s§e÷ö•Íf³p:wB€€™µ3^ãWkÖÎx«GÉôûSΣ££3— mXQ.Gö©n½zVàO G&mŠÓñ¤dMÚgõ(™Š/.IºråJæ²€['”~ý’–ÌšnÕXþrdtXˆ(é¥Ña!V’)>þ·³1=ôPæ²³gÏÊÍÍOÀœÏ9ò|³ =ß,Èê1²8|ø°¤ìR¶lYîÿœg@@¾uøðaU¨PAÞÞÞ™ËΞ=«råÊY8€?C€€|ëðáêV­Z–eàÜo @þC€€|)--M Ï _JHHPjjª‚ƒƒ3—ÙívprÈ—öíÛ'›Í¦úõëg.»té’nß¾M€NŒùÒÞ½{¢bÅŠe.;{ö¬$ €#@@¾´wï^5lØ0˲H’üüü¬ @ ß¹víšþûßÿf ‹/jäÈ‘êÚµ+OAœò(##C5Ê\ö÷¿ÿ]©©©úàƒx :àÄ\­ ·öîÝ+ŸÌOÀÚ¸q£-Z¤O?ýTåË—·x:†3 ßÙ»w¯~øa*ôÛ2‹/VõêÕõôÓO[<€¿B€€|Ån·g»ý›o¾QË–-¹ô ȯ;vL‰‰‰™rþüy%$$¨qãÆO '¯ìÙ³G’2d÷îÝ’¤&MšX6€œ#@@¾²wï^U­ZU¥J•’ôÛåW*T¿¿¿Å“È ä+‡R•*U2ÿ¼{÷n5nܘû?€|‚ùJ—.]¥ùóç+%%Eàò+ á9 _>|¸~úé'=ûì³:~ü¸RRR !@@¾b³Ù4sæLýúë¯úç?ÿ©Ê•+«V­ZV ‡¸ ä;nnnZ¶l™F¥M›6ÉÍÍÍê‘äg@@¾äíí­I“&Y=€\â cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` À€1cÆ Œ!@C€0†` ÀXfÖÎxŒ_­Y;ã­€!°Ì¤Mq:ž”¬I›â¬€!°Ìè°=PÒK£ÃB¬€!®Vî_Ï7 ÒóÍ‚¬€Aœ` À€1cÆ Œ!@C€0†` À€1cÆ ”‘‘¡mÛ¶©OŸ> Ð7ß|cõH`€!»víRPPZ·n­È××WíÚµÓž={¬ Œ!@0äÿø‡|||´sçN>|X_ýµêÔ©£ððpíÝ»×êñÀCJ”(¡k×®©~ýú²Ùl*Z´¨Ö­[§ÐÐP…‡‡kÿþýVçjõÜ/¦M›¦ZµjiÊ”)7nœ$©hÑ¢ŠŠŠR»víÔ¶m[mÞ¼Yõë×Ïõ¾¯]»¦ùóçkãÆ:qâ„üüüT¾|ù,ÿlÙ²¥Š/ž×o r…3 ¢áÇk„ Ú¹sgæroooEEE)88Xaaa:tèPŽ÷yóæM½ôÒKªP¡‚þþ÷¿ëܹsjܸ±<<<«yóæiذaêÚµ«^{í5¼+ȃƧúõë«E‹1b„nÞ¼)IòññÑúõë¨þýû+###Gû{çw4sæL 2DÇŽÓ¾}û4sæL­ZµJûöíÓÉ“'µvíZIR—.]ö¾ § òòòÒöíÛõÖ[oiæÌ™zðÁ5þ|¥§§«X±bzï½÷£U«Výå¾®\¹¢©S§jàÀš0a‚*V¬˜í5‰‰‰úç?ÿ©Úµk«E‹ŽxK+†¹¸¸hĈúïÿ«&Mš¨_¿~ªY³¦V®\©&Mš¨M›6ú׿þõ—gA¦OŸ®[·niôèÑÙÖÙív}öÙg ÑÏ?ÿ¬iÓ¦Éf³9ê-@Ž X¤råÊZ¾|¹¾ýö[UªTIÝ»w×Ã?¬îÝ»ë¿ÿý¯V®\ù‡Û^ºtIÓ¦MÓóÏ?/??¿,ëNž<©N:éÉ'ŸTXX˜âââÔ²eK¿È‹Õ¯__6lжmÛtþüymÙ²Eaaa2dˆÆ§ï¾ûNv»=Ë6Ó¦MSjjªF•¹,##C³fÍRõêÕ­/¾øB‹/VéÒ¥M¿%øCN¢eË–jÒ¤‰5{öl…‡‡kÆŒªS§ŽªV­ª &Èn·Ën·kúôéJMMUHHˆ¼½½U¸pa¹ººjРAêÙ³§~øá=úè£V¿%Ȇç€àD|}}õý÷ß+ @óæÍSjjª¶mÛ¦eË–éÕW_U`` z÷î­wÞyGçΓ››[–¯ÐÐP5jÔÈê·ˆÀ‰”*UJ.\Èü³»»»ÂÃÃÕºuk-X°@W®\‘$=ûì³V÷„K°p"¾¾¾ºxñb¶{>Ž;¦´´4Y4ä 'RªT)¥¥¥éêÕ«™ËÒÒÒ´`ÁI"@ä{N¤Zµj’”yÃùºuëª &èÅ_¼ãà ?!@p"µjÕÒôéÓ5eÊÕ®][:tPÙ²euðàA͘1ƒ‡ È÷¸ '3lØ0]¹rEË—/תU«Ô¹sgÂ@A€pNœ8¡Ù³gë»ï¾SÕªU¬àà`…„„¨T©Rw½ßñãÇküøñy8)8.Áà.œ8qB]ºtQ`` Þ{ï=¥¥¥iíÚµ4hš7o.___EFFf¹™@€pW&Nœ¨o¾ùF3gÎÔéÓ§µ~ýzÅÇÇ+99Y111z÷ÝwµlÙ2ÕªUKÛ·o·z\p¹d·Û¥^½ziàÀ*Z´hæºÂ… «fÍš:t¨bbbäïï¯V­Ziøðáºuë–…S€s @ȥÇëøñ㊈ˆøÓ×jÛ¶mš2eŠf̘¡zõêé§Ÿ~24%8'€\ŠŠŠRáÂ…Õ²eË¿|m¡B…4|øpyø.Àü*€»àîî®ÀÀ@Ùl6IRýúõµ{÷‘üìÙ³Z¹r¥¦Nª .d.Ÿ´)NÇ“’5iS\–×רQC’T­Zµ<~` €<ðØc)99YƒVzzº$)==]111úðÃÕ·o_=øàƒ*_¾¼ºwï®1cÆ(44T[¶l‘$ Ñ%½4:,$Ë~W¬X¡€€Õ­[×ø{Gà,rèòåËš={¶RSSÕ¹sgÕ¨Q#ó HõêÕ5gÎõïß_kÖ¬QHHˆ8 k×®ÉÕÕUuêÔQçÎÕ¸qc5nÜX6›MO=õ”ÂÂÂôòË/ëõ×_×óÍ‚²/==]«V­RŸ>}2ù@lذA?þ¸RRRäîî®qãÆ)00P;wÖèÑ£U¶lYõë×O¡¡¡Z´h‘Ž=ª1cƨI“&ª_¿¾<==³ísãÆzûí·5vìXmÙ²EÿùÏTµjÕÌõÛ·o×¹sçÔ­[7“oŠ /^¬òåËkÛ¶m*Y²¤¶mÛ¦/¾øBÓ§O׎;´{÷nyxx¨nݺ9¾\ªP¡B9r¤Zµj¥^½z©N:úàƒÔ¹sgmÞ¼YÏ>û¬BCCÕ¨Q#¿;0‡{@È“'O*44TåË——‡‡‡Úµk§?üP?ýô“¢££5þü»Þwýúõ­Ç\ýúõS‰%Ô£G5oÞ\;vìàãw(ü@$%%©H‘"Ù–©Gšs]ݺuUºti=Z±±±wÜ>==]ƒÖÕ«WµqãF%%%ióæÍÚ²e‹Z´h¡ÀÀ@So,C€ … ÖŠ+tëÖ-õìÙ3ó£w .¬>úH?þø£jÖ¬©ˆˆˆl—T¹¸¸hذa*^¼¸6l˜ùtôK—.iÇŽzôÑG¿0 —*Uª¤Ï?ÿ\;vìШQ£2—wéÒ%óþõë×ëÊ•+Ù¶>|¸’““õÑGe.Û·oŸÒÓÓîðÙÀjw¡E‹š:uªÞyçÕ­[WM›6UÍš5¦-Y²DÙ¶«T©’úöí«·ß~[·nÝ’$ÅÇÇËÃÃK°Ü\­€üjذaruuUll¬nÞ¼)›Í¦©S§*<<\6›í·5j”>ýôSÍŸ?_TBB‚ªT©ÂƒÜî’ÍfÓàÁƒs½]PP{ì1½õÖ[êׯŸâããUµjUL·_µ`W_}U§NR×®]£   «G#8€BCCõÕW_©cÇŽJIIQHHˆÕ#€iÓ¦¶mÛ¦­[·ê‰'ž°z0‚ÀB5R£F¬ŒáÆ Œ!@C€0†` Ÿ‚À]²Û튉‰ÑÚµkååå¥*Uª¨J•* ”»»»Õã€S"@ȻݮhÅŠZ¾|¹Ž9"oooݾ}[·nÝ’$*THþþþªZµjf”T©REAAAz衇d³Ù,~`€¿‘‘¡½{÷jùòåZ±b…Nœ8!___uíÚU|ðZµj%WWW9sF úùçŸ3¿¾ùæÍŸ?_7nÜ$-Y²D={ö´ø€uþŸ´´4;wNgΜÉüЉ‰ÑªU«túôi•+WNݺuS÷îÝÕ¼ys¹ºfý6Z¡BU¨PA-[¶Ì²Ün·ëìÙ³jÒ¤‰öìÙC€¸¯ €ûÊÕ«WµuëV8p@§OŸÎçÏŸ—ÝnÏ|íï—R=öØczì±ÇÔ¸qc¹¸¸äú˜6›MåË——¿¿¿N:•—oòP ý~£øúõëµ~ýzíÚµKiiiòóóSÅŠU¾|y5jÔHåË—ÏöU¦L™lg9îVFF†¾ÿþ{1"Oöù÷©ÄÄD­]»V_~ù¥®_¿®–-[ªuëÖª_¿~žýÐm•K—.iÓ¦M™ÑqæÌyzzªuëÖz÷Ýw®Ê•+é§Ÿ~ÒåË—õ·¿ýÍèqÀÙäïï0€\KIIÑ›o¾©‰'*--M5R‰%4iÒ$½òÊ+òööVóæÍõÈ#(22R>>>VœÝnWRR’Nœ8¡“'Ofùç‘#GtðàAedd¨zõêêÝ»·"""Ô´iSyxxX6óÒ¥Kåíí­¦M›Z68î#W¯^U“&Mtøða=ZC† Q™2e$ývöÁƒµuëVmݺUcƌќ9s´fÍU©R%Gû‰‰ÑÂ… õå—_êá‡Ö‚ îjΛ7of ‹ÿß?UJ’ÜÜÜT©R%UªTIÁÁÁ0`€Úµk§J•*ÝÕñóZFF†æÏŸ¯ž={ÊÓÓÓêqÀRÜG&Nœ¨#GŽèÀªU«V–u®®®jР4h 1cÆèðáÃêܹ³~øamذáO/JNNÖøñã5}út•.]ZuëÖÕÂ… õì³Ïªyóæ9—Ýn×þýûµdÉ­X±B'OžÌ²¾\¹rªT©’üýý!ùûûg.+S¦Œ *twÿR رc‡Ž;¦~ýúY= XŽ€ûıcÇ4mÚ45*[|ÜIµjÕ´oß>µiÓFÏ<óŒ:$77·l¯Û¸q£¨³gÏjâĉz饗äâ⢠hĈÚ»wïÆAll¬/^¬%K–èèÑ£*W®œzôè¡úõëgFÅŠ-½t*/Ì›7OUªTQãÆ­,G€À}b̘1*Q¢„FŽ™ãmŠ/®Ù³g«~ýúš9s¦† –¹îâÅ‹úÇ?þ¡ ¨U«VÚ´iS–Kµ¦Nª–-[jÙ²ezâ‰'2—=zTK–,ÑâÅ‹«%J¨{÷îš3gŽZ´hqWsëÌ®]»¦Ï?ÿ\cÇŽå è î ûöíÓ’%KôÉ'Ÿ¨hÑ¢¹Ú¶nݺzþùç5~üxõìÙSeË–Õ’%K4lØ0ݾ}[Ÿ|ò‰ú÷ïŸí‡ë-Z¨S§N3fŒ6l¨Õ«WkñâÅÚ¿¿<==Õ¹sg½ùæ› —»»{^¾]§²|ùrݼyS}ûöµzp Ü–.]ªJ•*éé§Ÿ¾«íßxã -[¶LáááJKKS\\œzôè¡÷Þ{OåÊ•ûÃí&Ož¬š5k*00PîîˆÐ’%KÔ±cGyyyÝíÛÉWV®\©æÍ›ËßßßêQÀ)8ï{`@rr²&Mš¤:uê(66ÖêqæÇT:uîúò¦’%KjæÌ™*Z´¨š6mªµk×jÙ²e’¬… ê“O>ѹsç´zõjõìÙó¾‰é·OÀ*Q¢„Õc€Óà €ûRFF†fΜ©7ÞxCIII*Y²¤úõë§ýû÷;õ§)Ý­¸¸8õêÕëžöñøãëñÇÏõv÷zÜüÎÇÇG‰‰‰VN£à}—€¿påÊuîÜYC‡Uûöí¯ èàÁƒúî»ï¬Ï!Î;'???«Ç¸/ùøøèêÕ«VNƒ3 î+qqqêÚµ«µvíZEDDHúí9Ú¾}»êÖ­kñ”yïöíÛúFogF€@VœpßX½zµ4h 777}ûí·™ñ!I… VÆ µ}ûv 'tŒôôteddÜñp<½pIãWkÖÎx«ÇË ¼ŒŒ 7N]»vU»ví´wïÞ,Ï«ø]‹-´sçNeddX0¥ãܾ}[’‹øøøèÚµ«:ž”¬I›â¬,G€(Ð._¾¬N:i„ š8q¢–-[ö‡ÏÁhÑ¢…’’’ôÃ?žÒ±~.Á²†ì·Sä_¼°F‡…X=XŽ{@XqqqêÒ¥‹ÎŸ?¯uëÖ©]»vúúßÏŠœ:uJ5kÖ41¢œ±ÖåË—U¸pay­³\]ù¶ œP ­\¹R 4‡‡‡8ð—ñ!I)))’¤"EŠ8z<£’““%ývŸ ÌÛ¾}»5jD|ÀÿC€(PÒÓÓõÊ+¯¨{÷ˆÐž={T¹råm{ëÖ-IïõÇK’zè!‹'¹ÿ$''kÛ¶mjÕª•Õ£€Óà×1 ŒK—.©OŸ>Ú°aƒ&Ož¬‘#GÊf³åxû›7oJ*xg@bccU¤HZ=Ê}gÉ’%ºvíšúöíkõ(à4Âúõëõâ‹/êÒ¥KŠŠŠRÛ¶ms½‚|䡇’‹‹‹Õ£ÜWìv»fΜ©ˆˆX=8 .Á¯=zT]ºtQDD„üýýõí·ßÞU|H7@¼½½3ï9‹-Ò¡C‡4tèP«G§B€È—nܸ¡ñãÇ+$$DÔÒ¥KµuëÖßïq'III’$OOϼÓ)èøñãîù&ÎìøñãùäuéÒ¥À]~õ» &èâÅ‹š6mšÕ£XûöíS‡¤ÿûßVN‹à´RSSÕ½{w9rD{öìј1cäáá‘çÇÙ¿¿âââ™çûvûLéééFŽ9kg¼Ư֬ñFŽgÒ‘#GÔ¸qc}þùçZ´h‘Þÿ}¹»»[=8=€ÓrsssøMÓË—/×µk×Ô¿‡ÇYôêÕKgΜÑÎ;oÒ¦8OJÖ¤MqFŽgÊW_}¥zõê)99Y{÷îUŸ>}¬ ò €ÓêׯŸ¢££í°cÌ;W­[·V`` ÃŽáLJ•*¥"EŠèóÏ?7r¼Ña!z ¤—F‡…9ž£¥§§küøñêÔ©“Z´h¡o¿ýÖ¡—@AäjõðG"""T®\9Í;×!tûù矵}ûv-Z´(Ï÷mÂñãǵdÉ}ýõײÛírqqùÓ¯óçÏ+**J¥K—V‹-ŒÌø|³ =ß,ÈȱíâÅ‹êÓ§6mÚ¤7ß|S£FR¡Bür‹à´\]]õôÓOköìÙš2eJž²Ð§Ÿ~ªbÅŠ©[·nyº_GÛ¹s§ÆŽ«]»v©H‘"jÕª• .¬ôôt¥§§+%%%óÿß/777Íš5KO=õŸÒ”K±±±êر£’““µaõiÓÆê‘ ß"@óûó6Nž<©nݺ)44ô/Ÿ:þÌ3ÏhòäÉZµj•zõê•g³¤§§kÞ¼yêÝ»·Š)’gû5á…^ÍfÓÂ… Õ¹sgy{{[=R­°°0U¬XQ;vì¿¿¿Õ#@¾Æ¹cÆL™2E ÐôéÓU»vmU«VMsçÎýÓm‚‚‚Ô´iÓ¿|]nÌÚ/¿¾¯éôéÓzæ™gòl¿&ÄÆÆ*66V&LГO>I|8Ø·ß~›yÐÖ­[‰È#ÒÒÒôÞ{ï)22Rçϟ׺uëªÈÈHÍš5ëO·ŒŒÔæÍ›uìØ±<™eÒ¦8%îß ·2ªW¯^žìÓ”¨¨(yzz*<<ÜêQ ¼Ý»w«M›6 ÖæÍ›U²dI«G€àpz饗têÔ) ûì3õîÝ;ÛúB… é£>ÒíÛ·µsçNEFFªW¯^ªU«–l6›nݺ¥£Gf>uún}÷Ýwzî¹çÔªU+õíÛW:t¯¯ï½¼5KT®\Y’tôèQÄ6lØ .]º¨E‹ZµjU¾û€ÈuäÈÙl6=öØcøÍŸ?ÿŽë .¬…„ÜÛƒì^yåiãÆruÍÿõñü‰¼÷ÕW_©{÷îjÛ¶­>ÿüs>ª$ÿàÔŽ;¦ *ÈÝÝݲvìØ¡uëÖiÙ²eù>>’’’$‰¢óتU«Ô³gOuìØQK–,±ôÿ¯PÐñ+4uüøqXvü«W¯jäÈ‘ª[·®ºwïnÙyåܹs’¼´téRõèÑCݺuÓÒ¥K‰p0€C]¸pÁ²{-6oÞ¬5j(..Nï¾ûn¸liÑ¢E äyydáÂ…êÝ»·z÷î­E‹ÉÍÍÍê‘ ÀËÿß85___]¼xÑè1¯]»¦Aƒ),,LAAAŠUÓ¦MÎà§NÊüèb«ÇÉ÷æÎ«§Ÿ~ZýúõÓ§Ÿ~šï/Ï€ü‚àPeÊ”Qbb¢±ãmÛ¶M¡¡¡Z¸p¡>üðCmÚ´I<ð€±ã;ÒŒ3äéé™ïžÞîŒfÍš¥ÈÈH 8PsæÌ!èÀ €C•-[6ó¾Gºqㆆ ¢Ö­[K’–/_®¶mÛêäÉ“ÊÈÈpøñ-99Y}ô‘ž}öYùøøX=N¾öÞ{ïiРA:t¨fΜY .Í€ü„¿u8Ôƒ>¨Ë—/ëçŸvèqæÌ™£3fHúí“·"""T¹re=ðÀzä‘GtåʇßÑæÏŸ¯+W®hÈ!V’¯M:UÆ ÓÈ‘#5}útÙl6«G€û¼p¨öíÛËÇÇG=ö˜ú÷ï¯gŸ}Ö!O–~á…Ô¬Y3¥¥¥eù:{ö¬^|ñEµjÕJ{ö쑇‡GžÛÑ2224}útuëÖÍÒOËï&L˜ W_}U¯¼òŠþýï`€CyzzjÅŠš>}ºFŽ©ýû÷ë³Ï>Ëó㸹¹©nݺw\W¢D µoß^ñññªY³fžÛÑ¢££• wß}×êQò%»Ý®×^{M¯¿þº^ýu7Îê‘à¾Æ%X®M›6úꫯôñÇë?ÿù^|ñEíÝ»×ØñK—.-IJOO7v̼T­Z5ùøøh÷îÝV’ïdddhôèÑzýõ×5iÒ$âœÀ˜¾}ûjÀ€š9óÿcïÎÃjÌÿÿ?OI˲$K’±Gñ!m’A’%²…†ÁØRF¶AbìјëÔ0d­(eO–ÂŒ,É’­MÚ·óûc¾úZNç>Õóq]çâÓ}î÷ûyû\Ws^ç½mÇøñãeÖòòòdÖ§4‰ÅbŒ3>>>HOO:N…‘––¸»»cÆ X°`Бˆˆ,@ˆH†ž={†°°0hjjâÀ2ë÷Ô©SPTTDƒ dÖ§´Í;ï޽Ä *Å®^å-66½{÷ÆéÓ§¡#ÑÿaBD2qÿþ}ôîÝÙÙÙ¸xñ"ºví*³~W®\‰¹sçB[[[&}–‡6mÚÀÏÏøñÇ…Ž#×BBBУG¤¥¥áòåË:t¨Ð‘ˆˆè_X€‘L,]ºJJJ¸xñ"Z¶l)“>ïß¿èèèÀÕÕU&}–'KKK¸»»cÍš5سgÐqäŽD"‡‡ÌÍÍÑ¥K\»v :t:ý "’‰˜˜4kÖLfÓ îÝ»###hhh 44´ÒÞçèèˆÉ“'cÊ”)¸pá‚ÐqäFNN¾ÿþ{Ìœ93gÎÄ©S§P·n]¡cQX€‘L,X°çÏŸ‡]¹/¿sçLLL ©©‰ ½öã¿D"vìØ^½zÁÚÚ±±±BGÜëׯajjŠÝ»wÃÇÇ›6mBµjÜežˆH^ñ74ÉĨQ£   [[[äææÂÛÛ5jÔz?QQQ033CãÆŒzõêI½¡U¯^‡‚,--qéÒ¥J3ÂSR7nÜÀСC‘““ƒÐÐPôêÕKèHDDô!"™9r$<ˆ£G¢uëÖØ½{·Twtºyó&LLLдiSœ;w®RÔ­[ÇŽÃóçÏ1zôè »ÅpYøûû£OŸ>hР®_¿Î⃈¨‚`BD2emm¿ÿþ}ûöÅĉa``€‹/–¹ÝÈÈH˜™™¡E‹F:u¤V¾µk×À™3gàää$t™:vìlmm1lØ0„……¡I“&BG""¢bbBD2§££ÿÂEÔ}úôÁèÑ£Wªö.\¸333´iÓAAAÐÐÐf\¹Ö¿lÞ¼›7oÆ/¿ü"t™ùõ×_a``€½{÷BUUUè8DDT,@ˆH0½{÷ÆÕ«W±k×.„……¡m۶ظqc±ïüø1lmmahhˆŽ;âôéÓ¨U«V9&–O?üðCáëìÙ³BÇ)w‰‰‰8yò$Æ‘H$t""*! D$(ØÙÙ!&&fffpvvÆ›7o¾xÏÛ·o1{öl´mÛaaaðòòBHHH•]ˆ ›6m‚™™FŒû÷ï §\:t‰#GŽ: • "\jj*œƒ/N©ñôôD‹-°{÷n,_¾<€½½}•ÜvU"‘ ??P­Z5üþûïÐÒÒ‚¥¥%’’’NW~~ÿýw˜™™Uªí•‰ˆª D$¨cÇŽ¡}ûöØ·o¶nÝŠððp¨««ùÞ̘1#GŽÄ£G°páB¨©©É8±ð$ &Ož eee¨©©ÁÒÒ»wï†D"ÁñãÇ‘˜˜ˆ ³ÜDEE¡OŸ>BÇ "¢RbBD‚9|ø0† ‚N:áîÝ»˜9s&Šþµ”˜˜ˆñãÇÃÈÈ;wî¬Ô[ì~M@@|}}áää„Õ«W#%%“&MBƒ 0kÖ,´iÓû÷ïGrr²ÐQ¥.55 hÑ¢…ÐQˆˆ¨”ªÞœ"’'OžD‡øÅÅĉöööÈÌÌľ}û ¨¨(ÔåkÞ¼yðóóCõêÕ‹õRVVFpp0ŒU«VA$ÁÑÑñññÀÁƒqåÊH$]ùxüø1 DD "’¹””Lž<÷îÝÚ5k¾øÞ;wî`Þ¼y˜1c¬¬¬d”P6ìf8@©ž6ôÆ;a†q;©µ«¥¥…‰'J­=yòèÑ#¨©©¡FBG!"¢RbBD2Q£F!99GŽÁ!C>ûÞÌÌLØÚÚ¢eË–X¿~½ S–¿üuý"ðí¸Ÿ»/Õ¤2ËÈÈ@FFjÔ¨6mÚ S§N…/===hii ‘ˆˆ¾‚É„D"Á¶mÛàèèˆ.]ºàìÙ³ÐÕÕýâûñðáCDDDTªÓ®% .\ˆfí:¡@Ï.æí…ŽTaüøã0`¢¢¢ _'OžÄ»wï ¤¤„­[·bêÔ©< ˆHޱ!¢r÷îÝ;ØÛÛãСC˜3gÜÝÝQ½zõOÞ—’’‚éÓ§# ÙÙÙtèÐAÖ‘ËÕñãÇqõêUÃÌÌLè8JµjÕгgOôìÙ³ðg‰Ïž=ƒ»»;¦M›†ˆˆxxx@YYYÀ¤DDô9,@ˆ¨\edd {÷îxûö-> kkëϾwåÊ•ð÷÷Ç’%KдiS4jÔß~û­ ÓÊÆÎ;a``ÀâCJD"š6mŠmÛ¶¡E‹˜7oŒ1nÜ8¡£QX€Q¹RRR‚‚‚š7oŽ~ö}111زe V­Z…E‹É0¡l%%%áôéÓøù矅ŽR)ÅÅÅ¡V­Z4hÐQˆˆè3x!•+%%%øùùáÎ;X¼xñgßçììŒÆÃÁÁA†éd/ ùùù9r¤ÐQ*gÏžaÇŽprr‚†††Ðqˆˆè3X€Q¹ëÖ­Ö¬YƒŸþ§OŸþäúÙ³gqôèQ¬]»¶R-6/Š¿¿?LLL¸[“”¥¥¥aäÈ‘ÐÐÐÀœ9s„ŽCDD_À„ˆdÂÁÁýû÷‡Þ¼ySøó‡ÂÞÞÿûßÿ`cc#`Âò—žžŽÐÐP 6Lè(•Jvv6¬­­qïÞ=B]]]èHDDô,@ˆH&°{÷nH$ôïß111¸sç ¡¢¢ÿJ¿uêåË—‘——ccc¡£Tùùù;v,ÂÃÃqìØ1èéé ‰ˆˆ¾‚ÉŒ––Μ9ƒŒŒ ´iÓ;v„–– ­­-t¼rwþüyÔ«WíÚñÐAiH$øþûïqäÈ8pFFFBG""¢bà.XD$S;wÆ7‰D+++ÔªUKèX2†¾}ûVú‘Yqqq··7öìÙƒ!C†‡ˆˆŠ‰# D$s5jÔÀøñã1a„*S|deeáêÕ«èÛ·¯ÐQŠäƒf®Gà#t”bY»v-ÜÝݱiÓ&Œ?^è8DDT!"’k×®!;;[n§ ¹ÝC\R:Ü‚îašak¡ã|ѯ¿þ ¸ººÊtÇ«˜˜¼|ù™™™ÈÊʱ[±øóÆcŒ3íŽu?Œ’’’̲Ud,@ˆˆdàüùó¨U«:vì(t”"¹˜·‡[Ð=¸˜·:Êýñǘ6mfΜ‰eË–•{ÉÉÉøí·ßàëë‹ÈÈÈ"ß³ù°wå>>8þ>>8xð œ1wî\hhhìíí‹lÃÑј2e RRR°{÷n¹Ø¢4::JJJhÝúŸ—ŠŠŠ˜7o `hhˆ7–ËÔ±Fþþûo4kÖLêíWvGE÷îÝ ÿKãéÓ§pww‡··7”””0kÖ,Ì;ššš…ï©H[Ë‘H///ôìÙÆ õkתÌù>DT:òñµ$É 6@QQ'OžDýúõQ»vmÌ›7—/_ÆòåË ‹¯™|YYYRm»² Ãû÷ïaiiY¢û¢££akk‹¶mÛâĉpssC\\–,YòÙ"zšakþ|¤¦¦bóæÍØ´i¦N GGG4iÒDªýTúúúxóæÐ1¨mmmüòË/,@ˆè\BDŸ¥  €3fàÎ;èСŒñãÇ#11ñ³÷ÄÄÄ`÷îÝX¸pa¹,þD"ŠŠ îÞ½ OOOXXX”¹øþ)¾Þ½{‡„„)¤ü˜’’Ö®]‹¸¸88;;c÷îÝhÞ¼9.\(õ¾ˆ„¢¨¨ˆ)S¦ÀÏÏïÞ½:ÉŽ€ÑWéèèàäɓؽ{7pæÌ™ÂŽ ‰D…BKK Ó¦M+÷\vvvX±bÖ¯_/Õ5­ZµðÏå5EêÙ³gxýú5rss‘ŸŸÿŢލ"²··Çòå˱ÿ~̘1Cè8D$GX€Q±ˆD"Lœ8˜={6<<< ‘HPPPPøgAAªU«†_~ùE&;iiiÁÁÁ6lÀ¬Y³¤¶}p‹->Äÿþ÷?©´ùÁ±cǰjÕ*\½z5¼yóðÝwßA[[[ªý ­Q£F2d<==1}útn @D…8‹ˆJ¤aÆ8xð Þ¾}‹„„$%%!99ïÞ½Ãû÷œ ™åqvvFAA<(µ6Åb15j„H­Í„„Œ3C† šš‡åË—³ø JkÚ´iˆŽŽÆåË—…ŽBDr„# DTa@$}ôMjFF ??_ª}µlÙ>”J[GÅ”)S››‹}ûöa̘1ü6˜ª„~ýú¡yóæðôô”úh"U\!¢ !++ úúúhÑ¢Ö¬Yƒ×¯_ãÖ­[1bêÔ©óÅKCMM ÙÙÙen'$$ÖÖÖ000À½{÷0vìXTe(((`êÔ©8pàÒÒÒ„ŽCDr‚U‹-Btt4zöì‰+V Q£FèÚµ+bccqàÀhjjJµ¿¼¼<())•©çÏŸcÔ¨Q011A@@´´´¤”ލâhÞ¼9²³³‘——'t"’œ‚EDrïÌ™3ظq#6n܈¹sç"99„––ˆjÕ¤ÿ«,//¯LíæççÃÆÆÊÊÊðó󃢢¢ÓUýõªW¯Žš5k …ˆä "’kiii°³³Cÿþý 6ÔÐÐÀÔ©S˵ߜœœ2€\¹r—/_FPPO;§*+99›6m‚½½=8邈þÁ„ˆäZpp0^½z…ððp™}€‘H$xðàúõëWê6Μ9 ˜˜˜H1QÅâææ†ììl¸ºº …ˆä¿Ž "¹v÷î]ˆÅbèêêʬÏW¯^áíÛ·èܹs©Û ‚™™§^Q•õìÙ3lÞ¼ŽŽŽ\ÿDDaBDr­ÿþHOOǹsçdÖçíÛ· LH^^TUU¥‰¨ÂY¶lÔÕÕáää$t"’3,@ˆH®uïÞ­ZµÂž={dÖgTTjÔ¨Q¦Q\½zõ“Ÿ{†Ç ™ëx†Ç”%"‘\;}ú4|}}±dÉ.>'¢O°!"¹&‰0cÆ ìß¿¡¡¡2éóéÓ§hÒ¤I™ÖœôìÙ111HLLüèçnA÷—”· {eI$—?~ [[[ 0?üðƒÐqˆH±!"¹7kÖ,ôíÛãÆCRRR¹÷×±cG]⺌ŒŒ`bbôë×OêçŒ5 ÷îÝÃÝ»w¥Ú.‘¬dggcÍš5;v,Z·æ¶ÒDT|,@ˆè«òòò ‰Š¼&¯È#FŒ@ëÖ­K¼8V,ãìÙ³8vìnݺ…ñãÇ£  @j¹ÌÍÍQ»vmøøøH­M"YòööÆË—/9úAD%Æ„ˆ¾H"‘àÙ³gÐÖÖ.òz5äºQTT„‹‹ Ž9Râí‚E"Œ}ûöáäÉ“ÐÖÖ†••V¬X'NàõëץΥ¬¬ lݺ•g„P…óaôc̘1ý ¢ãvDôE ÈÌÌDÓ¦M‹¼.‹‘’’"ãT%3nÜ8,[¶ kÖ¬ÁþýûK|ÿ·ß~‹³gÏâÌ™3¸~ý:6mÚ„ääd@ãÆÑ½{wèééAOO***x÷îRRR’’Rø÷6lØëÖ­ƒX,Æ‚ °oß>LŸ>!!!Ÿe"’7>>>ˆçè• "ú¢¸¸8ÿìàT±XŒ/^È2R‰)))aÁ‚˜5k–/_Ž–-[–¸ ˜˜˜øgTèÉ“'¸~ý:"##‰7%ˆ”TP³VM4Ö¬‡Zµj¡V­ZØ»w/®_¿ŽÀÀ@Ô¯_Û·o‡¹¹9öîÝ‹ &Håy‰ÊS~~>Ö¬Y[[[´iÓFè8DT±!¢/*N"ÏS°>˜…ššêÖ­[äõŠR€¨¨¨ÀÑѾ¾¾xðàÔÛ‰DhÖ¬Z´hºuëbá€NЩ#þäðÆnݺ¡K—.mذÙÙÙX¼x±ÔsIÛ™3g ®®¡£QÅ„ˆ¾èÕ«WÐÒÒª°»`ýÛÌ™3¡­­Ù³gKýlÿšfØOV -òðFeeå¦k5lØvvv8sæL¹f"’†   ˜ššBIIIè(DTA±!¢/ªS§Î™‹Åb¤¥¥É0Q驨¨`ëÖ­8uêþøãA2üõ×_Æ·ß~ûÑÏѤIA2×û÷ïqùòe˜›› …ˆ*0 DôEZZZHJJBvvv‘×?Œ€”÷ˆ‚´XZZÂÊÊ ³gÏÆùóç‹uOAA"##±zõj,X° ÔÏ*‘Hðã?B[[S§NýèÚ“'O>»Î†JÎ3<Í\À3|«W¯†²²òG×ãââЬY3)=!¹ÝC\R:Ü‚î ¥ÂùÒ¿ÝÝ»w¡¬¬Ì³?ˆ¨LX€ÑuíÚ"‘¡¡¡E^‹ÅPaÖ@£FpéÒ%øúúâܹsèÚµ+tttP¿~}ˆÅb(**B[[öööxôè¦OŸŽ°°0œÅzï‡b¤¸H^^&Mš„ß~û »ví‚]‘ïûpÖ §`‘<“H$¸wïÞ'(•§`ÑW 28wîÜ'×*zR ,Î,‰D‚‰'Âßß~~~Ÿ->€ €¶¶¶Tr•‡‡"99;w: Up,@ˆè«Ú¶m‹–-[âÈ‘#Ÿ\«Jˆªª*”••‹5²yófìß¿ûöíƒÍ߇† ~²0Hžœ8qÕ«W‡±±±ÐQˆ¨‚cBD_%‰0vìXx{{cÆ mCûaJVFF†PñdF$¡nݺ_-@.]ºgggÌ›7£Fúj»Ož<áô+’{022B5„ŽBD×€Q±¸ºº"++ ŽŽŽØ°a:uê„&MšàÊ•+þY¬^Ô©Sç‹È›7o`cc¸¹¹«Í¸¸8.@€gx Ü‚îÁż=¬EZZΟ?www¡£Q%À"*¸¹¹áÌ™3˜0apåÊtëÖ {öìA×®]…Ž(uêÔùìüü|Œ3¹¹¹øý÷ß¡¤¤ôÕöòóóñàÁ àY!Å„œœ 8Pè(DT p„ˆJÄÜÜæææBÇÌ—¦`-_¾!!! BãÆ‹ÕÞ®]»aÆI3&ƒ‹yûÂú²Ý»w£K—.hÕª•ÐQˆ¨àQ |n ÖÉ“'±råJ¬\¹¦¦¦Åj+-- K–,ÁèÑ£¡¯¯/í¨ôÓ [ãÉŠ¡r9ýÊ3<Í\À3Uò2=,,, >Äwß}'h"ª\X€Q• Œ5 ­[·ÆêÕ«±sçN˜™™áýû÷ÅnÇÜÜ‘‘‘055…ŽŽ&Mš„ðððb~ûömìÚµ Ë–-ã·Ê$×¼½½Ñ²eKôíÛWè(DT‰p,"*Òýû÷qåÊXYYUèÉ °³³Ã‰'УG„„„žälddcccx{{cîܹÅn³[·nðòò*U‰D'''´nÝßÿ}©Ú ’…””‚‚‚ðúõk¨««côèѺ€1cÆàÕ«W˜?>BCC¡§§‡ßÿšššprr*·~ÓÓÓáââ‚mÛ¶ÁÕÕµDÛõ áСCx÷î&Ož,t"ª¤8BD]]]\¼x:uÂÝ»w1a„„„ !!{÷î…ŠŠŠÐËD$ÁÑѧN‚¦¦&ÂÃÃaff†ˆˆÔ¯_¿\ú¼téºtéooolÞ¼K—.-—~ˆ¤ÉËË &&&hÑ¢…ÐQˆ¨’âÒ××ÇÁƒ…ŽQ®ÌÍÍann^®}deeÁÕÕëׯGÏž=ˆÖ­…=Ñš¨8bbbpþüyìß¿_è(DT‰±!"’¢‡ÂÊÊ >„››¡¨¨(t,¢bñññ††† &t"ªÄX€IÑŠ+ššŠ7nà›o¾:Q±åææb÷îÝ;vl…ŸrIDòk@ˆˆ¤(((µk׆X,: Q‰œ8q¯^½Âwß}'t"ªäX€I‘¿¿?RSSÑ©S'ìÚµ ‰DèHDÅâåå…îÝ»£sçÎBG!¢JŽ‘!** Æ äI“0lØ0¼}ûVèXTFžá1hæzžá1BG)/^¼À‰'8úAD2Á„ˆHÊjÕª…]»váðáøpá:tè€ãÇ K**ûñÏq º‡¸¤t¸Ý:J¹ðöö†²²2F-t"ªX€•kkkDGGC__–––X»v­Ð‘ʬ²ÿóöЩ#†‹y{¡£HÝýû÷ñÓê5¨ÖÑ ~Q¯…ŽCDU "¢rT¯^=hiiþ½¢«ÌÄ¿dšak Ýż}áU-‹/Æ£G‰êÕ« ‡ˆª DDR––†‹/büøñ¨S§BCCÑ´iS¡c}×sTM¡¡¡Ø¸q#Ö¯_/×2U^,@ˆˆJ@"‘àÉ“'ˆŠŠÂíÛ·qûömDEEáÑ£GH$Ð××G```¥ØñŠ*ŸÔÔTLœ8}ûöÅܹs…ŽCDU "¢bÚ¾};/^Œ””@:uйsg <;wF§NЩS'T«&ܯÖgÏžáÉ“'044,ɯ¹sç"11¡¡¡PPà2P" "¢¯ÈÏÏǼyó°eË|÷Ýw6l:uê„FA$ ››‹Y³fá—_~ðÏH Ñ¿ýùçŸðõõ…··7š5k&t"ªÂX€}Áû÷ïakk‹S§Naûöí˜>}ºÐ‘>‘““ƒÑ£G# ðÝwß œˆäÍ›7o0eÊXZZbÒ¤IBÇ!¢*Žã¯DDŸñìÙ3ôéÓaaa8~ü¸\YYY6l1räHÀüùóNEòÆÉÉ ‰¿þú«ÜŒÚQÕÅ„ˆ¨èÕ«RRRpéÒ% 0@èHŸÈÈÈ€••Ξ=‹cÇŽáÉ“'°°°@«V­„ŽFräùóçðóóÃ?þˆ ‡ˆˆS°ˆˆŠòüùs¼xñ666HOO‡D"‘«oŽÓÒÒ`ii‰k×®áĉ‹ÅˆˆˆÀÑ£G…ŽFrfûöíPUUåÔ+"’,@ˆˆŠ «« '''ìÛ·@óæÍaaa ˆÅbÔ¨Qššš°±±‘ùnBïÞ½ÃÀÓ§O£OŸ>°³³ƒŽŽ(Ó,$ß233±sçNØÛÛ£fÍšBÇ!"À„ˆ¨HJJJX·nÜÜÜpþüyøùù!<<iii…¯¬¬,hiiÁØØXf¹’““aaa 88úúúxúô)~ÿýw,_¾ŠŠŠ2ËBòoÿþýHJJ¬Y³„ŽBDTˆU ùùù¸xñ" &`Ê”)ež6¥¨¨SSS˜šš~ÒŸ††®^½*³$!!ýû÷G\\Ξ=‹nݺ\\\ ¡¡3fÈ$U ‰›7o†¥¥%š7o.t"¢B,@ˆ¨Â»rå fΜ‰ÈÈH4lصjÕÂ÷ßž={¢S§NåÒ§¢¢"ºwïŽk×®•Kûÿõúõkôëׯ_¿Fhh(:vìàŸg÷óóƒ··7ÔÕÕe’…*†sçÎáÎ;زe‹ÐQˆˆ>Â]°ˆ¨B{þü9¬¬¬ðâÅ \ºt ÷îÝCZZ,,, ?¤—Djj*víÚ…Q£F¡k×®˜4i‚ƒƒ‹|¯¾¾¾L /^ÀÈȉ‰‰8þ|ásI$888 K—.°³³+÷T±lÞ¼:u’éA"¢â`BDÖ‡30”••qûömôêÕ ...HIIÁ/¿üR¢éWÙÙÙØ´iš7oŽÉ“'#66]ºtADDú÷ïOîÑ××ÇóçÏ/ÍÇúÈÓ§Oadd„ŒŒ „……¡]»v…×üýýqåÊlܸ‘k?è#÷ïßÇñãÇ1{öl¹Ú½ˆ`BD”D"Á´iÓ€€hjjâÏ?ÿÄ/¿ü777èèè«‚‚ìß¿mÛ¶…££#¬­­‡k×®Á××QQQ˜;w.fΜ‰… B"‘ÞÛ£G@DDD¹¼Ø'–߸qß}÷nÞ¼ +++œ8qâ£PPPÀ† ФI8::âùóçðññ’’š4i---\»v VVVR}¾˜˜˜™™AEEç΃¶¶öG×ýüüsçÎIµ_ªø¶lÙ‚ððp„„„@UUUè8DDŸàU8¡¡¡ppp€ƒƒÆØØØ`Ĉðóó+Ö¹N —H$¸páŽ9òIññoóæÍƒ¿¿?üüü°~ýz€H$‚Ž=ŠŒŒ ©=ß½{÷`dduuu„……}R|@tt4Z¶lùѨÑýû÷±páBÌž=›#cD$·X€Q…’ŸŸÑ£GÃÈÈ«W¯†ÆŽ‹±cÇbß¾}PRR*V;ëÖ­ƒ’’‚‚‚лwïbÝ3jÔ(Ì;+W®D\\àÇÄãÇ1jÔ(äåå•ú¹>ˆŠŠ‚±±1êׯÐÐP4lذÈ÷=xð­[·.sTyäççcâĉhÒ¤ Ö¬Y#t"¢ÏbBDŠ‚‚ÒÒÒp÷î]Ô®]ööö˜xóæ þþûïRMQQWWǦM›ðçŸâøñã€À××¾¾¾X¼xq©Šððp˜™™¡U«V8{ö,êÖ­ûÙ÷æææ"66–# TèîÝ»X²d ‹=¢GD$.B'¢ gáÂ…eº_UUJJJHHH(Õý#FŒ€¹¹9fÍšSSS¨©©aܸqxýú5œœœpúôiLŸ>¶¶¶‹Å_l+''+V¬Àš5k`hhˆ£G¢fÍš_¼çÁƒÈÏÏgB€øøx >Í›7ÇÊ•+…ŽCDôU!¢*G]]X´h<<}ú`öìÙ¸|ù2>Œ   tïÞQQQeÎxòäIÔ¬YK–,)s[T1EEE¡oß¾°³³C¿~ýÊ⃈*$ D$Ü‚î!.)nA÷Ë §§‡ˆˆ¬X±›6m‚¡¡a©Û²¶¶Fdd$ÔÔÔ```€ØØØ2e EŸ>}P­®«šøøx888 [·nHLLÄÙ³gáççWâ3lˆˆä "’ .æí¡SG óö‚æPRR¢E‹0eʤ¦¦–©­–-[bß¾}ÈÊÊ‹/JÝNnn..^¼XªsK¨bÉÉÉADD¶lÙ‚Ñ£GCGG7Ư¿þŠ5kÖàÖ­[055:&Q™ð«4"’ Ó [cš¡üœk®]»–¹EŒ††F©Û¸~ý:222`ddTæ<$_^½z…Ë—/¾®_¿Ž¬¬,T¯^zzz1bzõê###Ô¯__è¸DDRÁ„ˆè?$ nݺ—2·•’’¨]»v©Û8þ}úÀÞÞk×®Eݺux:"¢òÁ„ˆè_"##Q³fMèêêJ¥½””´mÛ¶Ä÷>>رc:vì(å'!"’- DT%%''cÆŒ8qâRSSQ¯^=ôïßsçÎÅ!CJÝnbb"Ο?ÐÐP„††âÉ“'ÐÔÔ,Q©©© –-[JƒÊ_‹-°mÛ6©·ûßõ1{÷îŤI“0cÆ tëÖ Xºti‰FUˆˆä "ªrrssaccƒÈÈH8;;cÀ€èÖ­[©F=’’’†„††"** À?N1þ| >¼Dm†……!??ýû÷/qú<Ïð˜Â·*ÚxSSSܾ}ëׯÇO?ýlݺVVVBG#"*1 DTåøûû#88gÏž…©©i‰îMNNFXXBCC‚¨¨(H$èêêÂÄÄNNN022BÓ¦MK/88:::hÑ¢E©Û Oýû쑊V€€²²2/^ [[[Ìš5 C‡…““Sáš"¢Š‚U9„+ÎîT)))…Ghh(nݺ‰D‚fÍšÁØØóæÍƒ‘‘Q©çûåìÙ³033+õééT´ÊröHóæÍqüøqôèÑ/^¼:Q‰±!¢*§wïÞPRRÂ÷ß: víÚÐÐЀ††j×® EEE\ºt ¡¡¡¸yó&$ š6m Ìž=ÆÆÆhÖ¬Y¹d{õêîܹƒE‹•KûUYe:{D"‘ &&#GŽ: Q‰±!¢*GMM Ë–-ùsçpýúu$''#%%)))(((hkkÃÄÄ3g΄±±±Ô¶åýšsçÎ@‰§†QÕòäɼÿ;w: Q‰±!¢*iÑ¢EŸŒ2 -- YYY¨_¿¾ S ‚ƒƒÑ±cÇR^HUÇíÛ·]ºt8 QÉñD#"¢ÿ£  €š5kBSSSâC"‘ 88fff2ï›*–[·nASS³p=QE„ˆHNbbbP£F ØÙÙq × &66FFF‰D8þ|¹íÄFDTÞX€ɉ—/_B]]b±¸\Úß»w/Ú´i˜1c?ÀV =‚‘‘”””Z¦ƒ.‰ˆ„Æ]°ˆˆäÄË—/Ëeô###Ó§OÇž={Ó§O‡‡‡‡Ôû¡’{÷œŒ¤¤¤ÏþyéÒ%ÔªU çÎCãÆ…ŽMDT&,@ˆˆäDy ï߿ǠAƒ>|8×ȉD‚Y³fY*((@CCuêÔ)üsРAX¹r%5j$@Z""ébBD$'¤]€¤¤¤àÛo¿Å•+Wúúúسg8ûVH‰sçÎ…‡‡V¯^ }}ý uuuþDD• ""9ñòåKtíÚU*m%%%¡ÿþ¸uë Y³f8zô(ÔÔÔ¤Ò>•ŽD"Á‚ °eËìØ±Ó¦M:‘Ìñ+""9!­·oßÂÔÔ=B½zõP«V-–ètõwïÞ¡sçΘ9sf™óÐÿçêêŠuëÖaÓ¦M,>ˆ¨Êâ‘ÈÈÈ@jjj™ W¯^¡_¿~xûö-:tè€+W®àÔ©Shß¾}‰Ú™2e ¢¢¢8b"E?ý?öî:ªªôýûø›6cl±)sT;±¿vǨˆ]ãŒ9ÆØ c#cQ**bŒ‰Ø…Љ’ûùÃG~㈠x`^¯µ\3ž½Ï}޵öuîš1ƒ3f0gΆ®v!„PŒ€!DpïÞ=àÛÎyøð!vvv¼xñ‚-ZpìØ1V®\™â“Õ}||pww`„ ©Î#þϼyó˜4i...Œ;Ví8B¡*Bˆ4tîÜ9V­Z…–––tíÚ5Éû<<<È‘#ÖÖÖ©êçÞ½{Ô¯_Ÿ˜˜FŒÁ¸qãpvv¦wïÞ)j'>>>ñÛy}}}êׯŸª<âÿ,]º”±cÇ2aÂ&Mš¤v!„P B‘Þ¾}˰aÃX¿~=ÅŠãÕ«W¸¹¹%Y€(ŠÂºuëhß¾=¹råJq_·nÝ¢~ýúhkk³oß>ìììh×®Ó§OOq[›7oæŸþÁÐЙ‚õV®\ÉðáÃùå—_Rõû!„Y‘LÁB »}û6µkׯÝÝßÿëׯcddD«V­’¼ßßߟ›7o¦x´ $$[[[ôõõñõõe×®]DFF²dÉ’oåª( óæÍÃÆÆ†wïÞѼyóçÉh®\¹Â¡C‡P%Ýû^·n `ذaÌ;--­tÏ „‘ B¡AGÅÊÊŠÈÈHNž<É€àþýû8::&ùžµk×RªT)lllRÔWhh(vvvâëë‹¡¡! .dàÀ©:°ÎËË‹K—.Q­Z5âââ²Dò×_Ѹqc¸uëVºõ»yófþ÷¿ÿÑ¿/^,ŇBü‹ B¡Š¢°lÙ27nLõêÕ9}ú4+V`Ó¦M”(Q‚Úµkò¾7oÞàîîN¯^½RôMÛ¶m÷EO¡B…X´h111Œ7.UŸaÞ¼yXYYP¦LJ”(‘ªv2’qãÆñÓO?áé鉙™...¼{÷.Íú‹‰‰ÁÉɉnݺѳgO~ÿýw)>„â?¤BˆoMß¾}:t(C‡åÀðîÝ;ÜÝÝqttLòAÔÍͨ¨(ºw>‡ FPPýõ… "22’Å‹3dÈ ,˜âÏpæÌ¼½½3f ÏŸ?OÕJF¤§§ÇŽ;¨Q£ÑÑÑL™2…J•*1eÊ|||4ZŒ\¾|™5j°páBfÍšÅêÕ«åDs!„H‚üË(„ßàñãÇÔ¯_Ÿ7²nÝ:-Z„®îÿíïáééÉëׯ?;ýjÛ¶m4lØ¢E‹&»ÏU«V±jÕ*~ÿýwjÔ¨@PPoÞ¼ùl?_3oÞ>>ÅíeDùòåãï¿ÿ¦H‘"Ü¿ŸùóçsæÌfÍš…¡¡! , nݺäÍ›—&Mš0{ölN:õÙ’øøx|}}2d¦¦¦ >œþýûDõêÕÓùÓ !Dæ’u¾âBˆtæë닇‡ûöí£fÍšŸ\õêûöíÃÕÕõ³m¼{÷ŽlÙ²%«¿GѶm[¬­­Y¼xñG×NŸ>¹¹yŠG.EÁÅÅ…¼yóÒ«W/F…Æ ãöíÛlÞ¼9KlÇ[´hQ|||øå—_èÝ»7¥K—fÒ¤Iüõ×_hiiqîÜ9¼½½ñööfæÌ™Œ?x?‚bbbÂ?üÀ?ü€¡¡!þþþ’õC[[›6mÚ`gg'kN„ž B‘JsçÎ¥råÊ4kÖ,Éë;vì 66–N:}¶ä têÔ ---vìØ¾¾þG×iÙ²eŠòGEEѳgOÜÜÜX¹råGEÆàÁƒ)^¼8:uÂÎÎŽ½{÷R @µŸ•*UŠ;wrîÜ9¦NJ=˜1cŽŽŽXYYÑ£GÆŒCll,AAA„„„ðìÙ³O~tíÚ•öíÛcee¥ÑuÖ©Ì›7cccræÌ‰¶¶öW¼~ýšeË–Q§N&OžL£F¤BdXR€!D*\ºt‰°qãÆÏ>èmܸ‘ |qA÷»wï000øj+V¬ÀßߟO™?{öŒ[·n%î`õ%qqq°wï^<<< eÇŽ‰;jý›ƒƒ~~~888P£FĤ²‚êÕ«³{÷n‚‚‚puueéÒ¥¼xñ€bÅŠaii‰¥¥%VVV8887oÞ4ÏtöìYzôèApp03gÎä—_~Iöˆ–¢(xzzâââB“&M°¶¶fòäÉ4kÖL !D†#k@„"‚ƒƒ077Oòú‰'ðóó£_¿~_l'9# /^¼ÀÉɉ¾}ûbkkûÉõk×®P¥J•$ßÿöí[¶oßN×®])P õêÕcÆ ØÙÙdññ¹¹9§NÂÈȈڵksôèÑ/fÍl,,,رcÏž=ãæÍ›lß¾Ž;òâÅ \]]iÔ¨ÆÆÆ”.]šÎ;³`Á|}}yóæÆ2ÄÆÆ2mÚ4jÔ¨žžAAA899¥h:––Í›7çäÉ“üý÷ßèééáàà€¥¥%»ví"!!Acy…â›)"C R%((Hí(Bˆ/xðàR @E___9r¤öÑõ† *•+WVâãã¿ØŽò믿~ñPîÞ½›äu???P®]»–äõúõë+€RµjUeâĉÊÉ“'¿šë¿^¿~­4nÜXÑÕÕUÖ­[—¢÷fVñññʵk×”7*ÇWêÔ©£dÏž]---¥B… J·nÝ”¥K—*'NœP"##SÜÇÅ‹sssEGGG™Ì_ýõÅõŠ¢ýÕ3gÎP¤HŠ+–äõß”ÇÅÅ}ríéÓ§x{{³råÊ¯ŽÆ|‰‘‘ûöícðàÁôêÕ‹¦NŠžž^ªÛÌè´µµ)W®åÊ•£k×®Àû_ã«W¯ræÌΜ9C`` Û·o'&&*UªôÑô­Ê•+²^Þï¢5þ|&OžLéÒ¥9yò¤F±kiiaoo½½=þþþLŸ>:P¡B&NœHÇŽe›`!„j¤BˆT:tèÛ¶m#_¾|L›6-ñõ)S¦P½zuZµjõÅ÷GGG|µ‰‰‰!gΜŸ½þáA2©-s½¼¼P…Ÿþù‹}$‡žž+W®¤T©R8;;³k×.–.]Jƒ ¾¹íÌBWW—Ê•+S¹råÄ]Ãbbb¸t鉅Éúõë‰G__Ÿ*Uª`ee…¥¥%æææ³hÑ"NŸ>͘1c˜6mZ²wBK <ÈÉ“'™>}:ŽŽŽL:• &Ð¥K—,]D !2&Y"„)ôâÅ iÛ¶-uêÔáòåˉ;P=z¦M›öÕÅ¿ΘøÚçQQQŸ½þ¥}ûöaii™ªÓÑcccyýú5oß¾%**Š˜˜;v,AAAäÍ›—† Ò®];îÞ½›âö³ }}}ÌÍÍéß¿?«W¯æÜ¹s¼y󆀀,X€™™¾¾¾ôéÓ‡êÕ«'îŠæïïÏœ9sÒ´øø·š5k²ÿ~Μ9ƒ™™={ö¤\¹r¬Y³&U0 !DjɈB|FR Ä÷íÛGß¾}y÷î7nÄÑÑ1±ÐP…É“'cii‰ƒƒC²Ú‡¯ *Tàþýû¼zõŠ}:NNNôîÝ;Y»² !Ä·D!þ#$$„I“&±}ûvvîÜ™8•jêÔ©L›6¦M›²zõjŠ)òÑû:ÄñãÇñôôLÖÖ§É-@>¬  JrºÓ‡ƈˆZµj…§§'ðþ!xÔ¨QŒ1â«Yþ-66–-ZP @-ZDBBñññ_ü‘={vòçÏŸ¢~2³þ×™}è NÌ`S6Yï144¤nݺiœ,ùªV­Š»»;—/_fæÌ™ <˜3f0nÜ8úöíKöìÙÕŽ(„ȪT^/þCvWB=>T  èêê*¦¦¦  tíÚUQE¹y󦢫««Œ?^IHHøä½ J5”š5k&y=)W¯^UÅßßÿ‹÷ÅÇÇ+¹råR\]]“¼£äÈ‘C™6m𢧧§Œ?^yøða²süןþ©ÊÅ‹SüÞå~ÁJñI;•å~Á©ê;³(>i§ÂàMJñI;ÕŽ¢1×®]Sºwï®èèè( PæÏŸ¯¼}ûVíXBd(òœ¦²D!€={öP¦LÜÜܘ={6ׯ_§gÏž‰ç}Lž<&Nœ˜äèÆ8uê...É>øíÃ"ô¯MyÑÖÖÆÂ‚ÀÀÀ$¯ëééammÍœ9sˆ¥{÷î.\8UÐ)ŠÂܹsiÞ¼9•*UJñûgºÂÝÌ>t%ÅïÍLœ™QÜ8'N²ÆÁŒåÊ•cÆ ãàà€““?þø#gÏžU;š"‹‘DñÝ[½z5­[·¦I“&ܼy“Ñ£G“={v*T¨Àµk׸ÿ>[¶laÒ¤IäÈ‘ã“÷+ÿíGݺuiذa²ûMî,+++Μ9óÙëµk×&22’"EŠP®\¹dgø////.]ºÄرcSõþ¬ø`ž”6e¹ãÒ*ÙÓ¯2“R¥J±fÍnܸAÑ¢EiÛ¶mâ)ñB¡ R€!¾ááá?~œãÇï ‡©S§Ò¯_? €»»ûG‹¼Ë—/Ï›7o¸q㊢P­Zµ$ÛÝ»w/AAA)ý€” –––Ü»w§OŸ&y½E‹.\˜ &¤jäãƒ9sæP£F lllRõþ¬ü`þ½)^¼8¼~ýšîÝ»ËiêB‘EèBˆïÂßÿM—.]¿Éuvv&,,ŒÕ«W3kÖ,œœœ>yp¯P¡÷îÝ’Þæ6!!É“'cgg‡½½}Š2¥´÷‡6kÖì“ë5kÖäáÇ)êÿ¿ÂÂÂðõõåÏ?ÿü¦"Fd%J”`Ó¦M4oޜٳgãìì¬v$!D # Bˆ,oñâÅ4mÚ”š5kráÂæÌ™Ã¬Y³X»v-ëׯgüøñI>pÿøãèééqçÎ éäÃv¦...)Ε’äÇÄØØø³ë@4áþýûÀÿ^B4kÖŒ‰'2iÒ$Ž9¢v!D # Bˆ,m÷îÝŒ9’_~ù…9sæ ­­M•*U([¶,ÆÆÆÔ«Wï³ïÕÕÕ¥L™2ܾ}xŽÃ¿%$$0eÊ5j”ª)K))@´´´°´´üâ:oõàÁLMMÓ¬‘9M:•“'OÒ¹sgÎ;÷ÉÔB‘2"„ȲîܹC×®]iÛ¶mbññA«V­¾X||ðáÀ|ùò}òð¿cÇ.]ºÄ´iÓR•ïÃ.XÉ= ÛÊÊŠÀÀ@EIU_óàÁtuu¿«óR¢|ùò\»vºuë²o߾ą¸ñññL:•¦M›R«V­TµýîÝ;´µµÑÕMÞ`tÉ’%yòäIbá¢i< H‘"©þµY›‰‰ nnn¦z—4!„)@„YTtt4ëÖ­£W¯^¦º *ðèÑ#úôéÃÙ³géÙ³'¿þú+=zôàÚµk©ý×|XcïOawvvÆÏÏï“û>|ˆ‰‰I²GLRêÁƒ2ýJ|Q­ZµX°`K–,ÁÍÍMí8BˆLJÖ€!²¤GñâÅ ~úé§ojÇÌìýyyóæeúôé¬]»6ñÁkãÆXYY¥ºí:0sæLZ¶lI¿~ýðôôäÀ„††~2EìÎ;”(Q"Õý} "9†ʉ'øßÿþG•*U(_¾¼Ú‘„™ŒŒ€!²¤7oÞ`dd”äõ°°°d­§¨\¹2†††øûû3qâDnݺETTááá8::~SÆÜ¹sãáá¡¡!C‡åÉ“'0zôèOî¿}ûv𠲏X|––kÖ¬I<¤ð¿›3!Ä×H"„È’ÂÃÃÈ•+×G¯GGGÓ­[7 *„µµ5³fÍúb;ºººÔ­[ŸÄ×´´´Ð×××HN Nœ8Á›7o˜7o/^¼`Á‚TªTé“{ïܹÃ?þ¨‘~“òôéS (f틬ÃÐÐîÞ½K¿~ýÒlc!DÖ$ˆ"Kúpx ‰‰IâkqqqtéÒwww.\H½zõ8|øðWÛ²³³ãرcÄÆÆ¦YÞ¸¸8zöì‰#FŒøäúëׯ¹{÷.eË¦Ý ãqqq+¬DÖW¡Bþøã¶nÝÊo¿ý¦v!D&"ˆ"Kòòò¢J•*üðÃÀû3;z÷îÍž={pwwgذaqë^MS…øøxtttÒ¤}‘uéëëãææFtt4]ºt!>>^íHBˆ N !D–ãé鉑‘µjÕbƌ̛7%K–лwïÄ{ . À7’ÕfÍš5Ód Öˆ#Ð××gÅŠŸ-.^¼xÁùóç±··O|-<<œ;wâììLãÆiذ!—/_NuŽ,ʈH SSS¶nÝÊÑ£G™:uªÚq„œ Bˆ,'88zõêÅäÉ“™9s&Æ ûèž²eËR¡BvíÚ•¬6·öÕ”€€ÜÝÝ™={6ùòåûì}~~~(Š’X€¼zõŠš5kÒ¦MÖ¯_OöìÙ Å‚E‹%)H’Õ­ð¿N‰É»Xá]ãm7hЀ3f0cÆ öï߯ñö…Y‡ Bˆ,§jժܼy“   –,Y‚³³s’÷µjÕŠ={ö$>|IBBïÞ½KÕÃ}REá—_~¡Zµj_œzï§_•(Q‚%J@ÇŽ åüùóšÈÀfºÂÝÌ>t%MÚ7n-Z´ [·nܾ};MúBd~R€!²œ#FpïÞ=®^½úÉÈÇ¿µlÙ’çÏŸ3nùö/~+ÏŠ+hÞ¼y’;T¥Æ_ýʼn'˜7oÞW×]|Xÿ°aÃ<ÈöíÛ©Zµjâ=Ù²ecáÂ…:tæÌ™“¢<ºººxxxàãャ£c²Š2‘ù852£¸qNœ™¥IûÚÚÚlذE‹ýê}VVV˜˜˜°f›Ç¿Þ¾};ÁÁÁL™2Ec§OŸN“&Mhذáï ãâÅ‹ØÛÛóúõkÆG—.]hܸq’÷7lØÑ£G3gÎîܹ“¢L 4ÀÍÍ]»vѯ_?öˆŒc€MYb€MÚ'“7o^<<<¸|ù2ݺu#&&&ÍúBdNR€!¾[<àùóç4¯Uõ³ß Ÿ>}š‰'Ò¬Y3,--5ÒïåË—¹pრúê½¾¾¾ØÛÛ³ÿ~ÂÂÂpuuýâ{œÉž=;üñGгµlÙ’ 6°~ýzF%'\‹T©^½:Û·ogÏž=üüóÏDDD¨I‘H"„øn­^½šœ9s²rʨO¾¾~ý:íÛ·§FäÌ™“ h¬ßmÛ¶‘'Oš4iòÕ{½½½)]º4¦¦¦x{{cffF±bžøCCCZ·nÍöíÛSU@8::²lÙ2–,Y";‰TkÙ²%àøñã4jÔˆ/^¨I‘AH"„ø.ÅÆÆ²fͺuëF®\¹_ eàÀ˜™™qêÔ)Ö¯_Ïùóç)_¾¼FúU…m۶ѦM ¾zÿ¿×üûÿ¿¦C‡„„„$žw’Rƒ ÂÕÕ.\˜ª6„¨_¿>GåúõëØÚÚªv$!D ˆâ»´k×.?~ÌÀ÷çjLš4‰Ò¥K³}ûvæÌ™Ãõë×éÑ£‡Fç;þ<7nÜ S§N_½÷ñãÇ\½z{{{îÝ»ÇÍ›7“]€4hÐccc¶oßžê¬NNN8991zôhÖ¬Y“êv2Š´Ü‚V|ž••þþþ¼zõŠ:uêpëÖ-µ# !T&ˆâ»tæÌòäÉØ8q"¥J•bþüù 6Œ[·n1zôh²e˦ñ~}||È–-¶¶¶ÉºÀÎÎŽP¼xñdõ£§§G›6mpssû¦u³fÍbРAôë×™Œ ­· ŸW¡BŽ?ŽŽŽ?ýôÏŸ?W;’BER€!¾K5jÔÞ?`¯\¹’–-[‚««+yòäI³~°°°@__ÿ«÷z{{S¾|y *DõêÕÑ××çøñãÉî«cǎܺu‹   TçÕÒÒâ×_ÅÑÑ‘®]»&E™QZoA+¾¬X±bxyyñòåKZ·n-çÍñ“Dñ]jÓ¦ /_¾äåË—„……±fÍLMMӼ߀€jÕª•¬{ÿ½æ#{öìÔªU+E€&&&¸¹¹¥&j"mmmÖ®]‹µµ5#GŽÌ´;c¥Ç´âËJ•*Åž={8}ú4½{÷δ–„ßF !„H'<àÁƒÉ*@>|HHHÈGk>ìííñõõMöùººº´mÛ–½{÷¦:ózzzÌš5‹óçϳk×®onO|¿jÕªÅÆÙ²e “'OV;ŽBR€!D:9yò$@² oooàý(Ævvv¼|ù2E;[YYYqíÚ5^¾|™²°I°µµ¥AƒL™2E)ߤ}ûö̘1ƒ3fpóæMµã!Ò™ B‘N(^¼8… úê½ÞÞÞTªT “Ä×jÖ¬I¶lÙR4 «D‰;ƒÁÅÅ…‹/âéé©‘öÄ÷käÈ‘äÌ™“-[¶¨E‘ΤBˆt’ÚõP»víÄÑ‘äÈ—/€Ævª]»6FFF\½zU#í‰ïWŽ9hݺ5›7o–µ B|g¤BˆtMPPP² »wïrûöí$Ïü°³³ÃÏÏøøødõkll h®011!,,Lcí‰ï—££#ÁÁÁœ;wNí(Bˆt$ˆB¤ƒsçΓìõZZZIžbooÏëׯ9þ|²úÕô$]€È!"56lHþüùÙ¼y³ÚQ„éH !„HdË–ªU«~õ^oooªV­š8zñoVVVdÏž=ÙÓ°räÈA¶lÙ4¶’.@ä?‘ºººtìØ‘­[·&{TO‘ùI"„é ¹*Š’äú ¨S§NŠÖkt$""--­^“CþDjuîÜ™ÐÐPÔŽ"„H'R€!D:Hîô[·nqÿþýÏ ð~–¿¿?¡¡¡_mOQ^¿~‘‘QŠò~ÎË—/ñóó£Y³f½.‡ü‰Ôú0ªwêÔ)µ£!Ò‰ B‘ÆRr¡··7ÚÚÚÔ«Wï³÷tîÜ™\¹raaaÁñãÇ¿Ø^XX”,Y2Ź“²ÿ~âââøùçŸ5ÒžºººXXXpúôiµ£!Ò‰ B‘Æ>L-InbnnNîܹ?{Ï?þHPP¥K—ÆÎÎggçÏn‹{ëÖ- »ví¢F)RD#í ïGAÕŽ!„H'R€!Dû÷„_Ú-êkë?þ­`Á‚9r„Q£F±lÙ2ÌÌÌ(X° … ¦`Á‚˜˜˜`llLƒ Í QQQ8p€V­Z}s[Bü›µµ5·oß–í…øNèª@!²º3gÎP£F àãÝ¢þ»^âúõ넆†&«ÐÓÓcΜ9L›6ƒrîÜ9´µµÑÖÖFGG'ñ¿%J” W®\ßü9>Ldd¤ B㬬¬€÷Wš6mªr!DZ“D!Ò¢(\¸p!ñ¡Ê©‘³]Ir·(ooottt¨[·nŠúÈ–-?ÿüsš¯Ëøë¯¿(_¾<åË—OÓ~Ä÷çàÃ8´³ò›û)@„øH"„ièÎ;„‡‡'žÿ1À¦ìgwŠòööÆÊÊJ#£švãÆ ¶lÙÂäɓՎ"² 9‡¯’`ò#GP;Š"È!„HC.\ Zµj_¼OQ|||’=ý*½9’‚ 2räHµ£ˆ,È©‘¹‹—G'ì6Š¢¨G‘ƤBˆ4tóæMræÌI¡B…¾xß… xúôi†,@<==Ù·o .$GŽjÇYЛ²lÓ·¯^pïÞ=µã!Ò˜ B‘†âããÑ××ÿääðÿZ°`¦¦¦ØÚÚ¦S²ä‰ŽŽføðáÔ¯_Ÿ6mÚ¨Gda¢Ëy Bd}R€!’-00Ÿºö'GY+ /EïÞ½ñöö&!!AíhVBBŠ¢|qZÉÍ›7Ùºu+cÇŽE__?Ó}ÝâÅ‹¹}û6K—.ýj%Ä·(X° E‹•ó@„øH"„H¶iÓ¦ñ÷æUD½‹æ­Iüüü¨_¿>Å‹çï¿ÿV;^†T½zu^½zÅÊ•+?{ÏŒ3È—/}úôIÇd_÷òåKfΜÉàÁƒ©X±¢ÚqÄwÀÚÚZF@„øH"„H6gggŒ«ÔeÞ¢¥„„„pâÄ *Uª„ƒƒ[·nU9aÆÓ¤Ï#ðóó#>>þ£ëkÖ¬aýúõLŸ>ìÙ³«”2iK–,!...ñ÷]ˆ´feeEPPÐ'O„Y‹lÃ+„H¶ÚµkÓ£GöîÝN{³éhiiQ«V-öîÝKŸ>}pttäùóç 2Dí¨Êüùó ÀÖÖJ—.M¹r刊ŠâàÁƒ 8¾}ûªó#¯_¿fÉ’%ôïߟ ¨G|'¬­­yûö-×®]“Q7!²0B¤Èœ9sˆgâĉ‰¯éêê²víZFŽÉСC™2eŠl¥ù/Ù²eÃÏÏ///æÍ›‡áááÄÅűpá ¹¾bÙ²eDEE1f̵£d*+ü¯Sbò.Vø_W;J¦daa–––¬"‹“!DŠ(PFŒAß¾}177@[[›ùóçcbbÂøñãyðàK—.%gΜ*'ÎræÌI“&MhÒ¤‰ÚQ¾êÍ›7,\¸>}úP¸paµãd*³]áî‹fºòÙ'ÅçQ¾|yNŸ>MÏž=ÕŽ#„H#R€!¾(>>žàà`Ο?Ϲsç8wîçÏŸGQþüóÏÄ@KK ''' ,È Aƒð÷÷gãÆÔ¨QCÅO Rjùòå¼yó†qãÆ©%ÓqjdÆìCWpjd¦v”LËÚÚZF@„Èâd –"IgΜ¡N:äÊ•‹Š+âè舻»;¹Ã-ó­ IDATråbذaìÙ³‡3f$ùÞž={rîÜ9òæÍK:u˜>žøøx*V¬H•*U2Ü®SÁš5kxúô)ãÇW;ŠHGlÊfˆ‘ °°°àرc :Tí8Bˆ4 ˆY\pp0ŽŽŽ 6Œ2eÊ7o^ž>}J·nÝ=zôGHPPááálÚ´IcÅÇ:::ôèуN:±jÕ*&Mš„»»;?ÖØNY/_¾dÛ¶mlذá‹ßž/^œ–-[Ò²eKlllÐÓÓÓHÿ™Ytt4sæÌÁÑёҥK«G|çlmmY·nŠ¢È—BdAR€‘…iiiQ´hQòçÏÿÑ\êüùóÓ§O:tèÀãÇ)X° !!!¤Ù¨¼ÿv³lÙ²DDDеk×o.>âââðòòbÆ ìÙ³‡øøx~úé'ÜÜܨ[·.zzzèèè «ûþŸ»€€vïÞ‡‡K—.%oÞ¼4oÞœ-Z?~âããIHH >>mmíÄóºuëÖñèÑ#&L˜ v!°µµeöìÙ\¿~råÊ©G¡aR€‘Å™ššòàÁƒO^ÿPÒ¢E à}RªT)´µÓnyØéÓ§iÛ¶-Mš4aÕªU©nçŸþaÆ lÞ¼™'OžP¹re\]]éÒ¥KbA•”ÆÓ¸qc–-[FPP»wïf÷îÝlÚ´)Éû[·n‡‡G–þ6&&WWW:vì({"C¨S§:::øúúÊŸI!² )@„ÈD8pàááá”(Q###ž|H“&M(X° {÷î%G޼|ù’Í›7'nh``@Íš5©]»6FFF\¼x‘‹/òÏ?ÿpåÊ¢££ÑÓÓ£E‹L›6¦M›jlýF¡B…>úù ÿë̾–ÛÖŽŒ5Š:uêPµjUô•‘ÄÆÆ2sæLÚµkGÅŠÕŽ#D¢zõê±mÛ6Y"D$ˆØÛ·oY½z5 ,àáÇ´lÙ’õë×cffÆ;wxóæMbÁahhøÉû_¼xÁ²eˈˆˆH²ý‰'B=(R¤M›6eÑ¢E¼{÷ŽlÙ²iìs:tˆþýû£( ^^^ЫW/<==©T©Õ«W'**Š¿þú‹E‹Š+bnnN=¨\¹2æææäÉ“GcÙ>çÃÙJùŸ)wó":uâÌ™3[0ŸQlÙ²…Û·o³sçNµ£ñ[[[,XÀíÛ·)Y²¤Úq„š¤ˆ %((H”   µ£•<~üX9|ø°2qâDÅØØXÑÕÕUºwï®\¾|9Mú‹ŽŽV,--•&Mš(W®\QeçÎi;44Téܹ³(¶¶¶Ê7¯]ºtI”|?U–ûô¾‡*!!!J\\œFr¤Ær¿`¥ø¤Êr¿`åêÕ«JŽ9”Þ½{«–'-ÄÅÅ)eÊ”QZ¶l©v!>ñòåKEKKKY»v­ÚQ„H$Ïiš!# B¨èþýûxyyqéÒ%.^¼È¥K—  gΜôîݛѣGS¼xñ4Ë ¯¯OÆ Ù²e *T jÕªlÛ¶V­Z¥ºÍ„„V­Z…““zzzlذnݺ}4bîܹèåãya‹ON`.\¸ð7}&MøïÙË–-£wïÞ4lØÎ;«˜Ls¶oßNHH[·nU;ŠŸÈ“'U«VÅ××—^½z©G¡AR€¡’èèhjÕªEhh(eÊ”¡råÊ <˜Ê•+S©R%J•*…ŽŽNºd)_¾<÷îÝ#""‚Ž;2cÆ âââ·®M‰[·nÑ¥KN:EŸ>}˜={6ùòåûèž»wï²eËZC`ÞÜææ/éÙ³'‡bРA´k×.KœòÇP¿~},,,ÔŽ"D’lmmÙ½{·Ú1„&ˆ*Ùºu+>äòå˘™©û^¾|yàýéáuêÔ!22’k×®Q©R¥µ£( ={öäñãÇøûûS·nÝ$ï[°`FFF¬Ÿ=!Ó¬©ÐÒÒbøðálݺ•   jÖ¬©v¤oòìÙ3|}}ùý÷ßÕŽ"ÄgÙÚÚ²dÉîÝ»—¦ç !ÒWÚmö/„ø,EQ˜?>ªÙ³gàéÓ§‰;=?>Åí¸¹¹áïïÏš5k>[|„……±f͆ –iŠÌÍÍ144ÄÇÇGí(ßlÏž=$$$вeKµ£ñY666øùù©œD¡IR€¡._¾ÌèÑ£ÕŽÀªU«ÈŸ??¶¶¶äΛ’%KrîܹµÁ/¿üB«V­hذágï[ºt)ÚÚÚ 2ä[c§;===êÖ­›% lll(P €ÚQ„ø¬~øŠ+âëë«v!„I"„ ¼½½166¦^½zjGáåË—¬[·ŽAƒ%n½[­Zµ€,]º”§OŸ²`Á‚ÏÞóæÍ–-[F¿~ý>Y’YØÙÙqìØ1bccÕŽ’j¯_¿æðáômÛVí(B|•­­­ Bd1R€¡‚cÇŽQ§N´µÕý+¨( ãÇ'..Ž$¾^¾|ynܸ‘¢¶tttPå³gŽ(ŠÂŒ3ˆˆˆ`Ô¨Qß”[MvvvDDD¤v”TÛ¿?111´nÝZí(B|•­­-!!!„††ªE¡!R€‘Îâââøì‰ôò¡øX¹r%Ë–-ûh*Î?üÀóçÏSÔÞðáÃ)S¦ ½{÷&..î£kQQQtïÞ¹sç2uêTLMM5òÔÖxxx`mmMÑ¢EÕŽ"ÄW})–Q!²)@„HgþþþDDD¨^€,\¸9sæ°hÑ"úöíûÑ5ccc"""ˆŽŽNv{¬]»–³gÏÒªU+-Z„W®\ÁÆÆ¶nÝŠ³³³¦?JºÊìë@"##9pàmÚ´Q;ŠÉR°`AÊ•+'ˆYˆ B¤£€€Ú´iƒ……–––ªf¹páÙ²e£Q£FŸ\{ñâð~­@JÔ¨Qƒ+V†³³3öööT¬X‘gÏžqâÄ :uꤑìjËÌë@¼¼¼ˆŠŠ’õYÔ ÿ딘¼‹þ×ÕŽ¢QõêÕ“°„ÈB¤"²qãFÚ´iCÓ¦M9sæ ÿü󦦦øøøÐ¶mÛošZ'Ä—¤åL‹-xöì§NÒxÛBˆô%ˆiìÂ… T¯^]å$ÿgðàÁܺu CCC¦M›Æµk×2T¾ÌÂÚÚšÞ½{3qâDž={¦vœD‡¦Zµj¸¹¹‘3gNJ–,‰nnnŒ7NíxB¤Šµµ5?üð{÷îU;Šâéª@ˆ¬îòåËhkkS¾|yµ£$ cèСLš4)U;]‰ÿãêꊇ‡&LÈ0#!úúúèëë4Ò¡££CûöíUL•¹DGGˆ¯¯/~~~£¥¥…ŽŽÚÚÚ‰?¾ôóÿ^Ë›7/-[¶¤eË–©ý3š7oξ}ûpuuU;ŽâH"D+Y²$ „„„`f¦ÎÎ4ÿååå¥v„,#þü¸¸¸0bÄúõ뇅……Ú‘ÐÓÓ#&&Fí™Ntt4 .äàÁƒœGŽÉ0ˆÐ¬Aƒ±zõj†ʱcÇTßAL__?S’¨¦W¯^ѺukNœ8A³f͘5k¶¶¶T­ZTµËáÇٺu+G%** ºwïÎ?ü¼ß¶vö¡+852SmçªÌ¤qãÆèéé±oß>† ¢v!D*É!ÒXŽ9¨U«GŽQ;ŠH#ºººüú믰iÓ&µã ¯¯/# )pïÞ=êÔ©Ã?ÿüÑ#Gعs'#GŽÄÜÜ<ÅÅGBBþþþ 4ˆÂ… Ó¬Y3NŸ>ÍèÑ£ æÌ™3 6,±Hͪ¦###lmmÙ·oŸÚQ„ß@ !ÒAƒ ðöö&..Ní("ØÙÙÑ¡CÆŒÃTÍ’-[6ÂÃÃQEÕ™Áùóç©Y³&QQQœ8q‚ºu릪sçÎ1vìXJ”(A½zõØ»w/½zõâìÙ³\½z•)S¦P¶ì§#j˜µhÑoooÞ¼y£v!D*I"D:hРááá©E¤¡Å‹c``@³fÍxýúµj9êԩÓ'Ow`Iûû￱±±¡H‘"P®\¹Tµãì쌹¹9ëÖ­ÃÁÁ???îÞ½Ëܹs©^½ú·=VûàÀÌÈÁÁ˜˜>¬v!D*I"D:°²²"GŽ=zTí(" *T///îß¿OëÖ­‰ŽŽV%GýúõÉ›7/îîîªôŸÑݽ{—¡C‡Ò¼ysìììðññ¡@©jë?þÀÕÕ•3fðèÑ#~ÿýwlllT_”••,Y333ÙŽWˆLLþ…",^¼˜ÈÈHŠ/®v‘ÆÌÌÌØ³g'Nœ gÏž$$$¤{===Zµj…»»»LÃ"## âÏ?ÿ¤G”.]š­[·âââÂÎ;É™3gªÚõööfÀ€ôë×gggôôô4œ\|Žƒƒû÷ïWåï—âÛI"D[½z5cÇŽeâĉtéÒEí8"ØØØ°yóf¶oßÎØ±cUÉо}{BBB¸xñ¢*ýgñññL˜0\¹raiiI=8qâóæÍãîÝ»8;;£«›ºÍ ƒƒƒiÓ¦ vvv,[¶LN—Og<}ú”ÀÀ@µ£!RA !Ò››ýû÷gðàÁ¸¸¸¨G¤£¶mÛ²téR,XÀâŋӽÿ 'OÖ¯_ÿÕ{Wø_§Ää]¬ð¿žöÁ>CÓ#5¯^½âçŸföìÙLœ8‘S§NNHH#FŒHõ¨À³gÏhÞ¼9… ÂÝÝ]F>TP«V-Œe7,!2))@„H#^^^tíÚ•.]º°téRù†ô;4dÈÆǨQ£pssK×¾õõõ5j¿þú+—/_þâ½ÿÝ VQœ)^¼86lH³i.±±±ìÚµ‹Ÿþ}}}ìììX»ví7o!üàÁjÔ¨Á‰'ðôôdÚ´iX[[“+W®oÎMëÖ­yýú5ûöí#Ož<ßܦH9]]]š6m*ë@„Ȥ¤" ¸¹¹Ñ¦M~úé'Ö­[' R¿c³fÍ¢K—.tëÖ __ßtí{ìØ±”*UŠ|±ˆøïV°³gÏÆÕÕSSSzöìI­Zµ8uê”F³=xð€ºuëÒºukBCC™2e zzzôéÓ盦­½~ýšfÍšñîÝ;iÒ¤‰Æ2+ŠBß¾} d÷îÝ”,YRcm‹”kÑ¢.\àþýûjGB¤”"2”   P‚‚‚ÔŽ"R!,,LéСƒ(íÚµS"##ÕŽ$2€èèh¥AƒJîܹ•tíûèÑ£  üñÇɺÿŸþQeÒ¤IŠ¢(Н¯¯RµjUPºwï®L§Nd͇øˆ‘‘yóæUå€Âùóç£( cÆŒùâ}oÞ¼aãÆôéÓ磅Õ:::ôïߟúôéäI“¨X±"»víJöâñÈÈHºvíÊÈ‘#1bÄÄÄä“ûräÈÁÌ™3qwwgΜ9‰í+Š’x®Ê׬\¹r…š5k²}ûv6lØ€½½}²2%W@@=zô K—.Lž}°°° &&†Ó§OÓ¹sçýÚ|ÍíÛ·iÙ²%–––üñÇòÅBÓ¢E ¢££9räˆÚQ„) ˆ©tùòe&MšD¹rå077çøñ㸸¸È‚sñY¹sçV¥èÝ»7uêÔaÀ€Ÿ=¡}ÕªU´hÑSSÓ/¶U¡B¼¼¼ðññÁÜÜœqãÆQ¤HzöìÉÉ“'Q…°°0¦L™B±bÅ5j666Ñ©S§¯fÕÒÒbÚ´iüúë¯üý÷ß<{öŒ~ýú±víZœqlך¶u«‘W;–Ó§O3pà@Μ9CµjÕRõkó9Š¢Ð¦MråÊÅÎ;É–-›FÛß®L™2”-[µ£!RBÅé_" 2·0ã»té’baa¡Jîܹ•^½z)^^^Í™") 4PÚµk§Zÿ/^Ttuu•#F|²F)222E‹ÕÿíñãÇŠ«««R¢D PÌÌÌ”ìÙ³+9räP†®Ü¹sGS!]8qB”C‡©E|Áܹs===åîÝ»jGßyNÓ ùªVˆؼy3ÖÖÖDGG³gϞÆ #!!Aí8Bˆ/Dˆ/ eîܹ >œ%J¨'Ídćý6e¹ãÒŠ6eÕŽ’lžžž”/_žõë×3þ|Ξ=K:uÔŽõYZZZÌ;—aÆ.Èÿ·gÏ"""4~¦ˆZ2âgZÈ›7/k×®ÅÃÃáÇ'ûL!DúS2²Ø®]»ˆŒŒ$((ˆÝ»wÓ¼yó 1‡_ÓØ”ÍTú•““?þø#îîî‰giÄÅÅȱcÇÈž=;EŠÁÔÔ”"EŠP @Õ8kii±xñb¬­­iÖ¬™ªY2Š-[¶P³fMJ•*¥vø÷gVÿ{Þ¶m[V¬XA¿~ý011‘“ë…È ²Þ“”Ô»wo X±b­Zµ¢H‘"ôéÓ‡>}ú|õ°6‘¹¬ð¿ÎìCWpjd–ꇴøøxjÖ¬‰©©)¾¾¾,Y²„#GŽNΜ9‰%&&&ñ~ ,ˆ©©)õêÕcöìÙªd©¥¥…££cº÷›={ö ///-Z¤vqjd–øgû{зo_˜0a&&& 8PíHBˆÿ)XB|½{÷æôéÓœ={,X@ñâÅùùçŸÙ¿?ñññjÇ ‰u0ÚÚÚ\¼x{{{ììì¸yó&cÆŒáäÉ“¼zõЍ¨(žˆŠŠBII  PåÙ“JJJЫW¯Ê1G´ÖLÝËÌÌD»vípàÀŒ;–u"$………عs'Ö­[‡œœŒ7 ,€¶¶6ëhD ÑušpP"bèƒ-­y„ IDATž „;w"99ššš˜:u*ºté‚ÔÔÔÏŠ‚‚@£F```CCÃÏrrrÐÑÑÁ¨Q£°cÇÆgFêRZZ:wîŒÙ³gcÕªU¬ã48¾¾¾X±b²³³Ñ¤I“O㊈ð! k×®Evv6F… BOOu4"Fè:M8¨1ôÁoÇáêիعs'BBBP\\ èëëQh´oßþ«­$nnn ÂÇÑ¢E gAXrqqADD222h Š:Ö©S'âСCB9^»%'‘™Wˆ¶Jòx²ÂQ(Ç$5W\\ŒÀÀ@øúú"++ #FŒÀ¢E‹`hhÈ:t&4!âñxèÝ»7öíÛ‡—/_âÁƒ(,,ÄíÛ· <:tøjñ‘’’‚;wbÉ’%T|4PÎÎÎÈÌÌÄ7XGiP’““‘œœŒÑ£G 혢¸¾deeáææ†‡bÇŽ¸rå ŒŒŒàì쌤¤$Öñi¨!¤–4kÖ ZZZUZçÁÛÛíÛ·ÇŒ3j1ePQQÁ‘#GXGiP‚ƒƒ¡¤¤[[[¡³!Î>%Nddd0mÚ4ž>} ÖQj•0Öº©Ïø|>&Nœˆû÷ïCyÈ,½yß_0`ÀÄÇdzŽGH½B!"âôéÓèÖ­[µ×!âã—_~ššÆ‡¸¸¸/^·°°€‚‚¢¢¢¤kxѸqc<þœu”ZEcR~Œ””~óœŽ6n`Ò?ddd gÏž°µµEJJ ëx„Ô T€"JKKA­ D«V­W¯^…™™fÌ˜ŠŠŠÊ×%%%Ñ­[7\¿~UÄ…Çã¡C‡xôèë(µŠÆ¤ü8sdþ6Ë=p÷î]„„„ 33]»vE@@u$¤†¨!D\¾|ï޽àAƒXG!u K—.())ÁÍ›7±mÛ6lß¾ÇÇÇ+·éÑ£âããéB§–}ÁSP­÷© üüóϸ}û6&NœˆiÓ¦aĈÈÏÏg±E!Œ•——c÷îÝhÕªLLLXÇ!u k×®€ÄÄDLŸ>§N¹sçàææV¹M÷îÝ‘§OŸ²ŠÙ |ñ¸LŽ ò]5ÂŽ;päÈœ={¦¦¦4N‹j¢„†ÒÓÓaff†¿þú .¤…ç===ÈÉÉáæÍ›üöÛo Bff&ÀÔÔh]‚Zöi\ÄÀÞ¦xúô)ÊÊÊXGú!4£;NNNHLLD‹-`kkK…+!Õ@!u¬¤¤áááøõ×_abb‚¼¼<\¾|Ó§OgÔ)))˜šš"!!¡ò¹©S§BAA6l€ÊY²š7oÎ$cCñi\Ä/v½QQQQYŠ:šÑŠ­víÚ!22Í›7ÇàÁƒñîÝ;Ö‘+T€R>|ø€#GŽ`ôèÑPQQƒƒ¢££áéé‰Û·o£W¯^¬#’:Ö±cGÜ»w¯òïòòò˜5kvïÞììl<~ü ©©É*bƒòéßùÓ¿»¨£­ØSTTDhh(ž?Ž1cÆ|6‘!äû¨!¤½zõ “&MBóæÍáììŒû÷ïcîܹHNNFzz:V®\ yyyÖ1 %%%_|ïÝÝÝ!%%…yóæ!-- òòòPQQa”°aiÓ¦ qì˜x,|aaaX¼x1ë8„ˆ )Ö©ÊË˱uëV,[¶ ÒÒÒX¹r%œœœÐ¾}{Öшˆ(((€‚‚ÂgÏ)**bóæÍpqqǃžž ª#RRRX²d <==áææ†N:±ŽDÄ„½½=Ö­[///aÔ¨Q¬#"ò¨„!{ýú5lllàåå…ñãÇ#==^^^T|ÏäççQ€ÀäÉ“qñâE¨ªªVD'uÃÍÍ ÚÚÚ˜3gMLªÄÓÓãÆÃ¤I“hf,B~µ€"DñññprrBYY¢££aaaÁ:QÐÑùz÷™Þ½{ãÑ£Guœªaãóùظq# €¿ÿþŽŽŽ¬#1Áãñ€ôôt8::âæÍ›PSSc‹‘E- „É®]»`aa $$$PñA¾«  Íš5ûæëÒÒÒ••­ÃDµçÍ›7 ÃëׯYGùOööö°µµÅܹsQRRÂ:#²²²8qâ`èС(..fœˆÑE!B°uëVüú믘¿ýö²³³YÇ!b¦[·n Äþýû±sçNÖqIT€RÅÅÅ=z4´µµ±víZÖqˆ˜hÒ¤ ¶oߎիWcóæÍعs'ÂÃÃYGŠ˜˜˜ ''ÑÑÑøóÏ?ahhˆ+V@^^ñññ¬#þ§eË–ÏçcÑ¢E¬£14zôhLŸ>³gÏFbb"ë8„ˆ*@©¤§§ãàÁƒõ¦¿>©}’’’ˆŽŽ†²²2¶lÙ‚Å‹ÃÕÕbßoüýû÷˜9s&ˆ;wî oß¾•¯IHH S§NbqA¦¤¤„åË—#00·oßf‡ˆ ÿØt´[rþ±é_}ÝÏÏúúú1bÞ¿_ÇémT€RMQQQؼy3|}}iÍReÆÆÆ¸xñ"²³³ñþý{8;;£k×®b_Èúúú¢  [¶lùjwDܹs‡A²ª›6môôô0{ölêËO¾à•ŠÌ¼BøF¥~õuYYY„„„àÅ‹puu¥Ï!ÿB!Õtüøqðù|ZtŠÔXyy9"##áààÀ:JdffÂÏÏsçÎE›6m¾º±±1îß¿/-=|>›6mÂ¥K—püøqÖqˆˆ™oc€¶Jò˜ocðÍm´µµ€ƒbÏž=u˜ŽÑF!Õ´téR(**b„ ´^©‘k×®!?? `¥FæÏŸ%%%x{{sTTT %%¥“UŸ­­- €¹sçŠEÑDꎋ¹ž¬p„‹ù××óùdÔ¨Q˜:u*f̘»wïÖQ:BD „©²²2dee!99(((›fê–-["((QQQX·në8DŒ………¡E‹èÚµ+ë(ÕvõêU>|«V­BãÆ¿¹]ÇŽÁãñÄbÈ'~~~xþü96mÚÄ: S›7oF‡àììŒÂÂBÖqaŽVB'µN àøñãˆEvvög¼¼¼/¶—””D³fÍ ¤¤EEE())}öµ¢¢"4440lØ0HJJ28£ÿgccƒùóçcÑ¢E°··‡±±1Óš4iòCY¤¤¤Ð½{w±XÛ€ˆžððpHJJ¢ÿþ¬£TKQQ¼½½áèèøÙ”»ßcbb‚ˆˆpW»…DAA{öì üýý1}útÖ‘ê­Ï.UŸ ÿØtø>lŠžvCáêê šA‘4XT€’““ƒuëÖá?þ@ii)***mÚ´ŸÏGEEE壨¨oß¾Eÿþý±sçNôîÝ[èy € .`àÀ033CDDÄw»Eüý÷ߨ²e Ö¬YƒY³f¡¬¬ ÷ïßGjjjåãèÑ£ÈÈȨܧuëÖ•I¯^½0`À€o¶–ôèÑþþþbuAEØJOOǦM›°oß>XZZBQQ‘u¤*ã8 .Ä«W¯°~ýúÞ¯uëÖx÷î^¼xuuõZL(\ÖÖÖpuu…——ú÷ï---Ö‘ê¥ù6•- õɧÂJ`ì Ýì'°³³Ã•+WЮ];ÖÑ©sDãÆ1dÈŒ5 ýû÷ŸÏ¯Ü/,, ÄãÇѾ}ûZ9W"þ8ŽC\\6lØ€ÐÐP´hÑîîîpssû¡VŸ¸¸¸¯ö& ¢I¯ÓÄGDJBB€KHH`¥’··7פIîåË—¬£|Õ‹/8NAA‹‰‰ùì5@ÀÙÙÙq-[¶äÞ¼ySí÷xðà·bÅ N__ŸÀ)))qÓ¦Mãbbb¸ŠŠ îÒ¥KîСC5=";.¥qmŸàv\Jc–!99™;tè·bÅ nܸq\Ïž=9eee§¯¯ÏíÚµ‹+**b–¯&rss¹Ÿ~ú‰“––æ<øÃû näÈ‘\Ó¦M¹Ç×bÂÚuéÒ%ŽÇãq6l`…ˆ±p-Z´àºwïÎ}øðuòƒDñ:MQ"bD탟ŸÏ5mÚ”›;w.Çq¢qa÷5\¿~ý8iiiîÈ‘#•ÏoÞ¼™ÀEDDå}—˜˜Èy{{smÛ¶åpŠŠŠNEE…»råŠPÞ‡ÔLÛÅ'8¸qmŸ`òþGŽáp¸æÍ›s½zõâÆÏ­\¹’‹ŒŒä***˜ä†‡r:::œ²²2[¥}÷ìÙÃà>\Kéꎧ§''##Ãݹs‡u"ÆnÞ¼É5nܘ³··çJKKYÇ!?@Ô®ÓÄ "FÔ>Øë֭㤥¥¹¬¬,ŽãØ_Ø}OII 7jÔ(ŽÇãq¾¾¾Üرc9ܬY³jåý***¸¸¸8ÎÇLJû믿¸’’’ZyRu, 劊 ÎÈȈëׯ÷öíÛ:ÿÚÖ¿NSS“{ðàA•ö«¨¨àTUU¹±cÇÖR²ºUTTÄsÜÓ§OYÇ!bììÙ³ŸÏçÆÏ Öqȵë4qEƒÐÉwÅÄÄÀÚÚ­Zµ Úƒ¥¥¥55µÊ™1qâÄZy? ôîÝ»Nƺªq1×a6{NXX’““qñâE4kÖŒI†ÚR\\ŒK—.aÕªUU€€ììlL:µ–ÒÕ-YYYœ9s½{÷†­­-._¾,vãxÄQ}œ¢×ÆÆû÷ïǨQ£Ð²eK¬]»–u$Bj 今‹‹¡¢¢RùwsL3ÓF~~>ÃTß&!!??¿ÊE[´hÁ:i`vìØž={‚u¡»zõ*Š‹‹Ñ¯_¿*ï{æÌ(((Ô«‚½U«VˆŒŒDŸ>}0hÐ DEEÕx]!ò}õuŠÞ‘#G";;³gÏ†ŠŠ <==YG"¤VÑJJä»JJJ ##¨¨¨À±cÇгgO´hÑB¤W2¶¶¶¦âƒÔ¹¢¢"ÄÄÄ`øðᬣԊ .@YYù«³Í}O^^V¯^±cÇBJª~Ý÷ÒÕÕEXX1räH”——WùÇáÝ»wxðà._¾ŒÓ§O£¸¸¸ÒŠ¿ù6h«$/’­ð55kÖ,øøø`îܹðôô¬œîžúˆ ò]Ÿ~ @__NNN““ƒªª*¶lÙÂ8!¢%66EEE°³³c¥V\¸p–––UZüýû÷°··GÓ¦Mxª^qÓ£G=zááápqq÷³Û———#88}ûöEûöí!//èèèÀÜ܃ ÂîÝ»ë(½xq1×Á“ŽõªõãßV­Z…ßÿ[¶lÁÀQPPÀ:!µ‚ ò]%%%Ø·o\\\ЩS'ÄÇÇ#::3gÎDpp0Þ¼yÃ:"!"#""êêê044dEèÞ¿ëׯW©ûUqq1qÿþ}DFFBSS³²eooÀÀ@bÉ’%_݆ã8BOOcÆŒ´´4F…5kÖàСCˆŽŽFjj*,--qêÔ©:>" x<ÜÝÝŽk×®¡gÏžxðàëX„]ýj 'B7dÈôéÓžžžÐÖÖ®|~Ê”)X¾|9°páB†  yyyØ»w/&L˜ðÝÅ.ÅUll,ÊËËaeeõCÛ—••aäÈ‘¸rå Ξ=Û ì?~<^½zooo¨©©aúô镯aâĉ ÁÏ?ÿŒ#GŽÀÔÔô«Çqtt„——>|ø€Æ×U|"BlllÁƒ£G µµ5ëX„ µ€ïúí·ßàïïÿYñÊÊÊ2dNŸ>Í(!¢eÍš5(//‡ë(µâÂ… PWWÿâgÁ×Lš4 aaa8~ü8ÌÍÍë ¡hðòòÂìÙ³áîîŽíÛ·ãúõëHHH@ß¾}qêÔ)=z!!!ß,>`À€(--Ettt&}þ±éh·ä$ücÓYG©:::¸víºwï;;;lÛ¶í?»÷".¨„T[Û¶mqýúuÖ1aîéÓ§øý÷ßáããUUUÖqjÅ… Я_¿ÿlÝá83fÌÀÁƒqøðaØÛÛ×QB¶þ==¬ŸŸÞ¼y77·Ê×[µj…Ë—/ÿPKP“&M€!ÿú:Ö÷4kÖ §OŸ†——ÜÝÝqïÞ=üñǬcRcÔBª­yóæ4„K—.…‚‚B½d}ýúuܾ}üÏm-Z„íÛ·# ÎÎÎuN4üûâXBBÀãÇ‘˜˜ˆØØXܽ{÷‡»¡½xñ ®®^›‘ÅN}žë{¤¤¤àéé 555>|%%%¬#RcÔBª­E‹xÿþ=JJJ %%…°°0¼|ùÓ¦Mc:“œœŒ}ûöá÷߯¼s]ß,Y²6lØw·[·nV¯^ 6`Ê”)u”N4üï"­<íÛ·¯Ö±> Ÿ€%ÿ`¹À( ŸZÕÆuŸ‹\!--óçÏWNOˆ8£„TÛ§u6V¯^ƒâÑ£G€ &@VV–e4Bª,33:u˜1c°páºûüøñcŒ=šššøõ×_ë eÝ‹‹‹Cdd$BBBPZZŠ˜˜”••aÀ€ØuåQåE·Ä½x{{cÑ¢E r5a^geeÇãÕÛî|äÇøF¥"ónV­Ûc}œ9sjjj¬c"Ô‹TÛ§_Ž«V­B·nÝàëë xõêËX„TK«V­ ««‹;v@KK žžžxýúõ7·ˆˆ@×®]QTT„“'O‚Ïç×aÚº³zõjÀ¾}û ¬¬  2zzzX¸v32ßäcñ¦pqq»»;V¬XÁ8±ø{ñâTUUëÝ¢¤j<,4!µ ÚqñâE*>H½B©¶Î;#((Ož<Á¡C‡0`ÀÀË—/'#¤êø|>‚‚‚ '')))ìÞ½ššš˜>}:þøã„……!55………XµjЫW/ܼy;vd¿Öôë×­ZµÂ‡°|ùr¤¤¤àÆ066ÆÛ3þ ò@^èVŒ;[¶l©—S×µ/^P÷+‰û—À},@XÈA4mÚ”uB„Šn¯jãñx3fLåß?ÝùÔ™q£££ƒ7ÂÅÅçÎÃùóçqìØ1¢´´ô³m—.]Š%K–TiUpqäááñÕÁõGÅýû÷±aÃðx<ìØ±£Þÿ[Ô•¬¬,*@ªáß3‘‰ûX‘’’øúúb̘1ÐÒÒb‡¡£„@ ºJÄÚ¤I“àãニ/bõêÕX½z5^¾|‰Ç###ššš033c•9===ìÞ½›uŒz'==¶¶¶¬cˆú4Mïž={ðâÅ Zè—Ô[t»Š|¦¤¤¤Ú eee ©#‰xãóùppp@hhhåsPWW‡¹¹9ÆOÅ©5OŸ>Ńзo_ÖQÄN}™¦·¬¬ kÖ¬ÁÈ‘#¡««Ë:!µ‚Z@€Z/V­Z…¥K—¢wïÞ˜1cLLLÀçó!--]ùàóù‘‘ùêàHš»žˆ“ˆˆœ:u ººº000€®®.RRRpòäIœ={999(**B£FXG% ÈùóçÁãñ`iiÉ:ŠØ©/Óô¾ÿÏž=ƒ ë(„Ô*@òóó1~üxœ>}îîî¸qãFŽùÍí¥¥¥±`Á,X°à³™2dîÝ»SSSdff"66¨Û“ ¤ŠbbbP^^ŽÃ‡WËZZZ4Ó a.%%ÙÙÙ°¶¶f…0fcc???¤¦¦ÂÐÐuB„Ž LII ‹/Frr2ÒÓÓ±zõj¼{÷À?ƒnÛ¶m èêêÂÂÂǯÜ÷ÓÄüü|ÀáÇѨQ# 2¤îO„*(..†œœu¯""çôéÓ••EŸ>}XG!Œ™››CFFQQQT€z‰ LFFÞÞÞ•ç8¯_¿Fzz:ÒÓÓ‘––†ôôtDDD`ëÖ­¸xñ",,,Íš5ðÿHpp0Œ&MšÔý‰RÅÅÅ•Ý åååX±b~ûí7Œ7Ž>Ÿrrr033ÃÙ³g1{ölÖq:*@H%UUU¨ªªÂÜܼòy@€nݺÁÛÛW®\ǃ‚‚àíÛ·HIIARRV®\É*:!?¬´´ô«³¸ÂÂÓ§O1fÌ\½z+V¬€ëHDDØØØ`ÅŠxÿþ=ÝÜ#õ­Bþ“„„|}}qíÚ5üý÷ß)))4iÒùùù¸|ù2$$$пÆI ùoºººÈÊÊÂëׯYG! ܉'`bb‚§OŸââÅ‹X´h$%%YÇ""bôèÑ(--Å®]»XG!Dè¨!?ÄÆÆ666˜:u*.^¼àŸnXùùùxøð!ÚµkG݈Xø´¾Btt4ã$¤¡***‚››† KKK$&&Ò¸ò…Ö­[cìØ±ðóóûlªpBê*@È;t茌Œ`mm pŽãðàÁšAˆˆV­ZA__.\`…4PS¦LÁž={°cÇ=zŠŠŠ¬#5oÞ<¼xñd…¡¢ŽÐä‡)++#22puu¨ªªâĉèÛ·ïgÛ–––"..‘‘‘¸zõ* ¡¡Ö­[£uëÖ•_khh@FF†ÁÙ†ÌÊÊ ¬c*::pqqa…ˆ8}}} 2ëÖ­Ãĉ!!A÷Iý@ŸdR%|>¿ÿþ; -- LMM¿Ú\,//]]]X[[£S§NPù'!uAJJ ÁÁÁÈË˃‹‹ è> ©+III‘‘¶¶v¼Ÿl:Ú-9 ÿØô:y?òm¾Q©ÈÌ+„oTj•÷]²d nܸ#GŽÔB2Bê ¤Fš6mŠóçÏWv½ªê\åIII——G»víj' !ßо}{àðáà b‡4©©©ÐÕÕ­³µhjrÑK„k¾Ú*Éc¾A•÷íׯ ///ÕB:Bê „)>ŸŠŠ ÖQH4bÄØÛÛc÷îݬ£BVV¥¥¥uö~5¹è%Âåb®ƒ'+«Üýê???¼|ù~~~BNFHÝ£„0ÕµkW#5•îÎ6põêU|üø‘uÒ´nÝÏž=«³n5½è­êöU;´µµ1sæL¬Y³YYY¬ãR#T€& qþüy„††øgP!,XYY¡¬¬ qqq¬£ uëÖ(,,D~~>ë(µ†º}՞ŋC^^óçÏg…¡„Ô‰‚‚œ9sÞÞÞèÕ«š5kkkkìÙ³ŽŽŽèÝ»7눤Ò×ׇªª*-LHêD›6mOŸ>eœ¤öP·¯Ú£  €U«V!((×®]c‡j£…I­ŠŽŽÆÂ… qíÚ5p555üôÓO?~<,,, ¯¯O +¦x<¬¬¬¨!u¢uëÖ€gÏžÕÛµ@\Ìuê´ËWC3iÒ$lÛ¶ ³gÏÆ•+Wèw(Kô©%µ"33ÎÎΰ²²âáÇÈÊÊ¡C‡àêê CCCúÁID‚¥¥%nÞ¼‰‚‚ÖQH=ײeK4nÜ;wîDII ë8D IJJbË–-ˆGpp0ë8„T ]ý¡***Š+ ¯¯Ë—/ãÀˆ‹‹Ã/¿ü‚:ÐJD$YYYA àÒ¥K¬£zNRR‡FTTiòR-?ýô†Žùó磰°uBªŒ "ÇáØ±cÐ××Ço¿ý†Y³f!-- cÇŽ¥¢ƒˆÚ·owwwlÞ¼™º±CƒÐI-^¼))) ƒƒƒë8„T‹©©) hl©ÆÆÆÆÞ½{1iÒ$4mÚ”u$R>|€††Æ7_WWW‡¶¶6ttt ##ƒ¤¤$$%%áíÛ·þ™ÑÊØØÖÖÖðôôDZZæÎ‹/^`ýúõ?ôsÈÃÿÿþ;vî܉yóæ íÜ©mT€»q㜜œ¨ø b­sçÎøðá>|šÁ‡ÔÂÂB,]º„½½=ë8¤ 7nŒ¿þú 7nD|||åó222èС´´´ ##ƒëׯ£¸¸FFFððð€±±1ŒÑºuë/º(·mÛ3gÎÄ«W¯°wï^HKK7C«V­0nÜ8lÚ´ 3g΄¬¬l­œ+!ÂF©‘> ==ÞÞÞ¬£R#¦¦¦€Û·oSBêÌêÕ«ñúõklÙ²…uR ÎÎÎpvvðOwäððp„‡‡ãüùóHMM…ºº::uê>ŸŠŠ ܽ{iii8~ü8ø|>ø|>¤¤¤ ©© www¸»»£eË–3f ^¿~ãÇÿgwf///ìÙ³ÀÔ©Sëâ´ ©1êg@jäãÇà8ÊÊʬ£R#Í›7GëÖ­qëÖ-ÖQHñàÁlذÞÞÞÐÔÔd‡ÔP»víàêêŠÐÐPäåå!** #FŒ€¬¬,>~üˆœœ<}úéééHLLÄ•+WpáÂxzzÂÉÉ EEEprrBdd$®_¿ŽÞ½{#99ù»ï«««‹¡C‡býúõ¨¨¨¨£³%¤f¨„Ôˆ¼¼<ÐT’¤^055ÅíÛ·YÇ Çq˜9s&ÔÔÔ¨¹’‘‘µµ5¬­­hû°°08;;ÃÚÚ¡¡¡èÛ·/®\¹‚‘#G¢k×®ðõõŬY³¾9.ÄÛÛ=zôÀÉ“'1|øpaž !µ‚Z@H4jÔðøñcÆI©¹Î;ãÖ­[à8ŽuRÏEFF"""›7o†œœë8„± ::ééé033Cff& qãÆ ¸¹¹ÁÃÃýû÷ÇóçÏ¿º÷îÝaii‰µk×ÒÏ/"¨!5"!!1cÆ`áÂ…ðññAyy9ëH„T›©©)rss¿ùKžaà8Ë–-C¯^½0dÈÖqˆˆèÞ½;âââPRR‚^½záÎ;••ÅÆ…{÷îÁÈÈË—/Gxx8ž?Žû÷ï#::—/_ƼyópãÆ Zψˆê‚EjìÀ066†bbb0sæL 2„îê±Ó½{wHHHàĉ˜9s&ë8¤ž:{ö,âããA µ’ÏèèèàêÕ«ppp€¹¹9Nž< +++X[[#99sæÌÁæÍ›‘ŸŸÿžFFF€µk×ÂÊʪ®£R%ÔBjŒÇãÁËË .\Œ=***7n"##©U„ˆO³Ï¬]»ÅÅŬãzˆã8,_¾=zô@ÿþýYÇ!"HUU111èÝ»7ìììpèÐ!€’’öíÛ‡¼¼<<|ø¡¡¡¸xñ"þüóOhhh`îܹÈÊʆ ¾9Çüyóо}ûZE–¨!ÕÆqâãã±k×.>|?~D£F ££]]]˜™™AWW:::ÐÑÑA³fÍXG&ä‡,Z´ÁÁÁ ÄôéÓYÇ!õĵkׇӧOSëù!<«V­B«V­0cÆ deeaÿþýß½1òóÏ?×aBBª‡ òŸ^¿~sçΡC‡044DYY‚‚‚€»wï¢mÛ¶˜?>FMw^H½ «« '''PB„æÓtå4@˜T•››Zµj…Q£FÁÎÎ'Nœ ›zD¬QB¾©¬¬ Û¶mòeËPPPPù<ŸÏÇq2d6lØkkkHJJ2LJˆðuêÔ‰¦³$BUXXYYYÖQˆ:t(Î;‡ÁƒÃÂÂááá•Ï 7T€¯â8½zõ­[·0mÚ4,\¸¯_¿FRR>|ø€Ÿþªªª¬cRkZ´hÜÜ\TTTPM„âãÇ““£îW¤ÚÌÌÌpùòeØÙÙ¡W¯^‡¡¡!ëX„T 䛞®\¹‚ÀÀ@¤¤¤`ÅŠðõõÅãÇáììŒ7¢¼¼œu\ROyzz¢S§N˜vùòe˜››ãêÕ«èÙ³çÇþøñ#ºví >Ÿ¿ÿþ®®®ˆˆˆ€††fÍš…nݺANN­[·FË–-…r>þ±éðJÅ|¸˜ëå˜D|Lž<ÇŽý{÷ ¦¦Æ:ŽX×ë4‘Ñ’ÀàXG©’òòrnÁ‚Çãú÷ïÏ|øÀà‚ƒƒ«}Œ””®Q£FܤI“¸ŠŠ !¦«º¬¬,nÖ¬Yœ¬¬,×´iSÎÇLJ;yò$wóæMîåË—\EE÷âÅ ÎÉɉÀ988pOž<ùìåå圲²2çããóÍ÷ILL䤥¥¹Y³fqÇqIIIÜĉ9>ŸÏàp222ÜîÝ»kõ|IÛ›ËÉÊÊr~~~¬£ˆ-q½N5T€ˆqÿ`Ÿ={–SUU­üÅ €ëÑ£·uëVîÕ«WŸm›˜˜Èñù|î?þ`”–oÛ¸q#רQ#æÂâB pÒÒÒ5þÿ¼wï^gooϽ~ýšã8Ž+))árss¹ÌÌL.;;»JÇ+))ánß¾ÍEFFriii\IIÉW·+--å’’’¸   î×_åddd¸fÍšqË–-ãÞ¾}ûÝ÷øûï¿9 N^^žÛ´iW^^^ùÚøñ㹎;~wÿ-[¶p¸°°°Êçòóó¹ôôtîöíÛ܈#8œ››[Μ°²ãR×vñ nÇ¥4ÖQ¾ÊÞÞžëׯëbKܯÓDÍ‚E„ÊÆÆÏž=ÃÛ·oñáÃHKKCCCã«Û£K—.¸|ù2ÜÜÜê8)!ß§§§‡¢¢"<}úíÚµcGäñx<())Uk È¿Mœ8ªªª?~<444 >['CJJ ßí¢Åqbbb°nÝ:œ;wî³ý%$$ЦMtèÐ:t@QQ’’’ššZ9ö¢]»vX´hf̘…ÿÌŽ½½=îܹƒÈÈÈ@^^rrrpqq±±ñ7‹ŠŠ ?~ëÖ­ÃÍ›7allŒ7¢sçÎPSSÓ'OðèÑ£ÊÇ7Àçóѽ{wL::uB§N~¨èø_M›6ÅÖ­[1zôhL:]»v…§§'<<< --S§N}sm$‡ìÞ½»v킽½=€f˲²²Â¬Y³`ii‰6mÚT9©{óm *ÇÙˆ"̘1çÎÃСCYÇ!  B1 mpShh(† ‚ŒŒ ºÈ#"§K—.ÐÓÓÃÁƒYG fffÐÒÒŸþ)ôc=z?ÿü3bccafföÙkEEEØ·o6lØ€GÁÊÊ ÞÞÞ°±±arc£¬¬ 6lÀòåË¡®®Žââbèëëãܹsÿ¹/Çq¸sçäåå¡¥¥E7fH­Ð×ׇ™™víÚÅ:ŠØih×iµ…Úq Sæææhܸ1¼¼¼@µ05vvv8{ö,Í›ÿƒ”””››+ô㦥¥ÁÇÇ666ŸyyyXµjÚµk777tîÜ7nÜÀùóçÑ¿ÿ]¼×d½ >Ÿ$''£mÛ¶xñâ.^¼ˆ‚‚‚ÿÜ—ÇãÁÄÄÚÚÚT|Zãàà€3gÎÐï]  „)EEEìÛ·GÅÔ©Søâ¥¸¸ÏŸ?ÇíÛ·…C‡á÷ßÇÒ¥Káææ†#FÀÕÕAAAÈÈÈ ²¤Zlmm‘““ƒÛ·o³Ž" p.:­=þÊBwX¿~=ŒÁãñ°eËÿLùëáá6mÚ`åÊ•6lÒÒÒRÙu®¦„±^†¶¶6Ο?½{÷ÂÈÈ?~J6BjÊÁÁ/^¼@RRë(¤¢1 „¹aÆÁßßóæÍñcÇ0hÐ ´oßÒÒÒÈÉÉANNÞ¼ySùuNNÎgóñ"---Z yóæPVVFRRüýýjjjèÓ§lmm1fÌ4jÔ¨®O“ˆ¡^½z¡I“&ˆŒŒD—.]XÇy^^^X¿ežGîƒoãf5€{ïÞ=üòË/¸~ý:æÌ™ƒ•+Wâñãǘ0a‚ƒƒÑ¤IÌ™3îîîPUUâYüCXýøy<&Nœˆ‰' '!B`ff†ÆãÌ™3066f‡4@4DÄ4ä¾…oÞ¼Áš5kpíÚ5ddd ¼¼¼² øôçן^“——ÿ¢ËBnn.®^½Š¸¸8\¾|W®\²²2fΜ‰éÓ§W®ÞLÈ·8::"//—.]bE,Œœ½mù ówÅš)ê¼yy96n܈%K– mÛ¶Ø»w/***àëë‹3gΠuëÖðððÀ”)SиqãZ8B†¡C‡âÍ›7¸|ù2ë(b¥!_§ «ùÉ×ÑüÒµëÁƒœ««+'++ËÉËËs³gÏæž?Î:aÛ·o礤¤¸‚‚ÖQÄBYYghhÈõéÓ‡UÚ÷ãÇœ'!!Áyyyqùùùœ««+€ëر#·ÿ~®´´´–’Ò°p\nn.ë(b…®Ó„ƒÆ€EKK Û·oGff&\]]±yófL™2…u,"ÂlmmQ^^Ž .°Ž"¤¤¤°eËÄÅÅáðáÃ?¼_aa!ˆ‹/"""³fÍ‚áï襤$Œ7|>¿ÓÒpØÛÛC àìÙ³¬£ˆ Ò )++ãÑ£GhÔ¨–-[Æ:ašššÐÒÒBdd$ë(b£_¿~:t(¼¼¼¾:^ë½ÿööö¸~ý:""" --Î;ãùóçˆÅ´iÓhF(B„LCCÆÆÆ8sæ ë(¤¢„48ÇaæÌ™ EHHzôèÁ:q¶¶¶ˆŒŒ¤ÙÔª`Æ ÈÉÉA=Ð¥KôèÑ)))_l—›› [[[ܹs‘‘‘HHH@¿~ý`hhˆ„„tïÞAúºQ“©~‰h—ï­ƒƒÂÃÃiªqRç¨! ʇàíííÛ·Ãßßd‰ˆ;;;dddàáǬ£ˆ MMMìÛ·:uB·nÝ››‹É“'v¡sêÔ)tìØiii ÅÖ­[áááœ={*** Ï ö cª_"šÄå{ëàà€œœܼy“uÒÀPBê½ .ÀÚÚºººÐÐÐÀ¦M›°víZûA~˜¹¹9x<®\¹Â:ŠX1b‚ƒƒáïï?ÿüñññð÷÷G~~>&NœˆÁƒ£sçÎøûï¿áææ†Ó§O#$$ëÖ­ƒ”TýŸ%~¾Ú*É×xª_"zÄå{Û¢E @ff&ã$¤¡©ÿ?áIƒuõêU,\¸ÑÑÑèÚµ+ „&Mš`âĉhÛ¶-ëxDŒ(((@OO×®]Ä XÇKfff˜:u*|||°zõj¼ÿ{÷îE=`aa%%%ÄÇÇÃÐÐuÔ:ãb®S£µRˆè—ïíöíÛѼysê @ê Dì…††âÔ©SÈËËÃÛ·o‘——‡ÜÜ\<þFFF8yò$LƒXIôìÙñññ¬cˆµµk×"22úúúصkx<úôé\ºt ÊÊʬ#’*òM¯\°Q.¸Éÿ+((Àž={0{ölZœ—Ô9*@ˆØ*//Ç‚ °~ýztìØêêêhÙ²%  ¤¤ccc :ÔÓÔ\Ïž=±ÿ~B^^žu±¤¨¨ˆÇCRRyyy077DFFRñ!¦þ=Ö ñ²{÷n”””`úô鬣ˆ "–òòòàì쌘˜lܸ³gϦR«zô芊 $$$À‚u±%)) ˜0a^¿~Ë—/CCCƒq*R]óm *[@ˆø(//Çï¿ÿŽ‘#GBMMuÒÑ­a"v8Ž|–__ IDATÔ)SpëÖ-DEEaΜ9T|Zghhyyyê†%iii8}ú4üüü ««[ãã‰Ë”§õ‘‹¹ž¬p¤ÖZP[ŸkÿØt¨\€ÌÌLÌ™3G¨Ç&äGQBÄÎÑ£GqâÄ ÀÒÒ’uÒ@HII¡mÛ¶ÈÊÊbEìùûû£yóæpvvÊñÄeÊSBª¢¶>׿¿Œœó ÓÖ¦¦¦B=6!?Š "VrssáîîŽaÆÁÉɉuÒÀ4kÖ ùùù¬cˆµÂÂBìÝ»“'O†¬¬¬PŽ).SžRµñ¹ÎÈÈ@IÈ2H Êà³ÚOhÇ%¤ªh +³gÏFYY¶mÛÆ: i€ñöí[Ö1ÄZ`` Þ½{‡iÓ¦ í˜â2å)!U!ìÏõ½{÷`mmfrr¸y%–¦£'LQ gΜAPP6mÚ„–-[²ŽC j©™W¯^añâŘ2e Ú·oÏ:! Æ­[·*×Û‰¥âƒü{wÓþÿü5íEÊJYJdÉRD!ÝdÏ–d+Ká&!;Ù÷$¡²†Šh’²^K”QJ…öf>¿?î÷ö»®åZª35ïçã1{Íœ9çu4šó>Ÿ{T€Z¡  öööŸ777üöÛo9r$lmm¹ŽDê(aiqøד#|øðÆ ÇÃÅ‹!//ÏIB¾„¡¡VXXˆéÓ§£_¿~˜9s&×qˆˆSVVÆÇQ^^III®ã½ììlŒ7áááX½z5–,YB-˜¤ÚÛªì\NŽPQQ1cÆ %%±±±hÖ¬'9ù*@ˆPsssCff&BBB &F v„[JJJ€üü|¨¨¨pœF¸ÅÄÄÀÆÆ¸zõ*­ÙCª­ÊþÆæÍ›‡+W® ((;v¬²}WTT 33éééŸ<^¿~úõëCEE***PUU…ŠŠ š4i==½*›r›ÔT€¡‡mÛ¶aÆ hÓ¦ ×q²²2*@¾…1†-[¶`ñâÅèÝ»7Nž}z•ì3-- fffPQQÁîݻѲeK´hÑ-Z´¨,$þ­¢¢999xùò%®_¿Žèèhêׯ„„\½zgOzCPòóŽ»#h` 8&&&èØ±#uÇ®#¨!B©K—. „½½=tuu‰N:q‹ˆ¸¿ jùŸÏ‡Ž9‚#GŽÐZ=„pÀÍÍ ÷îÝÃ7P¿~ý*Ù§³³3²³³‘˜˜øÝÅÇ×ðx<´k×íÚµûê6úúú˜9s&vG<‚»oz‰¿Faê=¸ººbáÂ…PQQÁ€0räHXYYQ k-F?9"´,,,зo_èëëcÓ¦Mðññá:qÑÑÑ nƒ>Ÿ©S§âرcðññÁøñãèýŒ1¼|ù‰‰‰¸}û6Þ½{‡’’W>JJJ0wî\Œ9²šÎ‚Úíêիذa6lØ}}ý*Ùgxx8>Œýû÷CKK«Jöù½fë`–±NåŸKJJpãÆ \½z¡¡¡3f 444°páBL:rrr5šü:cŒq‚ü¿¤¤$èëë#11]»vå:ŽPظq#–-[†W¯^¡Q£F\Ç!"lРA(((@||LJ®®.ÌÍÍqàÀðx<Ìœ9çÎCFF²²²pïÞ=ÄÇÇ#""ÁÁÁ8zô(ÊËËѾ½hO­JÈ·,^¼ïß¿G×®]«ä»rÍš5HKKþ}û„®øþê¦}üøq<{ö cÇŽÅúõë¡¡¡óçÏs|/F„Jbb"À¹Ž">ž`{öìùævÌ××—µk׎`Æ c7oÞd໎sëÖ-€Ý¼y³*bRg=yò„õêÕ‹‰‰‰1³ñ3XË¥þlOÔ“ÞÏýû÷™„„ûã?ª>d5ÉÎÎf£Fb<­_¿þ»¿ü ºN«ÂWÖò.\@HH¶nÝ YYY®ã• 888@JJŠë8œcŒaáÂ…èØ±#ìì쾺ݹsç ««‹ñãÇ£M›6HHHÀ… н{÷ïnEzøð!@[[»J²RWµmÛÑÑÑX½z5.Ÿ8Œôý‹°ÊçÒíC ÀÞÞZZZXºti5%­z***ÀÒ¥K±xñbL›6 eee\Ç"ß@Z%%%˜?>LMM1bÄ®ãæââYYYÌš5‹ë(Báܹsˆ‰‰Á¦M› ..þÙëï߿ǔ)S0räHhhhàæÍ›¸páºuëöÃÇÊÉÉA½zõhq2B¾ƒ„„–.] ׃§!)ÎC¶×bxxx ¢¢â»Þ¿lÙ2\¿~û÷´t5§­ZbbbX³f Ž= ___ 4999\Ç"_AZ›6mBzz:<==©Ï=áLdd$¼½½±~ýúàXxxx`РA055ý쵘˜têÔ §N‚——‚ƒƒÑ½{÷Ÿ>Vqq1µ~òƒVOŽéOà¼h!–-[CCC<}úô›ïñôô„‡‡6mÚ„~ýúÕPÒª7qâD„……áÑ£GèÙ³'=zÄu$òT€¡”žžŽµk×ÂÉɉº^Δ••ÁÁÁ´°Þ?dee¡gÏžŸþÉÞÞ!!!ˆ‡RSS¹Ž$Ò¨!B!%%FFFÇ©S§ ))Éu$"ÂòòòpåÊŒ=šë(BcÉ öPoPKÕüŠäíÚµÃĉ±fÍÕøñ…—?Bj#ÄÅÅ¡¢¢=zô@tt4בD „sOž<‘‘ddd…–-[Vëñ¶oߎnݺ!33³ZCj¯³gÏ‚Ïçã·ß~ã:ŠÐ˜iØi«,9ëêãææ†7oÞàܹs5zܽÑÉÐX~{£“kô¸ßƒëŸ !µQ»ví===˜˜˜ ,,ŒëH"‰ ©‡ÂÈÈŠŠŠˆŒŒ„ššZµ/&& ,Àýû÷ajjŠÜÜÜj=©üüü`dd„¦M›r…ü––ôõõqáÂ…=.us"¤îiР._¾ }}}¸ºº‚1Æu$‘Cá̽{÷`ll UUU„‡‡£I“&Õz¼œœŒ3HJJBvv6Œ÷ïßWëqIíR\\ŒððpXZZr…ü‹……‚ƒƒQ^^^cǤnN„ÔM’’’X¶lâââÅu‘CáDRRú÷ï-Z <<ªªªÕz<@€I“&¡´´'Nœ€®®nåæææ¸ÿ~µŸÔñññ(//‡±±1×QÈ¿XXX    FûmS7'BꮡC‡BOO\G9T€wóæM˜˜˜ uëÖ¸ví6lXíÇܸq#‚ƒƒáããS9«Qç΄gÏžAOOÝ»wÇÞ½{‘ŸŸ_íyˆðŠŠŠ‚’’:vìÈuò/]ºtAãÆÂuBHÀãñ°dÉ\¾|III\Ç)T€‹¢}ûö …’’Rµ3&&®®®Xºt)üÉk½{÷Fzz:Ξ=‹¦M›bΜ9hÚ´)&L˜€ððp‚jÏG„KTT iås!”‘‘·oßBSS“ë(„:ÂÚÚšššX¿~=×QD }Ã’ 333tíÚ—/_†‚‚BµóŸã>V­ZõÅm$%%aii‰ÀÀ@¤§§ÃÙÙ~~~0`LMM«=#eee¸~ý:úõëÇuò{÷î…¼¼<&L˜ÀuBH!!! %%…ë8"ƒ R#®^½Š!C†ÀÀÀAAA¨_¿~µóéÓ§V¬X'NàäÉ“°±±AAA8€mÛ¶ÁËË ÄÀÑ·o_èë룴´©©©HIIAjjjå#%%/^¼ŸÏ4jÔgΜÁÈ‘#üUè$''ãìÙ³8~ü8îß¿eeeX[[cüøñèÛ·/ 8&€¬¬,4nܘëä 233¡¢¢òÍ®”„ê³dP{¬ }Xg×ÄÑÕÕ…¯¯/×1Dý&'UîäÉ“°··GÆ ƒž={V¾V^^___xxx 99îîî°±±(**bÑ¢E˜7oüüüpôèQ¸»»£°°bbbŸÌH%//---hjjbÔ¨Q•ÿ¯©© uuu¤§§ãàÁƒGDD233!++‹#F`Íš5033ƒ””TÿÝáöæÍ›j_“üœ×¯_£Y³f\Ç ä‡íN®¼p¯ÍëÉÌ4l[«óÿ]]]dddàýû÷52Iލ£„T™ÂÂBÌ›7‡ÆØ±c±gÏ(**JKKqäȬ[·iii1bŽ;†îÝ»¶)))Lœ8'NDEEîÝ»‡›7oBII©²Èhذ!x<^å{ÒÒÒŽcÇŽ!""ƒ¾¾>&L˜cccÒàUòMYYYT€©>@\\œë„ü°v]ªËðµ®®.àáÇèÕ«Çiê>*@H•¸sçÆŒƒŒŒ xyyÁÖÖ<EEE8xð 6lØ€ÌÌLŒ=çÏŸ‡žžÞwíWBB]»vE×®]?y>##£²u#<<iiiàñxèܹ3¬­­Ñ¿V@„|¬¬,€.¤† ___¤¦¦Ò-R«Ôõ®Ku…¶¶6x<þüóO*@j ä—0ưcÇ8;;£¬¬ £Fµk×àíí—/_"##?~<–.] mmíïÚ/ŸÏGff&ÒÒÒðüùs¤¥¥U>RRRžžÐÓÓÈ#пôë×ÊÊÊÕyº¤Ž£.XÂkäÈ‘¨_¿>|||ðÇp‡ïV×».Õ²²²ÐÔÔüáIpÈÏ¡„ü’¤¤$8::ø«µ"11-Z´@óæÍÑ­[74oÞ_½c™——‡àà`¤¦¦VÏŸ?Gzz:****·kܸ1444 ¡¡=z G022BÆ käé}Aª ¤F½zõ  €˜˜Xew-B¸&àææ}}ýïž pÃÀÀhذ!<==iaBBH•¡šC©1¯_¿Æ€PQQÈÈH*>ˆÐð÷÷GBBÂÃÃilA-pûömlÙ²+V¬øî‰-!ä¿P HÍ¡„Ôˆììl˜˜˜ °°‘‘‘ÐÐÐà:!€’’,Y²Ç‡±±1×qȨ¨¨ÀôéÓѾ}{¸¸¸p‡R‡P HÍ¡„T»œœ 8yyyˆŒŒ„––ב©´sçN¼|ù!!!\G!ßaëÖ­¸sçnܸ)))®ãBê rC$P_R­òòò0hÐ ¼yóaaaÔ_›•ÜÜ\¬^½3gΤ®<µ@ZZ–/_GGGôèуë8äìN†ÆòsØÌuB*IJJR¬B©|>'Nœ@Ïž=‘‘‘k×®ýðlY„T7wwwZØ®–Ø¿?deeáîîÎuò‹Ö…>Ä‹w…XJ‹¾áQRRÇu ‘@©R:tÀ¸qãЦMDEE¡cÇŽ\G#äOŸ>Å®]»ðûï¿CEE…ë8ä?øøøÀÆÆõêÕã:ùEKµ‡zƒzX2¨=×Qð×ø²¨¨(ôîÝ›ë("Æ€*STTkkkaèСðöö¦nDh-]ºM›6…££#×QÈwˆˆˆÀË—/1iÒ$®£*0Ó°-fR—\"<——‡ÁƒsE$PBªÄû÷ïaaa[·n!((C† á:!_‹Ó§OÃÇDz²²\Ç!ßáèÑ£hݺ5zõêÅuBHeeeºqZC¨ ùe¹¹¹011ÁÝ»wJÅjŒ1,\¸]»vŸq㸎C¾Caa!N:…I“&QÿlBHµ ©©)ÄÅŹŽ"¨„ü2{{{ܺu 111Ôw’½}ûö!>>aaa´è`-qöìYb„ \G!„ÔAoß¾EBB¸Ž"2èÛ—ü²3f ^½z˜?>²²²¸ŽCÈWùùùaöìÙ˜5kú÷ïÏuò<ˆ~ýú¡U«V\G!„ÔA¡¡¡`ŒÁÌÌŒë("ƒ òËLMM…ŒŒ ôîÝ›ñ!BéÂ… ˜0aƇ;vp‡|§[·n!22óæÍã: !¤Ž AçÎÑ´iS®£ˆ *@H•èÚµ+üýý‘ššŠ'Ožp‡J¹¹¹prr¨Q£`aa///êzU‹lÚ´ ZZZ°´´ä: 2´˜!© ååå¦ñ«5Œ¾…I•ÑÐÐê†E„ÆŽ;кuk>|îîî8yò$$$hè[m‘––†€€,X°à«Cé"TtÑb†¤*\¾|9993f ×QD  ¤Ê¨ªª²³³9NBÈ_+Ú.^¼222xúô)–,Y)))®c‘°uëV(++còäÉ_݆.BE-fHªÂ±cÇбcGèééqE¤PBªŒ´´4©„øøø ++ Û·oç:ùA©©©8tèfÍš99¹¯nG¡¢k¦a[¤­²¤ ÉO{ÿþ=Ο?O3ìq€ú"*Õ¸qcj!BÃÊÊ ëׯ‡‹‹ ´´´0uêT®#‘ï——sss4mÚóçÏÿæ¶´¢6!äg9s¥¥¥;v,×QD ¤J5nܘZ@ˆPY´hž={{{{¨««ÃÄÄ„ëHäÊÊÊ`ee…ììlÄÅÅAYY™ëH„:êØ±c066F‹-¸Ž"r¨!ŸÉÌÌDBBø|>Z·nÖ­[³ Ä?µhÑ‘‘‘ÈÈÈ ÐD(ðx<ìܹiii°²²Âõë×Ѿ=u×FŒ1Ìœ9±±±¸zõ*Ú´iÃu$BHõêÕ+„……áàÁƒ\GI4„®\¹‚ß~û -Z´€šš,--aee…N:¡^½zÐÒÒÂòåËñâÅ‹oîgõêÕ‡‘‘ÒÒÒj&Ÿ‰'ÂÑÑñ« ˆѶÿ~;v ±±±5v̼¼<ìÛ·%%%ÈÏϯ±ã’Ï1Æàéé‰@WW‰‰‰èÑ£×±8GëšRý £Aè"&??3fÌ@@@¦OŸŽmÛ¶¡^½z?´ ÌŸ?#GŽD@@TUU¡¡¡uuu¨©©ARR²šÒ“ºB  44pèÐ!ôíÛ·Zǃ¿¿?Q\\Œ={öP ‡ 1cÆ ?~‹-‚‡‡­Pÿ?KµÇºÐ‡´®I²7:¹ògJSF ‡ôôt|üø‘ Ño|’˜˜ˆQ£F¡  þþþ°¶¶þ¥ýihhÀÙÙ¹ŠÒQ’””„ÜÜ\˜ššÂßßžžžPPPøh.âK IDATd›ŠŠ lݺçÎCAA ðþý{HIIÁÔÔæææ}úÀÜÜæææ€»wï~òÈÊÊ‚ššΞ= KKK®NYäÀËË +W®D£FG_þD$P«–ðyðàмys®£ˆ,«É ä?%%%A__‰‰‰èÚµk•í7..¸té†Zeû%ägCII ç΃¹¹9rrr>Ÿ-[¶ÀÍÍ 8räzõêõÅ}¼zõ AAA¸xñ"®^½Š¢¢¢Ê×ÔÕÕÑ©S'èéé¡S§N033ƒ¼¼|Mù‡‡bçÎ8zô(JKK1nÜ8xzzBII‰ëh„5aÂ<þü§Æ V×uš¨¡±sçNhjjbðàÁ\G!"îLj…§§'`Ú´i°²²ÂÍ›7±gÏx{{cÁ‚pww‡¬¬ìW÷£¦¦;;;ØÙÙ¡¤¤ÑÑÑ––†žž]ÜrŒÏçãÂ… رcÂÂÂФI,Z´öööhÚ´)×ñ!"îÁƒèÙ³'×1D ""88sçÎ…˜M|F¸Z9nhÈ! ´mÛ`ŒÁÇÇç‡×‘‘Á AƒªˆŽŽF«V­üµJù­[·°aÃtèÐ%×B?~ÄÆ±iÓ&ðù|Œ;sæÌ¾¾>×ÑH5 YHm‚²²2 8ë(" ðüùsÀ®]»‰æÍ›CMM­ò¡¤¤„÷ïߣ  ùùùŸü÷KÏýýßŠŠ Lž<NNNhÔ¨ÇgIªÓ‡*‹Œ>RRR ***hÔ¨òóó‘››‹²²²OöѦMœ9s–––Ÿ­9#//ww÷;R5ø|>Ž9777¼ÍÍ…œ¾9V.uÁ"‹/Û!uÍêDj3???tèÐíÛÓ¤\¢D´iÓsæÌAJJ bccñêÕ+äææþçû ¤¤T9û’’Z´hŽ;BQQضm¶nÝŠ°°0êOYǤ¤¤ÀÓÓçÎCFFFåó-[¶„ŽŽ† ÊGÆ +·aŒ¡¸¸¸²õ­°°úúú´FLŠE‹áÞ½{;v,¢ã• v&¼Á" ®Ó‘êD³:‘_ÅU+Zaa!±dÉ’;&ù2*@D€¼¼|À¤I“ ¦¦Fݯ„]aöðáC˜™™aÅŠprr‚––בÈ/âóù˜={6:wî *>Ž=ŠvíÚaÕªU°³³Ã³gÏàääDÅG úgWBÈ+,,„¹¹9?~ ???jÕt•A¾[~~>æÏŸ===¤¦¦"006là:©~~~¸uëvîÜù]cHÝîÝ»ÃÖÖ½zõ£G°eË4hЀëhÕbot24–ŸÃÞèd®£|fÉ öPoPÆÖòŠ‹‹1|øpܾ}ÁÁÁèÞ½;בÈÿP,òŸ^¿~ ooolÙ²EEEX³f œœœ --Íu4RE8€þýû£OŸ>\G!ˆÅ¦M›ˆž={"&&F$>Â<­,­!äç”””`äÈ‘ˆ‹‹Cpp0z÷îÍu$òT€/ª¨¨@HH<ˆ‹/BRRãÇǪU«Ð¬Y3®ã‘*”ššŠˆˆ=z”ë(„<€¯¯/Ž?Žôôthjjâĉ°±±ùl½–ºŠ¦•%¤n)++ƒµµ5"##qñâEôë×ëHä_¨!Ÿ9sæ æÎ‹ÌÌLtéÒ;vìÀرc¡¤¤Äu4R öïßyyyXYYq…ÔŒŒ œ8q¾¾¾¸wï4hkkkŒ?}úô¹1@ÔÊ@~M <ÊËË1fÌ\¹r011á:ù*@H%Æ6mÚŒ9Ë–-C×®]¹ŽEªQPP6n܈¥K—BNNŽë8¤ååå! ¾¾¾ˆŠŠ‚ŒŒ †www <˜–ò „¹Ÿ(©¨¨ÀĉqñâEœ9sfff\G"_!Z·¹ÈW•——cæÌ™pqqÁ²eËpúôi*>ê0Æaccsss¬\¹’ëH¤šTTTÀÅÅ7†ƒƒ¤¥¥qäÈdeeÁÏÏǧâƒ_D“p/;;£GÆ©S§àçç‡aÆq‰|µ€`ôèÑ ƒ——&OžÌu$RMÞ¾}‹àà`:tQQQ055ÅñãÇiæ«:*++ 666ˆÅòåËagg‡&Mšp‹:‡ºñÕ ÆÞ¿111ÈËËW>çíí… N:KKK.c’ï@ˆˆ+))Á°aÃpÿþ}\¾| à:©BŒ1Ü»w/^Ä¥K—Æ „Áƒ‹Ì@cQ‡ß~û  ƒ¡¡!ב!ä§yyyÁÁÁ¥¥¥‘‘ÁêÕ«1lØ0Ìš5 aaa?~<¶nÝ ®£’ï@ˆcŒaêÔ©¸uëÂÃÃÑ«W/®#‘*PRR‚k×®áâÅ‹¸xñ"^¾|‰úõëÃÌÌ ‡ÂСCѸqc®c’j´oß>Ì;Ý»wG@@Í\G©õÂÃá®®ŽU«V!..ÎÎÎX´h444Bã=j*@DØòåËqâÄ øûûSñQ0ÆpæÌÌŸ?ÐÔÔ„••† CCCZ·EDœ8q3gÎÄìÙ³±eËßA© P¿~}Œ=666=z4bbb0kÖ,Ô«WëxäQ"¢Ž9‚Õ«WcäÌEp¾/‰Ü&ÉÔµ–óôôÄüùóaaa   èêêR÷*“žžŒ;;wîä:!„TGGG˜˜˜ÀÇÇ“&M‚ ¸ŽE~Í‚%‚ÂÂÂ`gg;;;$6ê]9u ©½îܹƒÅ‹ÃÉÉ èС"F ÀÖÖ صk×q!¤J 0cÆŒ³³3òóó¹ŽC~ "æÑ£G°²²Bÿþý±k×.,5Õ¥©k¹¢¢"Œ;:::X·n×qG¶lÙ‚ÈÈHx{{CYY™ë8„Rå6oÞŒââb¸¹¹q…ü"ê‚%B²³³annŽæÍ›# ’’’4u` (((€««+$$$ %%…ÒÒR”••¡´´­Zµ‚££#~zÿ .DZZiœ‡ˆº{÷.~ÿýw,Z´ýû÷ç:!¤æUÝ›5k†©S§"00;vìà:ùT€ˆˆââbŒ1ÅÅňˆˆ€¢¢"בPRR‚óçÏcÈ!¿t.ì^¾|ùI—]]]HKKCRR'NœÀŽ;àååssóÞ÷ùóç±wï^ìÞ½íÛS+–¨š>}:dee±`Á®£Bj9a_Õ½~ýú\Ç ¿ˆº`‰ˆÕ«WãîÝ»¸páZ¶lÉYŽòòr\¾|­[·†¬¬,ÆŒƒÈÈHÎòÔ]]]¤§§ÃÚÚâââ8{ö,‡§OŸ¢[·n=z4îÝ»÷CûÇ´iÓ0|øpÌœ9³šÒ“Ú`øðá(//GÛ¶máêꊢ¢"®#òM{£“¡±üöF's…ü‹°¯ê.&&Æ×1È/¢DDÈÈÈ@\\ººº5~l>ŸÈÈH888@JJ ƒFJJ `ûöí°°°¨ñL5­E‹ðööF“&M°|ùòÊç›7oŽS§N¡mÛ¶1bRSSÿs_yyyppp€444pðàAp.âÜÜÜ––†Y³faóæÍ4ˆ½Þe'Âe¦a[¤­²ÊÖàñxÔRP""¬­­ññãG\¾|¹FŽÇC||<æÏŸ–-[ÂØØ{÷î­|ýĉàóù˜;wnä²²²Xºt)Nž<ùÉ rrr8þ<$$$гgOÄÄÄ|ñýŒ1øúúB[[¾¾¾ðôôD||<­úJªªªX·n&Ož ///ðù|®#òUÂ~—§wïÞáÚµk4Þ± DDhkk£cÇŽ¨¶c0Æp÷î],]ºšššèÕ«¼½½‘™™ PQQÁÎ;QZZŠ1cÆ@LLô>~={ö€ÏZ:Z¶l‰¸¸8èêêÂÄÄGð×ßé³gÏàããƒb„ 066ÆãÇ1wî\ˆ‹‹×ø9á6mÚ4¼|ù¡¡¡\G!ä«„ý.;>wîÜA·nÝðøñcìÛ·ë8ä‰Þ ³¶¶F`` Š‹‹üu'!$$7nDNNÎOï÷ñãÇX¹r%Ú·oÎ;cÿþý055EXXF )))¬\¹©©©˜={¶H¯Ì¬©© •]Ðþ©aƸrå &L˜[[[AUUmÚ´Á¤I“*^~~~hÖ¬YMG'µD·nÝбcG:tˆë(„òEùùù(--ýîí;(++#11&&&Õ˜ŽÔ*@DÈßݰ,--¡­­† bÈ!pqqƒƒÃí+-- ëׯG—.] ££ƒÍ›7£G ›7o°oß>¼}ûûö탧§'–/_ŽúõëWÓ™ÕÊÊÊPTTü¤䟃1¥¤¤pðàAlÛ¶ õêÕƒƒƒ‚ƒƒñîÝ;ܾ}fff¦'µÇÃĉqþüyê'MˆÕAø¯á¡ªª %%% 0+W®DDDJJJ>Ù¶°°þþþ9r$&Nœˆ1cÆ &&êêê¥'U‰¦á!ÚÚÚ°°°@ff&ˆeË–ÁÀÀ ;v,> kkkÈËËñý™™™ÀÉ“'YYYXXX`ùòå2dddd*·}öì¦OŸØÛÛ×Ô) =‡–-[âÅ‹•Ïý{ÊCGGG8::r˜”Ôf 6Dyy9MN@ˆö©n«ÃÕ«Wáàà€/^ÀÙÙ 4@dd$¶mÛ†+V@ZZ={öDß¾}ñäÉ¡¸¸]»v…——lmméwZBˆˆ üì9MMM`Ú´i˜6mš7ommmèèè@GGŒ1 222dŽ? ‹ÏZ5JKKqäȬY³7ÆþýûéÆ¿dggCUUµòÏKµ¯\ô‰ªð÷tú·Gˆp¥ßûYYYX°`Ž?###\¸pÚÚÚþZH—ÏçãþýûˆŒŒDDD8uuu¬X±VVVÐÒÒâø Hu „€ÇãÁÏÏwîÜÁ£GðøñcŸ&( µŽ0¯À]ÕDá÷¾@ À°dɈ‹‹ãÈ‘#˜4iÒg7FÄÅÅѹsgtîÜ™ZþE  !!nݺ¡[·nŸ<_^^Žâââo|>«W¯ÆªU«`dd„+W®|rMþß“'O€þ~HµœÌ2÷âÅ DEEáõë×hÔ¨Qå£aÆhÔ¨”••Erö;ò}D±[R]uÿþ}ØÛÛãÆ˜:u*6lØ€† r‹*@È7IJJBRRò«¯¿~ýãÇGdd$þøã¸ººÒׯ`ŒUvkÓ¦ ÇiH]ƃ@ @^^ÞW[,«JAA–.]ŠK—.!==   €÷ïß¶­˜˜ŒŒŒH“RÔ ˆˆ8;;c×®]èÑ£×q¾J”º%ÕU………Xµj6oÞŒ¶mÛ"22ýúõã:BT€Ÿ–€áǃÇãáÚµk066æ:’Ðzÿþ=ìììàïïgggÔ«WëH¤³°°€››&NœˆÀÀÀjkuHHH€ rss1mÚ4¡oß¾•ƒàß½{‡œœäææ"''™™™øý÷ß+§ÿÖÍ òëJJJðûï¿cëÖ­hذ!Z´hÁu¤o…nIuÝܹsáåå…Î;#,,¬Úo€Ú‹ òSN:…‰'¢S§N8wîš4iÂu$¡òúõk„‡‡###éééFNNüýýammÍux{{£iÓ¦§"u³³3>~üˆÓ§OCKK ööö˜3gÔÔÔ¸ŽF„ uÆ%?„1†µk×ÂÚÚ–––§âã_®]»†:`üøñX·nbbb ¯¯¤¤$*>H2dþøã¸¹¹ÁÆÆ/^¼ø¤ýÏz÷î,--1þ|Ì;111Ÿßr>O 0q!g1mÚ´_Z•|N `Íš5èÙ³'ž={X°`ÌÍÍ9NFDŽŽüýý‘’’‚)S¦`×®]ÐÐÐÀ„ ””Äu<"L*‰‰‰ KLLä:ÊgJJJؤI“öÇ0@ðSûùðወˆ`ëׯgVVVLKK‹™˜˜°•+W åy/@À¶mÛÆÄÅÅ™©©)ËÊÊâ:q€y{{³¦M›26Ôvk±øÛõä§öuåÊÖ¢E ¦¬¬Ì*Óž¨'LÝí,ïìΘ‚‚[³f KJJb¥¥¥?µOò—’’fccÃx<›3gkÞ¼9ëÞ½;ý½Î°-[¶0uuu€-^¼˜ëH¿L˜¯Ój*@„Œ°~°ß¾}Ëúöíˤ¥¥™¯¯ïw¿¯¼¼œÝ¹s‡íÛ·M›6uèЉ‰‰1LNNŽõë×Í›7 6ŒIII1eeåj<‹êS\\ÌlmmæììÌ***¸ŽDH¥>0WWW&--ÍÔÔÔ˜ãóùßõ^@À®]»Æ fhhÈ^¼xQ%¹²³³Ùœ9s˜„„À¤¤¤˜¾¾>³³³c{öìa7oÞdÅÅÅUr¬ºîýû÷làÀLZZš>}š=š)((°””®£ÕzÍ?S¸“¿”——³E‹1ööí[®ãüa½N«m¨2ÂøÁ~ôèÓÔÔd***,66ö«Û –––ÆüüüØÂ… ™¡¡!“““c˜˜˜ëÔ©³³³c`÷îÝcåååŒ1Æ>~üÈ\]]æááQS§Ue^½zÅzôèÁ¤¥¥™×qùªÔÔTöÛo¿1¬W¯^,>>þ«Ûþ»ðèÖ­»xñâO·|~ËÇÙõë×ÙŽ;Ø”)SX§N*‹qqq¦§§ÇæÌ™C…ýW¼yó†uíÚ•)((°ˆˆ¶oß>€ùûûs­NPw;Ë0ûSw;Ëu”ZííÛ·LZZºV~Ïÿ“0^§ÕFT€aû`—””°Ö­[3öüùóÏ^çóù, €YXX°Æ3 SWWgÖÖÖlÓ¦M,**Š}üøñ³÷ vâÄ Ö¼ys&%%Å6nÜ(Ô€½zõŠ…††²mÛ¶1;;;Ö»woV¯^=Ö¼ys–ÀuDB¾KDDëÔ©À&NœÈ^¾|YùZMßR\\Ì"##™––Àôôô¨5ä ž={Æ´´´X“&MØ;wؽ{÷˜ŒŒ ›9s&×Ñê j©:S¦La-Z´êïúÿ"l×iµ BFØ>ØëׯgâââìÁƒŸ›;wî'ÏGDD°>}úTöŠŠúî}fgg3;;;ÆãñXûöíYhhhUÇ®RÙÙÙ¬}ûöLMM­Y³†={–%''×ê»7„üS~~>[¸p!“””ŠÂƒ1ÆfddÄ?~ÌYavíÚ5&//ϺuëÆ²³³cŒMž<™ÉÉɱGqœNøP+†p066fæææ\Çø%ÂtV›Ñ: ä«–.]ŠÒÒRèééaíÚµxòä `È!xñâ"""¨ø už––´´´¸Ž'''”——c÷îÝÿù;¦¼¼þþþ8~ü8š6mŠŽ;bÀ€èرc ¥­y;v쀣£#ƇÇCJJ ׯ_ÇŒ30yòdØÚÚrQ(-Ô¾rNÂàà`ðù| 6Œë(DPB¾¨iÓ¦8{ö,5j„víÚ¡Q£F?}'òÁƒ•«1¯ZµªŠ“VÆ?~Œàà`=zÏŸ?ǵk×êôÅ !Â$((ÇŽƒ——×W8ÍÍÍÅÍ›7qãÆ xyyáåË—èÛ·/Þ¼yƒcÇŽ¡¼¼NNNXµjêÕ«WÃgP=cxøð!öïßíÛ·cá…ذaÄÄÄðüùsXZZ¢GØ»w/×Q…ÖLöÔòÁ±ÀÀ@èëëÓªè ä+ÄÄÄ`iiùËûáóù˜6mZ·n WW×*HVµ Žàà`!-- ÒÒÒ066ÆþýûÑ­[7®#"Š‹‹aooyyyddd`Ó¦M““ƒ¬¬,>~üˆ›7o">>OŸ>4hÐízƒ?tÆO‚™†mQ^^ŽmÛ¶aùòå8wî8€p|f?çãÇ CPP‚ƒƒ‘žžYYYlÞ¼ ,`ذa——Ç™3g --ÍqjB¾,)) ÁÁÁ•Ÿ]B¨!ÕjûöíHHH@ll¬Ð|9>}ú´òK=""¥¥¥hÕªÌÍÍ1tèPCNNŽë˜„ˆ”’’´hÑصkŠ‹‹QTT„ŠŠ HJJ¢sçÎ033Ãüž={BKK ­þ8×ÿè×/)) gggXZZÂÎÎ&&&˜>}:6nÜ%%%®Oñ›þnýûwStt4ÊÊÊЦMXZZbèСèׯdee°±±Á«W¯'ôÝZ‰hÚx!«VüÂÛ¡ÐÕÕÅ´iÓ¸ŽD„ ¤Ú¤¦¦ÂÕÕsçÎ…g9Š‹‹YùÅþìÙ3HIIÁÈÈ:t(Ú¶mKƒ] á²²2®_¿þÙó`ŒARRò³×¾Ö¯¿M›6 ÃàììŒK—.aÏž=1bDµåÿååå ©l}ñâdddпlÚ´ C† AëÖ­¿ø^'''\½z!!!4è¼–Ø\ùy­ëÝÁJKK±ÿ~,qY cP6›ŽÛv õÄ3¤fÑ'T Æììì ªªŠ5kÖ|÷ûJJJðôéSÛGii)¢££+‹Ž'Ož@BB†††Xµj† ‚öíÛS+!"¦yóæ „££#fΜ 111ØÙÙq–‡ÏçcÓ¦MX¾|9Z·n¸¸8ôìÙó»ÞËÃï¿ÿŽuëÖaíÚµ˜1cÆ'¯‹ÒöÚ¨¶ÏÄõøñcøùùáÆ(((Àû÷ï?y@ãÆahhˆuëÖÁÌÌ :::§&Š Rå233±páBØÚÚÂÔÔô‹ÛTTTàòåË8|ø0+½Ï;ÚÚÚh×®p÷î]ÄÇÇ#22 ,À–-[°bÅ Œ?™™™¸|ù2‚‚‚píÚ5BMM C† ‡‡LLL   PÃgO6¯=$0cÆ ˆ‰‰qÒ=99¶¶¶ˆ‡³³3V®\ùÅ*_ƒ““¶oߎ­[·ÂÉÉé³mjú;ÄÅÅY¿~ý˜‡‡»{÷.§«7B„›@ `ŒÇã±C‡Õè±}}}™¬¬,kݺ5‹ý¡÷òù|fooϰݻwu»š^í[Ýí,ÃìcLÝílÔ@À|||˜¢¢"“••e£GfgΜaÅÅÅ\Gã\m¿NÔBªÔõë×qîÜ9hjjbåÊ•ÐÖÖ†¶¶6^¼xÇ#::JJJ?~<¦NŠ.]º|÷Ýmmm )) ·o߆ªª* …~vBˆpàñxعs'c˜>}:ÄÄÄ0yòäj=&c puuŤI“°{÷îZŸäï©Ì=ŠÃ‡cÊ”)_ݶ¦ï°×ö.E5©6µ½}û8}ú4 Q£F¸uëÚ¶m ]]]´m+ÜùI-ÁuD>UÛ+ëwïÞ1WWWfiiÉ´µµ™„„Àx<8p ;qâÝA!„pŠÏç³3f0Ǽ½½«í8åååÌÎÎŽ`+V¬ø©Z'''&..ÎŽ?^ IMÆÖ¢/µ˜ÅÆÆ²ÆWö2hÞ¼9›1c›>}:STTdXŸ>}Xff&‡É¹UÛ¯Ó„µ€*¥¬¬ŒÕ«WWþùÿØ»ë°(³† à÷ ) Љ±ÊJX „‚6˜Ø˜¨k. Ø®ÝÊ‚"*v‹b¾bƒ º &*‚„IK<ßûÉ»¾ê ó pÿ®k.]sîa½dî9çyNvv6=z---T¯^]ÄdDD“J¥X»v-òòòðÛo¿A*•ÂÑÑQ¦s¤¤¤ OŸ> –-[~j¥eëÖ­ðòòªU«Ð¿™æ#ùRÄÕ¢/]3tûömÔ©SãÇG§N`bb’¿KaÕªUÀï¿ÿŽeË–aùòåbƧ"Ž„ •ŠŠ ïQOD G*•bݺuÈËËÃ!C ‘H0pà@™Œ‡Î;ãÑ£G8qâÄOÝ*÷¯¿þÂï¿ÿŽ#FÀÙÙY&¹H<Šxú—JÑÈ‘#¿z—8uuu888 22>>>˜;w.oôB?M*v"""1H¥RlذƒÆàÁƒáççWà1£¢¢Ð¤I$''ãÒ¥K?U>bccÑ£GXZZbõêÕ¼« '#Ä,èþÃÅÈÅÅ™™™Ø¸qc!%£’€+ DDTbI¥Rlܸ‚ ÀÑÑwïÞ…™™ P«V­º`üÌ™3èÙ³'~ýõW;v ÕªUûá<èÞ½;TUUqàÀ¨ªªþðD…©jÕªèׯV®\‰±cÇò€Aú)ü[CDD%š’’6mÚ xyy!%%%ÿcUªTFŪx))ƒ6L0 ]@__:::þ>×hóæÍpvvFÛ¶máïïÿÓ[S\\\pçÎ\ºt •*U’Éó#’µ‰'bÇŽpssìY³ •rC ý""*ñ”””°fͬ^½IIIxôè>|ˆGaÙsHKzŠc~×°ieþ×”+Wúúúxþü9^¾|‰#F`Íš5PQQù© ؼy36lØ333Y=5"™355Å´iÓ0wî\„„„`êÔ©hܸ1¯ ¡ï&A;ýWDD,,,sss±ã•xÿ<áƒÊùåäã£lÙ²ptt,пÙiii011Á¯¿þŠ   ^÷AEÂéÓ§1|øpÄÆÆB"‘ nݺ°´´„••,--abbòÓ…233¸¸¸üGrr2€¿ÏõùøJ¥¨_¿>ºuëVè[Âø:M6¸BDDô/þ÷Fæææ2á1gÎÄÇÇãôéÓ,TdØÙÙáéÓ§ˆŽŽFXX®\¹‚°°0ìܹ999PWW‡¹¹9¬¬¬`nnMMM‚€ï} ‚€ÜÜ\$%%}R2âââׯ_2_©R¥P±bEH$äååAäåå!77 ¨Q£V®\‰îÝ»‹ñí ÀBDD$¢«W¯ÂËË îîî000;Ñ‘J¥¨[·.êÖ­›ÞMFF"##óKÉáÇáééùÕ1TTTPµjÕüG:u>ùï2eÊ|µ GFFbàÀظq# HÀBDD$’ììlŒ1 6Ä„ ÄŽC$¥J•B³fÍЬY³ü?{ÿþ=²³³üwûðwÑÖÖþé•¿n‘¬S§²²² þ¨Ð±€‰dÙ²e¸}û6®\¹ÂÛ™R±VX¨ÿóD÷FR)òòò e’-Þ7ˆˆHÑÑј?>&MšÄ‹Y‰~Ò4Ûz¨YNÓlëAÊRd°€ÉY^^F…êÕ«cîܹbÇ¡"À7ø>ôæ†oð}±£(”žèž••U »n‘ü°€ÉÙÆqñâE¬_¿bÇ¡"àŸ[èËx€gÁBDD$Gqqq˜2e †Ž6mÚˆ‡¾ƒ"¬>üs«}YBB*W®,v ú¼âˆˆHNA€³³3J•*…¥K—Ї¾Ó?Wþy&Œ<ýïy4ô¹ÄÄD®€\!""’AàããƒÃ‡ÃÇÇ:::bG¢ïÄÕÅ—ššŠôôt®€\!"¢bA$$$ ::OŸ>…D"²²òw=jÕª…òåËZ¶÷ïßã÷ßÇž={àêêŠ^½zÚ\ôãþy–Ä—V¸ú ø€¤ˆ`!"¢"åýû÷xðࢣ£qÿþýO)))?=®¬¬¬Ð¤IXYY¡aÆPUU-pÞððpôíÛ‰‰‰Ø³gúöí[à1I¶a‹LBBp VÁBDD '///¿TüoÑxùòeþçéêêÂÈÈfffèÛ·/j×® ###èééA*•"''盬¬,ܽ{aaa …¿¿?²³³¡¦¦33³üBbee==½ožØ,’““ñàÁœ;wóçÏGÆ qêÔ)èëëö·Ž~Â4Ûzù+ T4q¤ha!""…!C† ,,  ¥¥•_,Z·n ###Ô®]†††ß<]ù{W0ÌÌÌ0`À@VV®_¿ŽÐÐP„……áÈ‘#ðòòð÷»«µk׆¦¦&444 ¡¡R¥J¡T©RHJJƒðàÁ¼{÷ •J1nÜ8¸»»Ëd5¥¨ùÖÖ&EÁ-VE_BB¤Ri¡n¥$Ùa!""…‘’’‚fÍš¡|ùò€……tuu¿¹ê Kjjjù+%%%!,, aaaxüø1222žžŽääd¤§§###åÊ•Cƒ ЫW/ÂÐÐ%úœnm"y‰G…  ¤¤$vú, DD¤0¶oߎwïÞáÆ¨^½ºØqòU¬X]ºtA—.]ÄŽR¤pkÉÃóçϱjÕ*´nÝZì(ôX@ˆˆH!|¼Mm=ª|ÐÏûçÖ¦¢²‹Š–/^ÀÁÁðõõ;}'žBDD áÌ™3¸wï\]]ÅŽB…àŸÛ±¾DN¿ßïÍ›7˜:u* ðèÑ#ìÛ·×!, DD¤|||`bb±£P!øÖa~ß*(%¿ß–žžÔªU «W¯F›¾ÃPjØJD~àÁžE ‰.&&pqq‘ëç$?N6FˆYÐý«Û¯xÚ8¿ÿ&''6l€¡¡!fÍš…âÑ£G¸]ÃÏÓ–¶"†×€‘è|}}Qºti 8Pì($Þ —߃/ÄÌ™3þýûcáÂ…ùgêðFEW@ˆˆHTظq#† MMÍü?—×~xî»'RLçÎC“&Mлwoèéé!""»wïþä@Ïo­¬‘bb!""QíÙ³¯_¿Æ˜1c>ùsyí‡ç¾{"ʼn: M›6€³gÏâäÉ“0339É ‰F¬Zµ ;v„Á'“×~xî»'R =€`nnŽ˜˜ìß¿¡¡¡<ߣâ5 DD$šÐÐPDFFbñâÅŸ}L^ûá¹ïžH\ÉÉɘ?>|}}Q©R%¬_¿C‡…²2_¦Wü?KDD¢ñññ¾¾>Ú·o/v" èÕ«nܸE‹ÁÕÕbÇ¢BÆBDDr—œœŒýû÷cß¾}ððð€TÊÁD%Ñ‘#GpñâEœ\ìhD$‚ììlL:¶¶¶,% ßr""¢B“™™‰ƒÂÁÁ•*UÂàÁƒñþý{xyy!..ÐÖÖ;f‘Å[SQ¶iÓ&Ü¿K–,;ÊwËÌÌ;B±ÀBDD2•““ƒS§Ná·ß~CåʕѫW/<|øóçÏÇÓ§OgggTªTIì¨Eo!LEUJJ æÎ‹AƒÁÔÔTì8ß‹~ýú¡E‹bG)X@ˆˆHf¡¯¯:àòåË?~<îÞ½‹ÈÈHüñǨQ£†Ø‹ÞB˜ŠªeË–áÝ»wX¸p¡ØQþÕ‡°dÉÔ©SçϟǸqãÄŽT,ð""’™ .àÙ³gFóæÍ!‘HÄŽT¬ñÂT ‚€õë×cÔ¨Q ý¦Ä™3gàââ‚û÷ïÃÕÕóçÏÇ£G°bÅ ±£y\!""™¹~ý:ªV­ kkk–"ú¢{÷îáåË—èܹ³ØQ¾(66}ûöE»víP¡BDFFÂËË eÊ”;Z±Á""’™ÈÈÈ"±Ÿ›ˆdOìÚµ wïÞE¹rå ££óÅ_Ï;eee4oÞ\ìÈŸY¿~=&Nœ---lß¾ŽŽŽ|3¥°€‘Ì\¿~Æ ;ÉYnn.ÆT¯^ïÞ½CJJÊW?¿Y³fÐÒÒ’c—““ƒ &ÀÇÇ£F‚‡‡Ê–-+v¬b‹„ˆˆd"!!ñññ\!*aÒÒÒп;v ¾¾¾øý÷ßü}ÎÇÛ·oñæÍ¼~ýú“_mllDNý_ïÞ½Cß¾}ôI~*<, DD$7nÜ*ëÖ­C\\\\\P±bE±ãÐÿ{ùò%ìííq÷î] S§NùSQQAÅŠúÿ×£G`ooøøxœ:u mÛ¶;R‰À‹Ð‰ˆH&ž>} ©T ===±£P1ôäÉ,X°5kÖÄøñãñüùs±#i9ÄRܼy³gφ……^¼x‹/~R>Š‚ÀÊÊ 999 eù#""’‰ØØXT©RÊÊ\\'Ù›3gŒŒŒ‘‘Í›7C__ÇÇýû<þgüè!–‚ àÖ­[˜3gêÖ­‹† ÂÇÇvvv …¹¹y!'–-AàììŒÒ¥K#44µk×;R‰ÂŸDD$±±±¨^½ºØ1Dã|îw0ͶÏæ(ضmš7oggg”/_+V¬À–-[бcG£V­Zù5j@EEEìØ kšm½ü¿¯ÿæéӧؼy3üýýqïÞ=”)S=zôÀŠ+Ю];¨ªªÊ)±líß¿@¹råÄŽSâ°€‘L”ôòÏw”Y@ G“&M0uêT,[¶ W®\‹‹ ¶mÛ†}ûöaß¾}xöìrssR©¿üò ôõõagg‡~ýú¡fÍš"?Åñ­C,###±téRøûûCSS=zôÀ²eË`kk[dKÇG)))˜0aºvíŠ.]ºˆ§Dâ,""’‰çÏŸ—è2Ͷj–Óüæ;ÊT0sçÎEݺu1xð`H$üþûï ÂãÇ‘‘‘G!00¾¾¾èß¿?´´´0oÞ<èéé¡Y³fXµj^¾|)öÓÈWk1dMÁÎÎæææøë¯¿àåå…¸¸8lݺ;w.òå,X€×¯_cåÊ•bG)±¸BDD–››[â È·ÞQ&ÙPSSÃôéÓÑ¿¬Y³&LÈÿ˜ŠŠJþ¬JIIÁ‘#Gàç燉'büøñhݺ5†Ž>}ú@II©P·Ð¥¤¤àÝ»wÈÊʇ•••ÿ˜»þ,ߦböÝ¿P&ÖYYYÈÉÉ¡¡!ÌÌÌ ­­-Ó,_sþüyLš4 033ƒŸŸz÷î]ì®ézøð!¼¼¼òK)‰£xý­"""Q\ºt ©©©hÖ¬™ØQ¨ËÌÌÄâÅ‹áááÚµk£]»vßõu¥K—ÆÀ1pà@¼~ýÀîÝ»1`À,^¼‹-Ÿáž½I/ðºÌÌL\¿~W®\Éy¨ªª~ögŸÓ½{÷ŽððpDDDàÈ‘#HOOèëëÃÜÜü“bò£RgeeÁÓÓ .DéÒ¥±mÛ68::B*-޻󃃃aii‰R¥J‰¥Dc!"¢ÉÉÉÁгgÏbÿâ…¾Ÿ¬¶4½yóüñ6n܈fÍšáСC¨WïïëlrrrðêÕ+T®\ù§ÆnÒ¤ ‚‚‚pæÌÌœ9a»æa_ÜΘSSS”/_>%@¼xñ⓲qíÚ5¤¤¤@"‘ nݺ°´´ÄðáÃaii “]/all ccc 2ÀËÎÇBŽE‹!55 §§÷I!±°°@… >3//÷îÝÃåË—±dÉ<~üãÆÃœ9sP¦L™ŸÎZT‚€ 6Lì(% ý4Aàää„—/_æ¿P oƒ«X zW0AàïïqãÆ!##k׮ŨQ£òKî‰'ЧO¤¦¦ÂÚÚƒ ‚ƒƒttt~x®¶mÛ¢M›6ÀÌ™3akk ÐÖÖF­ZµP©R%ܺu ñññ€êÕ«ÃÒÒ3g΄¥¥%,,, ýZ %%%Ô«WõêÕàAƒü](|&\!"¢Ÿâíí 777,]ºTôò|ÿÁj?kÀ–øG>C³Ø=ÔºPæ(N¾tW°ÜÜ\<~ü·oßFNN444 ©© MMM}C† ÁàÁƒááá!v¹écV#äg%&&âðáÃØ¿?BBB¾úb¼fÍš°´´„••¬¬¬Ð¨Q#¨««ÿô¼²tñâEx{{CGGoß¾Å?ßÇ”J¥¨T©òòò˜˜PWWGýúõabb‚þýûÃÄÄÆÆÆ(UªÒÒÒžžŽ´´4T®\UªTÉëéӧعs'¶oߎû÷ï£Zµj9r$† ‚ºuëþkFccc¸»»cþüù2dz÷î ooo¸¸¸Î7…Š„ôôthii‰ƒÀBDD?àÊ•+èÙ³'ììì°qãÆu׫ÝC­±{è]\\:„ýû÷ãâÅ‹€V­ZaÁ‚¨Q£tuu¡««‹Ê•+ãÝ»w ËÌž=¨P¡Æggg™žñ3:tèØ´iºté‚ÄÄDÄÇÇç?^¾|‰¼¼<£AƒÐ××Ï_ù__{.Ó¦Mƒ‡‡455Ñ«W/¬Y³­Zµúê8_£¦¦†Ý»w£ZµjpuuEll,ÜÜÜJÔß[ú¯ôôthhhˆƒÀBDDß):::uBƒ àïï±#)¬çÏŸãÀØ¿?._¾ %%%´mÛëÖ­C·nÝP±bÅ/~]™2eP£F 888øû6³·<-\¸pvvÆøñãEÛ¦¥¯¯ºuë" =zô@µjÕ>¹@¼ 6oÞ ÌŸ?'N,ð;ÖR©Ë—/LJàáá]]]Œ?^Fi©(aQ| €ˆˆ¾éÅ‹°³³C¥J•pôèQþÿ‚ÇcéÒ¥hÒ¤ jÔ¨©S§BGG[¶lAbb"Nž<‰#F|µ||‰²²2ÌḬ̀zõjÄÄÄ`ôèÑðññžž\]]‘PˆÏèëìííqôèQdggËtÜË—/ÃÉÉ ÆÆÆ°µµ•Év™¬¬,Ì™3¾¾¾¨W¯ìììd”Š¢´´4þÛ¥ X@ˆˆè_½yó:t@^^N:õÃ'.g÷ï߇››,,, ¯¯9sæ jժعs'€!C†üÔÙÿKWWxöì¦OŸŽ]»vÁÔÔçÏŸ/øùAŽŽŽxõê¼½½e:î„ ¨¨(4kÖ ýúõC\\ÜOwõêU˜››ãÏ?ÿÄŒ3‘ˆ!•<éééÐÔÔ;„ˆˆþEzz:ìíí‡Ó§Oã—_~;’¨AÀíÛ·1þ|4hеkׯâÅ‹a``€½{÷")) ÄÀ íVŸ:::˜3gîܹƒ:uê mÛ¶pssC^^^¡Ì÷%&&&pqqÁœ9sðìÙ3™»}ûvüõ×_xñâ¶oߎ³gÏ¢N:X¹r%rrr~h¬ÌÌLtîÜêêꈈˆÀüù󡦦&³¬T´‚À-X „„ˆˆ¾(''}ûöEdd$Ž;öÍ;g‚ ÀÃÃõêÕƒ±±1–/_wÑ¢E9r$?~ŒN:¡N:¸~ý:f̘[[[T©R+VD«V­àì쌵k×"88oÞ¼ùâÜZZZ°¶¶ÆþóÄÆÆÊóÓÑÑÁš5k%%%4mÚ£FÂëׯ¿ùµ«W¯†­­-ŒŒ¾ÿv*¾ÒÒÒ€DAð.XDDô™éÓ§cË–-رc:vì(vQ½{÷'N„ƒƒvìØ!vœ/jß¾="##Ñ¿tîܪªªhܸ1¬­­ammŒŒ Ì›7óæÍÜ9s>ùÚÜÜ\|ø€û÷ïRL¢¢¢ðøñc¨¨¨ aƘ1cºwï^˜Oé3/_¾ÄäÉ“±k×.X[[cÁ‚ÐÖÖFNNÂÃÃqôèQ¡_¿~ضm$‰\ó‘bzðàŒŒŒpþüy´lÙò§Çáë4Ùà å;xð &Nœˆ?þøƒå¿ØX½z5–.]ªðåøûÌ SSS˜ššÂÕÕ‚ &&×®]Cûöíè>UUÕüUJOO‡²²2TUUeÿ»èêêbçÎ>|8ÆŒƒ6mÚäLYY-Z´À’%KàääÄòAù>®€p –b`!""_÷1{öltèÐîîîbÇ]nn.FúõëÃÕÕUì8?E"‘à×_ů¿þ*³1å\ëÖ­qãÆ è9û þ}ª”ÑÀݥà íîcT´ñÅÂBDD€³gÏâÎ;ðññá;Ç6n܈+W® 88˜§¾+(UUUÌÜîw0ͶË}¯Q,, DDXµjŒÑªU+±£ˆ.//³gÏÆ!C`mm-vúN6Fp²á®èßq –ba!"*ÁBCCqòäIáòåËX»v-W?DGG#)) ƒ ; É ˆbá9 DD% ˜>}:š6m oooT®\ë֭È#ÄŽ¦ ‘Hиqc±£˜oð}èÍ9 ßàûbG!ÍÇRªT)‘“ÀBDTâäää`ĈpwwDzeË””„`äÈ‘PRRú®1Šû‹Ú°°0Ô­[ÚÚÚbG)0÷À;xú: îwÄŽB$š´´4¨««÷¿qT¸X@ˆˆJ˜™3gbûöíØ±c&MšôS?‹û‹ÚÐÐPXYY‰C&¦ÙÖCÍrš˜f[Oì(D¢IOOçö+ÂBDT‚<|øžžž˜={6zœâü¢6==·nÝ*6ÄÉÆ1 ºóBm*ÑX@ /B'"*A¦L™]]]Lž<¹@ãç;…‡‡#77·Ø"bQ4, DD%ÄÉ“'qøðaìÞ½›?ˆÿEXX444>;œˆŠ®´´4ž¢@¸‹ˆ¨xüø1ˆöíÛ£_¿~bÇQhaaahÔ¨”•ùQqÁÅÂBDTÌ¥¦¦¢{÷îÐÑÑŸŸÏùøyyy¸|ù2·_3, Š…oïc‚ `èСxòä BCC¡££#v$…vùòeÄÅÅÁÞÞ^ì(D$C, Š…+ DDŘ››öïß;v ~ýúbÇù¦¬¬,=z·oßeþÝ»wã—_~AóæÍE™Ÿˆ ¯Q,, DDÅÔÑ£G1{ölÌ;Ý»w;Î7edd wïÞ°··‡±±1ÜÜÜä:vv6üýýÑ¿H¥üñHTœpD±p Q1Ž¢k×®˜3gŽØq¾J„……aë֭سg222pèÐ!DFFbæÌ™HKKâE‹ärÝJ`` ^½z…ú\D$_, Š…„ˆ¨˜¹vílmmQ·n]lß¾]ÔwóAÀóçÏqõêU\½z·oßFff&²³³‘““ƒøøx<~üÕ«W‡‹‹ † }}}tïÞ¥K—Æ”)S°*è&<–.Ãèµ 5ëîÝ»Q¯^=4hРPç!"ùKOOç,ÂBDTŒ\½zvvv¨S§Nž< mmm¹Î/"##qôèQ\¹rW¯^Ebb" Zµjhذ!Ê•+(++ÃÔÔÝ»wGëÖ­¡¤¤ôÉX“'OÆŸgâõ‰u˜08u¶x£U«V…²’––†Ã‡cÆŒ¼KQ1ÄÅÂBDTL\¹rvvv¨W¯žÜËGLL vïÞ;wâîÝ»ÐÑÑ¥¥%F…Æ£qãÆ¨R¥Ê»xúDÌ-SªáЦM4mÚ3gÎD§NdZ––†þýûËlL"Riii, „WÙaaa°µµEýúõåV>^¿~uëÖ¡E‹øõ×_±xñb˜››ãĉHLLÄÉ“'±páBtíÚõ§Ê8Ù!Áo!žE߯±cÇ ‘HÐ¥K˜››cß¾}ÈÍÍ-ðóÈÍÍÅêիѤIüú믈‹ \Q0, DDE\hh(ììì`bbRèå#33@= ««‹1cÆ@SS;wîDBBvî܉:Èüq‰D‚N:!$$çÎCùòåѧOÔ¯_Û¶mCvvöOýçŸâÒ¥KX´h‘ ‘¢ÈÎÎFnn.¯Q , DDEØ_ý;;;4hÐ'Nœ@éÒ¥ ež/^ÀÉÉ ºººèÝ»7bcc±téR¼xñ'NœÀÀ¡¥¥U(sÿ“D"A«V­„ÐÐPá·ß~ƒ‘‘Ö®]ûÃEäÂ… ˜;w.fÏž¶mÛRj"SFF€¿WBH1°€Q—/_FûöíajjZhå#;;Ë–-C:upèÐ!¸ººâîÝ»¸zõ*Æ]]]™Ïù½¬¬¬päÈܸqVVVpvv†­­-’““¿ëë“’’0`À´hÑB¡oULD£­­ +++¸»»#++Kì8"¢"éÒ¥Khß¾=ÌÌÌpüøñBY}8þ»‰ëׯǃ°dɱãX@ˆˆŠœ³gÏ¢C‡hÔ¨Q¡”¬¬,¸¸¸ uëÖ([¶,ÂÃÃáíí²eËÊtY³±±ÁÕ«W¡¥¥…¦M›âèÑ£_ýÜ%K–àôéÓØ¹s'ªV­*Ç”D$† ÀÕÕ‹-ÂÓ§OÅŽSâñ6¼DDEÀÝ»w±oß>øûûãöíÛhݺ5d~Qå³gÏààà€ëׯcõêÕprrõ Ã¥§§‡Ë—/ÃÑÑ]»v…‡‡† †àþýûù¿8pÓ§O‡Ø‘‰HŽ?ŽmÛ¶¡råÊ2¿Iý8þ "RPÑÑÑð÷÷‡¿¿?¢¢¢PºtitëÖ þù':tè™Îwúôi 0ZZZ¸té5j$ÓñåEKK ÄìÙ³ñÇà?þÈÿXµjÕ`hhˆ)S¦`þüù"¦$"yÙµkѹsglÛ¶ åË—;R‰ÇBD¤@îß¿Ÿ¿ÒqóæMhii¡[·nX¼x1ììì ®®ßàû0\x ÓlëÁÉÆ¨ÀsæååaÑ¢E˜7oÚ·o;wùÐR©‹/†­­-’’’`ddÞ†“¨„¹xñ"† †!C†`óæÍEjE·8c!"RëÖ­ƒ¯¯/®_¿MMMtíÚóçÏGûöíQªT©O>×=ðž¾Nƒ{àW¯^ÁÑѧN¼yó0kÖ¬bõºU«VbG "‘¼}ûhÞ¼9Ö¯__¬þm+êX@ˆˆDæëë‹Ñ£G£gÏž˜={6:vìøYéø§i¶õàxÓlëhÞ«W¯¢wïÞHKKÉ'о}ûGD¤HæÎ‹ôôtìܹªªªbÇ¡`!"Q`` \\\àêê ooïïú'£­|‚€uëÖaܸq055ž}ûP£FŸˆHÑDEEaõêÕpssãî×¢ˆˆDr÷î]888ÀÎÎ+V¬ËœyyyprrÂèÑ£1bÄ\¼x‘僈ŠA0vìXÔªU ãÆ;}W@ˆˆDœœŒ.]º zõêØ³g\n ùñ‡ò† °iÓ& 6¬Ðç$"’·ýû÷ãܹs8~ü8ÔÔÔÄŽC_ÀBD$g‚ ÀÁÁ)))8sæ ´µµå2ï’%K°zõjlØ°åƒˆŠ¥´´4Lš4 öööèØ±£Øqè+X@ˆˆä,==çϟdž  §§'—9ß½{777Œ?#FŒËœDDòæî„xzzŠ…þ ‘œ)))ÔÕÕÿõó^¿~   ܾ}666hÑ¢ÅOßÉeݺuÈÌÌÄ”)S~ê뉈ÝãDZtéRLž<úúúbÇ¡ÁBD$g Hnnî'ž››‹«W¯âäÉ“8uê®\¹‚¼¼<”-[ ,€¶¶6Ú·o{{{têÔé» ÌÌÌ„§§'Ì»ÁQ±$&L˜€Š+bÆŒbÇ¡oà]°ˆˆäìcÉÉÉÉÿ³3gÎ@OOM›6ÅÊ•+Q½zu¬_¿Ïž=ÃëׯÉ“'#&&ƒF¥J•0g΂ßàûЛs¾Á÷¿8ߎ;ÀÕ"*–²³³1räH9ržžžÐÔÔ;}W@ˆˆäL*•ÂÈÈ>>>èÕ«ÜÜܰlÙ2´iÓ{÷î…¥¥ågwÅ233ƒ™™fÏžøøxøúúbÁ‚ÈÌÌÄ^µ¦xö&ý‹'£çææbÉ’%èÕ«ŒŒ vj:‘¢y÷îpþüylݺ½{÷;}""øûû£Y³f¨Q£233áááI“&A*ýöÂt•*U0þ|T¨PcÇŽEëÞƒ:Ý¿x2úÁƒñðáCøùùÆÓ "ÍóçÏѹsg<{ö 'OžD›6mÄŽD߉„ˆH 6ÄÎ;áéé OOOXXXüð®®®PQQÁèÑ£áì\£šwËÿØ«W¯pñâEÌ;mÛ¶E£FdŸˆHT‘‘‘èܹ3TUUqùòeÔ«÷ù0¤¸X@ˆˆDÒ£GôèÑ£@c899AYY£F›7o ££ƒ . ** P«V-¸»»Ë".‘B8~ü8úô郺uë" ºººbG¢ÄBDTÄ1***øý÷ßQ£F ´lÙS§NEË–-ñË/¿ˆˆHfÖ®] ØÛÛc×®]¼à¼ˆb!"*† GGÇü;l'/^¼€››Ö¬YƒqãÆaùòåü÷®c!"*&øÃ˜ˆŠAÜï`šm=8Ù‰‡ˆ¨XŠ‹‹Cpp0BBBŒ7n B… pvvÆèÑ£yVQ ÅBD%’{à<}÷À;, DD2 îß¿Ÿ_6‚ƒƒñøñc€lllðÇ gÏžPWW9-‰‰„ˆJ¤i¶õòW@ˆˆèÇåääàÆùe#$$‰‰‰J¥hذ!ºtéX[[CWWW츤@X@ˆ¨Dr²1âÊÑŠ‹‹ÃæÍ›qñâEüõ×_HMM…šš¬¬¬0räHØØØ iÓ¦<¯ƒþ ý«ŒŒ ¬X±þù'¤R)lll0sæLØØØ Q£FPSS;"!, DDDDôE‚ `ÿþý˜2e ^¼xqãÆaöìÙ(S¦ŒØÑ¨c!"""¢ÏDFFbüøñ¸xñ"ìííqúôiqë*ϵ'"""¢| 9r$,,,œœŒS§NáÈ‘#,$3\!""""deeÁÛÛ .„²²2¼½½áääee¾\$Ùâß("""¢L9r“&MBLL Fyóæ¡|ùòbG£bŠ[°ˆˆˆˆJ¨¨¨(ØÙÙ¡{÷îÐ××Ç7°jÕ*–*T, DDDD%Ì«W¯àì쌆 âéÓ§ÀÉ“'Q¿~}±£Q À-XDDDD%Dvv6Ö¬Yƒyóæ!//K–,««+TUUÅŽF% Q pòäIL˜0ÑÑÑ9r$.\ˆJ•*‰‹J nÁ""""*Æ¢££Ñ¹sgtìØºººˆŒŒÄºuëX>H4, DDD¤ðRRRWWWtèÐëׯÇû÷ïÅŽ¥Ðrss1yòdãÎ;Ø¿?Ξ=‹† ŠJ8"""’©ÜÜ\äææhŒ¼¼<\»v nnnhժʗ/®]»âèÑ£øðáF*Uª`ذa¸|ù2AQúâ# Ë—/Çܹsq÷î]ôêÕ ‰DìXD¼„ˆˆˆdçíÛ·¨U«Þ¼yeee¨©©A]]jjjù¿¯Zµ*ŒabbÔ«WZZZˆE`` NŸ>ÀÀ@¼zõ ZZZhÓ¦ <==aggH$ÄÆÆbëÖ­Ø´i¶lÙ‚úõëãôéÓ¨ZµªØß…±iÓ&4jÔ³fÍ; Ñ'X@ˆˆˆHfBBBðæÍxzzBMM YYYÈÌÌÌÿ533Ïž=ÃñãÇáíí¿rQ¹re$$$@"‘ Q£Fprr‚š6m •Ïæ©^½:fÍš…3f`×®]ééé¸{÷.nݺ…‡¢AƒhÛ¶í‚'•Jadd(]ºt²'Û·o‡ªª*úõë'v¢Ï°€‘Ì„„„ÀÚÚú»®5ÐÐЀ……,,, 4gJJ AÀæÍ›Ñ»wo”-[Vì8DŸáEèDDD$3hܸ±\çüX@´´´ä:¯¢ Áƒ0|øp±£} ÉŒ––²²²ä:'W@>µiÓ&ÔªU -Z´; ѱ€‘ÌT©Rñññr355***PSS“뼊(-- ûöíðaà •òe)&þÍ$"""™Ñ××GDD„\çÔÖÖFvv6Þ¾}+×yÑ¥K—žžŽ=zˆ…è«X@ˆˆˆHfz÷îÐÐP""¢"êöíÛèС:uê„*Uª ""nnnøðáªW¯.j6ÔªU «W¯–Ë|‰ À† ðþý{¹Ì©¨ºvíŠ[·náÈ‘#öööhذ!vìØìììÏ>?55<@pp0Ž9‚´´4RSIÂBDDT¥¥¥ÁØØ‘‘‘8|ø0Μ9SSSìÙ³ššš°··5ŸT*Å„ àïï§OŸÊeÎ)S¦ -- kÖ¬‘Ë|ŠL*•ÂÞÞ—.]Bpp0jÖ¬‰ÁƒÃÀÀ½zõ‚µµ5  ¥¥…Ò¥KÃÈÈ-Z´@·nÝpüøq±ãS1ÇBDDT%%%иqãüsüüüЭ[7hhhˆ0tèPhkkÃËËK.óU¯^C‡ÅòåËù.þ?|܆uãÆ ´iÓ)))Ð××GïÞ½±hÑ"lÛ¶ ‹-‚jÕª%zy¥â„ˆˆ¨ÒÓÓøqã°iÓ&Tÿå”20G¯1Sqûömôïß_ìxþ¾a̘1ذaÞ¼y#—9§M›†·oßbÉ’%r™¯(iР¶lÙ‚'NÀÅÅåÊ•ÃÉ“'1zôhÌš5 ÉÉÉX·nÔÕÕÅŽJÅ Qååå…øøxètü™éi8¸v Ê•+;;;±£åsqqAvv6Ö¯_/—ùôôô0}útüùçŸˆŠŠ’ËœŠ.//7nÜ€§§'ºvíŠòåËÃÒÒ ,Ì;W¯^Err2Úµk'rZ* $OªQ(°°°@xx8ÌÍÍÅŽCDDE€oð}¸ÞÁ°:èÕ°êׯ/v¤OŒ9ÇŽÓ'OärJwVVÌÌÌPºti\¾|JJJ…>§"÷îÝùsçpöìYœ?¯^½‚ššš5k†6mÚ uëÖhܸ1TUUÅŽ[¤ðušl(‹€ˆˆˆ ÆÉÆN6FbÇøª‰'bãÆðóóÃo¿ýVèó©©©aÓ¦MhÞ¼9<==1lØ0¤¦¦"55iiiŸüšššŠòåË£U«VÐÑÑ)ôl…íÅ‹8p .\¸eeeXYYa̘1hݺ5š6mÊíU¤X@ˆˆˆ¨PÕ­[]ºtÁ²eË0dÈü æ SÓ¦MáêêŠ)S¦`Ê”)ßü|©T ´mÛíÚµCóæÍ‹Ü‹õcÇŽaÈ!PWWÇÁƒakk ---±c}†„ˆˆˆ ÝäɓѪU+œ:u :tËœK—.E«V­ü}A¼––455?ù½††bccqæÌaóæÍpww‡ºº:¬­­Ñ®];´mÛfff »•ëǘ9s&–-[†Î;cëÖ­¨P¡‚رˆ¾Š×€(î-$"¢âHXZZB[[gΜ;ÎW ‚€¨¨(áÌ™38þ<ÒÒÒ ©© mmm”*U êêêù¯ýwùòåѼys4kÖ ššš…–7&&ýúõCxx8<<<0~üxH¥¼ÇPaáë4Ùà :‰D‚)S¦ oß¾ˆˆˆPØo‰&&&011Á„ ðáÃ\¹rW®\Ajj*233‘™™‰ŒŒŒO~ŸššŠäääü?ñâæÏŸeee4nÜ-[¶DË–-Ѽys”.]Z&Y<ˆaÆAGG—.]‚¥¥¥LÆ%*l, DDD$={ö„žž–/_Ž]»v‰绨ªªÂÚÚÖÖÖ?ôu‚ àîÝ»8þ<.\¸€-[¶ÀÝÝJJJ°°°È/$ÖÖÖ(S¦ÌwûáÃbÇŽØ»w/z÷î 6 lÙ²?úÔˆDÃ5:"""’ eeeL˜0{÷îÅÓ§OÅŽS¨$ êÕ«‡1cÆ`ïÞ½ˆÇ½{÷°zõjèëëc×®]èÒ¥ Ê•+‡FaÒ¤IÀÛ·o?ëÇ8~ü8~ûí7TªT ]ºtÁ7°~ýzøûû³|P‘Ãk@ ÷Qq–šš }}}´lÙþþþbÇ xøð!.\¸€ .àüùóˆ…D"AÆ ѲeK˜™™áÂ… 8tèÞ¾}‹Úµk£OŸ>èÓ§êׯ/—»‰Ñ§ø:M6¸‹ˆˆˆäFKK ^^^0``oo/v$QH$ÂÐÐ#FŒ€ xòäI~9|ø0V®\ CCC8;;£OŸ>011aé b„ˆˆˆò ‚Pè/rûõë‡íÛ·ÃÙÙ­Zµ’ÙEÙE™D"A­ZµP«V- :ðúõkèèè°tP±ÃBDDD€Ó§O£}ûö¨]»6jÖ¬‰š5kBOO/ÿW+++(+ü¥ƒD"ÁÚµkQ¿~}Ìž=^^^2H_ü”+WNìD…‚¡`âĉ€:@CC×®]ÃòåËáèèkkk˜ššÊì ===,\¸ÞÞÞ¸råŠLÆ$¢¢„ˆˆˆ‰‰‰X¸p!¼¼¼pèÐ!DDDàÕ«Wxÿþ=.^¼ˆ²eË2X*”IDAT¢]»vèÑ£’““ <ߨ±caff†‘#G";;[Ï€ˆŠ"""Bff&’’’ðË/¿|ö±Ò¥KÃÆÆÁÁÁðóóéS§°nݺÏ©¬¬Œ 6 ** +V¬(ðxDT4°€^¼xˆ|èÍ9 ßàûŸ}ŽD"A¿~ýP·n]™ãannŽ &`Þ¼yxôè‘LÆ$"ÅÆBDDDxþü9`߃T<}•‚…{‚póæÍüG|||þçÖ¨Q#ÿóeaþüùÐÒÒ† d6&).Þ‹ˆˆˆ ({m^ÞºŽ¸ŒT4\óß«¨¨ÀÍÍ }úôÁÛ·o‘˜˜(³¹555Q­Z5¤¦¦ÊlL"R\, DDD---hkk£²¦ þ˜„æÍ›£lÙ²ù÷÷÷Ç”)S0eÊhhh`Ò¤I2_MM ™™™2“ˆ ¡{÷îxûöíW½kܸ1ºuë†'Ož {÷î2?>ž?PVVF:uðêÕ+¬X±Õ«WGïÞ½áààÀ2ò¸BTr°€}ALL fÏžÈÈHDGG#''P£F ˜˜˜`àÀ011‰‰ j×® UUUäææâòåËð÷÷ÇÞ½{áåå…jժ嗑¦M›²Œ|W@ˆJ""¢ÿqÿþ}´mÛ‰öööpqq‰‰ ŒQ¦L™¯~’’lll`ccƒ•+WâÒ¥KØ·oüýý±råJ–‘¡¢¢ÄÆÆŠ…ˆ ÿå#""ú‡¨¨(´hÑ¥K—Fhh(V¯^ '''4oÞü_ËÇÿ’J¥°±±··7bccŒž={bß¾}°¶¶FË–-ñáÇB|&E‹D"££#V®\‰´´4±ãQ!b!""úhÕªtuuqáÂT­ZU&ãJ¥RX[[ÃÛÛÏŸ?ÇÑ£G†™3gÊdüâbΜ9xóæ V­Z%v"*D, DDTâÅÄÄÀÉÉ Mš4¾¾>Î;‡Š+Ê\R©;w†»»;–-[†'NÊæÏŸŸ,<þ]×®]ã7Þˆ-[¶ÄóÏ?Ÿ|ýmUUUUäææzMà2åkxh³Nž<ŸþyÔÖÖÆæÍ›ãðáÃQTTÝ»wîÝ»Ÿór·nÝâàÁƒ±k׮ؽ{wìÞ½;víÚ{ö쉦¦¦èÑ£G¼øâ‹1mÚ´èСC¶Ÿb”––Æ“O>O=õT ><†ší‘.J&“‰ßÿ=:uêÔâeFeee<÷ÜsQYY×^{m+L´9™L&“í!øÓŽ;bðàÁ±}ûö4hP¶ÇHnÿþýQ[[›6mŠºººhjjŠ.]ºDYYYôìÙ3~ùå—hhhˆÄâàÁƒç]Vûöí£ÿþ1`À€(..Žâââ5jÔ™½k+N:¥¥¥±ÿþøê«¯âšk®ÉöHÛÌ™3ãµ×^‹µk×ÆØ±c[¼¼¦¦¦¸é¦›¢°°0V¯^%%%­0%´ŒÏi­Ã²êرcQ__›6mŠÚÚÚØ·o_äææÆwÜ ,ˆòòò4hÐy´ïäÉ“ñ믿ž%………Q\\7Þxcäææ&~F_^^^¼ùæ›qóÍ7Ç”)SbÆ ‘“““í±.XMMM,_¾<<ð@TUUÅ¢E‹"/ïâ?ftîÜ9¶nÝ“'OŽaÆÅìÙ³cÑ¢EqÕUWµâä@6’Êd2±oß¾¨­­ÚÚÚØºuk?~ýôÓX¶lY<ñÄñÁĪU«bäÈ‘­4= €Kî·ß~‹ººº3Ññã?Fûöícøðáñì³ÏFyyyôë×ïõ_ÿKa̘11kÖ¬¨¬¬Œ’’’8p`‹—YSS[¶l‰ÜÜÜÈËË‹ÜÜܳ.ÿõü|·åççGYYÙYaØÜÜãÇ:ĪU«"'''æÍ›ñÒK/EUUU‹w'Ëd21iÒ¤èСCÌš5+F¯¿þz<ôÐC-}i€, ´ºÓ§OÇŽ;ÎËñÙgŸEsssôë×/î¿ÿþ=ztÜu×]QPPíQÛœêêêØ¶m[Œ7.¾üòË‹ÞåèСC1sæÌX·n]ôéÓ'òòò¢¹¹9N:uÎó¿^wêÔ©ÿXæ!CbÛ¶mgŽ¡Y¼xqÔ××G]]]ž¹ßœ9sbÉ’%ñøãLj#âÈ‘#qôèÑ8räÈœþ×õ'Nœ8³Ü¢¢¢(++‹!C†\Ôk´ €VS__+W®ŒÍ›7GccctêÔ)FË—/Ñ£GÇu×]—íÛ¼+¯¼2Ö­[ƒŽÙ³gÇÚµkÿö2>üðØ:ujüñÇñÖ[oŸqã.j–Ó§OŸ‰“¯¿þ:î¾ûî˜1cF¬Y³&Nž<ÕÕÕñè£FiiéYëÖ­[<òÈ#±téÒX¹reDD\qÅѱcÇóžºuëvÞÛ ¢ÿþQ\\ü¿• .€;|øp,X° Ö¬YÅÅÅñðÃGyyyÜ~û푟ŸŸíñþqúöí/¿ürLœ81FŽyÁ»555Eeee¬^½:î¹çžXµjUôèÑã¢çh×®]´k×.òóóã¶Ûn‹•+WÆ„ bÈ!QTT1cÆŒs>vñâÅQUUѱcÇ\^ü5à¢e2™X¿~}<öØcqüøñX±bEL›6í¼ßXÅ…›0aB|ôÑG1}úôèÑ£GŒ1â¿Þÿ“O>‰‰'Æ¡C‡âÕW_)S¦´úÖ‚ñãÇÇöíÛcîܹѧOŸ¸õÖ[cÀ€ç¼o»ví¢¨¨¨U×\¼CpQ~øá‡¸ï¾ûbܸq1tèÐØ»woLŸ>]|´’œœœxå•Wbذaqï½÷ÆÆÏy¿cÇŽÅܹs£´´4®¿þúøæ›obêÔ©—lW¥êêê())‰={öÄäÉ“/É:€Ë›w þ–æææX¶lY 0 vîÜ555ñÞ{ïµhWέ   Þÿý(++‹1cÆDMMÍY·ñÅqË-·ÄŠ+bÉ’%ññÇÇ 7ÜpIgÊÏÏwÞy'.\蛨€‹"@¸`ß~ûm”””Äœ9sbüøñ±gÏž¨¨¨ÈöX—µöíÛÇ»ï¾1vìØxûí·ãĉ±pá¸óÎ;£sçαsçΘ7o^²­O]»v§Ÿ~::vì˜d}ÀåÅ1 mÔŽ;²=ÀYÖ¯_/¼ðBôêÕ+V¯^Œï¾û.Ûcýߘ?~=z4|ðÁèÝ»wüüóÏ1mÚ´˜4iR;vÌû$°wïÞlpYÈÉd2™lÁŸìÆÐFÄÞ½{£wïÞÙåK€´A ÑÐÐí1ø‹.]ºˆ @2B’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dŒ’ @2HF€É $#@€dþzR]Ž‹߀IEND®B`‚Perseudonymous-datapoint-python-cff0700/examples/000077500000000000000000000000001456150136100223025ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/examples/README.md000066400000000000000000000021131456150136100235560ustar00rootroot00000000000000# Examples ## Getting started _Examples of getting data from DataPoint._ * [Current Weather](current_weather/) - Get the current weather for a specified latitude and longitude. * [Simple Forecast](simple_forecast/) - Get a full 5 day forecast for a specified latitude and longitude. ## Making Decisions _Examples which make decisions based on weather data._ * [Umbrella](umbrella/) - Inform the user whether they need an umbrella today for a specified latitude and longitude. * [Washing](washing/) - Inform the user which day in the next 5 days would be the best for hanging out their washing for a specified latitude and longitude. ## Mixing Data _Examples which makes use of other API's in conjunction with DataPoint._ * [Tube or Bike](tube_bike/) - Inform the user whether they should cycle or take the tube across London, based on weather and tube service for two sets of longitude and latitude along with a tube line name. * [Postcodes](postcodes_to_lat_lng) - A variation on the [Current Weather](current_weather/) example but uses UK postcodes instead of latitude and longitude. Perseudonymous-datapoint-python-cff0700/examples/current_weather/000077500000000000000000000000001456150136100255035ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/examples/current_weather/README.md000066400000000000000000000005651456150136100267700ustar00rootroot00000000000000# Current Weather _This example displays the current weather and temperature for your location._ ### Required Modules * [datapoint](https://github.com/ejep/datapoint-python) ## Learning Objective Learn how to simply connect to DataPoint and print out some data. ## Example Usage ```Shell python current_weather.py ``` ## Example Output ``` London Cloudy 18°C ``` Perseudonymous-datapoint-python-cff0700/examples/current_weather/current_weather.py000066400000000000000000000013361456150136100312610ustar00rootroot00000000000000#!/usr/bin/env python """ This is a simple example which will print out the current weather and temperature for our location. """ import datapoint # Create datapoint connection conn = datapoint.Manager(api_key="aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee") # Get nearest site and print out its name site = conn.get_nearest_forecast_site(51.500728, -0.124626) print(site.name) # Get a forecast for the nearest site forecast = conn.get_forecast_for_site(site.location_id, "3hourly") # Get the current timestep using now() and print out some info now = forecast.now() print(now.weather.text) print("%s%s%s" % (now.temperature.value, '\xb0', #Unicode character for degree symbol now.temperature.units)) Perseudonymous-datapoint-python-cff0700/examples/postcodes_to_lat_lng/000077500000000000000000000000001456150136100265075ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/examples/postcodes_to_lat_lng/README.md000066400000000000000000000007561456150136100277760ustar00rootroot00000000000000# Current Weather _A variation on current_weather.py which uses postcodes rather than lon lat._ ### Required Modules * [datapoint](https://github.com/ejep/datapoint-python) * [python-postcodes-io](https://github.com/raigad/python-postcodes-io) ## Learning Objective Learn how to make use of the postcodes module to make it even simpler to access Met Office data. ## Example Usage ```Shell python postcodes_to_lat_lng.py ``` ## Example Output ``` Horseguards Parade Overcast 15°C ``` Perseudonymous-datapoint-python-cff0700/examples/postcodes_to_lat_lng/postcodes_to_lat_lng.py000066400000000000000000000016721456150136100332740ustar00rootroot00000000000000#!/usr/bin/env python """ A variation on current_weather.py which uses postcodes rather than lon lat. """ import datapoint import postcodes_io_api # Create datapoint connection conn = datapoint.Manager(api_key="aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee") # Get longitude and latitude from postcode postcodes_conn = postcodes_io_api.Api() postcode = postcodes_conn.get_postcode('SW1A 2AA') latitude = postcode['result']['latitude'] longitude = postcode['result']['longitude'] # Get nearest site and print out its name site = conn.get_nearest_forecast_site(latitude, longitude) print(site.name) # Get a forecast for the nearest site forecast = conn.get_forecast_for_site(site.location_id, "3hourly") # Get the current timestep using now() and print out some info now = forecast.now() print(now.weather.text) print("%s%s%s" % (now.temperature.value, '\xb0', #Unicode character for degree symbol now.temperature.units)) Perseudonymous-datapoint-python-cff0700/examples/simple_forecast/000077500000000000000000000000001456150136100254615ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/examples/simple_forecast/README.md000066400000000000000000000025251456150136100267440ustar00rootroot00000000000000# Simple Forecast _This example gets a 5 day forecast for your location and prints out some values from each timestep for each day._ ### Required Modules * [datapoint](https://github.com/ejep/datapoint-python) ## Learning Objective Explore the day and timestep objects and loop through them. ## Example Usage ```Shell python simple_forecast.py ``` ## Example Output ``` London 2014-10-18Z 180 Partly cloudy (night) 17°C 360 Cloudy 18°C 540 Light rain shower (day) 18°C 720 Light rain 18°C 900 Cloudy 19°C 1080 Cloudy 18°C 1260 Cloudy 18°C 2014-10-19Z 0 Cloudy 18°C 180 Light rain 17°C 360 Heavy rain 17°C 540 Cloudy 17°C 720 Cloudy 18°C 900 Partly cloudy (day) 18°C 1080 Partly cloudy (night) 17°C 1260 Overcast 15°C 2014-10-20Z 0 Overcast 14°C 180 Light rain shower (night) 14°C 360 Partly cloudy (night) 13°C 540 Partly cloudy (day) 13°C 720 Cloudy 15°C 900 Cloudy 15°C 1080 Cloudy 14°C 1260 Cloudy 13°C 2014-10-21Z 0 Cloudy 13°C 180 Light rain shower (night) 13°C 360 Light rain shower (night) 14°C 540 Light rain shower (day) 13°C 720 Light rain shower (day) 13°C 900 Sunny day 13°C 1080 Clear night 12°C 1260 Partly cloudy (night) 10°C 2014-10-22Z 0 Clear night 10°C 180 Clear night 9°C 360 Partly cloudy (night) 9°C 540 Cloudy 10°C 720 Cloudy 13°C 900 Cloudy 15°C 1080 Overcast 14°C 1260 Overcast 13°C ``` Perseudonymous-datapoint-python-cff0700/examples/simple_forecast/simple_forecast.py000077500000000000000000000016471456150136100312250ustar00rootroot00000000000000#!/usr/bin/env python """ This example will print out a simple forecast for the next 5 days. It will allow us to explore the day, timestep and element objects. """ import datapoint # Create datapoint connection conn = datapoint.Manager(api_key="aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee") # Get nearest site and print out its name site = conn.get_nearest_forecast_site(51.500728, -0.124626) print(site.name) # Get a forecast for the nearest site forecast = conn.get_forecast_for_site(site.location_id, "3hourly") # Loop through days and print date for day in forecast.days: print("\n%s" % day.date) # Loop through time steps and print out info for timestep in day.timesteps: print(timestep.date) print(timestep.weather.text) print("%s%s%s" % (timestep.temperature.value, '\xb0', #Unicode character for degree symbol timestep.temperature.units)) Perseudonymous-datapoint-python-cff0700/examples/text_forecast/000077500000000000000000000000001456150136100251545ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/examples/text_forecast/text_forecast.py000066400000000000000000000020371456150136100304020ustar00rootroot00000000000000#!/usr/bin/env python """ This example will print out the 30 day text forecast for a region of the UK. """ import datapoint # Create datapoint connection conn = datapoint.Manager(api_key="aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee") # Get all regions and print out their details regions = conn.regions.get_all_regions() for region in regions: print((region.name, region.location_id, region.region)) # Get all forecasts for a specific region my_region = regions[0] forecast = conn.regions.get_raw_forecast(my_region.location_id)['RegionalFcst'] # Print the forecast details print('Forecast for {} (issued at {}):'.format(my_region.name, forecast['issuedAt'])) sections = forecast['FcstPeriods']['Period'] for section in forecast['FcstPeriods']['Period']: paragraph = [] content = section['Paragraph'] # Some paragraphs have multiple sections if isinstance(content, dict): paragraph.append(content) else: paragraph = content for line in paragraph: print('{}\n{}\n'.format(line['title'], line['$'])) Perseudonymous-datapoint-python-cff0700/examples/tube_bike/000077500000000000000000000000001456150136100242335ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/examples/tube_bike/README.md000066400000000000000000000010061456150136100255070ustar00rootroot00000000000000# Bike or Tube _This example uses open weather data in conjunction with open transport data for London to advise you on whether you should cycle or catch the tube around London._ ### Required Modules * [datapoint](https://github.com/ejep/datapoint-python) * [tubestatus](https://github.com/jacobtomlinson/tube-status) ## Learning Objective Discover how to mix multiple data sources together. ## Example Usage ```Shell python tube_bike.py ``` ## Example Output ``` Bad service on the tube, cycling it is! ``` Perseudonymous-datapoint-python-cff0700/examples/tube_bike/tube_bike.py000066400000000000000000000037321456150136100265430ustar00rootroot00000000000000#!/usr/bin/env python """ This one's for Londoners. Get the weather for home and work and get the tube status for your usual line. Then use that information to decide whether you're better off cycling or catching the tube. """ import datapoint import tubestatus # Create datapoint connection conn = datapoint.Manager(api_key="aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee") # Get nearest site to my house and to work my_house = conn.get_nearest_forecast_site(51.5016730, 0.0057500) work = conn.get_nearest_forecast_site(51.5031650, -0.1123050) # Get a forecast for my house and work my_house_forecast = conn.get_forecast_for_site(my_house.location_id, "3hourly") work_forecast = conn.get_forecast_for_site(work.location_id, "3hourly") # Get the current timestep for both locations my_house_now = my_house_forecast.now() work_now = work_forecast.now() # Create a tube status connection current_status = tubestatus.Status() # Get the status of the Waterloo and City line waterloo_status = current_status.get_status('Waterloo and City') # Check whether there are any problems with rain or the tube if (my_house_now.precipitation.value < 40 and \ work_now.precipitation.value < 40 and \ waterloo_status.description == "Good Service"): print("Rain is unlikely and tube service is good, the decision is yours.") # If it is going to rain then suggest the tube elif ((my_house_now.precipitation.value >= 40 or \ work_now.precipitation.value >= 40) and \ waterloo_status.description == "Good Service"): print("Looks like rain, better get the tube") # If the tube isn't running then suggest cycling elif (my_house_now.precipitation.value < 40 and \ work_now.precipitation.value < 40 and \ waterloo_status.description != "Good Service"): print("Bad service on the tube, cycling it is!") # Else if both are bad then suggest cycling in the rain else: print("The tube has poor service so you'll have to cycle, but it's raining so take your waterproofs.") Perseudonymous-datapoint-python-cff0700/examples/umbrella/000077500000000000000000000000001456150136100241055ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/examples/umbrella/README.md000066400000000000000000000007401456150136100253650ustar00rootroot00000000000000# Do I need an umbrella _This example checks the forecast for your current location to see if it is going to rain at any stage today. If so it will suggest that you take an umbrella._ ### Required Modules * [datapoint](https://github.com/ejep/datapoint-python) ## Learning Objective Make a simple decision based on the data provided by DataPoint. ## Example Usage ```Shell python umbrella.py ``` ## Example Output ``` London Looks like rain! Better take an umbrella. ``` Perseudonymous-datapoint-python-cff0700/examples/umbrella/umbrella.py000077500000000000000000000016641456150136100262740ustar00rootroot00000000000000#!/usr/bin/env python """ This example checks whether it is due to rain at any point today and then decides if we need to take an umbrella. """ import datapoint # Create umbrella variable to use later umbrella = False # Create datapoint connection conn = datapoint.Manager(api_key="aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee") # Get nearest site and print out its name site = conn.get_nearest_forecast_site(51.500728, -0.124626) print(site.name) # Get a forecast for the nearest site forecast = conn.get_forecast_for_site(site.location_id, "3hourly") # Loop through all the timesteps in day 0 (today) for timestep in forecast.days[0].timesteps: # Check to see if the chance of rain is more than 20% at any point if timestep.precipitation.value > 20: umbrella = True # Print out the results if umbrella == True: print("Looks like rain! Better take an umbrella.") else: print("Don't worry you don't need an umbrella today.") Perseudonymous-datapoint-python-cff0700/examples/washing/000077500000000000000000000000001456150136100237425ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/examples/washing/README.md000066400000000000000000000007431456150136100252250ustar00rootroot00000000000000# When should I do my washing? _This example looks at the forecast for the next 5 days and suggests which day (if any) would be best for hanging your washing out to dry._ ### Required Modules * [datapoint](https://github.com/ejep/datapoint-python) ## Learning Objective Make a slightly more complex decision by comparing values provided by DataPoint. ## Example Usage ```Shell python washing.py ``` ## Example Output ``` London Monday is the best day with a score of 26 ``` Perseudonymous-datapoint-python-cff0700/examples/washing/washing.py000066400000000000000000000037271456150136100257650ustar00rootroot00000000000000#!/usr/bin/env python """ This example will tell us which day would be best to hang out our washing to dry. We will loop over the next 5 days and decide whether it is ok to hang out the washing. Then for the good days we will rank them and print out the best. """ import datapoint from datetime import datetime # Set thresholds MAX_WIND = 31 # in mph. We don't want the washing to blow away MAX_PRECIPITATION = 20 # Max chance of rain we will accept # Variables for later best_day = None best_day_score = 0 # For simplicity the score will be temperature + wind speed # Create datapoint connection conn = datapoint.Manager(api_key="aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee") # Get nearest site and print out its name site = conn.get_nearest_forecast_site(51.500728, -0.124626) print(site.name) # Get a forecast for the nearest site forecast = conn.get_forecast_for_site(site.location_id, "daily") # Loop through days for day in forecast.days: # Get the 'Day' timestep if day.timesteps[0].name == 'Day': timestep = day.timesteps[0] # If precipitation, wind speed and gust are less than their threshold if timestep.precipitation.value < MAX_PRECIPITATION and \ timestep.wind_speed.value < MAX_WIND and \ timestep.wind_gust.value < MAX_WIND: # Calculate the score for this timestep timestep_score = timestep.wind_speed.value + timestep.temperature.value # If this timestep scores better than the current best replace it if timestep_score > best_day_score: best_day_score = timestep_score best_day = day.date # If best_day is still None then there are no good days if best_day is None: print("Better use the tumble dryer") # Otherwise print out the day else: # Get the day of the week from the datetime object best_day_formatted = datetime.strftime(best_day, "%A") print("%s is the best day with a score of %s" % (best_day_formatted, best_day_score)) Perseudonymous-datapoint-python-cff0700/requirements.txt000066400000000000000000000001021456150136100237410ustar00rootroot00000000000000requests==2.24.0 appdirs==1.4.4 pytz==2020.1 requests-mock==1.8.0 Perseudonymous-datapoint-python-cff0700/setup.cfg000066400000000000000000000001731456150136100223060ustar00rootroot00000000000000[versioneer] VCS = git versionfile_source = datapoint/_version.py versionfile_build = datapoint/_version.py tag_prefix = ''Perseudonymous-datapoint-python-cff0700/setup.py000066400000000000000000000057241456150136100222060ustar00rootroot00000000000000#!/usr/bin/env python from setuptools import setup import versioneer setup(name='datapoint', version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), install_requires=[ "requests >= 2.20.0,<3", "appdirs >=1,<2", "pytz", ], description='Python interface to the Met Office\'s Datapoint API', long_description_content_type='text/x-rst', long_description=''' Datapoint for Python -------------------- *A Python module for accessing weather data via the Met Office's open data API known as `Datapoint`.* **Disclaimer: This module is in no way part of the datapoint project/service. This module is intended to simplify the use of Datapoint for small Python projects (e.g school projects). No support for this module is provided by the Met Office and may break as the Datapoint service grows/evolves. The author will make reasonable efforts to keep it up to date and fully featured.** Changelog --------- + Explicitly state the use of semantic versioning in `README.md`. + Add `elements()` function to `Timestep`. + Remove night/day indication from weather codes which have them. + Change the logic used to calculate the closest timestep to a datetime. The closest timestep to the datetime is now used. Add a new function, `Forecast.at_datetime(target)` to do this. `Forecast.now()` has been changed to use this new function. The old behaviour is deprecated and available using `Forecast.now_old()`. `Forecast.future()` has been changed to use this new function. The old behaviour is deprecated and available using `Forecast.future_old()`. + Check if keys are returned from datapoint api in `Manager.py`. Do not attempt to read the values from the dict if they are not there. Installation ------------ .. code:: bash $ pip install datapoint You will also require a `Datapoint API` key from http://www.metoffice.gov.uk/datapoint/API. Features -------- - List forecast sites - Get nearest forecast site from latitiude and longitude - Get the following 5 day forecast types for any site - Daily (Two timesteps, midday and midnight UTC) - 3 hourly (Eight timesteps, every 3 hours starting at midnight UTC) - Get observation sites - Get observations for any site Contributing changes -------------------- Please feel free to submit issues and pull requests. License ------- GPLv3. ''', author='Jacob Tomlinson, Emlyn Price', author_email='emlyn.je.price@gmail.com', maintainer='Emlyn Price', maintainer_email='emlyn.je.price@gmail.com', url='https://github.com/ejep/datapoint-python', license='GPLv3', packages=['datapoint', 'datapoint.regions'], classifiers=[ 'Development Status :: 3 - Alpha', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', ] ) Perseudonymous-datapoint-python-cff0700/tests/000077500000000000000000000000001456150136100216265ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/tests/integration/000077500000000000000000000000001456150136100241515ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/tests/integration/datapoint.json000066400000000000000000001730431456150136100270370ustar00rootroot00000000000000{ "all_sites": { "Locations": { "Location": [ { "elevation": "47.0", "id": "354107", "latitude": "53.3986", "longitude": "-2.9256", "name": "Wavertree", "region": "nw", "unitaryAuthArea": "Merseyside" }, { "elevation": "5.0", "id": "322380", "latitude": "52.7561", "longitude": "0.4019", "name": "King's Lynn", "region": "ee", "unitaryAuthArea": "Norfolk" } ] } }, "wavertree_hourly": { "SiteRep": { "Wx": { "Param": [ { "name": "F", "units": "C", "$": "Feels Like Temperature" }, { "name": "G", "units": "mph", "$": "Wind Gust" }, { "name": "H", "units": "%", "$": "Screen Relative Humidity" }, { "name": "T", "units": "C", "$": "Temperature" }, { "name": "V", "units": "", "$": "Visibility" }, { "name": "D", "units": "compass", "$": "Wind Direction" }, { "name": "S", "units": "mph", "$": "Wind Speed" }, { "name": "U", "units": "", "$": "Max UV Index" }, { "name": "W", "units": "", "$": "Weather Type" }, { "name": "Pp", "units": "%", "$": "Precipitation Probability" } ] }, "DV": { "dataDate": "2020-04-25T08:00:00Z", "type": "Forecast", "Location": { "i": "354107", "lat": "53.3986", "lon": "-2.9256", "name": "WAVERTREE", "country": "ENGLAND", "continent": "EUROPE", "elevation": "47.0", "Period": [ { "type": "Day", "value": "2020-04-25Z", "Rep": [ { "D": "SE", "F": "7", "G": "25", "H": "63", "Pp": "0", "S": "9", "T": "9", "V": "VG", "W": "0", "U": "0", "$": "180" }, { "D": "ESE", "F": "4", "G": "22", "H": "76", "Pp": "0", "S": "11", "T": "7", "V": "GO", "W": "1", "U": "1", "$": "360" }, { "D": "SSE", "F": "8", "G": "18", "H": "70", "Pp": "0", "S": "9", "T": "10", "V": "MO", "W": "1", "U": "3", "$": "540" }, { "D": "SSE", "F": "14", "G": "16", "H": "50", "Pp": "0", "S": "9", "T": "17", "V": "GO", "W": "1", "U": "5", "$": "720" }, { "D": "S", "F": "17", "G": "9", "H": "43", "Pp": "1", "S": "4", "T": "19", "V": "GO", "W": "1", "U": "2", "$": "900" }, { "D": "WNW", "F": "15", "G": "13", "H": "55", "Pp": "2", "S": "7", "T": "17", "V": "GO", "W": "3", "U": "1", "$": "1080" }, { "D": "NW", "F": "14", "G": "7", "H": "64", "Pp": "1", "S": "2", "T": "14", "V": "GO", "W": "2", "U": "0", "$": "1260" } ] }, { "type": "Day", "value": "2020-04-26Z", "Rep": [ { "D": "WSW", "F": "13", "G": "4", "H": "73", "Pp": "1", "S": "2", "T": "13", "V": "GO", "W": "2", "U": "0", "$": "0" }, { "D": "WNW", "F": "12", "G": "9", "H": "77", "Pp": "2", "S": "4", "T": "12", "V": "GO", "W": "2", "U": "0", "$": "180" }, { "D": "NW", "F": "10", "G": "9", "H": "82", "Pp": "5", "S": "4", "T": "11", "V": "MO", "W": "7", "U": "1", "$": "360" }, { "D": "WNW", "F": "11", "G": "7", "H": "79", "Pp": "5", "S": "4", "T": "12", "V": "MO", "W": "7", "U": "3", "$": "540" }, { "D": "WNW", "F": "10", "G": "18", "H": "78", "Pp": "6", "S": "9", "T": "12", "V": "MO", "W": "7", "U": "4", "$": "720" }, { "D": "NW", "F": "10", "G": "18", "H": "71", "Pp": "5", "S": "9", "T": "12", "V": "GO", "W": "7", "U": "2", "$": "900" }, { "D": "NW", "F": "9", "G": "16", "H": "68", "Pp": "9", "S": "9", "T": "11", "V": "VG", "W": "7", "U": "1", "$": "1080" }, { "D": "NW", "F": "8", "G": "11", "H": "68", "Pp": "9", "S": "7", "T": "10", "V": "VG", "W": "8", "U": "0", "$": "1260" } ] }, { "type": "Day", "value": "2020-04-27Z", "Rep": [ { "D": "WNW", "F": "8", "G": "9", "H": "72", "Pp": "11", "S": "4", "T": "9", "V": "VG", "W": "8", "U": "0", "$": "0" }, { "D": "WNW", "F": "7", "G": "11", "H": "77", "Pp": "12", "S": "7", "T": "8", "V": "VG", "W": "7", "U": "0", "$": "180" }, { "D": "NW", "F": "7", "G": "9", "H": "80", "Pp": "14", "S": "4", "T": "8", "V": "GO", "W": "7", "U": "1", "$": "360" }, { "D": "NW", "F": "7", "G": "18", "H": "73", "Pp": "6", "S": "9", "T": "9", "V": "VG", "W": "3", "U": "2", "$": "540" }, { "D": "NW", "F": "8", "G": "20", "H": "59", "Pp": "4", "S": "9", "T": "10", "V": "VG", "W": "3", "U": "3", "$": "720" }, { "D": "NW", "F": "8", "G": "20", "H": "58", "Pp": "1", "S": "9", "T": "10", "V": "VG", "W": "1", "U": "2", "$": "900" }, { "D": "NW", "F": "8", "G": "16", "H": "57", "Pp": "1", "S": "7", "T": "10", "V": "VG", "W": "1", "U": "1", "$": "1080" }, { "D": "NW", "F": "8", "G": "11", "H": "67", "Pp": "1", "S": "4", "T": "9", "V": "VG", "W": "0", "U": "0", "$": "1260" } ] }, { "type": "Day", "value": "2020-04-28Z", "Rep": [ { "D": "NNW", "F": "7", "G": "7", "H": "80", "Pp": "2", "S": "4", "T": "8", "V": "VG", "W": "0", "U": "0", "$": "0" }, { "D": "W", "F": "6", "G": "7", "H": "86", "Pp": "3", "S": "4", "T": "7", "V": "GO", "W": "0", "U": "0", "$": "180" }, { "D": "S", "F": "5", "G": "9", "H": "86", "Pp": "5", "S": "4", "T": "6", "V": "GO", "W": "1", "U": "1", "$": "360" }, { "D": "ENE", "F": "7", "G": "13", "H": "72", "Pp": "6", "S": "7", "T": "9", "V": "GO", "W": "3", "U": "3", "$": "540" }, { "D": "ENE", "F": "10", "G": "16", "H": "57", "Pp": "10", "S": "7", "T": "11", "V": "GO", "W": "7", "U": "4", "$": "720" }, { "D": "N", "F": "11", "G": "16", "H": "58", "Pp": "10", "S": "7", "T": "12", "V": "GO", "W": "7", "U": "2", "$": "900" }, { "D": "N", "F": "10", "G": "16", "H": "63", "Pp": "10", "S": "7", "T": "11", "V": "VG", "W": "7", "U": "1", "$": "1080" }, { "D": "NNE", "F": "9", "G": "11", "H": "72", "Pp": "9", "S": "4", "T": "10", "V": "VG", "W": "7", "U": "0", "$": "1260" } ] }, { "type": "Day", "value": "2020-04-29Z", "Rep": [ { "D": "E", "F": "8", "G": "9", "H": "79", "Pp": "6", "S": "4", "T": "9", "V": "VG", "W": "7", "U": "0", "$": "0" }, { "D": "SSE", "F": "7", "G": "11", "H": "81", "Pp": "3", "S": "7", "T": "8", "V": "GO", "W": "2", "U": "0", "$": "180" }, { "D": "SE", "F": "5", "G": "16", "H": "86", "Pp": "9", "S": "9", "T": "8", "V": "GO", "W": "7", "U": "1", "$": "360" }, { "D": "SE", "F": "8", "G": "22", "H": "74", "Pp": "12", "S": "11", "T": "10", "V": "GO", "W": "7", "U": "3", "$": "540" }, { "D": "SE", "F": "10", "G": "27", "H": "72", "Pp": "47", "S": "13", "T": "12", "V": "GO", "W": "12", "U": "3", "$": "720" }, { "D": "SSE", "F": "10", "G": "29", "H": "73", "Pp": "59", "S": "13", "T": "13", "V": "GO", "W": "14", "U": "2", "$": "900" }, { "D": "SSE", "F": "10", "G": "20", "H": "69", "Pp": "39", "S": "11", "T": "12", "V": "VG", "W": "10", "U": "1", "$": "1080" }, { "D": "SSE", "F": "9", "G": "22", "H": "79", "Pp": "19", "S": "13", "T": "11", "V": "GO", "W": "7", "U": "0", "$": "1260" } ] } ] } } } }, "wavertree_daily": { "SiteRep": { "Wx": { "Param": [ { "name": "FDm", "units": "C", "$": "Feels Like Day Maximum Temperature" }, { "name": "FNm", "units": "C", "$": "Feels Like Night Minimum Temperature" }, { "name": "Dm", "units": "C", "$": "Day Maximum Temperature" }, { "name": "Nm", "units": "C", "$": "Night Minimum Temperature" }, { "name": "Gn", "units": "mph", "$": "Wind Gust Noon" }, { "name": "Gm", "units": "mph", "$": "Wind Gust Midnight" }, { "name": "Hn", "units": "%", "$": "Screen Relative Humidity Noon" }, { "name": "Hm", "units": "%", "$": "Screen Relative Humidity Midnight" }, { "name": "V", "units": "", "$": "Visibility" }, { "name": "D", "units": "compass", "$": "Wind Direction" }, { "name": "S", "units": "mph", "$": "Wind Speed" }, { "name": "U", "units": "", "$": "Max UV Index" }, { "name": "W", "units": "", "$": "Weather Type" }, { "name": "PPd", "units": "%", "$": "Precipitation Probability Day" }, { "name": "PPn", "units": "%", "$": "Precipitation Probability Night" } ] }, "DV": { "dataDate": "2020-04-25T08:00:00Z", "type": "Forecast", "Location": { "i": "354107", "lat": "53.3986", "lon": "-2.9256", "name": "WAVERTREE", "country": "ENGLAND", "continent": "EUROPE", "elevation": "47.0", "Period": [ { "type": "Day", "value": "2020-04-25Z", "Rep": [ { "D": "SSE", "Gn": "16", "Hn": "50", "PPd": "2", "S": "9", "V": "GO", "Dm": "19", "FDm": "18", "W": "1", "U": "5", "$": "Day" }, { "D": "WSW", "Gm": "4", "Hm": "73", "PPn": "2", "S": "2", "V": "GO", "Nm": "11", "FNm": "11", "W": "2", "$": "Night" } ] }, { "type": "Day", "value": "2020-04-26Z", "Rep": [ { "D": "WNW", "Gn": "18", "Hn": "78", "PPd": "9", "S": "9", "V": "MO", "Dm": "13", "FDm": "11", "W": "7", "U": "4", "$": "Day" }, { "D": "WNW", "Gm": "9", "Hm": "72", "PPn": "12", "S": "4", "V": "VG", "Nm": "8", "FNm": "7", "W": "8", "$": "Night" } ] }, { "type": "Day", "value": "2020-04-27Z", "Rep": [ { "D": "NW", "Gn": "20", "Hn": "59", "PPd": "14", "S": "9", "V": "VG", "Dm": "11", "FDm": "8", "W": "3", "U": "3", "$": "Day" }, { "D": "NNW", "Gm": "7", "Hm": "80", "PPn": "3", "S": "4", "V": "VG", "Nm": "6", "FNm": "5", "W": "0", "$": "Night" } ] }, { "type": "Day", "value": "2020-04-28Z", "Rep": [ { "D": "ENE", "Gn": "16", "Hn": "57", "PPd": "10", "S": "7", "V": "GO", "Dm": "12", "FDm": "11", "W": "7", "U": "4", "$": "Day" }, { "D": "E", "Gm": "9", "Hm": "79", "PPn": "9", "S": "4", "V": "VG", "Nm": "7", "FNm": "6", "W": "7", "$": "Night" } ] }, { "type": "Day", "value": "2020-04-29Z", "Rep": [ { "D": "SE", "Gn": "27", "Hn": "72", "PPd": "59", "S": "13", "V": "GO", "Dm": "13", "FDm": "10", "W": "12", "U": "3", "$": "Day" }, { "D": "SSE", "Gm": "18", "Hm": "85", "PPn": "19", "S": "11", "V": "VG", "Nm": "8", "FNm": "6", "W": "7", "$": "Night" } ] } ] } } } }, "kingslynn_hourly": { "SiteRep": { "Wx": { "Param": [ { "name": "F", "units": "C", "$": "Feels Like Temperature" }, { "name": "G", "units": "mph", "$": "Wind Gust" }, { "name": "H", "units": "%", "$": "Screen Relative Humidity" }, { "name": "T", "units": "C", "$": "Temperature" }, { "name": "V", "units": "", "$": "Visibility" }, { "name": "D", "units": "compass", "$": "Wind Direction" }, { "name": "S", "units": "mph", "$": "Wind Speed" }, { "name": "U", "units": "", "$": "Max UV Index" }, { "name": "W", "units": "", "$": "Weather Type" }, { "name": "Pp", "units": "%", "$": "Precipitation Probability" } ] }, "DV": { "dataDate": "2020-04-25T08:00:00Z", "type": "Forecast", "Location": { "i": "322380", "lat": "52.7561", "lon": "0.4019", "name": "KING'S LYNN", "country": "ENGLAND", "continent": "EUROPE", "elevation": "5.0", "Period": [ { "type": "Day", "value": "2020-04-25Z", "Rep": [ { "D": "SSE", "F": "4", "G": "9", "H": "88", "Pp": "7", "S": "9", "T": "7", "V": "GO", "W": "8", "U": "0", "$": "180" }, { "D": "ESE", "F": "5", "G": "7", "H": "86", "Pp": "9", "S": "4", "T": "7", "V": "GO", "W": "8", "U": "1", "$": "360" }, { "D": "ESE", "F": "8", "G": "4", "H": "75", "Pp": "9", "S": "4", "T": "9", "V": "VG", "W": "8", "U": "3", "$": "540" }, { "D": "E", "F": "13", "G": "7", "H": "60", "Pp": "0", "S": "2", "T": "14", "V": "VG", "W": "1", "U": "6", "$": "720" }, { "D": "NNW", "F": "14", "G": "9", "H": "57", "Pp": "0", "S": "4", "T": "15", "V": "VG", "W": "1", "U": "3", "$": "900" }, { "D": "ENE", "F": "14", "G": "9", "H": "58", "Pp": "0", "S": "4", "T": "14", "V": "VG", "W": "1", "U": "1", "$": "1080" }, { "D": "SE", "F": "8", "G": "18", "H": "76", "Pp": "0", "S": "9", "T": "10", "V": "VG", "W": "0", "U": "0", "$": "1260" } ] }, { "type": "Day", "value": "2020-04-26Z", "Rep": [ { "D": "SSE", "F": "5", "G": "16", "H": "84", "Pp": "0", "S": "7", "T": "7", "V": "VG", "W": "0", "U": "0", "$": "0" }, { "D": "S", "F": "4", "G": "16", "H": "89", "Pp": "0", "S": "7", "T": "6", "V": "GO", "W": "0", "U": "0", "$": "180" }, { "D": "S", "F": "4", "G": "16", "H": "87", "Pp": "0", "S": "7", "T": "7", "V": "GO", "W": "1", "U": "1", "$": "360" }, { "D": "SSW", "F": "11", "G": "13", "H": "69", "Pp": "0", "S": "9", "T": "13", "V": "VG", "W": "1", "U": "4", "$": "540" }, { "D": "SW", "F": "15", "G": "18", "H": "50", "Pp": "8", "S": "9", "T": "17", "V": "VG", "W": "1", "U": "5", "$": "720" }, { "D": "SW", "F": "16", "G": "16", "H": "47", "Pp": "8", "S": "7", "T": "18", "V": "VG", "W": "7", "U": "2", "$": "900" }, { "D": "SW", "F": "15", "G": "13", "H": "56", "Pp": "3", "S": "7", "T": "17", "V": "VG", "W": "3", "U": "1", "$": "1080" }, { "D": "SW", "F": "13", "G": "11", "H": "76", "Pp": "4", "S": "4", "T": "13", "V": "VG", "W": "7", "U": "0", "$": "1260" } ] }, { "type": "Day", "value": "2020-04-27Z", "Rep": [ { "D": "SSW", "F": "10", "G": "13", "H": "75", "Pp": "5", "S": "7", "T": "11", "V": "GO", "W": "7", "U": "0", "$": "0" }, { "D": "W", "F": "9", "G": "13", "H": "84", "Pp": "9", "S": "7", "T": "10", "V": "GO", "W": "7", "U": "0", "$": "180" }, { "D": "NW", "F": "7", "G": "16", "H": "85", "Pp": "50", "S": "9", "T": "9", "V": "GO", "W": "12", "U": "1", "$": "360" }, { "D": "NW", "F": "9", "G": "11", "H": "78", "Pp": "36", "S": "4", "T": "10", "V": "VG", "W": "7", "U": "3", "$": "540" }, { "D": "WNW", "F": "11", "G": "11", "H": "66", "Pp": "9", "S": "4", "T": "12", "V": "VG", "W": "7", "U": "4", "$": "720" }, { "D": "W", "F": "11", "G": "13", "H": "62", "Pp": "9", "S": "7", "T": "13", "V": "VG", "W": "7", "U": "2", "$": "900" }, { "D": "E", "F": "11", "G": "11", "H": "64", "Pp": "10", "S": "7", "T": "12", "V": "VG", "W": "7", "U": "1", "$": "1080" }, { "D": "SE", "F": "9", "G": "13", "H": "78", "Pp": "9", "S": "7", "T": "10", "V": "VG", "W": "7", "U": "0", "$": "1260" } ] }, { "type": "Day", "value": "2020-04-28Z", "Rep": [ { "D": "SE", "F": "7", "G": "13", "H": "85", "Pp": "9", "S": "7", "T": "9", "V": "VG", "W": "7", "U": "0", "$": "0" }, { "D": "E", "F": "7", "G": "9", "H": "91", "Pp": "11", "S": "4", "T": "8", "V": "GO", "W": "7", "U": "0", "$": "180" }, { "D": "ESE", "F": "7", "G": "9", "H": "92", "Pp": "12", "S": "4", "T": "8", "V": "GO", "W": "7", "U": "1", "$": "360" }, { "D": "ESE", "F": "9", "G": "13", "H": "77", "Pp": "14", "S": "7", "T": "11", "V": "GO", "W": "7", "U": "3", "$": "540" }, { "D": "ESE", "F": "12", "G": "16", "H": "64", "Pp": "14", "S": "7", "T": "13", "V": "GO", "W": "7", "U": "3", "$": "720" }, { "D": "ESE", "F": "12", "G": "18", "H": "66", "Pp": "15", "S": "9", "T": "13", "V": "GO", "W": "7", "U": "2", "$": "900" }, { "D": "SSE", "F": "11", "G": "13", "H": "73", "Pp": "15", "S": "7", "T": "12", "V": "GO", "W": "7", "U": "1", "$": "1080" }, { "D": "SE", "F": "9", "G": "13", "H": "81", "Pp": "13", "S": "7", "T": "10", "V": "GO", "W": "7", "U": "0", "$": "1260" } ] }, { "type": "Day", "value": "2020-04-29Z", "Rep": [ { "D": "SSE", "F": "7", "G": "13", "H": "87", "Pp": "11", "S": "7", "T": "9", "V": "GO", "W": "7", "U": "0", "$": "0" }, { "D": "SSE", "F": "7", "G": "13", "H": "91", "Pp": "15", "S": "7", "T": "9", "V": "GO", "W": "8", "U": "0", "$": "180" }, { "D": "ESE", "F": "7", "G": "13", "H": "89", "Pp": "8", "S": "7", "T": "9", "V": "GO", "W": "7", "U": "1", "$": "360" }, { "D": "SSE", "F": "10", "G": "20", "H": "75", "Pp": "8", "S": "11", "T": "12", "V": "VG", "W": "7", "U": "3", "$": "540" }, { "D": "S", "F": "12", "G": "22", "H": "68", "Pp": "11", "S": "11", "T": "14", "V": "GO", "W": "7", "U": "3", "$": "720" }, { "D": "S", "F": "12", "G": "27", "H": "68", "Pp": "55", "S": "13", "T": "14", "V": "GO", "W": "12", "U": "1", "$": "900" }, { "D": "SSE", "F": "11", "G": "22", "H": "76", "Pp": "34", "S": "11", "T": "13", "V": "VG", "W": "10", "U": "1", "$": "1080" }, { "D": "SSE", "F": "9", "G": "20", "H": "86", "Pp": "20", "S": "11", "T": "11", "V": "VG", "W": "7", "U": "0", "$": "1260" } ] } ] } } } } }Perseudonymous-datapoint-python-cff0700/tests/integration/test_datapoint.py000066400000000000000000000177751456150136100275660ustar00rootroot00000000000000from datetime import datetime, date import json import pathlib import requests from requests_mock import Mocker import unittest from unittest.mock import patch import datapoint DATETIME_FORMAT = "%Y-%m-%d %H:%M:%S%z" class MockDateTime(datetime): """Replacement for datetime that can be mocked for testing.""" def __new__(cls, *args, **kwargs): return datetime.__new__(datetime, *args, **kwargs) class TestDataPoint(unittest.TestCase): @Mocker() def setUp(self, mock_request): with open("{}/datapoint.json".format(pathlib.Path(__file__).parent.absolute())) as f: mock_json = json.load(f) self.all_sites = json.dumps(mock_json['all_sites']) self.wavertree_hourly = json.dumps(mock_json['wavertree_hourly']) self.wavertree_daily = json.dumps(mock_json['wavertree_daily']) self.kingslynn_hourly = json.dumps(mock_json['kingslynn_hourly']) self.conn = datapoint.connection(api_key="abcdefgh-acbd-abcd-abcd-abcdefghijkl") mock_request.get('/public/data/val/wxfcs/all/json/sitelist/', text=self.all_sites) self.wavertree = self.conn.get_nearest_forecast_site(53.38374, -2.90929) self.kingslynn = self.conn.get_nearest_forecast_site(52.75556, 0.44231) @Mocker() @patch('datetime.datetime', MockDateTime) def test_wavertree_hourly(self, mock_request): from datetime import datetime, timezone MockDateTime.now = classmethod(lambda cls, **kwargs: datetime(2020, 4, 25, 12, tzinfo=timezone.utc)) mock_request.get('/public/data/val/wxfcs/all/json/354107?res=3hourly', text=self.wavertree_hourly) forecast = self.conn.get_forecast_for_site(self.wavertree.location_id, "3hourly") now = forecast.now() self.assertEqual(self.wavertree.location_id, '354107') self.assertEqual(self.wavertree.name, 'Wavertree') self.assertEqual(now.date.strftime(DATETIME_FORMAT), '2020-04-25 12:00:00+0000') self.assertEqual(now.weather.value, '1') self.assertEqual(now.temperature.value, 17) self.assertEqual(now.feels_like_temperature.value, 14) self.assertEqual(now.wind_speed.value, 9) self.assertEqual(now.wind_direction.value, 'SSE') self.assertEqual(now.wind_gust.value, 16) self.assertEqual(now.visibility.value, 'GO') self.assertEqual(now.uv.value, '5') self.assertEqual(now.precipitation.value, 0) self.assertEqual(now.humidity.value, 50) self.assertEqual(len(forecast.days), 5) self.assertEqual(len(forecast.days[0].timesteps), 7) self.assertEqual(len(forecast.days[3].timesteps), 8) self.assertEqual(forecast.days[3].timesteps[7].date.strftime(DATETIME_FORMAT), '2020-04-28 21:00:00+0000') self.assertEqual(forecast.days[3].timesteps[7].weather.value, '7') self.assertEqual(forecast.days[3].timesteps[7].temperature.value, 10) self.assertEqual(forecast.days[3].timesteps[7].feels_like_temperature.value, 9) self.assertEqual(forecast.days[3].timesteps[7].wind_speed.value, 4) self.assertEqual(forecast.days[3].timesteps[7].wind_direction.value, 'NNE') self.assertEqual(forecast.days[3].timesteps[7].wind_gust.value, 11) self.assertEqual(forecast.days[3].timesteps[7].visibility.value, 'VG') self.assertEqual(forecast.days[3].timesteps[7].uv.value, '0') self.assertEqual(forecast.days[3].timesteps[7].precipitation.value, 9) self.assertEqual(forecast.days[3].timesteps[7].humidity.value, 72) @Mocker() @patch('datetime.datetime', MockDateTime) def test_wavertree_daily(self, mock_request): from datetime import datetime, timezone MockDateTime.now = classmethod(lambda cls, **kwargs: datetime(2020, 4, 25, 12, tzinfo=timezone.utc)) mock_request.get('/public/data/val/wxfcs/all/json/354107?res=daily', text=self.wavertree_daily) forecast = self.conn.get_forecast_for_site(self.wavertree.location_id, "daily") now = forecast.now() self.assertEqual(self.wavertree.location_id, '354107') self.assertEqual(self.wavertree.name, 'Wavertree') self.assertEqual(now.date.strftime(DATETIME_FORMAT), '2020-04-25 12:00:00+0000') self.assertEqual(now.weather.value, '1') self.assertEqual(now.temperature.value, 19) self.assertEqual(now.feels_like_temperature.value, 18) self.assertEqual(now.wind_speed.value, 9) self.assertEqual(now.wind_direction.value, 'SSE') self.assertEqual(now.wind_gust.value, 16) self.assertEqual(now.visibility.value, 'GO') self.assertEqual(now.uv.value, '5') self.assertEqual(now.precipitation.value, 2) self.assertEqual(now.humidity.value, 50) self.assertEqual(len(forecast.days), 5) self.assertEqual(len(forecast.days[0].timesteps), 2) self.assertEqual(len(forecast.days[4].timesteps), 2) self.assertEqual(forecast.days[4].timesteps[1].date.strftime(DATETIME_FORMAT), '2020-04-29 12:00:00+0000') self.assertEqual(forecast.days[4].timesteps[1].weather.value, '12') self.assertEqual(forecast.days[4].timesteps[1].temperature.value, 13) self.assertEqual(forecast.days[4].timesteps[1].feels_like_temperature.value, 10) self.assertEqual(forecast.days[4].timesteps[1].wind_speed.value, 13) self.assertEqual(forecast.days[4].timesteps[1].wind_direction.value, 'SE') self.assertEqual(forecast.days[4].timesteps[1].wind_gust.value, 27) self.assertEqual(forecast.days[4].timesteps[1].visibility.value, 'GO') self.assertEqual(forecast.days[4].timesteps[1].uv.value, '3') self.assertEqual(forecast.days[4].timesteps[1].precipitation.value, 59) self.assertEqual(forecast.days[4].timesteps[1].humidity.value, 72) @Mocker() @patch('datetime.datetime', MockDateTime) def test_kingslynn_hourly(self, mock_request): from datetime import datetime, timezone MockDateTime.now = classmethod(lambda cls, **kwargs: datetime(2020, 4, 25, 12, tzinfo=timezone.utc)) mock_request.get('/public/data/val/wxfcs/all/json/322380?res=3hourly', text=self.kingslynn_hourly) forecast = self.conn.get_forecast_for_site(self.kingslynn.location_id, "3hourly") now = forecast.now() self.assertEqual(self.kingslynn.location_id, '322380') self.assertEqual(self.kingslynn.name, "King's Lynn") self.assertEqual(now.date.strftime(DATETIME_FORMAT), '2020-04-25 12:00:00+0000') self.assertEqual(now.weather.value, '1') self.assertEqual(now.temperature.value, 14) self.assertEqual(now.feels_like_temperature.value, 13) self.assertEqual(now.wind_speed.value, 2) self.assertEqual(now.wind_direction.value, 'E') self.assertEqual(now.wind_gust.value, 7) self.assertEqual(now.visibility.value, 'VG') self.assertEqual(now.uv.value, '6') self.assertEqual(now.precipitation.value, 0) self.assertEqual(now.humidity.value, 60) self.assertEqual(len(forecast.days), 5) self.assertEqual(len(forecast.days[0].timesteps), 7) self.assertEqual(len(forecast.days[4].timesteps), 8) self.assertEqual(forecast.days[4].timesteps[5].date.strftime(DATETIME_FORMAT), '2020-04-29 15:00:00+0000') self.assertEqual(forecast.days[4].timesteps[5].weather.value, '12') self.assertEqual(forecast.days[4].timesteps[5].temperature.value, 14) self.assertEqual(forecast.days[4].timesteps[5].feels_like_temperature.value, 12) self.assertEqual(forecast.days[4].timesteps[5].wind_speed.value, 13) self.assertEqual(forecast.days[4].timesteps[5].wind_direction.value, 'S') self.assertEqual(forecast.days[4].timesteps[5].wind_gust.value, 27) self.assertEqual(forecast.days[4].timesteps[5].visibility.value, 'GO') self.assertEqual(forecast.days[4].timesteps[5].uv.value, '1') self.assertEqual(forecast.days[4].timesteps[5].precipitation.value, 55) self.assertEqual(forecast.days[4].timesteps[5].humidity.value, 68) if __name__ == '__main__': unittest.main() Perseudonymous-datapoint-python-cff0700/tests/integration/test_manager.py000066400000000000000000000321141456150136100271750ustar00rootroot00000000000000import datetime import os import unittest import datapoint class ManagerIntegrationTestCase(unittest.TestCase): def setUp(self): self.manager = datapoint.Manager(api_key=os.environ['API_KEY']) def test_site(self): site = self.manager.get_nearest_forecast_site(latitude=51.500728, longitude=-0.124626) self.assertEqual(site.name.upper(), 'HORSEGUARDS PARADE') def test_get_forecast_sites(self): sites = self.manager.get_forecast_sites() self.assertIsInstance(sites, list) # What is this assert testing assert sites def test_get_daily_forecast(self): site = self.manager.get_nearest_forecast_site(latitude=51.500728, longitude=-0.124626) forecast = self.manager.get_forecast_for_site(site.location_id, 'daily') self.assertIsInstance(forecast, datapoint.Forecast.Forecast) self.assertEqual(forecast.continent.upper(), 'EUROPE') self.assertEqual(forecast.country.upper(), 'ENGLAND') self.assertEqual(forecast.name.upper(),'HORSEGUARDS PARADE') self.assertLess(abs(float(forecast.latitude) - 51.500728), 0.1) self.assertLess(abs(float(forecast.longitude) - (-0.124626)), 0.1) # Forecast should have been made within last 3 hours tz = forecast.data_date.tzinfo self.assertLess(forecast.data_date - datetime.datetime.now(tz=tz), datetime.timedelta(hours=3)) # First forecast should be less than 12 hours away tz = forecast.days[0].timesteps[0].date.tzinfo self.assertLess(forecast.days[0].timesteps[0].date - datetime.datetime.now(tz=tz), datetime.timedelta(hours=12)) for day in forecast.days: for timestep in day.timesteps: self.assertIn(timestep.name, ['Day', 'Night']) self.assertEqual(self.manager._weather_to_text(int(timestep.weather.value)), timestep.weather.text) self.assertGreater(timestep.temperature.value, -100) self.assertLess(timestep.temperature.value, 100) self.assertEqual(timestep.temperature.units, 'C') self.assertGreater(timestep.feels_like_temperature.value , -100) self.assertLess(timestep.feels_like_temperature.value , 100) self.assertEqual(timestep.feels_like_temperature.units, 'C') self.assertGreaterEqual(timestep.wind_speed.value, 0) self.assertLess(timestep.wind_speed.value, 300) self.assertEqual(timestep.wind_speed.units,'mph') for char in timestep.wind_direction.value: self.assertIn(char, ['N', 'E', 'S', 'W']) self.assertEqual(timestep.wind_direction.units, 'compass') self.assertGreaterEqual(timestep.wind_gust.value, 0) self.assertLess(timestep.wind_gust.value, 300) self.assertEqual(timestep.wind_gust.units, 'mph') self.assertIn(timestep.visibility.value, ['UN', 'VP', 'PO', 'MO', 'GO', 'VG', 'EX']) self.assertGreaterEqual(timestep.precipitation.value, 0) self.assertLessEqual(timestep.precipitation.value, 100) self.assertEqual(timestep.precipitation.units, '%') self.assertGreaterEqual(timestep.humidity.value, 0) self.assertLessEqual(timestep.humidity.value, 100) self.assertEqual(timestep.humidity.units, '%') if hasattr(timestep.uv, 'value'): self.assertGreaterEqual(int(timestep.uv.value), 0) self.assertLess(int(timestep.uv.value), 30) def test_get_3hour_forecast(self): site = self.manager.get_nearest_forecast_site(latitude=51.500728, longitude=-0.124626) forecast = self.manager.get_forecast_for_site(site.location_id, '3hourly') self.assertIsInstance(forecast, datapoint.Forecast.Forecast) self.assertEqual(forecast.continent.upper(), 'EUROPE') self.assertEqual(forecast.country.upper(), 'ENGLAND') self.assertEqual(forecast.name.upper(),'HORSEGUARDS PARADE') self.assertLess(abs(float(forecast.latitude) - 51.500728), 0.1) self.assertLess(abs(float(forecast.longitude) - (-0.124626)), 0.1) # Forecast should have been made within last 3 hours tz = forecast.data_date.tzinfo self.assertLess(forecast.data_date - datetime.datetime.now(tz=tz), datetime.timedelta(hours=3)) # First forecast should be less than 12 hours away tz = forecast.days[0].timesteps[0].date.tzinfo self.assertLess(forecast.days[0].timesteps[0].date - datetime.datetime.now(tz=tz), datetime.timedelta(hours=12)) for day in forecast.days: for timestep in day.timesteps: self.assertIsInstance(timestep.name, int) self.assertEqual(self.manager._weather_to_text( int(timestep.weather.value)), timestep.weather.text) self.assertGreater(timestep.temperature.value, -100) self.assertLess(timestep.temperature.value, 100) self.assertEqual(timestep.temperature.units, 'C') self.assertGreater(timestep.feels_like_temperature.value , -100) self.assertLess(timestep.feels_like_temperature.value , 100) self.assertEqual(timestep.feels_like_temperature.units, 'C') self.assertGreaterEqual(timestep.wind_speed.value, 0) self.assertLess(timestep.wind_speed.value, 300) self.assertEqual(timestep.wind_speed.units,'mph') for char in timestep.wind_direction.value: self.assertIn(char, ['N', 'E', 'S', 'W']) self.assertEqual(timestep.wind_direction.units, 'compass') self.assertGreaterEqual(timestep.wind_gust.value, 0) self.assertLess(timestep.wind_gust.value, 300) self.assertEqual(timestep.wind_gust.units, 'mph') self.assertIn(timestep.visibility.value, ['UN', 'VP', 'PO', 'MO', 'GO', 'VG', 'EX']) self.assertGreaterEqual(timestep.precipitation.value, 0) self.assertLessEqual(timestep.precipitation.value, 100) self.assertEqual(timestep.precipitation.units, '%') self.assertGreaterEqual(timestep.humidity.value, 0) self.assertLessEqual(timestep.humidity.value, 100) self.assertEqual(timestep.humidity.units, '%') if hasattr(timestep.uv, 'value'): self.assertGreaterEqual(int(timestep.uv.value), 0) self.assertLess(int(timestep.uv.value), 30) def test_get_nearest_observation_site(self): site = self.manager.get_nearest_observation_site(longitude=-0.1025, latitude=51.3263) self.assertEqual(site.name.upper(), 'KENLEY') def test_get_observation_sites(self): sites = self.manager.get_observation_sites() self.assertIsInstance(sites, list) # Mystery assert assert sites def test_get_observation_with_wind_data(self): observation = self.manager.get_observations_for_site(3840) self.assertIsInstance(observation, datapoint.Observation.Observation) self.assertEqual(observation.continent.upper(), 'EUROPE') self.assertEqual(observation.country.upper(), 'ENGLAND') self.assertEqual(observation.name.upper(), 'DUNKESWELL AERODROME') # Observation should be from within the last hour tz = observation.data_date.tzinfo self.assertLess(observation.data_date - datetime.datetime.now(tz=tz), datetime.timedelta(hours=1)) # First observation should be between 24 and 25 hours old tz = observation.days[0].timesteps[0].date.tzinfo self.assertGreater(datetime.datetime.now(tz=tz) - observation.days[0].timesteps[0].date, datetime.timedelta(hours=24)) self.assertLess(datetime.datetime.now(tz=tz) - observation.days[0].timesteps[0].date, datetime.timedelta(hours=25)) # Should have total 25 observations across all days number_of_timesteps = 0 for day in observation.days: number_of_timesteps += len(day.timesteps) self.assertEqual(number_of_timesteps, 25) for day in observation.days: for timestep in day.timesteps: self.assertIsInstance(timestep.name, int) if timestep.weather.value != 'Not reported': self.assertEqual(self.manager._weather_to_text(int(timestep.weather.value)), timestep.weather.text) self.assertGreater(timestep.temperature.value, -100) self.assertLess(timestep.temperature.value, 100) self.assertEqual(timestep.temperature.units, 'C') if timestep.wind_speed.value != 'Not reported': self.assertGreaterEqual(timestep.wind_speed.value, 0) self.assertLess(timestep.wind_speed.value, 300) self.assertEqual(timestep.wind_speed.units,'mph') if timestep.wind_direction.value != 'Not reported': for char in timestep.wind_direction.value: self.assertIn(char, ['N', 'E', 'S', 'W']) self.assertEqual(timestep.wind_direction.units, 'compass') self.assertGreaterEqual(timestep.visibility.value, 0) self.assertIn(timestep.visibility.text, ['UN', 'VP', 'PO', 'MO', 'GO', 'VG', 'EX']) self.assertGreaterEqual(timestep.humidity.value, 0) self.assertLessEqual(timestep.humidity.value, 100) self.assertEqual(timestep.humidity.units, '%') self.assertGreaterEqual(timestep.dew_point.value, 0) self.assertLessEqual(timestep.dew_point.value, 100) self.assertEqual(timestep.dew_point.units, 'C') if timestep.pressure.value != 'Not reported': self.assertGreaterEqual(timestep.pressure.value, 900) self.assertLessEqual(timestep.pressure.value, 1100) self.assertEqual(timestep.pressure.units, 'hpa') if timestep.pressure_tendency.value != 'Not reported': self.assertIn(timestep.pressure_tendency.value, ['R','F','S']) self.assertEqual(timestep.pressure_tendency.units, 'Pa/s') # def test_get_observation_without_wind_data(self): # observation = self.manager.get_observations_for_site(3220) # assert isinstance(observation, datapoint.Observation.Observation) # assert observation.continent.upper() == 'EUROPE' # assert observation.country.upper() == 'ENGLAND' # assert observation.name.upper() == 'CARLISLE' # # Observation should be from within the last hour # tz = observation.data_date.tzinfo # assert (observation.data_date # - datetime.datetime.now(tz=tz) < datetime.timedelta(hours=1)) # # First observation should be between 24 and 25 hours old # tz = observation.days[0].timesteps[0].date.tzinfo # assert (datetime.datetime.now(tz=tz) - observation.days[0].timesteps[0].date > datetime.timedelta(hours=24)) # assert (datetime.datetime.now(tz=tz) - observation.days[0].timesteps[0].date < datetime.timedelta(hours=25)) # # Should have total 25 observations across all days # number_of_timesteps = 0 # for day in observation.days: # number_of_timesteps += len(day.timesteps) # assert number_of_timesteps == 25 # for day in observation.days: # for timestep in day.timesteps: # assert isinstance(timestep.name, int) # if timestep.weather.value != 'Not reported': # assert self.manager._weather_to_text( # int(timestep.weather.value)) == timestep.weather.text # assert -100 < timestep.temperature.value < 100 # assert timestep.temperature.units == 'C' # assert timestep.wind_speed is None # assert timestep.wind_gust is None # assert timestep.wind_direction is None # assert 0 <= timestep.visibility.value # assert (timestep.visibility.text in # ['UN', 'VP', 'PO', 'MO', 'GO', 'VG', 'EX']) # assert 0 <= timestep.humidity.value <= 100 # assert timestep.humidity.units == '%' # assert -100 < timestep.dew_point.value < 100 # assert timestep.dew_point.units == 'C' # assert 900 < timestep.pressure.value < 1100 # assert timestep.pressure.units == 'hpa' # assert timestep.pressure_tendency.value in ('R','F','S') # assert timestep.pressure_tendency.units == 'Pa/s' Perseudonymous-datapoint-python-cff0700/tests/integration/test_regions.py000066400000000000000000000030301456150136100272240ustar00rootroot00000000000000import os from requests import HTTPError import unittest import datapoint class RegionsIntegrationTestCase(unittest.TestCase): def setUp(self): self.manager = datapoint.Manager(api_key=os.environ['API_KEY']) self.regions = self.manager.regions def test_key(self): self.assertEqual(self.regions.api_key, os.environ['API_KEY']) def test_call_api(self): self.assertIn ( u'RegionalFcst', self.regions.call_api('/500')) self.assertRaises( HTTPError, self.regions.call_api, '/fake_path') self.assertRaises( HTTPError, self.regions.call_api, '/500', key='fake_key') def test_get_all_regions(self): all_regions = self.regions.get_all_regions() sample_region = next( region for region in all_regions if region.location_id == '515') self.assertEqual(sample_region.name, 'UK') self.assertEqual(sample_region.region, 'uk') def test_get_raw_forecast(self): sample_region = self.regions.get_all_regions()[0] response = self.regions.get_raw_forecast( sample_region.location_id)['RegionalFcst'] self.assertEqual(response['regionId'], sample_region.region) # Based on what Datapoint serves at time of writing... forecast_periods = response['FcstPeriods']['Period'] forecast_ids = [period['id'] for period in forecast_periods] expected_ids = ['day1to2', 'day3to5', 'day6to15', 'day16to30'] self.assertEqual(forecast_ids, expected_ids) Perseudonymous-datapoint-python-cff0700/tests/unit/000077500000000000000000000000001456150136100226055ustar00rootroot00000000000000Perseudonymous-datapoint-python-cff0700/tests/unit/test_forecast.py000066400000000000000000000103301456150136100260210ustar00rootroot00000000000000import datetime import datapoint import unittest class TestForecast(unittest.TestCase): def setUp(self): self.forecast_3hrly = datapoint.Forecast.Forecast(frequency='3hourly') test_day_0 = datapoint.Day.Day() test_day_0.date = datetime.datetime(2020, 3, 3, tzinfo=datetime.timezone.utc) for i in range(5): ts = datapoint.Timestep.Timestep() ts.name = 9+(3*i) ts.date = datetime.datetime(2020, 3, 3, 9+(3*i), tzinfo=datetime.timezone.utc) test_day_0.timesteps.append(ts) test_day_1 = datapoint.Day.Day() test_day_1.date = datetime.datetime(2020, 3, 4, tzinfo=datetime.timezone.utc) for i in range(8): ts = datapoint.Timestep.Timestep() ts.name = 3*i ts.date = datetime.datetime(2020, 3, 4, 3*i, tzinfo=datetime.timezone.utc) test_day_1.timesteps.append(ts) self.forecast_3hrly.days.append(test_day_0) self.forecast_3hrly.days.append(test_day_1) test_day_0 = datapoint.Day.Day() test_day_0.date = datetime.datetime(2020, 3, 3, tzinfo=datetime.timezone.utc) for i in range(2): ts = datapoint.Timestep.Timestep() ts.name = 2*i ts.date = datetime.datetime(2020, 3, 3, 2*i, tzinfo=datetime.timezone.utc) test_day_0.timesteps.append(ts) test_day_1 = datapoint.Day.Day() test_day_1.date = datetime.datetime(2020, 3, 4, tzinfo=datetime.timezone.utc) for i in range(2): ts = datapoint.Timestep.Timestep() ts.name = 2*i ts.date = datetime.datetime(2020, 3, 4, 2*i, tzinfo=datetime.timezone.utc) test_day_1.timesteps.append(ts) self.forecast_daily = datapoint.Forecast.Forecast(frequency='daily') self.forecast_daily.days.append(test_day_0) self.forecast_daily.days.append(test_day_1) def test_at_datetime_1_5_hours_before_after(self): target_before = datetime.datetime(2020, 3, 3, 7, 0, tzinfo=datetime.timezone.utc) target_after = datetime.datetime(2020, 3, 4, 23, 0, tzinfo=datetime.timezone.utc) self.assertRaises(datapoint.exceptions.APIException, self.forecast_3hrly.at_datetime, target_before) self.assertRaises(datapoint.exceptions.APIException, self.forecast_3hrly.at_datetime, target_after) def test_at_datetime_6_hours_before_after(self): # Generate 2 timesteps These are set at 00:00 and 12:00 target_before = datetime.datetime(2020, 3, 2, 15, 0, tzinfo=datetime.timezone.utc) target_after = datetime.datetime(2020, 3, 6, 7, 0, tzinfo=datetime.timezone.utc) self.assertRaises(datapoint.exceptions.APIException, self.forecast_daily.at_datetime, target_before) self.assertRaises(datapoint.exceptions.APIException, self.forecast_daily.at_datetime, target_after) def test_normal_time(self): target = datetime.datetime(2020, 3, 3, 10, 0, tzinfo=datetime.timezone.utc) nearest = self.forecast_3hrly.at_datetime(target) expected = datetime.datetime(2020, 3, 3, 9, tzinfo=datetime.timezone.utc) self.assertEqual(nearest.date, expected) target = datetime.datetime(2020, 3, 3, 11, 0, tzinfo=datetime.timezone.utc) nearest = self.forecast_3hrly.at_datetime(target) expected = datetime.datetime(2020, 3, 3, 12, tzinfo=datetime.timezone.utc) self.assertEqual(nearest.date, expected) def test_forecase_midnight(self): target = datetime.datetime(2020, 3, 4, 0, 15, tzinfo=datetime.timezone.utc) nearest = self.forecast_3hrly.at_datetime(target) expected = datetime.datetime(2020, 3, 4, 0, tzinfo=datetime.timezone.utc) self.assertEqual(nearest.date, expected) Perseudonymous-datapoint-python-cff0700/tests/unit/test_manager.py000066400000000000000000000021361456150136100256320ustar00rootroot00000000000000import unittest import datapoint class ManagerTestCase(unittest.TestCase): def setUp(self): self.manager = datapoint.Manager(api_key="") def test_weather_to_text_is_string(self): weather_text = self.manager._weather_to_text(0) self.assertIsInstance(weather_text, type("")) def test_weather_to_text_invalid_input_None(self): self.assertRaises(ValueError, self.manager._weather_to_text, None) def test_weather_to_text_invalid_input_out_of_bounds(self): self.assertRaises(ValueError, self.manager._weather_to_text, 31) def test_weather_to_text_invalid_input_String(self): self.assertRaises(ValueError, self.manager._weather_to_text, '1') def test_visbility_to_text_invalid_input_None(self): self.assertRaises(ValueError, self.manager._weather_to_text, None) def test_visibility_to_text_invalid_input_out_of_bounds(self): self.assertRaises(ValueError, self.manager._weather_to_text, -1) def test_visibility_to_text_invalid_input_String(self): self.assertRaises(ValueError, self.manager._weather_to_text, '1') Perseudonymous-datapoint-python-cff0700/tests/unit/test_observation.py000066400000000000000000000011271456150136100265520ustar00rootroot00000000000000import unittest import datetime import datapoint class ObservationTestCase(unittest.TestCase): def setUp(self): self.observation = datapoint.Observation.Observation() def test_observation(self): # Just copy the forecast test test_day = datapoint.Day.Day() test_day.date = datetime.datetime.utcnow() test_timestep = datapoint.Timestep.Timestep() test_timestep.name = 1 test_day.timesteps.append(test_timestep) self.observation.days.append(test_day) # What is this asserting? assert self.observation.now() Perseudonymous-datapoint-python-cff0700/versioneer.py000066400000000000000000002512251456150136100232260ustar00rootroot00000000000000 # Version: 0.29 """The Versioneer - like a rocketeer, but for versions. The Versioneer ============== * like a rocketeer, but for versions! * https://github.com/python-versioneer/python-versioneer * Brian Warner * License: Public Domain (Unlicense) * Compatible with: Python 3.7, 3.8, 3.9, 3.10, 3.11 and pypy3 * [![Latest Version][pypi-image]][pypi-url] * [![Build Status][travis-image]][travis-url] This is a tool for managing a recorded version number in setuptools-based python projects. The goal is to remove the tedious and error-prone "update the embedded version string" step from your release process. Making a new release should be as easy as recording a new tag in your version-control system, and maybe making new tarballs. ## Quick Install Versioneer provides two installation modes. The "classic" vendored mode installs a copy of versioneer into your repository. The experimental build-time dependency mode is intended to allow you to skip this step and simplify the process of upgrading. ### Vendored mode * `pip install versioneer` to somewhere in your $PATH * A [conda-forge recipe](https://github.com/conda-forge/versioneer-feedstock) is available, so you can also use `conda install -c conda-forge versioneer` * add a `[tool.versioneer]` section to your `pyproject.toml` or a `[versioneer]` section to your `setup.cfg` (see [Install](INSTALL.md)) * Note that you will need to add `tomli; python_version < "3.11"` to your build-time dependencies if you use `pyproject.toml` * run `versioneer install --vendor` in your source tree, commit the results * verify version information with `python setup.py version` ### Build-time dependency mode * `pip install versioneer` to somewhere in your $PATH * A [conda-forge recipe](https://github.com/conda-forge/versioneer-feedstock) is available, so you can also use `conda install -c conda-forge versioneer` * add a `[tool.versioneer]` section to your `pyproject.toml` or a `[versioneer]` section to your `setup.cfg` (see [Install](INSTALL.md)) * add `versioneer` (with `[toml]` extra, if configuring in `pyproject.toml`) to the `requires` key of the `build-system` table in `pyproject.toml`: ```toml [build-system] requires = ["setuptools", "versioneer[toml]"] build-backend = "setuptools.build_meta" ``` * run `versioneer install --no-vendor` in your source tree, commit the results * verify version information with `python setup.py version` ## Version Identifiers Source trees come from a variety of places: * a version-control system checkout (mostly used by developers) * a nightly tarball, produced by build automation * a snapshot tarball, produced by a web-based VCS browser, like github's "tarball from tag" feature * a release tarball, produced by "setup.py sdist", distributed through PyPI Within each source tree, the version identifier (either a string or a number, this tool is format-agnostic) can come from a variety of places: * ask the VCS tool itself, e.g. "git describe" (for checkouts), which knows about recent "tags" and an absolute revision-id * the name of the directory into which the tarball was unpacked * an expanded VCS keyword ($Id$, etc) * a `_version.py` created by some earlier build step For released software, the version identifier is closely related to a VCS tag. Some projects use tag names that include more than just the version string (e.g. "myproject-1.2" instead of just "1.2"), in which case the tool needs to strip the tag prefix to extract the version identifier. For unreleased software (between tags), the version identifier should provide enough information to help developers recreate the same tree, while also giving them an idea of roughly how old the tree is (after version 1.2, before version 1.3). Many VCS systems can report a description that captures this, for example `git describe --tags --dirty --always` reports things like "0.7-1-g574ab98-dirty" to indicate that the checkout is one revision past the 0.7 tag, has a unique revision id of "574ab98", and is "dirty" (it has uncommitted changes). The version identifier is used for multiple purposes: * to allow the module to self-identify its version: `myproject.__version__` * to choose a name and prefix for a 'setup.py sdist' tarball ## Theory of Operation Versioneer works by adding a special `_version.py` file into your source tree, where your `__init__.py` can import it. This `_version.py` knows how to dynamically ask the VCS tool for version information at import time. `_version.py` also contains `$Revision$` markers, and the installation process marks `_version.py` to have this marker rewritten with a tag name during the `git archive` command. As a result, generated tarballs will contain enough information to get the proper version. To allow `setup.py` to compute a version too, a `versioneer.py` is added to the top level of your source tree, next to `setup.py` and the `setup.cfg` that configures it. This overrides several distutils/setuptools commands to compute the version when invoked, and changes `setup.py build` and `setup.py sdist` to replace `_version.py` with a small static file that contains just the generated version data. ## Installation See [INSTALL.md](./INSTALL.md) for detailed installation instructions. ## Version-String Flavors Code which uses Versioneer can learn about its version string at runtime by importing `_version` from your main `__init__.py` file and running the `get_versions()` function. From the "outside" (e.g. in `setup.py`), you can import the top-level `versioneer.py` and run `get_versions()`. Both functions return a dictionary with different flavors of version information: * `['version']`: A condensed version string, rendered using the selected style. This is the most commonly used value for the project's version string. The default "pep440" style yields strings like `0.11`, `0.11+2.g1076c97`, or `0.11+2.g1076c97.dirty`. See the "Styles" section below for alternative styles. * `['full-revisionid']`: detailed revision identifier. For Git, this is the full SHA1 commit id, e.g. "1076c978a8d3cfc70f408fe5974aa6c092c949ac". * `['date']`: Date and time of the latest `HEAD` commit. For Git, it is the commit date in ISO 8601 format. This will be None if the date is not available. * `['dirty']`: a boolean, True if the tree has uncommitted changes. Note that this is only accurate if run in a VCS checkout, otherwise it is likely to be False or None * `['error']`: if the version string could not be computed, this will be set to a string describing the problem, otherwise it will be None. It may be useful to throw an exception in setup.py if this is set, to avoid e.g. creating tarballs with a version string of "unknown". Some variants are more useful than others. Including `full-revisionid` in a bug report should allow developers to reconstruct the exact code being tested (or indicate the presence of local changes that should be shared with the developers). `version` is suitable for display in an "about" box or a CLI `--version` output: it can be easily compared against release notes and lists of bugs fixed in various releases. The installer adds the following text to your `__init__.py` to place a basic version in `YOURPROJECT.__version__`: from ._version import get_versions __version__ = get_versions()['version'] del get_versions ## Styles The setup.cfg `style=` configuration controls how the VCS information is rendered into a version string. The default style, "pep440", produces a PEP440-compliant string, equal to the un-prefixed tag name for actual releases, and containing an additional "local version" section with more detail for in-between builds. For Git, this is TAG[+DISTANCE.gHEX[.dirty]] , using information from `git describe --tags --dirty --always`. For example "0.11+2.g1076c97.dirty" indicates that the tree is like the "1076c97" commit but has uncommitted changes (".dirty"), and that this commit is two revisions ("+2") beyond the "0.11" tag. For released software (exactly equal to a known tag), the identifier will only contain the stripped tag, e.g. "0.11". Other styles are available. See [details.md](details.md) in the Versioneer source tree for descriptions. ## Debugging Versioneer tries to avoid fatal errors: if something goes wrong, it will tend to return a version of "0+unknown". To investigate the problem, run `setup.py version`, which will run the version-lookup code in a verbose mode, and will display the full contents of `get_versions()` (including the `error` string, which may help identify what went wrong). ## Known Limitations Some situations are known to cause problems for Versioneer. This details the most significant ones. More can be found on Github [issues page](https://github.com/python-versioneer/python-versioneer/issues). ### Subprojects Versioneer has limited support for source trees in which `setup.py` is not in the root directory (e.g. `setup.py` and `.git/` are *not* siblings). The are two common reasons why `setup.py` might not be in the root: * Source trees which contain multiple subprojects, such as [Buildbot](https://github.com/buildbot/buildbot), which contains both "master" and "slave" subprojects, each with their own `setup.py`, `setup.cfg`, and `tox.ini`. Projects like these produce multiple PyPI distributions (and upload multiple independently-installable tarballs). * Source trees whose main purpose is to contain a C library, but which also provide bindings to Python (and perhaps other languages) in subdirectories. Versioneer will look for `.git` in parent directories, and most operations should get the right version string. However `pip` and `setuptools` have bugs and implementation details which frequently cause `pip install .` from a subproject directory to fail to find a correct version string (so it usually defaults to `0+unknown`). `pip install --editable .` should work correctly. `setup.py install` might work too. Pip-8.1.1 is known to have this problem, but hopefully it will get fixed in some later version. [Bug #38](https://github.com/python-versioneer/python-versioneer/issues/38) is tracking this issue. The discussion in [PR #61](https://github.com/python-versioneer/python-versioneer/pull/61) describes the issue from the Versioneer side in more detail. [pip PR#3176](https://github.com/pypa/pip/pull/3176) and [pip PR#3615](https://github.com/pypa/pip/pull/3615) contain work to improve pip to let Versioneer work correctly. Versioneer-0.16 and earlier only looked for a `.git` directory next to the `setup.cfg`, so subprojects were completely unsupported with those releases. ### Editable installs with setuptools <= 18.5 `setup.py develop` and `pip install --editable .` allow you to install a project into a virtualenv once, then continue editing the source code (and test) without re-installing after every change. "Entry-point scripts" (`setup(entry_points={"console_scripts": ..})`) are a convenient way to specify executable scripts that should be installed along with the python package. These both work as expected when using modern setuptools. When using setuptools-18.5 or earlier, however, certain operations will cause `pkg_resources.DistributionNotFound` errors when running the entrypoint script, which must be resolved by re-installing the package. This happens when the install happens with one version, then the egg_info data is regenerated while a different version is checked out. Many setup.py commands cause egg_info to be rebuilt (including `sdist`, `wheel`, and installing into a different virtualenv), so this can be surprising. [Bug #83](https://github.com/python-versioneer/python-versioneer/issues/83) describes this one, but upgrading to a newer version of setuptools should probably resolve it. ## Updating Versioneer To upgrade your project to a new release of Versioneer, do the following: * install the new Versioneer (`pip install -U versioneer` or equivalent) * edit `setup.cfg` and `pyproject.toml`, if necessary, to include any new configuration settings indicated by the release notes. See [UPGRADING](./UPGRADING.md) for details. * re-run `versioneer install --[no-]vendor` in your source tree, to replace `SRC/_version.py` * commit any changed files ## Future Directions This tool is designed to make it easily extended to other version-control systems: all VCS-specific components are in separate directories like src/git/ . The top-level `versioneer.py` script is assembled from these components by running make-versioneer.py . In the future, make-versioneer.py will take a VCS name as an argument, and will construct a version of `versioneer.py` that is specific to the given VCS. It might also take the configuration arguments that are currently provided manually during installation by editing setup.py . Alternatively, it might go the other direction and include code from all supported VCS systems, reducing the number of intermediate scripts. ## Similar projects * [setuptools_scm](https://github.com/pypa/setuptools_scm/) - a non-vendored build-time dependency * [minver](https://github.com/jbweston/miniver) - a lightweight reimplementation of versioneer * [versioningit](https://github.com/jwodder/versioningit) - a PEP 518-based setuptools plugin ## License To make Versioneer easier to embed, all its code is dedicated to the public domain. The `_version.py` that it creates is also in the public domain. Specifically, both are released under the "Unlicense", as described in https://unlicense.org/. [pypi-image]: https://img.shields.io/pypi/v/versioneer.svg [pypi-url]: https://pypi.python.org/pypi/versioneer/ [travis-image]: https://img.shields.io/travis/com/python-versioneer/python-versioneer.svg [travis-url]: https://travis-ci.com/github/python-versioneer/python-versioneer """ # pylint:disable=invalid-name,import-outside-toplevel,missing-function-docstring # pylint:disable=missing-class-docstring,too-many-branches,too-many-statements # pylint:disable=raise-missing-from,too-many-lines,too-many-locals,import-error # pylint:disable=too-few-public-methods,redefined-outer-name,consider-using-with # pylint:disable=attribute-defined-outside-init,too-many-arguments import configparser import errno import json import os import re import subprocess import sys from pathlib import Path from typing import Any, Callable, cast, Dict, List, Optional, Tuple, Union from typing import NoReturn import functools have_tomllib = True if sys.version_info >= (3, 11): import tomllib else: try: import tomli as tomllib except ImportError: have_tomllib = False class VersioneerConfig: """Container for Versioneer configuration parameters.""" VCS: str style: str tag_prefix: str versionfile_source: str versionfile_build: Optional[str] parentdir_prefix: Optional[str] verbose: Optional[bool] def get_root() -> str: """Get the project root directory. We require that all commands are run from the project root, i.e. the directory that contains setup.py, setup.cfg, and versioneer.py . """ root = os.path.realpath(os.path.abspath(os.getcwd())) setup_py = os.path.join(root, "setup.py") pyproject_toml = os.path.join(root, "pyproject.toml") versioneer_py = os.path.join(root, "versioneer.py") if not ( os.path.exists(setup_py) or os.path.exists(pyproject_toml) or os.path.exists(versioneer_py) ): # allow 'python path/to/setup.py COMMAND' root = os.path.dirname(os.path.realpath(os.path.abspath(sys.argv[0]))) setup_py = os.path.join(root, "setup.py") pyproject_toml = os.path.join(root, "pyproject.toml") versioneer_py = os.path.join(root, "versioneer.py") if not ( os.path.exists(setup_py) or os.path.exists(pyproject_toml) or os.path.exists(versioneer_py) ): err = ("Versioneer was unable to run the project root directory. " "Versioneer requires setup.py to be executed from " "its immediate directory (like 'python setup.py COMMAND'), " "or in a way that lets it use sys.argv[0] to find the root " "(like 'python path/to/setup.py COMMAND').") raise VersioneerBadRootError(err) try: # Certain runtime workflows (setup.py install/develop in a setuptools # tree) execute all dependencies in a single python process, so # "versioneer" may be imported multiple times, and python's shared # module-import table will cache the first one. So we can't use # os.path.dirname(__file__), as that will find whichever # versioneer.py was first imported, even in later projects. my_path = os.path.realpath(os.path.abspath(__file__)) me_dir = os.path.normcase(os.path.splitext(my_path)[0]) vsr_dir = os.path.normcase(os.path.splitext(versioneer_py)[0]) if me_dir != vsr_dir and "VERSIONEER_PEP518" not in globals(): print("Warning: build in %s is using versioneer.py from %s" % (os.path.dirname(my_path), versioneer_py)) except NameError: pass return root def get_config_from_root(root: str) -> VersioneerConfig: """Read the project setup.cfg file to determine Versioneer config.""" # This might raise OSError (if setup.cfg is missing), or # configparser.NoSectionError (if it lacks a [versioneer] section), or # configparser.NoOptionError (if it lacks "VCS="). See the docstring at # the top of versioneer.py for instructions on writing your setup.cfg . root_pth = Path(root) pyproject_toml = root_pth / "pyproject.toml" setup_cfg = root_pth / "setup.cfg" section: Union[Dict[str, Any], configparser.SectionProxy, None] = None if pyproject_toml.exists() and have_tomllib: try: with open(pyproject_toml, 'rb') as fobj: pp = tomllib.load(fobj) section = pp['tool']['versioneer'] except (tomllib.TOMLDecodeError, KeyError) as e: print(f"Failed to load config from {pyproject_toml}: {e}") print("Try to load it from setup.cfg") if not section: parser = configparser.ConfigParser() with open(setup_cfg) as cfg_file: parser.read_file(cfg_file) parser.get("versioneer", "VCS") # raise error if missing section = parser["versioneer"] # `cast`` really shouldn't be used, but its simplest for the # common VersioneerConfig users at the moment. We verify against # `None` values elsewhere where it matters cfg = VersioneerConfig() cfg.VCS = section['VCS'] cfg.style = section.get("style", "") cfg.versionfile_source = cast(str, section.get("versionfile_source")) cfg.versionfile_build = section.get("versionfile_build") cfg.tag_prefix = cast(str, section.get("tag_prefix")) if cfg.tag_prefix in ("''", '""', None): cfg.tag_prefix = "" cfg.parentdir_prefix = section.get("parentdir_prefix") if isinstance(section, configparser.SectionProxy): # Make sure configparser translates to bool cfg.verbose = section.getboolean("verbose") else: cfg.verbose = section.get("verbose") return cfg class NotThisMethod(Exception): """Exception raised if a method is not valid for the current scenario.""" # these dictionaries contain VCS-specific tools LONG_VERSION_PY: Dict[str, str] = {} HANDLERS: Dict[str, Dict[str, Callable]] = {} def register_vcs_handler(vcs: str, method: str) -> Callable: # decorator """Create decorator to mark a method as the handler of a VCS.""" def decorate(f: Callable) -> Callable: """Store f in HANDLERS[vcs][method].""" HANDLERS.setdefault(vcs, {})[method] = f return f return decorate def run_command( commands: List[str], args: List[str], cwd: Optional[str] = None, verbose: bool = False, hide_stderr: bool = False, env: Optional[Dict[str, str]] = None, ) -> Tuple[Optional[str], Optional[int]]: """Call the given command(s).""" assert isinstance(commands, list) process = None popen_kwargs: Dict[str, Any] = {} if sys.platform == "win32": # This hides the console window if pythonw.exe is used startupinfo = subprocess.STARTUPINFO() startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW popen_kwargs["startupinfo"] = startupinfo for command in commands: try: dispcmd = str([command] + args) # remember shell=False, so use git.cmd on windows, not just git process = subprocess.Popen([command] + args, cwd=cwd, env=env, stdout=subprocess.PIPE, stderr=(subprocess.PIPE if hide_stderr else None), **popen_kwargs) break except OSError as e: if e.errno == errno.ENOENT: continue if verbose: print("unable to run %s" % dispcmd) print(e) return None, None else: if verbose: print("unable to find command, tried %s" % (commands,)) return None, None stdout = process.communicate()[0].strip().decode() if process.returncode != 0: if verbose: print("unable to run %s (error)" % dispcmd) print("stdout was %s" % stdout) return None, process.returncode return stdout, process.returncode LONG_VERSION_PY['git'] = r''' # This file helps to compute a version number in source trees obtained from # git-archive tarball (such as those provided by githubs download-from-tag # feature). Distribution tarballs (built by setup.py sdist) and build # directories (produced by setup.py build) will contain a much shorter file # that just contains the computed version number. # This file is released into the public domain. # Generated by versioneer-0.29 # https://github.com/python-versioneer/python-versioneer """Git implementation of _version.py.""" import errno import os import re import subprocess import sys from typing import Any, Callable, Dict, List, Optional, Tuple import functools def get_keywords() -> Dict[str, str]: """Get the keywords needed to look up the version information.""" # these strings will be replaced by git during git-archive. # setup.py/versioneer.py will grep for the variable names, so they must # each be defined on a line of their own. _version.py will just call # get_keywords(). git_refnames = "%(DOLLAR)sFormat:%%d%(DOLLAR)s" git_full = "%(DOLLAR)sFormat:%%H%(DOLLAR)s" git_date = "%(DOLLAR)sFormat:%%ci%(DOLLAR)s" keywords = {"refnames": git_refnames, "full": git_full, "date": git_date} return keywords class VersioneerConfig: """Container for Versioneer configuration parameters.""" VCS: str style: str tag_prefix: str parentdir_prefix: str versionfile_source: str verbose: bool def get_config() -> VersioneerConfig: """Create, populate and return the VersioneerConfig() object.""" # these strings are filled in when 'setup.py versioneer' creates # _version.py cfg = VersioneerConfig() cfg.VCS = "git" cfg.style = "%(STYLE)s" cfg.tag_prefix = "%(TAG_PREFIX)s" cfg.parentdir_prefix = "%(PARENTDIR_PREFIX)s" cfg.versionfile_source = "%(VERSIONFILE_SOURCE)s" cfg.verbose = False return cfg class NotThisMethod(Exception): """Exception raised if a method is not valid for the current scenario.""" LONG_VERSION_PY: Dict[str, str] = {} HANDLERS: Dict[str, Dict[str, Callable]] = {} def register_vcs_handler(vcs: str, method: str) -> Callable: # decorator """Create decorator to mark a method as the handler of a VCS.""" def decorate(f: Callable) -> Callable: """Store f in HANDLERS[vcs][method].""" if vcs not in HANDLERS: HANDLERS[vcs] = {} HANDLERS[vcs][method] = f return f return decorate def run_command( commands: List[str], args: List[str], cwd: Optional[str] = None, verbose: bool = False, hide_stderr: bool = False, env: Optional[Dict[str, str]] = None, ) -> Tuple[Optional[str], Optional[int]]: """Call the given command(s).""" assert isinstance(commands, list) process = None popen_kwargs: Dict[str, Any] = {} if sys.platform == "win32": # This hides the console window if pythonw.exe is used startupinfo = subprocess.STARTUPINFO() startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW popen_kwargs["startupinfo"] = startupinfo for command in commands: try: dispcmd = str([command] + args) # remember shell=False, so use git.cmd on windows, not just git process = subprocess.Popen([command] + args, cwd=cwd, env=env, stdout=subprocess.PIPE, stderr=(subprocess.PIPE if hide_stderr else None), **popen_kwargs) break except OSError as e: if e.errno == errno.ENOENT: continue if verbose: print("unable to run %%s" %% dispcmd) print(e) return None, None else: if verbose: print("unable to find command, tried %%s" %% (commands,)) return None, None stdout = process.communicate()[0].strip().decode() if process.returncode != 0: if verbose: print("unable to run %%s (error)" %% dispcmd) print("stdout was %%s" %% stdout) return None, process.returncode return stdout, process.returncode def versions_from_parentdir( parentdir_prefix: str, root: str, verbose: bool, ) -> Dict[str, Any]: """Try to determine the version from the parent directory name. Source tarballs conventionally unpack into a directory that includes both the project name and a version string. We will also support searching up two directory levels for an appropriately named parent directory """ rootdirs = [] for _ in range(3): dirname = os.path.basename(root) if dirname.startswith(parentdir_prefix): return {"version": dirname[len(parentdir_prefix):], "full-revisionid": None, "dirty": False, "error": None, "date": None} rootdirs.append(root) root = os.path.dirname(root) # up a level if verbose: print("Tried directories %%s but none started with prefix %%s" %% (str(rootdirs), parentdir_prefix)) raise NotThisMethod("rootdir doesn't start with parentdir_prefix") @register_vcs_handler("git", "get_keywords") def git_get_keywords(versionfile_abs: str) -> Dict[str, str]: """Extract version information from the given file.""" # the code embedded in _version.py can just fetch the value of these # keywords. When used from setup.py, we don't want to import _version.py, # so we do it with a regexp instead. This function is not used from # _version.py. keywords: Dict[str, str] = {} try: with open(versionfile_abs, "r") as fobj: for line in fobj: if line.strip().startswith("git_refnames ="): mo = re.search(r'=\s*"(.*)"', line) if mo: keywords["refnames"] = mo.group(1) if line.strip().startswith("git_full ="): mo = re.search(r'=\s*"(.*)"', line) if mo: keywords["full"] = mo.group(1) if line.strip().startswith("git_date ="): mo = re.search(r'=\s*"(.*)"', line) if mo: keywords["date"] = mo.group(1) except OSError: pass return keywords @register_vcs_handler("git", "keywords") def git_versions_from_keywords( keywords: Dict[str, str], tag_prefix: str, verbose: bool, ) -> Dict[str, Any]: """Get version information from git keywords.""" if "refnames" not in keywords: raise NotThisMethod("Short version file found") date = keywords.get("date") if date is not None: # Use only the last line. Previous lines may contain GPG signature # information. date = date.splitlines()[-1] # git-2.2.0 added "%%cI", which expands to an ISO-8601 -compliant # datestamp. However we prefer "%%ci" (which expands to an "ISO-8601 # -like" string, which we must then edit to make compliant), because # it's been around since git-1.5.3, and it's too difficult to # discover which version we're using, or to work around using an # older one. date = date.strip().replace(" ", "T", 1).replace(" ", "", 1) refnames = keywords["refnames"].strip() if refnames.startswith("$Format"): if verbose: print("keywords are unexpanded, not using") raise NotThisMethod("unexpanded keywords, not a git-archive tarball") refs = {r.strip() for r in refnames.strip("()").split(",")} # starting in git-1.8.3, tags are listed as "tag: foo-1.0" instead of # just "foo-1.0". If we see a "tag: " prefix, prefer those. TAG = "tag: " tags = {r[len(TAG):] for r in refs if r.startswith(TAG)} if not tags: # Either we're using git < 1.8.3, or there really are no tags. We use # a heuristic: assume all version tags have a digit. The old git %%d # expansion behaves like git log --decorate=short and strips out the # refs/heads/ and refs/tags/ prefixes that would let us distinguish # between branches and tags. By ignoring refnames without digits, we # filter out many common branch names like "release" and # "stabilization", as well as "HEAD" and "master". tags = {r for r in refs if re.search(r'\d', r)} if verbose: print("discarding '%%s', no digits" %% ",".join(refs - tags)) if verbose: print("likely tags: %%s" %% ",".join(sorted(tags))) for ref in sorted(tags): # sorting will prefer e.g. "2.0" over "2.0rc1" if ref.startswith(tag_prefix): r = ref[len(tag_prefix):] # Filter out refs that exactly match prefix or that don't start # with a number once the prefix is stripped (mostly a concern # when prefix is '') if not re.match(r'\d', r): continue if verbose: print("picking %%s" %% r) return {"version": r, "full-revisionid": keywords["full"].strip(), "dirty": False, "error": None, "date": date} # no suitable tags, so version is "0+unknown", but full hex is still there if verbose: print("no suitable tags, using unknown + full revision id") return {"version": "0+unknown", "full-revisionid": keywords["full"].strip(), "dirty": False, "error": "no suitable tags", "date": None} @register_vcs_handler("git", "pieces_from_vcs") def git_pieces_from_vcs( tag_prefix: str, root: str, verbose: bool, runner: Callable = run_command ) -> Dict[str, Any]: """Get version from 'git describe' in the root of the source tree. This only gets called if the git-archive 'subst' keywords were *not* expanded, and _version.py hasn't already been rewritten with a short version string, meaning we're inside a checked out source tree. """ GITS = ["git"] if sys.platform == "win32": GITS = ["git.cmd", "git.exe"] # GIT_DIR can interfere with correct operation of Versioneer. # It may be intended to be passed to the Versioneer-versioned project, # but that should not change where we get our version from. env = os.environ.copy() env.pop("GIT_DIR", None) runner = functools.partial(runner, env=env) _, rc = runner(GITS, ["rev-parse", "--git-dir"], cwd=root, hide_stderr=not verbose) if rc != 0: if verbose: print("Directory %%s not under git control" %% root) raise NotThisMethod("'git rev-parse --git-dir' returned error") # if there is a tag matching tag_prefix, this yields TAG-NUM-gHEX[-dirty] # if there isn't one, this yields HEX[-dirty] (no NUM) describe_out, rc = runner(GITS, [ "describe", "--tags", "--dirty", "--always", "--long", "--match", f"{tag_prefix}[[:digit:]]*" ], cwd=root) # --long was added in git-1.5.5 if describe_out is None: raise NotThisMethod("'git describe' failed") describe_out = describe_out.strip() full_out, rc = runner(GITS, ["rev-parse", "HEAD"], cwd=root) if full_out is None: raise NotThisMethod("'git rev-parse' failed") full_out = full_out.strip() pieces: Dict[str, Any] = {} pieces["long"] = full_out pieces["short"] = full_out[:7] # maybe improved later pieces["error"] = None branch_name, rc = runner(GITS, ["rev-parse", "--abbrev-ref", "HEAD"], cwd=root) # --abbrev-ref was added in git-1.6.3 if rc != 0 or branch_name is None: raise NotThisMethod("'git rev-parse --abbrev-ref' returned error") branch_name = branch_name.strip() if branch_name == "HEAD": # If we aren't exactly on a branch, pick a branch which represents # the current commit. If all else fails, we are on a branchless # commit. branches, rc = runner(GITS, ["branch", "--contains"], cwd=root) # --contains was added in git-1.5.4 if rc != 0 or branches is None: raise NotThisMethod("'git branch --contains' returned error") branches = branches.split("\n") # Remove the first line if we're running detached if "(" in branches[0]: branches.pop(0) # Strip off the leading "* " from the list of branches. branches = [branch[2:] for branch in branches] if "master" in branches: branch_name = "master" elif not branches: branch_name = None else: # Pick the first branch that is returned. Good or bad. branch_name = branches[0] pieces["branch"] = branch_name # parse describe_out. It will be like TAG-NUM-gHEX[-dirty] or HEX[-dirty] # TAG might have hyphens. git_describe = describe_out # look for -dirty suffix dirty = git_describe.endswith("-dirty") pieces["dirty"] = dirty if dirty: git_describe = git_describe[:git_describe.rindex("-dirty")] # now we have TAG-NUM-gHEX or HEX if "-" in git_describe: # TAG-NUM-gHEX mo = re.search(r'^(.+)-(\d+)-g([0-9a-f]+)$', git_describe) if not mo: # unparsable. Maybe git-describe is misbehaving? pieces["error"] = ("unable to parse git-describe output: '%%s'" %% describe_out) return pieces # tag full_tag = mo.group(1) if not full_tag.startswith(tag_prefix): if verbose: fmt = "tag '%%s' doesn't start with prefix '%%s'" print(fmt %% (full_tag, tag_prefix)) pieces["error"] = ("tag '%%s' doesn't start with prefix '%%s'" %% (full_tag, tag_prefix)) return pieces pieces["closest-tag"] = full_tag[len(tag_prefix):] # distance: number of commits since tag pieces["distance"] = int(mo.group(2)) # commit: short hex revision ID pieces["short"] = mo.group(3) else: # HEX: no tags pieces["closest-tag"] = None out, rc = runner(GITS, ["rev-list", "HEAD", "--left-right"], cwd=root) pieces["distance"] = len(out.split()) # total number of commits # commit date: see ISO-8601 comment in git_versions_from_keywords() date = runner(GITS, ["show", "-s", "--format=%%ci", "HEAD"], cwd=root)[0].strip() # Use only the last line. Previous lines may contain GPG signature # information. date = date.splitlines()[-1] pieces["date"] = date.strip().replace(" ", "T", 1).replace(" ", "", 1) return pieces def plus_or_dot(pieces: Dict[str, Any]) -> str: """Return a + if we don't already have one, else return a .""" if "+" in pieces.get("closest-tag", ""): return "." return "+" def render_pep440(pieces: Dict[str, Any]) -> str: """Build up version string, with post-release "local version identifier". Our goal: TAG[+DISTANCE.gHEX[.dirty]] . Note that if you get a tagged build and then dirty it, you'll get TAG+0.gHEX.dirty Exceptions: 1: no tags. git_describe was just HEX. 0+untagged.DISTANCE.gHEX[.dirty] """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: rendered += plus_or_dot(pieces) rendered += "%%d.g%%s" %% (pieces["distance"], pieces["short"]) if pieces["dirty"]: rendered += ".dirty" else: # exception #1 rendered = "0+untagged.%%d.g%%s" %% (pieces["distance"], pieces["short"]) if pieces["dirty"]: rendered += ".dirty" return rendered def render_pep440_branch(pieces: Dict[str, Any]) -> str: """TAG[[.dev0]+DISTANCE.gHEX[.dirty]] . The ".dev0" means not master branch. Note that .dev0 sorts backwards (a feature branch will appear "older" than the master branch). Exceptions: 1: no tags. 0[.dev0]+untagged.DISTANCE.gHEX[.dirty] """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: if pieces["branch"] != "master": rendered += ".dev0" rendered += plus_or_dot(pieces) rendered += "%%d.g%%s" %% (pieces["distance"], pieces["short"]) if pieces["dirty"]: rendered += ".dirty" else: # exception #1 rendered = "0" if pieces["branch"] != "master": rendered += ".dev0" rendered += "+untagged.%%d.g%%s" %% (pieces["distance"], pieces["short"]) if pieces["dirty"]: rendered += ".dirty" return rendered def pep440_split_post(ver: str) -> Tuple[str, Optional[int]]: """Split pep440 version string at the post-release segment. Returns the release segments before the post-release and the post-release version number (or -1 if no post-release segment is present). """ vc = str.split(ver, ".post") return vc[0], int(vc[1] or 0) if len(vc) == 2 else None def render_pep440_pre(pieces: Dict[str, Any]) -> str: """TAG[.postN.devDISTANCE] -- No -dirty. Exceptions: 1: no tags. 0.post0.devDISTANCE """ if pieces["closest-tag"]: if pieces["distance"]: # update the post release segment tag_version, post_version = pep440_split_post(pieces["closest-tag"]) rendered = tag_version if post_version is not None: rendered += ".post%%d.dev%%d" %% (post_version + 1, pieces["distance"]) else: rendered += ".post0.dev%%d" %% (pieces["distance"]) else: # no commits, use the tag as the version rendered = pieces["closest-tag"] else: # exception #1 rendered = "0.post0.dev%%d" %% pieces["distance"] return rendered def render_pep440_post(pieces: Dict[str, Any]) -> str: """TAG[.postDISTANCE[.dev0]+gHEX] . The ".dev0" means dirty. Note that .dev0 sorts backwards (a dirty tree will appear "older" than the corresponding clean one), but you shouldn't be releasing software with -dirty anyways. Exceptions: 1: no tags. 0.postDISTANCE[.dev0] """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: rendered += ".post%%d" %% pieces["distance"] if pieces["dirty"]: rendered += ".dev0" rendered += plus_or_dot(pieces) rendered += "g%%s" %% pieces["short"] else: # exception #1 rendered = "0.post%%d" %% pieces["distance"] if pieces["dirty"]: rendered += ".dev0" rendered += "+g%%s" %% pieces["short"] return rendered def render_pep440_post_branch(pieces: Dict[str, Any]) -> str: """TAG[.postDISTANCE[.dev0]+gHEX[.dirty]] . The ".dev0" means not master branch. Exceptions: 1: no tags. 0.postDISTANCE[.dev0]+gHEX[.dirty] """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: rendered += ".post%%d" %% pieces["distance"] if pieces["branch"] != "master": rendered += ".dev0" rendered += plus_or_dot(pieces) rendered += "g%%s" %% pieces["short"] if pieces["dirty"]: rendered += ".dirty" else: # exception #1 rendered = "0.post%%d" %% pieces["distance"] if pieces["branch"] != "master": rendered += ".dev0" rendered += "+g%%s" %% pieces["short"] if pieces["dirty"]: rendered += ".dirty" return rendered def render_pep440_old(pieces: Dict[str, Any]) -> str: """TAG[.postDISTANCE[.dev0]] . The ".dev0" means dirty. Exceptions: 1: no tags. 0.postDISTANCE[.dev0] """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: rendered += ".post%%d" %% pieces["distance"] if pieces["dirty"]: rendered += ".dev0" else: # exception #1 rendered = "0.post%%d" %% pieces["distance"] if pieces["dirty"]: rendered += ".dev0" return rendered def render_git_describe(pieces: Dict[str, Any]) -> str: """TAG[-DISTANCE-gHEX][-dirty]. Like 'git describe --tags --dirty --always'. Exceptions: 1: no tags. HEX[-dirty] (note: no 'g' prefix) """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"]: rendered += "-%%d-g%%s" %% (pieces["distance"], pieces["short"]) else: # exception #1 rendered = pieces["short"] if pieces["dirty"]: rendered += "-dirty" return rendered def render_git_describe_long(pieces: Dict[str, Any]) -> str: """TAG-DISTANCE-gHEX[-dirty]. Like 'git describe --tags --dirty --always -long'. The distance/hash is unconditional. Exceptions: 1: no tags. HEX[-dirty] (note: no 'g' prefix) """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] rendered += "-%%d-g%%s" %% (pieces["distance"], pieces["short"]) else: # exception #1 rendered = pieces["short"] if pieces["dirty"]: rendered += "-dirty" return rendered def render(pieces: Dict[str, Any], style: str) -> Dict[str, Any]: """Render the given version pieces into the requested style.""" if pieces["error"]: return {"version": "unknown", "full-revisionid": pieces.get("long"), "dirty": None, "error": pieces["error"], "date": None} if not style or style == "default": style = "pep440" # the default if style == "pep440": rendered = render_pep440(pieces) elif style == "pep440-branch": rendered = render_pep440_branch(pieces) elif style == "pep440-pre": rendered = render_pep440_pre(pieces) elif style == "pep440-post": rendered = render_pep440_post(pieces) elif style == "pep440-post-branch": rendered = render_pep440_post_branch(pieces) elif style == "pep440-old": rendered = render_pep440_old(pieces) elif style == "git-describe": rendered = render_git_describe(pieces) elif style == "git-describe-long": rendered = render_git_describe_long(pieces) else: raise ValueError("unknown style '%%s'" %% style) return {"version": rendered, "full-revisionid": pieces["long"], "dirty": pieces["dirty"], "error": None, "date": pieces.get("date")} def get_versions() -> Dict[str, Any]: """Get version information or return default if unable to do so.""" # I am in _version.py, which lives at ROOT/VERSIONFILE_SOURCE. If we have # __file__, we can work backwards from there to the root. Some # py2exe/bbfreeze/non-CPython implementations don't do __file__, in which # case we can only use expanded keywords. cfg = get_config() verbose = cfg.verbose try: return git_versions_from_keywords(get_keywords(), cfg.tag_prefix, verbose) except NotThisMethod: pass try: root = os.path.realpath(__file__) # versionfile_source is the relative path from the top of the source # tree (where the .git directory might live) to this file. Invert # this to find the root from __file__. for _ in cfg.versionfile_source.split('/'): root = os.path.dirname(root) except NameError: return {"version": "0+unknown", "full-revisionid": None, "dirty": None, "error": "unable to find root of source tree", "date": None} try: pieces = git_pieces_from_vcs(cfg.tag_prefix, root, verbose) return render(pieces, cfg.style) except NotThisMethod: pass try: if cfg.parentdir_prefix: return versions_from_parentdir(cfg.parentdir_prefix, root, verbose) except NotThisMethod: pass return {"version": "0+unknown", "full-revisionid": None, "dirty": None, "error": "unable to compute version", "date": None} ''' @register_vcs_handler("git", "get_keywords") def git_get_keywords(versionfile_abs: str) -> Dict[str, str]: """Extract version information from the given file.""" # the code embedded in _version.py can just fetch the value of these # keywords. When used from setup.py, we don't want to import _version.py, # so we do it with a regexp instead. This function is not used from # _version.py. keywords: Dict[str, str] = {} try: with open(versionfile_abs, "r") as fobj: for line in fobj: if line.strip().startswith("git_refnames ="): mo = re.search(r'=\s*"(.*)"', line) if mo: keywords["refnames"] = mo.group(1) if line.strip().startswith("git_full ="): mo = re.search(r'=\s*"(.*)"', line) if mo: keywords["full"] = mo.group(1) if line.strip().startswith("git_date ="): mo = re.search(r'=\s*"(.*)"', line) if mo: keywords["date"] = mo.group(1) except OSError: pass return keywords @register_vcs_handler("git", "keywords") def git_versions_from_keywords( keywords: Dict[str, str], tag_prefix: str, verbose: bool, ) -> Dict[str, Any]: """Get version information from git keywords.""" if "refnames" not in keywords: raise NotThisMethod("Short version file found") date = keywords.get("date") if date is not None: # Use only the last line. Previous lines may contain GPG signature # information. date = date.splitlines()[-1] # git-2.2.0 added "%cI", which expands to an ISO-8601 -compliant # datestamp. However we prefer "%ci" (which expands to an "ISO-8601 # -like" string, which we must then edit to make compliant), because # it's been around since git-1.5.3, and it's too difficult to # discover which version we're using, or to work around using an # older one. date = date.strip().replace(" ", "T", 1).replace(" ", "", 1) refnames = keywords["refnames"].strip() if refnames.startswith("$Format"): if verbose: print("keywords are unexpanded, not using") raise NotThisMethod("unexpanded keywords, not a git-archive tarball") refs = {r.strip() for r in refnames.strip("()").split(",")} # starting in git-1.8.3, tags are listed as "tag: foo-1.0" instead of # just "foo-1.0". If we see a "tag: " prefix, prefer those. TAG = "tag: " tags = {r[len(TAG):] for r in refs if r.startswith(TAG)} if not tags: # Either we're using git < 1.8.3, or there really are no tags. We use # a heuristic: assume all version tags have a digit. The old git %d # expansion behaves like git log --decorate=short and strips out the # refs/heads/ and refs/tags/ prefixes that would let us distinguish # between branches and tags. By ignoring refnames without digits, we # filter out many common branch names like "release" and # "stabilization", as well as "HEAD" and "master". tags = {r for r in refs if re.search(r'\d', r)} if verbose: print("discarding '%s', no digits" % ",".join(refs - tags)) if verbose: print("likely tags: %s" % ",".join(sorted(tags))) for ref in sorted(tags): # sorting will prefer e.g. "2.0" over "2.0rc1" if ref.startswith(tag_prefix): r = ref[len(tag_prefix):] # Filter out refs that exactly match prefix or that don't start # with a number once the prefix is stripped (mostly a concern # when prefix is '') if not re.match(r'\d', r): continue if verbose: print("picking %s" % r) return {"version": r, "full-revisionid": keywords["full"].strip(), "dirty": False, "error": None, "date": date} # no suitable tags, so version is "0+unknown", but full hex is still there if verbose: print("no suitable tags, using unknown + full revision id") return {"version": "0+unknown", "full-revisionid": keywords["full"].strip(), "dirty": False, "error": "no suitable tags", "date": None} @register_vcs_handler("git", "pieces_from_vcs") def git_pieces_from_vcs( tag_prefix: str, root: str, verbose: bool, runner: Callable = run_command ) -> Dict[str, Any]: """Get version from 'git describe' in the root of the source tree. This only gets called if the git-archive 'subst' keywords were *not* expanded, and _version.py hasn't already been rewritten with a short version string, meaning we're inside a checked out source tree. """ GITS = ["git"] if sys.platform == "win32": GITS = ["git.cmd", "git.exe"] # GIT_DIR can interfere with correct operation of Versioneer. # It may be intended to be passed to the Versioneer-versioned project, # but that should not change where we get our version from. env = os.environ.copy() env.pop("GIT_DIR", None) runner = functools.partial(runner, env=env) _, rc = runner(GITS, ["rev-parse", "--git-dir"], cwd=root, hide_stderr=not verbose) if rc != 0: if verbose: print("Directory %s not under git control" % root) raise NotThisMethod("'git rev-parse --git-dir' returned error") # if there is a tag matching tag_prefix, this yields TAG-NUM-gHEX[-dirty] # if there isn't one, this yields HEX[-dirty] (no NUM) describe_out, rc = runner(GITS, [ "describe", "--tags", "--dirty", "--always", "--long", "--match", f"{tag_prefix}[[:digit:]]*" ], cwd=root) # --long was added in git-1.5.5 if describe_out is None: raise NotThisMethod("'git describe' failed") describe_out = describe_out.strip() full_out, rc = runner(GITS, ["rev-parse", "HEAD"], cwd=root) if full_out is None: raise NotThisMethod("'git rev-parse' failed") full_out = full_out.strip() pieces: Dict[str, Any] = {} pieces["long"] = full_out pieces["short"] = full_out[:7] # maybe improved later pieces["error"] = None branch_name, rc = runner(GITS, ["rev-parse", "--abbrev-ref", "HEAD"], cwd=root) # --abbrev-ref was added in git-1.6.3 if rc != 0 or branch_name is None: raise NotThisMethod("'git rev-parse --abbrev-ref' returned error") branch_name = branch_name.strip() if branch_name == "HEAD": # If we aren't exactly on a branch, pick a branch which represents # the current commit. If all else fails, we are on a branchless # commit. branches, rc = runner(GITS, ["branch", "--contains"], cwd=root) # --contains was added in git-1.5.4 if rc != 0 or branches is None: raise NotThisMethod("'git branch --contains' returned error") branches = branches.split("\n") # Remove the first line if we're running detached if "(" in branches[0]: branches.pop(0) # Strip off the leading "* " from the list of branches. branches = [branch[2:] for branch in branches] if "master" in branches: branch_name = "master" elif not branches: branch_name = None else: # Pick the first branch that is returned. Good or bad. branch_name = branches[0] pieces["branch"] = branch_name # parse describe_out. It will be like TAG-NUM-gHEX[-dirty] or HEX[-dirty] # TAG might have hyphens. git_describe = describe_out # look for -dirty suffix dirty = git_describe.endswith("-dirty") pieces["dirty"] = dirty if dirty: git_describe = git_describe[:git_describe.rindex("-dirty")] # now we have TAG-NUM-gHEX or HEX if "-" in git_describe: # TAG-NUM-gHEX mo = re.search(r'^(.+)-(\d+)-g([0-9a-f]+)$', git_describe) if not mo: # unparsable. Maybe git-describe is misbehaving? pieces["error"] = ("unable to parse git-describe output: '%s'" % describe_out) return pieces # tag full_tag = mo.group(1) if not full_tag.startswith(tag_prefix): if verbose: fmt = "tag '%s' doesn't start with prefix '%s'" print(fmt % (full_tag, tag_prefix)) pieces["error"] = ("tag '%s' doesn't start with prefix '%s'" % (full_tag, tag_prefix)) return pieces pieces["closest-tag"] = full_tag[len(tag_prefix):] # distance: number of commits since tag pieces["distance"] = int(mo.group(2)) # commit: short hex revision ID pieces["short"] = mo.group(3) else: # HEX: no tags pieces["closest-tag"] = None out, rc = runner(GITS, ["rev-list", "HEAD", "--left-right"], cwd=root) pieces["distance"] = len(out.split()) # total number of commits # commit date: see ISO-8601 comment in git_versions_from_keywords() date = runner(GITS, ["show", "-s", "--format=%ci", "HEAD"], cwd=root)[0].strip() # Use only the last line. Previous lines may contain GPG signature # information. date = date.splitlines()[-1] pieces["date"] = date.strip().replace(" ", "T", 1).replace(" ", "", 1) return pieces def do_vcs_install(versionfile_source: str, ipy: Optional[str]) -> None: """Git-specific installation logic for Versioneer. For Git, this means creating/changing .gitattributes to mark _version.py for export-subst keyword substitution. """ GITS = ["git"] if sys.platform == "win32": GITS = ["git.cmd", "git.exe"] files = [versionfile_source] if ipy: files.append(ipy) if "VERSIONEER_PEP518" not in globals(): try: my_path = __file__ if my_path.endswith((".pyc", ".pyo")): my_path = os.path.splitext(my_path)[0] + ".py" versioneer_file = os.path.relpath(my_path) except NameError: versioneer_file = "versioneer.py" files.append(versioneer_file) present = False try: with open(".gitattributes", "r") as fobj: for line in fobj: if line.strip().startswith(versionfile_source): if "export-subst" in line.strip().split()[1:]: present = True break except OSError: pass if not present: with open(".gitattributes", "a+") as fobj: fobj.write(f"{versionfile_source} export-subst\n") files.append(".gitattributes") run_command(GITS, ["add", "--"] + files) def versions_from_parentdir( parentdir_prefix: str, root: str, verbose: bool, ) -> Dict[str, Any]: """Try to determine the version from the parent directory name. Source tarballs conventionally unpack into a directory that includes both the project name and a version string. We will also support searching up two directory levels for an appropriately named parent directory """ rootdirs = [] for _ in range(3): dirname = os.path.basename(root) if dirname.startswith(parentdir_prefix): return {"version": dirname[len(parentdir_prefix):], "full-revisionid": None, "dirty": False, "error": None, "date": None} rootdirs.append(root) root = os.path.dirname(root) # up a level if verbose: print("Tried directories %s but none started with prefix %s" % (str(rootdirs), parentdir_prefix)) raise NotThisMethod("rootdir doesn't start with parentdir_prefix") SHORT_VERSION_PY = """ # This file was generated by 'versioneer.py' (0.29) from # revision-control system data, or from the parent directory name of an # unpacked source archive. Distribution tarballs contain a pre-generated copy # of this file. import json version_json = ''' %s ''' # END VERSION_JSON def get_versions(): return json.loads(version_json) """ def versions_from_file(filename: str) -> Dict[str, Any]: """Try to determine the version from _version.py if present.""" try: with open(filename) as f: contents = f.read() except OSError: raise NotThisMethod("unable to read _version.py") mo = re.search(r"version_json = '''\n(.*)''' # END VERSION_JSON", contents, re.M | re.S) if not mo: mo = re.search(r"version_json = '''\r\n(.*)''' # END VERSION_JSON", contents, re.M | re.S) if not mo: raise NotThisMethod("no version_json in _version.py") return json.loads(mo.group(1)) def write_to_version_file(filename: str, versions: Dict[str, Any]) -> None: """Write the given version number to the given _version.py file.""" contents = json.dumps(versions, sort_keys=True, indent=1, separators=(",", ": ")) with open(filename, "w") as f: f.write(SHORT_VERSION_PY % contents) print("set %s to '%s'" % (filename, versions["version"])) def plus_or_dot(pieces: Dict[str, Any]) -> str: """Return a + if we don't already have one, else return a .""" if "+" in pieces.get("closest-tag", ""): return "." return "+" def render_pep440(pieces: Dict[str, Any]) -> str: """Build up version string, with post-release "local version identifier". Our goal: TAG[+DISTANCE.gHEX[.dirty]] . Note that if you get a tagged build and then dirty it, you'll get TAG+0.gHEX.dirty Exceptions: 1: no tags. git_describe was just HEX. 0+untagged.DISTANCE.gHEX[.dirty] """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: rendered += plus_or_dot(pieces) rendered += "%d.g%s" % (pieces["distance"], pieces["short"]) if pieces["dirty"]: rendered += ".dirty" else: # exception #1 rendered = "0+untagged.%d.g%s" % (pieces["distance"], pieces["short"]) if pieces["dirty"]: rendered += ".dirty" return rendered def render_pep440_branch(pieces: Dict[str, Any]) -> str: """TAG[[.dev0]+DISTANCE.gHEX[.dirty]] . The ".dev0" means not master branch. Note that .dev0 sorts backwards (a feature branch will appear "older" than the master branch). Exceptions: 1: no tags. 0[.dev0]+untagged.DISTANCE.gHEX[.dirty] """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: if pieces["branch"] != "master": rendered += ".dev0" rendered += plus_or_dot(pieces) rendered += "%d.g%s" % (pieces["distance"], pieces["short"]) if pieces["dirty"]: rendered += ".dirty" else: # exception #1 rendered = "0" if pieces["branch"] != "master": rendered += ".dev0" rendered += "+untagged.%d.g%s" % (pieces["distance"], pieces["short"]) if pieces["dirty"]: rendered += ".dirty" return rendered def pep440_split_post(ver: str) -> Tuple[str, Optional[int]]: """Split pep440 version string at the post-release segment. Returns the release segments before the post-release and the post-release version number (or -1 if no post-release segment is present). """ vc = str.split(ver, ".post") return vc[0], int(vc[1] or 0) if len(vc) == 2 else None def render_pep440_pre(pieces: Dict[str, Any]) -> str: """TAG[.postN.devDISTANCE] -- No -dirty. Exceptions: 1: no tags. 0.post0.devDISTANCE """ if pieces["closest-tag"]: if pieces["distance"]: # update the post release segment tag_version, post_version = pep440_split_post(pieces["closest-tag"]) rendered = tag_version if post_version is not None: rendered += ".post%d.dev%d" % (post_version + 1, pieces["distance"]) else: rendered += ".post0.dev%d" % (pieces["distance"]) else: # no commits, use the tag as the version rendered = pieces["closest-tag"] else: # exception #1 rendered = "0.post0.dev%d" % pieces["distance"] return rendered def render_pep440_post(pieces: Dict[str, Any]) -> str: """TAG[.postDISTANCE[.dev0]+gHEX] . The ".dev0" means dirty. Note that .dev0 sorts backwards (a dirty tree will appear "older" than the corresponding clean one), but you shouldn't be releasing software with -dirty anyways. Exceptions: 1: no tags. 0.postDISTANCE[.dev0] """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: rendered += ".post%d" % pieces["distance"] if pieces["dirty"]: rendered += ".dev0" rendered += plus_or_dot(pieces) rendered += "g%s" % pieces["short"] else: # exception #1 rendered = "0.post%d" % pieces["distance"] if pieces["dirty"]: rendered += ".dev0" rendered += "+g%s" % pieces["short"] return rendered def render_pep440_post_branch(pieces: Dict[str, Any]) -> str: """TAG[.postDISTANCE[.dev0]+gHEX[.dirty]] . The ".dev0" means not master branch. Exceptions: 1: no tags. 0.postDISTANCE[.dev0]+gHEX[.dirty] """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: rendered += ".post%d" % pieces["distance"] if pieces["branch"] != "master": rendered += ".dev0" rendered += plus_or_dot(pieces) rendered += "g%s" % pieces["short"] if pieces["dirty"]: rendered += ".dirty" else: # exception #1 rendered = "0.post%d" % pieces["distance"] if pieces["branch"] != "master": rendered += ".dev0" rendered += "+g%s" % pieces["short"] if pieces["dirty"]: rendered += ".dirty" return rendered def render_pep440_old(pieces: Dict[str, Any]) -> str: """TAG[.postDISTANCE[.dev0]] . The ".dev0" means dirty. Exceptions: 1: no tags. 0.postDISTANCE[.dev0] """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"] or pieces["dirty"]: rendered += ".post%d" % pieces["distance"] if pieces["dirty"]: rendered += ".dev0" else: # exception #1 rendered = "0.post%d" % pieces["distance"] if pieces["dirty"]: rendered += ".dev0" return rendered def render_git_describe(pieces: Dict[str, Any]) -> str: """TAG[-DISTANCE-gHEX][-dirty]. Like 'git describe --tags --dirty --always'. Exceptions: 1: no tags. HEX[-dirty] (note: no 'g' prefix) """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] if pieces["distance"]: rendered += "-%d-g%s" % (pieces["distance"], pieces["short"]) else: # exception #1 rendered = pieces["short"] if pieces["dirty"]: rendered += "-dirty" return rendered def render_git_describe_long(pieces: Dict[str, Any]) -> str: """TAG-DISTANCE-gHEX[-dirty]. Like 'git describe --tags --dirty --always -long'. The distance/hash is unconditional. Exceptions: 1: no tags. HEX[-dirty] (note: no 'g' prefix) """ if pieces["closest-tag"]: rendered = pieces["closest-tag"] rendered += "-%d-g%s" % (pieces["distance"], pieces["short"]) else: # exception #1 rendered = pieces["short"] if pieces["dirty"]: rendered += "-dirty" return rendered def render(pieces: Dict[str, Any], style: str) -> Dict[str, Any]: """Render the given version pieces into the requested style.""" if pieces["error"]: return {"version": "unknown", "full-revisionid": pieces.get("long"), "dirty": None, "error": pieces["error"], "date": None} if not style or style == "default": style = "pep440" # the default if style == "pep440": rendered = render_pep440(pieces) elif style == "pep440-branch": rendered = render_pep440_branch(pieces) elif style == "pep440-pre": rendered = render_pep440_pre(pieces) elif style == "pep440-post": rendered = render_pep440_post(pieces) elif style == "pep440-post-branch": rendered = render_pep440_post_branch(pieces) elif style == "pep440-old": rendered = render_pep440_old(pieces) elif style == "git-describe": rendered = render_git_describe(pieces) elif style == "git-describe-long": rendered = render_git_describe_long(pieces) else: raise ValueError("unknown style '%s'" % style) return {"version": rendered, "full-revisionid": pieces["long"], "dirty": pieces["dirty"], "error": None, "date": pieces.get("date")} class VersioneerBadRootError(Exception): """The project root directory is unknown or missing key files.""" def get_versions(verbose: bool = False) -> Dict[str, Any]: """Get the project version from whatever source is available. Returns dict with two keys: 'version' and 'full'. """ if "versioneer" in sys.modules: # see the discussion in cmdclass.py:get_cmdclass() del sys.modules["versioneer"] root = get_root() cfg = get_config_from_root(root) assert cfg.VCS is not None, "please set [versioneer]VCS= in setup.cfg" handlers = HANDLERS.get(cfg.VCS) assert handlers, "unrecognized VCS '%s'" % cfg.VCS verbose = verbose or bool(cfg.verbose) # `bool()` used to avoid `None` assert cfg.versionfile_source is not None, \ "please set versioneer.versionfile_source" assert cfg.tag_prefix is not None, "please set versioneer.tag_prefix" versionfile_abs = os.path.join(root, cfg.versionfile_source) # extract version from first of: _version.py, VCS command (e.g. 'git # describe'), parentdir. This is meant to work for developers using a # source checkout, for users of a tarball created by 'setup.py sdist', # and for users of a tarball/zipball created by 'git archive' or github's # download-from-tag feature or the equivalent in other VCSes. get_keywords_f = handlers.get("get_keywords") from_keywords_f = handlers.get("keywords") if get_keywords_f and from_keywords_f: try: keywords = get_keywords_f(versionfile_abs) ver = from_keywords_f(keywords, cfg.tag_prefix, verbose) if verbose: print("got version from expanded keyword %s" % ver) return ver except NotThisMethod: pass try: ver = versions_from_file(versionfile_abs) if verbose: print("got version from file %s %s" % (versionfile_abs, ver)) return ver except NotThisMethod: pass from_vcs_f = handlers.get("pieces_from_vcs") if from_vcs_f: try: pieces = from_vcs_f(cfg.tag_prefix, root, verbose) ver = render(pieces, cfg.style) if verbose: print("got version from VCS %s" % ver) return ver except NotThisMethod: pass try: if cfg.parentdir_prefix: ver = versions_from_parentdir(cfg.parentdir_prefix, root, verbose) if verbose: print("got version from parentdir %s" % ver) return ver except NotThisMethod: pass if verbose: print("unable to compute version") return {"version": "0+unknown", "full-revisionid": None, "dirty": None, "error": "unable to compute version", "date": None} def get_version() -> str: """Get the short version string for this project.""" return get_versions()["version"] def get_cmdclass(cmdclass: Optional[Dict[str, Any]] = None): """Get the custom setuptools subclasses used by Versioneer. If the package uses a different cmdclass (e.g. one from numpy), it should be provide as an argument. """ if "versioneer" in sys.modules: del sys.modules["versioneer"] # this fixes the "python setup.py develop" case (also 'install' and # 'easy_install .'), in which subdependencies of the main project are # built (using setup.py bdist_egg) in the same python process. Assume # a main project A and a dependency B, which use different versions # of Versioneer. A's setup.py imports A's Versioneer, leaving it in # sys.modules by the time B's setup.py is executed, causing B to run # with the wrong versioneer. Setuptools wraps the sub-dep builds in a # sandbox that restores sys.modules to it's pre-build state, so the # parent is protected against the child's "import versioneer". By # removing ourselves from sys.modules here, before the child build # happens, we protect the child from the parent's versioneer too. # Also see https://github.com/python-versioneer/python-versioneer/issues/52 cmds = {} if cmdclass is None else cmdclass.copy() # we add "version" to setuptools from setuptools import Command class cmd_version(Command): description = "report generated version string" user_options: List[Tuple[str, str, str]] = [] boolean_options: List[str] = [] def initialize_options(self) -> None: pass def finalize_options(self) -> None: pass def run(self) -> None: vers = get_versions(verbose=True) print("Version: %s" % vers["version"]) print(" full-revisionid: %s" % vers.get("full-revisionid")) print(" dirty: %s" % vers.get("dirty")) print(" date: %s" % vers.get("date")) if vers["error"]: print(" error: %s" % vers["error"]) cmds["version"] = cmd_version # we override "build_py" in setuptools # # most invocation pathways end up running build_py: # distutils/build -> build_py # distutils/install -> distutils/build ->.. # setuptools/bdist_wheel -> distutils/install ->.. # setuptools/bdist_egg -> distutils/install_lib -> build_py # setuptools/install -> bdist_egg ->.. # setuptools/develop -> ? # pip install: # copies source tree to a tempdir before running egg_info/etc # if .git isn't copied too, 'git describe' will fail # then does setup.py bdist_wheel, or sometimes setup.py install # setup.py egg_info -> ? # pip install -e . and setuptool/editable_wheel will invoke build_py # but the build_py command is not expected to copy any files. # we override different "build_py" commands for both environments if 'build_py' in cmds: _build_py: Any = cmds['build_py'] else: from setuptools.command.build_py import build_py as _build_py class cmd_build_py(_build_py): def run(self) -> None: root = get_root() cfg = get_config_from_root(root) versions = get_versions() _build_py.run(self) if getattr(self, "editable_mode", False): # During editable installs `.py` and data files are # not copied to build_lib return # now locate _version.py in the new build/ directory and replace # it with an updated value if cfg.versionfile_build: target_versionfile = os.path.join(self.build_lib, cfg.versionfile_build) print("UPDATING %s" % target_versionfile) write_to_version_file(target_versionfile, versions) cmds["build_py"] = cmd_build_py if 'build_ext' in cmds: _build_ext: Any = cmds['build_ext'] else: from setuptools.command.build_ext import build_ext as _build_ext class cmd_build_ext(_build_ext): def run(self) -> None: root = get_root() cfg = get_config_from_root(root) versions = get_versions() _build_ext.run(self) if self.inplace: # build_ext --inplace will only build extensions in # build/lib<..> dir with no _version.py to write to. # As in place builds will already have a _version.py # in the module dir, we do not need to write one. return # now locate _version.py in the new build/ directory and replace # it with an updated value if not cfg.versionfile_build: return target_versionfile = os.path.join(self.build_lib, cfg.versionfile_build) if not os.path.exists(target_versionfile): print(f"Warning: {target_versionfile} does not exist, skipping " "version update. This can happen if you are running build_ext " "without first running build_py.") return print("UPDATING %s" % target_versionfile) write_to_version_file(target_versionfile, versions) cmds["build_ext"] = cmd_build_ext if "cx_Freeze" in sys.modules: # cx_freeze enabled? from cx_Freeze.dist import build_exe as _build_exe # type: ignore # nczeczulin reports that py2exe won't like the pep440-style string # as FILEVERSION, but it can be used for PRODUCTVERSION, e.g. # setup(console=[{ # "version": versioneer.get_version().split("+", 1)[0], # FILEVERSION # "product_version": versioneer.get_version(), # ... class cmd_build_exe(_build_exe): def run(self) -> None: root = get_root() cfg = get_config_from_root(root) versions = get_versions() target_versionfile = cfg.versionfile_source print("UPDATING %s" % target_versionfile) write_to_version_file(target_versionfile, versions) _build_exe.run(self) os.unlink(target_versionfile) with open(cfg.versionfile_source, "w") as f: LONG = LONG_VERSION_PY[cfg.VCS] f.write(LONG % {"DOLLAR": "$", "STYLE": cfg.style, "TAG_PREFIX": cfg.tag_prefix, "PARENTDIR_PREFIX": cfg.parentdir_prefix, "VERSIONFILE_SOURCE": cfg.versionfile_source, }) cmds["build_exe"] = cmd_build_exe del cmds["build_py"] if 'py2exe' in sys.modules: # py2exe enabled? try: from py2exe.setuptools_buildexe import py2exe as _py2exe # type: ignore except ImportError: from py2exe.distutils_buildexe import py2exe as _py2exe # type: ignore class cmd_py2exe(_py2exe): def run(self) -> None: root = get_root() cfg = get_config_from_root(root) versions = get_versions() target_versionfile = cfg.versionfile_source print("UPDATING %s" % target_versionfile) write_to_version_file(target_versionfile, versions) _py2exe.run(self) os.unlink(target_versionfile) with open(cfg.versionfile_source, "w") as f: LONG = LONG_VERSION_PY[cfg.VCS] f.write(LONG % {"DOLLAR": "$", "STYLE": cfg.style, "TAG_PREFIX": cfg.tag_prefix, "PARENTDIR_PREFIX": cfg.parentdir_prefix, "VERSIONFILE_SOURCE": cfg.versionfile_source, }) cmds["py2exe"] = cmd_py2exe # sdist farms its file list building out to egg_info if 'egg_info' in cmds: _egg_info: Any = cmds['egg_info'] else: from setuptools.command.egg_info import egg_info as _egg_info class cmd_egg_info(_egg_info): def find_sources(self) -> None: # egg_info.find_sources builds the manifest list and writes it # in one shot super().find_sources() # Modify the filelist and normalize it root = get_root() cfg = get_config_from_root(root) self.filelist.append('versioneer.py') if cfg.versionfile_source: # There are rare cases where versionfile_source might not be # included by default, so we must be explicit self.filelist.append(cfg.versionfile_source) self.filelist.sort() self.filelist.remove_duplicates() # The write method is hidden in the manifest_maker instance that # generated the filelist and was thrown away # We will instead replicate their final normalization (to unicode, # and POSIX-style paths) from setuptools import unicode_utils normalized = [unicode_utils.filesys_decode(f).replace(os.sep, '/') for f in self.filelist.files] manifest_filename = os.path.join(self.egg_info, 'SOURCES.txt') with open(manifest_filename, 'w') as fobj: fobj.write('\n'.join(normalized)) cmds['egg_info'] = cmd_egg_info # we override different "sdist" commands for both environments if 'sdist' in cmds: _sdist: Any = cmds['sdist'] else: from setuptools.command.sdist import sdist as _sdist class cmd_sdist(_sdist): def run(self) -> None: versions = get_versions() self._versioneer_generated_versions = versions # unless we update this, the command will keep using the old # version self.distribution.metadata.version = versions["version"] return _sdist.run(self) def make_release_tree(self, base_dir: str, files: List[str]) -> None: root = get_root() cfg = get_config_from_root(root) _sdist.make_release_tree(self, base_dir, files) # now locate _version.py in the new base_dir directory # (remembering that it may be a hardlink) and replace it with an # updated value target_versionfile = os.path.join(base_dir, cfg.versionfile_source) print("UPDATING %s" % target_versionfile) write_to_version_file(target_versionfile, self._versioneer_generated_versions) cmds["sdist"] = cmd_sdist return cmds CONFIG_ERROR = """ setup.cfg is missing the necessary Versioneer configuration. You need a section like: [versioneer] VCS = git style = pep440 versionfile_source = src/myproject/_version.py versionfile_build = myproject/_version.py tag_prefix = parentdir_prefix = myproject- You will also need to edit your setup.py to use the results: import versioneer setup(version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), ...) Please read the docstring in ./versioneer.py for configuration instructions, edit setup.cfg, and re-run the installer or 'python versioneer.py setup'. """ SAMPLE_CONFIG = """ # See the docstring in versioneer.py for instructions. Note that you must # re-run 'versioneer.py setup' after changing this section, and commit the # resulting files. [versioneer] #VCS = git #style = pep440 #versionfile_source = #versionfile_build = #tag_prefix = #parentdir_prefix = """ OLD_SNIPPET = """ from ._version import get_versions __version__ = get_versions()['version'] del get_versions """ INIT_PY_SNIPPET = """ from . import {0} __version__ = {0}.get_versions()['version'] """ def do_setup() -> int: """Do main VCS-independent setup function for installing Versioneer.""" root = get_root() try: cfg = get_config_from_root(root) except (OSError, configparser.NoSectionError, configparser.NoOptionError) as e: if isinstance(e, (OSError, configparser.NoSectionError)): print("Adding sample versioneer config to setup.cfg", file=sys.stderr) with open(os.path.join(root, "setup.cfg"), "a") as f: f.write(SAMPLE_CONFIG) print(CONFIG_ERROR, file=sys.stderr) return 1 print(" creating %s" % cfg.versionfile_source) with open(cfg.versionfile_source, "w") as f: LONG = LONG_VERSION_PY[cfg.VCS] f.write(LONG % {"DOLLAR": "$", "STYLE": cfg.style, "TAG_PREFIX": cfg.tag_prefix, "PARENTDIR_PREFIX": cfg.parentdir_prefix, "VERSIONFILE_SOURCE": cfg.versionfile_source, }) ipy = os.path.join(os.path.dirname(cfg.versionfile_source), "__init__.py") maybe_ipy: Optional[str] = ipy if os.path.exists(ipy): try: with open(ipy, "r") as f: old = f.read() except OSError: old = "" module = os.path.splitext(os.path.basename(cfg.versionfile_source))[0] snippet = INIT_PY_SNIPPET.format(module) if OLD_SNIPPET in old: print(" replacing boilerplate in %s" % ipy) with open(ipy, "w") as f: f.write(old.replace(OLD_SNIPPET, snippet)) elif snippet not in old: print(" appending to %s" % ipy) with open(ipy, "a") as f: f.write(snippet) else: print(" %s unmodified" % ipy) else: print(" %s doesn't exist, ok" % ipy) maybe_ipy = None # Make VCS-specific changes. For git, this means creating/changing # .gitattributes to mark _version.py for export-subst keyword # substitution. do_vcs_install(cfg.versionfile_source, maybe_ipy) return 0 def scan_setup_py() -> int: """Validate the contents of setup.py against Versioneer's expectations.""" found = set() setters = False errors = 0 with open("setup.py", "r") as f: for line in f.readlines(): if "import versioneer" in line: found.add("import") if "versioneer.get_cmdclass()" in line: found.add("cmdclass") if "versioneer.get_version()" in line: found.add("get_version") if "versioneer.VCS" in line: setters = True if "versioneer.versionfile_source" in line: setters = True if len(found) != 3: print("") print("Your setup.py appears to be missing some important items") print("(but I might be wrong). Please make sure it has something") print("roughly like the following:") print("") print(" import versioneer") print(" setup( version=versioneer.get_version(),") print(" cmdclass=versioneer.get_cmdclass(), ...)") print("") errors += 1 if setters: print("You should remove lines like 'versioneer.VCS = ' and") print("'versioneer.versionfile_source = ' . This configuration") print("now lives in setup.cfg, and should be removed from setup.py") print("") errors += 1 return errors def setup_command() -> NoReturn: """Set up Versioneer and exit with appropriate error code.""" errors = do_setup() errors += scan_setup_py() sys.exit(1 if errors else 0) if __name__ == "__main__": cmd = sys.argv[1] if cmd == "setup": setup_command()