pax_global_header00006660000000000000000000000064133047374530014523gustar00rootroot0000000000000052 comment=d8d523019866d2f54e0e6ddee3fd65214e01f62a inspectrum-0.2.2/000077500000000000000000000000001330473745300137155ustar00rootroot00000000000000inspectrum-0.2.2/.gitignore000066400000000000000000000000271330473745300157040ustar00rootroot00000000000000# Build outputs build/ inspectrum-0.2.2/.travis.yml000066400000000000000000000025121330473745300160260ustar00rootroot00000000000000language: c cache: apt sudo: required dist: trusty os: - linux - osx compiler: - gcc - clang matrix: exclude: # /usr/bin/gcc on OS X is clang, so it's not meaningful to build against both. - os: osx compiler: gcc addons: apt: sources: # - ubuntu-sdk-team packages: - qtbase5-dev - qtdeclarative5-dev - libfftw3-dev before_install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi # cmake and pkg-config are already installed, liquid-dsp is handled by before_script. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew cask uninstall oclint; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install qt5 fftw; fi before_script: - pushd /tmp - mkdir liquid-install - git clone https://github.com/jgaeddert/liquid-dsp.git - cd liquid-dsp - ./bootstrap.sh - ./configure --prefix=/tmp/liquid-install/ - make - make install - popd script: - mkdir build - cd build - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export CMAKE_PREFIX_PATH=$(brew --prefix qt5)/lib/cmake; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then DYLIB_SUFFIX=dylib; else DYLIB_SUFFIX=so; fi - CFLAGS="-g -Wall -Wextra -Werror -Wno-zero-length-array" cmake -DLIQUID_LIBRARIES=/tmp/liquid-install/lib/libliquid.$DYLIB_SUFFIX -DLIQUID_INCLUDES=/tmp/liquid-install/include/ .. - make inspectrum-0.2.2/CMakeLists.txt000066400000000000000000000043101330473745300164530ustar00rootroot00000000000000cmake_minimum_required(VERSION 2.8.11) project(inspectrum CXX) enable_testing() set(CMAKE_AUTOMOC ON) set(CMAKE_INCLUDE_CURRENT_DIR ON) list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules) # For OSX - don't clear RPATH on install set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) if (MSVC) #force std::complex<> typedefs in liquiddsp add_definitions(-D_LIBCPP_COMPLEX) #enable math definitions in math.h add_definitions(-D_USE_MATH_DEFINES) #build a graphical application without the console option(BUILD_WIN32 "Build win32 app, false for console" TRUE) if (BUILD_WIN32) set(EXE_ARGS WIN32) set(CMAKE_EXE_LINKER_FLAGS "/entry:mainCRTStartup ${CMAKE_EXE_LINKER_FLAGS}") endif (BUILD_WIN32) endif (MSVC) if (NOT CMAKE_CXX_FLAGS) set(CMAKE_CXX_FLAGS "-O2") endif (NOT CMAKE_CXX_FLAGS) # This only works in cmake >3.1 #set_property(TARGET inspectrum PROPERTY CXX_STANDARD 11) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11") list(APPEND inspectrum_sources abstractsamplesource.cpp amplitudedemod.cpp cursor.cpp cursors.cpp main.cpp fft.cpp frequencydemod.cpp mainwindow.cpp inputsource.cpp phasedemod.cpp plot.cpp plots.cpp plotview.cpp samplebuffer.cpp samplesource.cpp spectrogramcontrols.cpp spectrogramplot.cpp threshold.cpp traceplot.cpp tuner.cpp tunertransform.cpp util.cpp ) find_package(Qt5Widgets REQUIRED) find_package(Qt5Concurrent REQUIRED) find_package(FFTW REQUIRED) find_package(Liquid REQUIRED) include_directories( ${FFTW_INCLUDES} ${LIQUID_INCLUDES} ) add_executable(inspectrum ${EXE_ARGS} ${inspectrum_sources}) target_link_libraries(inspectrum Qt5::Core Qt5::Widgets Qt5::Concurrent ${FFTW_LIBRARIES} ${LIQUID_LIBRARIES} ) set(INSTALL_DEFAULT_BINDIR "bin" CACHE STRING "Appended to CMAKE_INSTALL_PREFIX") install(TARGETS inspectrum RUNTIME DESTINATION ${INSTALL_DEFAULT_BINDIR}) # Create uninstall target configure_file( ${PROJECT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake @ONLY) add_custom_target(uninstall ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake ) inspectrum-0.2.2/LICENSE000066400000000000000000001045051330473745300147270ustar00rootroot00000000000000 GNU 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. {one line to give the program's name and a brief idea of what it does.} Copyright (C) {year} {name of author} 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: {project} Copyright (C) {year} {fullname} 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 . inspectrum-0.2.2/README.md000066400000000000000000000022111330473745300151700ustar00rootroot00000000000000# inspectrum inspectrum is a tool for analysing captured signals, primarily from software-defined radio receivers. ![inspectrum screenshot](/screenshot.jpg) ## Try it ### Prerequisites * cmake * fftw 3.x * [liquid-dsp](https://github.com/jgaeddert/liquid-dsp) >= v1.3.0 * pkg-config * qt5 ### Build instructions Build instructions can be found here: https://github.com/miek/inspectrum/wiki/Build ### Run ./inspectrum [filename] ## Input inspectrum supports the following file types: * `*.cf32`, `*.cfile` - Complex 32-bit floating point samples (GNURadio, osmocom_fft) * `*.cs16` - Complex 16-bit signed integer samples (BladeRF) * `*.cs8` - Complex 8-bit signed integer samples (HackRF) * `*.cu8` - Complex 8-bit unsigned integer samples (RTL-SDR) If an unknown file extension is loaded, inspectrum will default to `*.cf32`. ## Features * Large (100GB+) file support * Spectrogram with zoom/pan * Plots of amplitude, frequency, phase and IQ samples * Cursors for measuring period, symbol rate and extracting symbols * Export of selected time period, filtered samples and demodulated data ## Contact * #inspectrum on freenode IRC inspectrum-0.2.2/abstractsamplesource.cpp000066400000000000000000000022461330473745300206530ustar00rootroot00000000000000/* * Copyright (C) 2017, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "abstractsamplesource.h" void AbstractSampleSource::subscribe(Subscriber *subscriber) { subscribers.insert(subscriber); } void AbstractSampleSource::invalidate() { for (auto subscriber : subscribers) { subscriber->invalidateEvent(); } } int AbstractSampleSource::subscriberCount() { return subscribers.size(); } void AbstractSampleSource::unsubscribe(Subscriber *subscriber) { subscribers.erase(subscriber); }inspectrum-0.2.2/abstractsamplesource.h000066400000000000000000000022711330473745300203160ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include #include "subscriber.h" class AbstractSampleSource { public: virtual ~AbstractSampleSource() {}; virtual std::type_index sampleType() = 0; void subscribe(Subscriber *subscriber); int subscriberCount(); void unsubscribe(Subscriber *subscriber); protected: virtual void invalidate(); private: std::set subscribers; }; inspectrum-0.2.2/amplitudedemod.cpp000066400000000000000000000022761330473745300174250ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "amplitudedemod.h" AmplitudeDemod::AmplitudeDemod(std::shared_ptr>> src) : SampleBuffer(src) { } void AmplitudeDemod::work(void *input, void *output, int count, size_t sampleid) { auto in = static_cast*>(input); auto out = static_cast(output); std::transform(in, in + count, out, [](std::complex s) { return std::norm(s) * 2.0f - 1.0f; }); } inspectrum-0.2.2/amplitudedemod.h000066400000000000000000000020211330473745300170560ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include "samplebuffer.h" class AmplitudeDemod : public SampleBuffer, float> { public: AmplitudeDemod(std::shared_ptr>> src); void work(void *input, void *output, int count, size_t sampleid) override; }; inspectrum-0.2.2/cmake/000077500000000000000000000000001330473745300147755ustar00rootroot00000000000000inspectrum-0.2.2/cmake/Modules/000077500000000000000000000000001330473745300164055ustar00rootroot00000000000000inspectrum-0.2.2/cmake/Modules/FindFFTW.cmake000066400000000000000000000015071330473745300207610ustar00rootroot00000000000000# - Find FFTW # Find the native FFTW includes and library # # FFTW_INCLUDES - where to find fftw3.h # FFTW_LIBRARIES - List of libraries when using FFTW. # FFTW_FOUND - True if FFTW found. if (FFTW_INCLUDES) # Already in cache, be silent set (FFTW_FIND_QUIETLY TRUE) endif (FFTW_INCLUDES) find_package(PkgConfig) pkg_check_modules(PC_FFTW QUIET fftw3f) find_path (FFTW_INCLUDES fftw3.h HINTS ${PC_FFTW_INCLUDEDIR} ${PC_FFTW_INCLUDE_DIRS}) find_library (FFTW_LIBRARIES NAMES fftw3f HINTS ${PC_FFTW_LIBDIR} ${PC_FFTW_LIBRARY_DIRS}) # handle the QUIETLY and REQUIRED arguments and set FFTW_FOUND to TRUE if # all listed variables are TRUE include (FindPackageHandleStandardArgs) find_package_handle_standard_args (FFTW DEFAULT_MSG FFTW_LIBRARIES FFTW_INCLUDES) mark_as_advanced (FFTW_LIBRARIES FFTW_INCLUDES) inspectrum-0.2.2/cmake/Modules/FindLiquid.cmake000066400000000000000000000013071330473745300214400ustar00rootroot00000000000000# - Find LIQUID # Find the native LIQUID includes and library # # LIQUID_INCLUDES - where to find LIQUID.h # LIQUID_LIBRARIES - List of libraries when using LIQUID. # LIQUID_FOUND - True if LIQUID found. if (LIQUID_INCLUDES) # Already in cache, be silent set (LIQUID_FIND_QUIETLY TRUE) endif (LIQUID_INCLUDES) find_path (LIQUID_INCLUDES liquid/liquid.h) find_library (LIQUID_LIBRARIES NAMES liquid) # handle the QUIETLY and REQUIRED arguments and set LIQUID_FOUND to TRUE if # all listed variables are TRUE include (FindPackageHandleStandardArgs) find_package_handle_standard_args (LIQUID DEFAULT_MSG LIQUID_LIBRARIES LIQUID_INCLUDES) #mark_as_advanced (LIQUID_LIBRARIES LIQUID_INCLUDES) inspectrum-0.2.2/cmake/cmake_uninstall.cmake.in000066400000000000000000000025321330473745300215570ustar00rootroot00000000000000# http://www.vtk.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F IF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") MESSAGE(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"") ENDIF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") FILE(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files) STRING(REGEX REPLACE "\n" ";" files "${files}") FOREACH(file ${files}) MESSAGE(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"") IF(EXISTS "$ENV{DESTDIR}${file}") EXEC_PROGRAM( "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\"" OUTPUT_VARIABLE rm_out RETURN_VALUE rm_retval ) IF(NOT "${rm_retval}" STREQUAL 0) MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"") ENDIF(NOT "${rm_retval}" STREQUAL 0) ELSEIF(IS_SYMLINK "$ENV{DESTDIR}${file}") EXEC_PROGRAM( "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\"" OUTPUT_VARIABLE rm_out RETURN_VALUE rm_retval ) IF(NOT "${rm_retval}" STREQUAL 0) MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"") ENDIF(NOT "${rm_retval}" STREQUAL 0) ELSE(EXISTS "$ENV{DESTDIR}${file}") MESSAGE(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.") ENDIF(EXISTS "$ENV{DESTDIR}${file}") ENDFOREACH(file) inspectrum-0.2.2/cursor.cpp000066400000000000000000000052371330473745300157450ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include #include "cursor.h" Cursor::Cursor(Qt::Orientation orientation, Qt::CursorShape mouseCursorShape, QObject * parent) : QObject::QObject(parent), orientation(orientation), cursorShape(mouseCursorShape) { } int Cursor::fromPoint(QPoint point) { return (orientation == Qt::Vertical) ? point.x() : point.y(); } bool Cursor::pointOverCursor(QPoint point) { const int margin = 5; range_t range = {cursorPosition - margin, cursorPosition + margin}; return range.contains(fromPoint(point)); } bool Cursor::mouseEvent(QEvent::Type type, QMouseEvent event) { // If the mouse pointer moves over a cursor, display a resize pointer if (pointOverCursor(event.pos()) && type != QEvent::Leave) { if (!cursorOverrided) { cursorOverrided = true; QApplication::setOverrideCursor(QCursor(cursorShape)); } // Restore pointer if it moves off the cursor, or leaves the widget } else if (cursorOverrided) { cursorOverrided = false; QApplication::restoreOverrideCursor(); } // Start dragging on left mouse button press, if over a cursor if (type == QEvent::MouseButtonPress) { if (event.button() == Qt::LeftButton) { if (pointOverCursor(event.pos())) { dragging = true; return true; } } // Update current cursor position if we're dragging } else if (type == QEvent::MouseMove) { if (dragging) { cursorPosition = fromPoint(event.pos()); emit posChanged(); } // Stop dragging on left mouse button release } else if (type == QEvent::MouseButtonRelease) { if (event.button() == Qt::LeftButton && dragging) { dragging = false; return true; } } return false; } int Cursor::pos() { return cursorPosition; } void Cursor::setPos(int newPos) { cursorPosition = newPos; } inspectrum-0.2.2/cursor.h000066400000000000000000000025431330473745300154070ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include "util.h" class Cursor : public QObject { Q_OBJECT public: Cursor(Qt::Orientation orientation, Qt::CursorShape mouseCursorShape, QObject * parent); int pos(); void setPos(int newPos); bool mouseEvent(QEvent::Type type, QMouseEvent event); signals: void posChanged(); private: int fromPoint(QPoint point); bool pointOverCursor(QPoint point); Qt::Orientation orientation; Qt::CursorShape cursorShape; bool dragging = false; bool cursorOverrided = false; int cursorPosition = 0; }; inspectrum-0.2.2/cursors.cpp000066400000000000000000000106351330473745300161260ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include #include #include "cursors.h" Cursors::Cursors(QObject * parent) : QObject::QObject(parent) { minCursor = new Cursor(Qt::Vertical, Qt::SizeHorCursor, this); maxCursor = new Cursor(Qt::Vertical, Qt::SizeHorCursor, this); connect(minCursor, &Cursor::posChanged, this, &Cursors::cursorMoved); connect(maxCursor, &Cursor::posChanged, this, &Cursors::cursorMoved); } void Cursors::cursorMoved() { // Swap cursors if one has been dragged past the other if (minCursor->pos() > maxCursor->pos()) { std::swap(minCursor, maxCursor); } emit cursorsMoved(); } bool Cursors::pointWithinDragRegion(QPoint point) { int margin = 10; range_t range = {minCursor->pos()+margin, maxCursor->pos()-margin}; return range.contains(point.x()); } bool Cursors::mouseEvent(QEvent::Type type, QMouseEvent event) { if (minCursor->mouseEvent(type, event)) return true; if (maxCursor->mouseEvent(type, event)) return true; // If the mouse pointer is between the cursors, display a resize pointer if (pointWithinDragRegion(event.pos()) && type != QEvent::Leave) { if (!cursorOverride) { cursorOverride = true; QApplication::setOverrideCursor(QCursor(Qt::SizeAllCursor)); } // Restore pointer otherwise } else { if (cursorOverride) { cursorOverride = false; QApplication::restoreOverrideCursor(); } } // Start dragging on left mouse button press, if between the cursors if (type == QEvent::MouseButtonPress) { if (event.button() == Qt::LeftButton) { if (pointWithinDragRegion(event.pos())) { dragging = true; dragPos = event.pos(); return true; } } // Update both cursor positons if we're dragging } else if (type == QEvent::MouseMove) { if (dragging) { int dx = event.pos().x() - dragPos.x(); minCursor->setPos(minCursor->pos() + dx); maxCursor->setPos(maxCursor->pos() + dx); dragPos = event.pos(); emit cursorsMoved(); } // Stop dragging on left mouse button release } else if (type == QEvent::MouseButtonRelease) { if (event.button() == Qt::LeftButton && dragging) { dragging = false; return true; } } return false; } void Cursors::paintFront(QPainter &painter, QRect &rect, range_t sampleRange) { painter.save(); QRect cursorRect(minCursor->pos(), rect.top(), maxCursor->pos() - minCursor->pos(), rect.height()); // Draw translucent white fill for highlight painter.fillRect( cursorRect, QBrush(QColor(255, 255, 255, 50)) ); // Draw vertical edges for individual segments painter.setPen(QPen(Qt::gray, 1, Qt::DashLine)); for (int i = 1; i < segmentCount; i++) { int pos = minCursor->pos() + (i * cursorRect.width() / segmentCount); painter.drawLine(pos, rect.top(), pos, rect.bottom()); } // Draw vertical edges painter.setPen(QPen(Qt::white, 1, Qt::SolidLine)); painter.drawLine(minCursor->pos(), rect.top(), minCursor->pos(), rect.bottom()); painter.drawLine(maxCursor->pos(), rect.top(), maxCursor->pos(), rect.bottom()); painter.restore(); } int Cursors::segments() { return segmentCount; } range_t Cursors::selection() { return {minCursor->pos(), maxCursor->pos()}; } void Cursors::setSegments(int segments) { segmentCount = std::max(segments, 1); } void Cursors::setSelection(range_t selection) { minCursor->setPos(selection.minimum); maxCursor->setPos(selection.maximum); } inspectrum-0.2.2/cursors.h000066400000000000000000000032221330473745300155650ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include #include "cursor.h" #include "util.h" class Cursors : public QObject { Q_OBJECT public: Cursors(QObject * parent); int segments(); bool mouseEvent(QEvent::Type type, QMouseEvent event); void paintFront(QPainter &painter, QRect &rect, range_t sampleRange); range_t selection(); void setSegments(int segments); void setSelection(range_t selection); public slots: void cursorMoved(); signals: void cursorsMoved(); private: bool pointWithinDragRegion(QPoint point); Cursor *minCursor; Cursor *maxCursor; int segmentCount = 1; QPoint dragPos; // keep track of dragging distance bool cursorOverride = false; // used to record if cursor is overridden bool dragging = false; // record if mouse is dragging }; inspectrum-0.2.2/fft.cpp000066400000000000000000000026161330473745300152050ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "fft.h" #include "string.h" FFT::FFT(int size) { fftSize = size; fftwIn = (fftwf_complex*)fftwf_malloc(sizeof(fftwf_complex) * fftSize); fftwOut = (fftwf_complex*)fftwf_malloc(sizeof(fftwf_complex) * fftSize); fftwPlan = fftwf_plan_dft_1d(fftSize, fftwIn, fftwOut, FFTW_FORWARD, FFTW_MEASURE); } FFT::~FFT() { if (fftwPlan) fftwf_destroy_plan(fftwPlan); if (fftwIn) fftwf_free(fftwIn); if (fftwOut) fftwf_free(fftwOut); } void FFT::process(void *dest, void *source) { memcpy(fftwIn, source, fftSize * sizeof(fftwf_complex)); fftwf_execute(fftwPlan); memcpy(dest, fftwOut, fftSize * sizeof(fftwf_complex)); } inspectrum-0.2.2/fft.h000066400000000000000000000020701330473745300146440ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include class FFT { public: FFT(int size); ~FFT(); void process(void *dest, void *source); int getSize() { return fftSize; } private: int fftSize; fftwf_complex *fftwIn = nullptr; fftwf_complex *fftwOut = nullptr; fftwf_plan fftwPlan = nullptr; }; inspectrum-0.2.2/frequencydemod.cpp000066400000000000000000000024201330473745300174310ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "frequencydemod.h" #include #include "util.h" FrequencyDemod::FrequencyDemod(std::shared_ptr>> src) : SampleBuffer(src) { } void FrequencyDemod::work(void *input, void *output, int count, size_t sampleid) { auto in = static_cast*>(input); auto out = static_cast(output); freqdem fdem = freqdem_create(0.05f); for (int i = 0; i < count; i++) { freqdem_demodulate(fdem, in[i], &out[i]); } freqdem_destroy(fdem); } inspectrum-0.2.2/frequencydemod.h000066400000000000000000000020211330473745300170730ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include "samplebuffer.h" class FrequencyDemod : public SampleBuffer, float> { public: FrequencyDemod(std::shared_ptr>> src); void work(void *input, void *output, int count, size_t sampleid) override; }; inspectrum-0.2.2/inputsource.cpp000066400000000000000000000126171330473745300170100ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * Copyright (C) 2015, Jared Boone * * This file is part of inspectrum. * * 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 . */ #include "inputsource.h" #include #include #include #include #include #include class ComplexF32SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(std::complex); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast*>(src); std::copy(&s[start], &s[start + length], dest); } }; class ComplexS16SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(std::complex); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast*>(src); std::transform(&s[start], &s[start + length], dest, [](const std::complex& v) -> std::complex { const float k = 1.0f / 32768.0f; return { v.real() * k, v.imag() * k }; } ); } }; class ComplexS8SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(std::complex); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast*>(src); std::transform(&s[start], &s[start + length], dest, [](const std::complex& v) -> std::complex { const float k = 1.0f / 128.0f; return { v.real() * k, v.imag() * k }; } ); } }; class ComplexU8SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(std::complex); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast*>(src); std::transform(&s[start], &s[start + length], dest, [](const std::complex& v) -> std::complex { const float k = 1.0f / 128.0f; return { (v.real() - 127.4f) * k, (v.imag() - 127.4f) * k }; } ); } }; InputSource::InputSource() { } InputSource::~InputSource() { cleanup(); } void InputSource::cleanup() { if (mmapData != nullptr) { inputFile->unmap(mmapData); mmapData = nullptr; } if (inputFile != nullptr) { delete inputFile; inputFile = nullptr; } } void InputSource::openFile(const char *filename) { QFileInfo fileInfo(filename); const auto suffix = fileInfo.suffix().toLower(); if ((suffix == "cfile") || (suffix == "cf32") || (suffix == "fc32")) { sampleAdapter = std::unique_ptr(new ComplexF32SampleAdapter()); } else if ((suffix == "cs16") || (suffix == "sc16") || (suffix == "c16")) { sampleAdapter = std::unique_ptr(new ComplexS16SampleAdapter()); } else if ((suffix == "cs8") || (suffix == "sc8") || (suffix == "c8")) { sampleAdapter = std::unique_ptr(new ComplexS8SampleAdapter()); } else if ((suffix == "cu8") || (suffix == "uc8")) { sampleAdapter = std::unique_ptr(new ComplexU8SampleAdapter()); } else { sampleAdapter = std::unique_ptr(new ComplexF32SampleAdapter()); } std::unique_ptr file(new QFile(filename)); if (!file->open(QFile::ReadOnly)) { throw std::runtime_error(file->errorString().toStdString()); } auto size = file->size(); sampleCount = size / sampleAdapter->sampleSize(); auto data = file->map(0, size); if (data == nullptr) throw std::runtime_error("Error mmapping file"); cleanup(); inputFile = file.release(); mmapData = data; invalidate(); } void InputSource::setSampleRate(size_t rate) { sampleRate = rate; invalidate(); } size_t InputSource::rate() { return sampleRate; } std::unique_ptr[]> InputSource::getSamples(size_t start, size_t length) { if (inputFile == nullptr) return nullptr; if (mmapData == nullptr) return nullptr; if(start < 0 || length < 0) return nullptr; if (start + length > sampleCount) return nullptr; std::unique_ptr[]> dest(new std::complex[length]); sampleAdapter->copyRange(mmapData, start, length, dest.get()); return dest; } inspectrum-0.2.2/inputsource.h000066400000000000000000000032331330473745300164470ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * Copyright (C) 2015, Jared Boone * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include "samplesource.h" class SampleAdapter { public: virtual size_t sampleSize() = 0; virtual void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) = 0; }; class InputSource : public SampleSource> { private: QFile *inputFile = nullptr; size_t sampleCount = 0; size_t sampleRate = 0; uchar *mmapData = nullptr; std::unique_ptr sampleAdapter; public: InputSource(); ~InputSource(); void cleanup(); void openFile(const char *filename); std::unique_ptr[]> getSamples(size_t start, size_t length); size_t count() { return sampleCount; }; void setSampleRate(size_t rate); size_t rate(); float relativeBandwidth() { return 1; } }; inspectrum-0.2.2/main.cpp000066400000000000000000000040301330473745300153420ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include #include #include "mainwindow.h" int main(int argc, char *argv[]) { QApplication a(argc, argv); a.setApplicationName("inspectrum"); a.setOrganizationName("inspectrum"); MainWindow mainWin; QCommandLineParser parser; parser.setApplicationDescription("spectrum viewer"); parser.addHelpOption(); parser.addPositionalArgument("file", QCoreApplication::translate("main", "File to view.")); // Add options QCommandLineOption rateOption(QStringList() << "r" << "rate", QCoreApplication::translate("main", "Set sample rate."), QCoreApplication::translate("main", "Hz")); parser.addOption(rateOption); // Process the actual command line parser.process(a); const QStringList args = parser.positionalArguments(); if (args.size()>=1) mainWin.openFile(args.at(0)); if (parser.isSet(rateOption)) { bool ok; // Use toDouble just for scientific notation support int rate = parser.value(rateOption).toDouble(&ok); if(!ok) { fputs("ERROR: could not parse rate\n", stderr); return 1; } mainWin.setSampleRate(rate); } mainWin.show(); return a.exec(); } inspectrum-0.2.2/mainwindow.cpp000066400000000000000000000076311330473745300166040ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include #include #include #include #include #include "mainwindow.h" #include "util.h" MainWindow::MainWindow() { setWindowTitle(tr("inspectrum")); QPixmapCache::setCacheLimit(40960); dock = new SpectrogramControls(tr("Controls"), this); dock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); addDockWidget(Qt::LeftDockWidgetArea, dock); input = new InputSource(); plots = new PlotView(input); setCentralWidget(plots); // Connect dock inputs connect(dock, SIGNAL(openFile(QString)), this, SLOT(openFile(QString))); connect(dock->sampleRate, SIGNAL(textChanged(QString)), this, SLOT(setSampleRate(QString))); connect(dock, SIGNAL(fftOrZoomChanged(int, int)), plots, SLOT(setFFTAndZoom(int, int))); connect(dock->powerMaxSlider, SIGNAL(valueChanged(int)), plots, SLOT(setPowerMax(int))); connect(dock->powerMinSlider, SIGNAL(valueChanged(int)), plots, SLOT(setPowerMin(int))); connect(dock->cursorsCheckBox, &QCheckBox::stateChanged, plots, &PlotView::enableCursors); connect(dock->scalesCheckBox, &QCheckBox::stateChanged, plots, &PlotView::enableScales); connect(dock->cursorSymbolsSpinBox, static_cast(&QSpinBox::valueChanged), plots, &PlotView::setCursorSegments); // Connect dock outputs connect(plots, SIGNAL(timeSelectionChanged(float)), dock, SLOT(timeSelectionChanged(float))); connect(plots, SIGNAL(zoomIn()), dock, SLOT(zoomIn())); connect(plots, SIGNAL(zoomOut()), dock, SLOT(zoomOut())); // Set defaults after making connections so everything is in sync dock->setDefaults(); } void MainWindow::openFile(QString fileName) { QString title="%1: %2"; this->setWindowTitle(title.arg(QApplication::applicationName(),fileName.section('/',-1,-1))); // Try to parse osmocom_fft filenames and extract the sample rate and center frequency. // Example file name: "name-f2.411200e+09-s5.000000e+06-t20160807180210.cfile" QRegExp rx("(.*)-f(.*)-s(.*)-.*\\.cfile"); QString basename = fileName.section('/',-1,-1); if (rx.exactMatch(basename)) { QString centerfreq = rx.cap(2); QString samplerate = rx.cap(3); std::stringstream ss(samplerate.toUtf8().constData()); // Needs to be a double as the number is in scientific format double rate; ss >> rate; if (!ss.fail()) { setSampleRate(rate); } } try { input->openFile(fileName.toUtf8().constData()); } catch (const std::exception &ex) { QMessageBox msgBox(QMessageBox::Critical, "Inspectrum openFile error", QString("%1: %2").arg(fileName).arg(ex.what())); msgBox.exec(); } } void MainWindow::setSampleRate(QString rate) { int sampleRate = rate.toInt(); input->setSampleRate(sampleRate); plots->setSampleRate(sampleRate); // Save the sample rate in settings as we're likely to be opening the same file across multiple runs QSettings settings; settings.setValue("SampleRate", sampleRate); } void MainWindow::setSampleRate(int rate) { dock->sampleRate->setText(QString::number(rate)); } inspectrum-0.2.2/mainwindow.h000066400000000000000000000022671330473745300162510ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include "spectrogramcontrols.h" #include "plotview.h" class MainWindow : public QMainWindow { Q_OBJECT public: MainWindow(); void changeSampleRate(int rate); public slots: void openFile(QString fileName); void setSampleRate(QString rate); void setSampleRate(int rate); private: SpectrogramControls *dock; PlotView *plots; InputSource *input; }; inspectrum-0.2.2/phasedemod.cpp000066400000000000000000000022131330473745300165300ustar00rootroot00000000000000/* * Copyright (C) 2017, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "phasedemod.h" PhaseDemod::PhaseDemod(std::shared_ptr>> src) : SampleBuffer(src) { } void PhaseDemod::work(void *input, void *output, int count, size_t sampleid) { auto in = static_cast*>(input); auto out = static_cast(output); for (int i = 0; i < count; i++) { out[i] = std::arg(in[i]) * (1 / M_PI); } } inspectrum-0.2.2/phasedemod.h000066400000000000000000000020111330473745300161710ustar00rootroot00000000000000/* * Copyright (C) 2017, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include "samplebuffer.h" class PhaseDemod : public SampleBuffer, float> { public: PhaseDemod(std::shared_ptr>> src); void work(void *input, void *output, int count, size_t sampleid) override; }; inspectrum-0.2.2/plot.cpp000066400000000000000000000030761330473745300154050ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "plot.h" Plot::Plot(std::shared_ptr src) : sampleSource(src) { sampleSource->subscribe(this); } Plot::~Plot() { sampleSource->unsubscribe(this); } void Plot::invalidateEvent() { } bool Plot::mouseEvent(QEvent::Type type, QMouseEvent event) { return false; } std::shared_ptr Plot::output() { return sampleSource; } void Plot::paintBack(QPainter &painter, QRect &rect, range_t sampleRange) { painter.save(); QPen pen(Qt::white, 1, Qt::DashLine); painter.setPen(pen); painter.drawLine(rect.left(), rect.center().y(), rect.right(), rect.center().y()); painter.restore(); } void Plot::paintMid(QPainter &painter, QRect &rect, range_t sampleRange) { } void Plot::paintFront(QPainter &painter, QRect &rect, range_t sampleRange) { } inspectrum-0.2.2/plot.h000066400000000000000000000032741330473745300150520ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include "abstractsamplesource.h" #include "util.h" class Plot : public QObject, public Subscriber { Q_OBJECT public: Plot(std::shared_ptr src); ~Plot(); void invalidateEvent() override; virtual bool mouseEvent(QEvent::Type type, QMouseEvent event); virtual std::shared_ptr output(); virtual void paintBack(QPainter &painter, QRect &rect, range_t sampleRange); virtual void paintMid(QPainter &painter, QRect &rect, range_t sampleRange); virtual void paintFront(QPainter &painter, QRect &rect, range_t sampleRange); int height() const { return _height; }; signals: void repaint(); protected: void setHeight(int height) { _height = height; }; std::shared_ptr sampleSource; private: // TODO: don't hardcode this int _height = 200; }; inspectrum-0.2.2/plots.cpp000066400000000000000000000042651330473745300155710ustar00rootroot00000000000000/* * Copyright (C) 2016-2017, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "amplitudedemod.h" #include "frequencydemod.h" #include "phasedemod.h" #include "threshold.h" #include "traceplot.h" #include "plots.h" std::multimap Plots::plots; Plots::_init Plots::_initializer; Plot* Plots::samplePlot(std::shared_ptr source) { return new TracePlot(source); } Plot* Plots::amplitudePlot(std::shared_ptr source) { typedef SampleSource> Source; std::shared_ptr concrete = std::dynamic_pointer_cast(source); return new TracePlot( std::make_shared(concrete) ); } Plot* Plots::frequencyPlot(std::shared_ptr source) { typedef SampleSource> Source; std::shared_ptr concrete = std::dynamic_pointer_cast(source); return new TracePlot( std::make_shared( concrete ) ); } Plot* Plots::phasePlot(std::shared_ptr source) { typedef SampleSource> Source; std::shared_ptr concrete = std::dynamic_pointer_cast(source); return new TracePlot(std::make_shared(concrete)); } Plot* Plots::thresholdPlot(std::shared_ptr source) { typedef SampleSource Source; std::shared_ptr concrete= std::dynamic_pointer_cast(source); return new TracePlot( std::make_shared( concrete ) ); } inspectrum-0.2.2/plots.h000066400000000000000000000037231330473745300152340ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include "plot.h" #include "samplesource.h" struct PlotInfo { const char *name; std::function)> creator; }; class Plots { public: static std::multimap plots; static Plot* samplePlot(std::shared_ptr source); static Plot* amplitudePlot(std::shared_ptr source); static Plot* frequencyPlot(std::shared_ptr source); static Plot* phasePlot(std::shared_ptr source); static Plot* thresholdPlot(std::shared_ptr source); static class _init { public: _init() { plots.emplace(typeid(std::complex), PlotInfo{"sample plot", samplePlot}); plots.emplace(typeid(std::complex), PlotInfo{"amplitude plot", amplitudePlot}); plots.emplace(typeid(std::complex), PlotInfo{"frequency plot", frequencyPlot}); plots.emplace(typeid(std::complex), PlotInfo{"phase plot", phasePlot}); plots.emplace(typeid(float), PlotInfo{"threshold plot", thresholdPlot}); }; } _initializer; };inspectrum-0.2.2/plotview.cpp000066400000000000000000000430561330473745300163020ustar00rootroot00000000000000/* * Copyright (C) 2015-2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "plotview.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "plots.h" PlotView::PlotView(InputSource *input) : cursors(this), viewRange({0, 0}) { mainSampleSource = input; setDragMode(QGraphicsView::ScrollHandDrag); setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOn); setMouseTracking(true); enableCursors(false); connect(&cursors, SIGNAL(cursorsMoved()), this, SLOT(cursorsMoved())); spectrogramPlot = new SpectrogramPlot(std::shared_ptr>>(mainSampleSource)); auto tunerOutput = std::dynamic_pointer_cast>>(spectrogramPlot->output()); enableScales(true); addPlot(spectrogramPlot); mainSampleSource->subscribe(this); } void PlotView::addPlot(Plot *plot) { plots.emplace_back(plot); connect(plot, &Plot::repaint, this, &PlotView::repaint); } void PlotView::contextMenuEvent(QContextMenuEvent * event) { QMenu menu; // Get selected plot Plot *selectedPlot = nullptr; auto it = plots.begin(); int y = -verticalScrollBar()->value(); for (; it != plots.end(); it++) { auto&& plot = *it; if (range_t{y, y + plot->height()}.contains(event->pos().y())) { selectedPlot = plot.get(); break; } y += plot->height(); } if (selectedPlot == nullptr) return; // Add actions to add derived plots // that are compatible with selectedPlot's output QMenu *plotsMenu = menu.addMenu("Add derived plot"); auto src = selectedPlot->output(); auto compatiblePlots = as_range(Plots::plots.equal_range(src->sampleType())); for (auto p : compatiblePlots) { auto plotInfo = p.second; auto action = new QAction(QString("Add %1").arg(plotInfo.name), plotsMenu); auto plotCreator = plotInfo.creator; connect( action, &QAction::triggered, this, [=]() { addPlot(plotCreator(src)); } ); plotsMenu->addAction(action); } // Add submenu for extracting symbols QMenu *extractMenu = menu.addMenu("Extract symbols"); // Add action to extract symbols from selected plot to stdout auto extract = new QAction("To stdout", extractMenu); connect( extract, &QAction::triggered, this, [=]() { extractSymbols(src, false); } ); extract->setEnabled(cursorsEnabled && (src->sampleType() == typeid(float))); extractMenu->addAction(extract); // Add action to extract symbols from selected plot to clipboard auto extractClipboard = new QAction("Copy to clipboard", extractMenu); connect( extractClipboard, &QAction::triggered, this, [=]() { extractSymbols(src, true); } ); extractClipboard->setEnabled(cursorsEnabled && (src->sampleType() == typeid(float))); extractMenu->addAction(extractClipboard); // Add action to export the selected samples into a file auto save = new QAction("Export samples to file...", &menu); connect( save, &QAction::triggered, this, [=]() { if (selectedPlot == spectrogramPlot) { exportSamples(spectrogramPlot->tunerEnabled() ? spectrogramPlot->output() : spectrogramPlot->input()); } else { exportSamples(src); } } ); menu.addAction(save); // Add action to remove the selected plot auto rem = new QAction("Remove plot", &menu); connect( rem, &QAction::triggered, this, [=]() { plots.erase(it); } ); // Don't allow remove the first plot (the spectrogram) rem->setEnabled(it != plots.begin()); menu.addAction(rem); updateViewRange(false); if(menu.exec(event->globalPos())) updateView(false); } void PlotView::cursorsMoved() { selectedSamples = { columnToSample(horizontalScrollBar()->value() + cursors.selection().minimum), columnToSample(horizontalScrollBar()->value() + cursors.selection().maximum) }; emitTimeSelection(); viewport()->update(); } void PlotView::emitTimeSelection() { size_t sampleCount = selectedSamples.length(); float selectionTime = sampleCount / (float)mainSampleSource->rate(); emit timeSelectionChanged(selectionTime); } void PlotView::enableCursors(bool enabled) { cursorsEnabled = enabled; if (enabled) { int margin = viewport()->rect().width() / 3; cursors.setSelection({viewport()->rect().left() + margin, viewport()->rect().right() - margin}); cursorsMoved(); } viewport()->update(); } bool PlotView::viewportEvent(QEvent *event) { // Handle wheel events for zooming (before the parent's handler to stop normal scrolling) if (event->type() == QEvent::Wheel) { QWheelEvent *wheelEvent = (QWheelEvent*)event; if (QApplication::keyboardModifiers() & Qt::ControlModifier) { bool canZoomIn = zoomLevel < fftSize; bool canZoomOut = zoomLevel > 1; int delta = wheelEvent->angleDelta().y(); if ((delta > 0 && canZoomIn) || (delta < 0 && canZoomOut)) { scrollZoomStepsAccumulated += delta; // `updateViewRange()` keeps the center sample in the same place after zoom. Apply // a scroll adjustment to keep the sample under the mouse cursor in the same place instead. zoomPos = wheelEvent->pos().x(); zoomSample = columnToSample(horizontalScrollBar()->value() + zoomPos); if (scrollZoomStepsAccumulated >= 120) { scrollZoomStepsAccumulated -= 120; emit zoomIn(); } else if (scrollZoomStepsAccumulated <= -120) { scrollZoomStepsAccumulated += 120; emit zoomOut(); } } return true; } } // Pass mouse events to individual plot objects if (event->type() == QEvent::MouseButtonPress || event->type() == QEvent::MouseMove || event->type() == QEvent::MouseButtonRelease || event->type() == QEvent::Leave) { QMouseEvent *mouseEvent = static_cast(event); int plotY = -verticalScrollBar()->value(); for (auto&& plot : plots) { bool result = plot->mouseEvent( event->type(), QMouseEvent( event->type(), QPoint(mouseEvent->pos().x(), mouseEvent->pos().y() - plotY), mouseEvent->button(), mouseEvent->buttons(), QApplication::keyboardModifiers() ) ); if (result) return true; plotY += plot->height(); } if (cursorsEnabled) if (cursors.mouseEvent(event->type(), *mouseEvent)) return true; } // Handle parent eveents return QGraphicsView::viewportEvent(event); } void PlotView::extractSymbols(std::shared_ptr src, bool toClipboard) { if (!cursorsEnabled) return; auto floatSrc = std::dynamic_pointer_cast>(src); if (!floatSrc) return; auto samples = floatSrc->getSamples(selectedSamples.minimum, selectedSamples.length()); auto step = (float)selectedSamples.length() / cursors.segments(); auto symbols = std::vector(); for (auto i = step / 2; i < selectedSamples.length(); i += step) { symbols.push_back(samples[i]); } if (!toClipboard) { for (auto f : symbols) std::cout << f << ", "; std::cout << std::endl << std::flush; } else { QClipboard *clipboard = QGuiApplication::clipboard(); QString symbolText; QTextStream symbolStream(&symbolText); for (auto f : symbols) symbolStream << f << ", "; clipboard->setText(symbolText); } } void PlotView::exportSamples(std::shared_ptr src) { if (src->sampleType() == typeid(std::complex)) { exportSamples>(src); } else { exportSamples(src); } } template void PlotView::exportSamples(std::shared_ptr src) { auto sampleSrc = std::dynamic_pointer_cast>(src); if (!sampleSrc) { return; } QFileDialog dialog(this); dialog.setAcceptMode(QFileDialog::AcceptSave); dialog.setFileMode(QFileDialog::AnyFile); dialog.setNameFilter(getFileNameFilter()); dialog.setOption(QFileDialog::DontUseNativeDialog, true); QGroupBox groupBox("Selection To Export", &dialog); QVBoxLayout vbox(&groupBox); QRadioButton cursorSelection("Cursor Selection", &groupBox); QRadioButton currentView("Current View", &groupBox); QRadioButton completeFile("Complete File (Experimental)", &groupBox); if (cursorsEnabled) { cursorSelection.setChecked(true); } else { currentView.setChecked(true); cursorSelection.setEnabled(false); } vbox.addWidget(&cursorSelection); vbox.addWidget(¤tView); vbox.addWidget(&completeFile); vbox.addStretch(1); groupBox.setLayout(&vbox); QGridLayout *l = dialog.findChild(); l->addWidget(&groupBox, 4, 1); QGroupBox groupBox2("Decimation"); QSpinBox decimation(&groupBox2); decimation.setMinimum(1); decimation.setValue(1 / sampleSrc->relativeBandwidth()); QVBoxLayout vbox2; vbox2.addWidget(&decimation); groupBox2.setLayout(&vbox2); l->addWidget(&groupBox2, 4, 2); if (dialog.exec()) { QStringList fileNames = dialog.selectedFiles(); size_t start, end; if (cursorSelection.isChecked()) { start = selectedSamples.minimum; end = start + selectedSamples.length(); } else if(currentView.isChecked()) { start = viewRange.minimum; end = start + viewRange.length(); } else { start = 0; end = sampleSrc->count(); } std::ofstream os (fileNames[0].toStdString(), std::ios::binary); size_t index; // viewRange.length() is used as some less arbitrary step value size_t step = viewRange.length(); for (index = start; index < end; index += step) { size_t length = std::min(step, end - index); auto samples = sampleSrc->getSamples(index, length); if (samples != nullptr) { for (auto i = 0; i < length; i += decimation.value()) { os.write((const char*)&samples[i], sizeof(SOURCETYPE)); } } } } } void PlotView::invalidateEvent() { horizontalScrollBar()->setMinimum(0); horizontalScrollBar()->setMaximum(sampleToColumn(mainSampleSource->count())); } void PlotView::repaint() { viewport()->update(); } void PlotView::setCursorSegments(int segments) { // Calculate number of samples per segment float sampPerSeg = (float)selectedSamples.length() / cursors.segments(); // Alter selection to keep samples per segment the same selectedSamples.maximum = selectedSamples.minimum + (segments * sampPerSeg + 0.5f); cursors.setSegments(segments); updateView(); emitTimeSelection(); } void PlotView::setFFTAndZoom(int size, int zoom) { // Set new FFT size fftSize = size; if (spectrogramPlot != nullptr) spectrogramPlot->setFFTSize(size); // Set new zoom level zoomLevel = zoom; if (spectrogramPlot != nullptr) spectrogramPlot->setZoomLevel(zoom); // Update horizontal (time) scrollbar horizontalScrollBar()->setSingleStep(10); horizontalScrollBar()->setPageStep(100); updateView(true); } void PlotView::setPowerMin(int power) { powerMin = power; if (spectrogramPlot != nullptr) spectrogramPlot->setPowerMin(power); updateView(); } void PlotView::setPowerMax(int power) { powerMax = power; if (spectrogramPlot != nullptr) spectrogramPlot->setPowerMax(power); updateView(); } void PlotView::paintEvent(QPaintEvent *event) { if (mainSampleSource == nullptr) return; QRect rect = QRect(0, 0, width(), height()); QPainter painter(viewport()); painter.fillRect(rect, Qt::black); #define PLOT_LAYER(paintFunc) \ { \ int y = -verticalScrollBar()->value(); \ for (auto&& plot : plots) { \ QRect rect = QRect(0, y, width(), plot->height()); \ plot->paintFunc(painter, rect, viewRange); \ y += plot->height(); \ } \ } PLOT_LAYER(paintBack); PLOT_LAYER(paintMid); PLOT_LAYER(paintFront); if (cursorsEnabled) cursors.paintFront(painter, rect, viewRange); if (timeScaleEnabled) { paintTimeScale(painter, rect, viewRange); } #undef PLOT_LAYER } void PlotView::paintTimeScale(QPainter &painter, QRect &rect, range_t sampleRange) { float startTime = (float)sampleRange.minimum / sampleRate; float stopTime = (float)sampleRange.maximum / sampleRate; float duration = stopTime - startTime; if (duration <= 0) return; painter.save(); QPen pen(Qt::white, 1, Qt::SolidLine); painter.setPen(pen); QFontMetrics fm(painter.font()); int tickWidth = 80; int maxTicks = rect.width() / tickWidth; double durationPerTick = 10 * pow(10, floor(log(duration / maxTicks) / log(10))); double firstTick = int(startTime / durationPerTick) * durationPerTick; double tick = firstTick; while (tick <= stopTime) { size_t tickSample = tick * sampleRate; int tickLine = sampleToColumn(tickSample - sampleRange.minimum); char buf[128]; snprintf(buf, sizeof(buf), "%.06f", tick); painter.drawLine(tickLine, 0, tickLine, 30); painter.drawText(tickLine + 2, 25, buf); tick += durationPerTick; } // Draw small ticks durationPerTick /= 10; firstTick = int(startTime / durationPerTick) * durationPerTick; tick = firstTick; while (tick <= stopTime) { size_t tickSample = tick * sampleRate; int tickLine = sampleToColumn(tickSample - sampleRange.minimum); painter.drawLine(tickLine, 0, tickLine, 10); tick += durationPerTick; } painter.restore(); } int PlotView::plotsHeight() { int height = 0; for (auto&& plot : plots) { height += plot->height(); } return height; } void PlotView::resizeEvent(QResizeEvent * event) { updateView(); } size_t PlotView::samplesPerColumn() { return fftSize / zoomLevel; } void PlotView::scrollContentsBy(int dx, int dy) { updateView(); } void PlotView::updateViewRange(bool reCenter) { // Update current view auto start = columnToSample(horizontalScrollBar()->value()); viewRange = {start, std::min(start + columnToSample(width()), mainSampleSource->count())}; // Adjust time offset to zoom around central sample if (reCenter) { horizontalScrollBar()->setValue( sampleToColumn(zoomSample) - zoomPos ); } // zoomSample = viewRange.minimum + viewRange.length() / 2; // zoomPos = width() / 2; } void PlotView::updateView(bool reCenter) { horizontalScrollBar()->setMaximum(std::max(0, sampleToColumn(mainSampleSource->count()) - width())); verticalScrollBar()->setMaximum(std::max(0, plotsHeight() - viewport()->height())); updateViewRange(reCenter); // Update cursors range_t newSelection = { sampleToColumn(selectedSamples.minimum) - horizontalScrollBar()->value(), sampleToColumn(selectedSamples.maximum) - horizontalScrollBar()->value() }; cursors.setSelection(newSelection); // Re-paint viewport()->update(); } void PlotView::setSampleRate(size_t rate) { sampleRate = rate; if (spectrogramPlot != nullptr) spectrogramPlot->setSampleRate(rate); emitTimeSelection(); } void PlotView::enableScales(bool enabled) { timeScaleEnabled = enabled; if (spectrogramPlot != nullptr) spectrogramPlot->enableScales(enabled); viewport()->update(); } int PlotView::sampleToColumn(size_t sample) { return sample / samplesPerColumn(); } size_t PlotView::columnToSample(int col) { return col * samplesPerColumn(); } inspectrum-0.2.2/plotview.h000066400000000000000000000055251330473745300157460ustar00rootroot00000000000000/* * Copyright (C) 2015-2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include "cursors.h" #include "inputsource.h" #include "plot.h" #include "samplesource.h" #include "spectrogramplot.h" #include "traceplot.h" class PlotView : public QGraphicsView, Subscriber { Q_OBJECT public: PlotView(InputSource *input); void setSampleRate(size_t rate); signals: void timeSelectionChanged(float time); void zoomIn(); void zoomOut(); public slots: void cursorsMoved(); void enableCursors(bool enabled); void enableScales(bool enabled); void invalidateEvent(); void repaint(); void setCursorSegments(int segments); void setFFTAndZoom(int fftSize, int zoomLevel); void setPowerMin(int power); void setPowerMax(int power); protected: void contextMenuEvent(QContextMenuEvent * event) override; void paintEvent(QPaintEvent *event); void resizeEvent(QResizeEvent * event); void scrollContentsBy(int dx, int dy); bool viewportEvent(QEvent *event) override; private: Cursors cursors; SampleSource> *mainSampleSource = nullptr; SpectrogramPlot *spectrogramPlot = nullptr; std::vector> plots; range_t viewRange; range_t selectedSamples; int zoomPos; size_t zoomSample; int fftSize = 1024; int zoomLevel = 0; int powerMin; int powerMax; bool cursorsEnabled; size_t sampleRate = 0; bool timeScaleEnabled; int scrollZoomStepsAccumulated = 0; void addPlot(Plot *plot); void emitTimeSelection(); void extractSymbols(std::shared_ptr src, bool toClipboard); void exportSamples(std::shared_ptr src); template void exportSamples(std::shared_ptr src); int plotsHeight(); size_t samplesPerColumn(); void updateViewRange(bool reCenter); void updateView(bool reCenter = false); void paintTimeScale(QPainter &painter, QRect &rect, range_t sampleRange); int sampleToColumn(size_t sample); size_t columnToSample(int col); }; inspectrum-0.2.2/samplebuffer.cpp000066400000000000000000000037741330473745300171070ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include #include #include "samplebuffer.h" template SampleBuffer::SampleBuffer(std::shared_ptr> src) : src(src) { src->subscribe(this); } template SampleBuffer::~SampleBuffer() { src->unsubscribe(this); } template std::unique_ptr SampleBuffer::getSamples(size_t start, size_t length) { // TODO: base this on the actual history required auto history = std::min(start, (size_t)256); auto samples = src->getSamples(start - history, length + history); if (samples == nullptr) return nullptr; std::unique_ptr temp(new Tout[history + length]); std::unique_ptr dest(new Tout[length]); QMutexLocker ml(&mutex); work(samples.get(), temp.get(), history + length, start); memcpy(dest.get(), temp.get() + history, length * sizeof(Tout)); return dest; } template void SampleBuffer::invalidateEvent() { SampleSource::invalidate(); } template class SampleBuffer, std::complex>; template class SampleBuffer, float>; template class SampleBuffer; inspectrum-0.2.2/samplebuffer.h000066400000000000000000000027221330473745300165440ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include "samplesource.h" template class SampleBuffer : public SampleSource, public Subscriber { private: std::shared_ptr> src; QMutex mutex; public: SampleBuffer(std::shared_ptr> src); ~SampleBuffer(); void invalidateEvent(); virtual std::unique_ptr getSamples(size_t start, size_t length); virtual void work(void *input, void *output, int count, size_t sampleid) = 0; virtual size_t count() { return src->count(); }; size_t rate() { return src->rate(); }; float relativeBandwidth() { return 1; } }; inspectrum-0.2.2/samplesource.cpp000066400000000000000000000017101330473745300171220ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "samplesource.h" template std::type_index SampleSource::sampleType() { return typeid(T); } template class SampleSource>; template class SampleSource; inspectrum-0.2.2/samplesource.h000066400000000000000000000023171330473745300165730ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include "abstractsamplesource.h" template class SampleSource : public AbstractSampleSource { public: virtual ~SampleSource() {}; virtual std::unique_ptr getSamples(size_t start, size_t length) = 0; virtual void invalidateEvent() { }; virtual size_t count() = 0; virtual size_t rate() = 0; virtual float relativeBandwidth() = 0; std::type_index sampleType() override; }; inspectrum-0.2.2/screenshot.jpg000066400000000000000000002431161330473745300166030ustar00rootroot00000000000000ุเJFIFC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222ภ_4"ฤ ฤต}!1AQa"q2‘ก#BฑมRั๐$3br‚ %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™šขฃคฅฆงจฉชฒณดตถทธนบยรฤลฦวศษสาำิีึืฺุูแโใไๅๆ็่้๊๑๒๓๔๕๖๗๘๙๚ฤ ฤตw!1AQaq"2B‘กฑม #3R๐brั $4แ%๑&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™šขฃคฅฆงจฉชฒณดตถทธนบยรฤลฦวศษสาำิีึืฺุูโใไๅๆ็่้๊๒๓๔๕๖๗๘๙๚ฺ ?๗+›ผ†ฺลcี$ถ[E{X%ๆ9s8<3ณ่ฝ>VXu -'Lบ[+iiHvฑ…vปQ๗‰#ค3กขนKMORิdากพRสnึYขOœ"pช๋ธ3ืำ“ํP+๊7๚1–๚hฆŽๆ๒หF ye”6 ‘’žhฒฆK4V๐ผณH‘ฦƒ,๎ภคž•ฬMจ๊PุkZ‡ K‡ŠŒiฑWๅ›ŒœdžฃUตป›จฌ5:[ำ{๖iœHศ’FะQฦx<š์่ฎv๖๖ฯXin..#ำ„ฑ$fDศ `bPร~KซุŠ่จขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(„š“šฅ’H„ซ+\ *GPFjBณ[อั6vผlOnฎ ๆ:~ปD%ด)aญืbDK‚$^Fๆวเ็ิt^Žx ผKฌคK›$ฟ์๐๎ษNsอ^ŸWำ-fhn5He\nI'Ua฿MOmym{’าๆใihœ0ำ#๊+†ิ/5KIฃ#ฝษ|า[ฌ;ฃุ&Ÿ?฿๖๐~u–S*OqฟOถ&iืkน฿7Q๚wเOR‘๑Š๎ๆวแฎกqis-ด้$;e‰สฒๆEsะ‘_2x†PไŸใ_J|l8๘[ฉ๚iZ๙P6{ึŸ/QฃcฟะมชเdŸใG%~$๏ฏ๊Ÿ๘'๘ึM4เvญbฟ%~#?๓ี๐6_๑ ๘ซฤŸ๔ี๐6O๑ฌŒŽิnวZŽXuXxซฤฟ๔ี๐6O๑ฅ„ซฤŸ๔0๊Ÿ๘'Y9อ?t(C ๐•x“†W$o%~%ํฏ๊ง฿$สศฯZ9๕N’่+šฟ๐–x›ƒ๚งIลP|YโQื_ี?๐6O*ฒ‰วqM-ฯZสQHfภ๑g‰?่=ชเlŸU/%ž$ ๖ซ’๑U“ุfŽOQTญa›๐•๘“พฟชเdŸU'%ž#๓ี?๐:O๑ฌŒJ?E—Aลพ"?๓ี๐2O๑ฃฯะ{Vภษ?๘ชศ"“w4๕[…๘K|GAํ[$โจ„ณฤ๔ี๐2O๑ฌŒšNฅ4ฎ๔ โฯะมชŸ๛|“iแ+๑๕_ “k#่ญ9~-Iฝ๖5แ*๑˜ซ’/%~" ซฒcาU$–ศ ๘JผGAW$?แ+๑๕_ “kQ“่)ฅ…ช5แ,๑ งI4ฃลž#?๓0jŸ๘'๘ึE•O/อ๘JGCฉ’'%ž" ซ’d‘IU(ก#\๘ณฤcc๚ฏIลSแ.๑๕_ “Šฌœเ๏ยม๏YZ๛?ศฃXxณฤgc๚ฏI4ฟ๐–xƒ๚งI5‘๒U&~ตJหโlยWโ?๚5_ “i?แ+๑&xื๕_ “ŠฌŒทf"—sโ'๑ค๙pิื„ฏฤccฺฏI4Ÿ๐–x“ƒฺฏษ5‘ปq๋Nภ๕*” ๖6อo๘JGAW$?แ+๑๕_ “k"้ŠR ุ„ฏฤ๔ี๐2O๑ xซฤ๔0jฟ๘'๘ึ9ใถhวึ—ปั_pอ๘JGAW$?แ*๑๕_ “k )์ X๚ฉ๒งผE~ฬึ>,๑˜ซ’)๑gˆ‡ฬ ทษ?ฦฑ่็ิ~Tนoะ ๘JผGCฉr!๑Wˆศ‘‡U/$ศ=(p]€ื,๑O๘H5So’/%~# ซ’c๖โ€iจฅธ\ฺ-๑˜๎จํ๒O๑ ๘ปฤGczฏษลV0>฿ญ.}…U•ฟเภ&Fฑ๑gˆฟ่=ช๛}“i?แ*๑_๘Huo “k+p่ฉ=?ZR„ำ}aโฯะรชเdŸU?ฟะVภษ?ฦฑธ๔ ใะะกm์6‹Ÿ€#cฟะUภษ?ฦ๘JGŸ๙5_ “kUr้ M๘K|G฿_ิ๐2O๑ค„ณฤGงˆ5O “ŠฌŒœQ๚RปฐY๐•๘ƒ๚งษ4xŒฬUภษ?ฦฑ๑๎i@>ดโปฏศLื„ฏฤƒcฺฏI4ยUโ?๚5_ “ŠฌŒQT้ล‚lื„ฏฤ๔ี๐2O๑ฃฟะUภู?ฦฒ=๋Kที‡็Gณ]ฟ!s฿๐•๘ƒ๚ฏI4Ÿ๐•x† X์ŸใY'๋Iม๏๙VRŠพฅ๐•x† Wd_๘JGAW$วฺ–ช*„๎lยYโ11S$‹+๑?ไ?ชเdŸใM„ซฤ}๕W๐ฝ“k)ธฮ9ฆญsTŠๆ6Zฃcฏ๖๑ซ๘IลRยWโ?๚5_ “k>˜4{ญ(๒u@‘โฟะUภษ?ฦ๘JIŸ๙๊Ÿ๘'๘ึ9*๑/ ฏษลR๘”uื๕Soฒdœ{ั๔ฯใO’ }%๐?Uฝป๐^ฏw}wqw,Wm†žVvภN2ONฟzŠYชงฺBI3๐ZNค๚O ฏ ๘Ÿ๘Wš๎็๊Oต๋r^A;y‰c%าฦx•QHฯ๛%ˆฯแXKโbdw7Fย_$ ๊FๅษไJ*–ฃsิ้$LHู‚มR ศ#ฑขค kซ+K่„W–ฐFBอqŸกฆ>™งหhถ’X=ฒฌ-”AŒUช(%ถZ"ฐF JV2|€ใ zๅQMฆุ\@`žสฺXK™ oฒ๎$’ุ#ฉ$œ๛ีช(5‚Y"VBYภPิŸZ‚-/O‚Kxlmฃ‚_๕‘$*  ทEUm2ม๏ใุ5ะฦ'1)qŽŸ63Vจข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€3F‡dฃ›ธ“ฒEy2*๛ ภbญฺูมeŽ 3bฬY˜žๅ‰$žƒ“ะฺงข€(>f๒ผƒํ1—bฬ!บ–5$๕;U€ษ๊xไ๓SZX[ู *ๅไฦ๗’F‘Ž: ฬIภ็Œใ“๋Vh >๘ู$ณRฎ่ีฏ•ސฏช5ษ-ิฟ๋ค?๚5kๅ^OB+jJใBาghƒ๔อt]ฅฐnCล”{c๐ฅ็ิ•Ÿ;๊‚ยเzbŒA@ใฝ0 Š2;‘Fั้H~ƒ๓กษ 9`าภhะา๓KV๊)p=::๚าีF=ยใp{^}J ล'ฉฯา“ต๔!OR)กWิ~tเซ้Aภฉ8-„Gฟ็K“่iƒำเ9๋๙ีำW๘Aฑ7๊(ศ์)ว๐4ชS๘—๒5ฃŒ—Roไ3จ๔ q๋Reoฮฃ8?SJษjุำo R๕4™ฃ=๋MY์}*J๐Hฆ’Gง้Mยฺ๊JsKHzP‘PšNลฑiงฏ+๙T€็๘๐๚ั(su์F[่)ู๛ดRQ•๔cธQHqำ<ะ*ท‡QGแEŠwlZ6็ตU8Eขnลฺ฿4maุาRž็๓ฉv[QI>ฆ“p่วนฅฅอ/๋,(n:š ”GJpc๋Vค๖ส†Š)ู'ฉŸ•.Gั‡0tฃ?J(*ด]@J?KH3Ÿj‰XNCK‘Š(็ตf›ŽลYฝ”zR„ขดๅ“ึฤ๓-ฎ%'J\RSh.—น €}:N}M-G3z5๘ยm”นฅeGRhๅKT์๒ฏB(งฝณMศฮ2*์๛ŠAF=? \{ัภกค๗ ‰ืจขŽ; RะšAธRpi 2}+ซ ๙ @วLะพ~”vฌฌ“บ(Z)œƒาŸWงฅ…a>€RŒโ’ƒT•ต๎-๖คU$`ศ๑ช‹ๆ&O•\hF?ย*w”ภt5aD}ะ๛iАม fฉAv2u™žAข’=jiP#pjŸjยฌZzยWW ใิัธ{ำJŸANUวฅc๏พ…\n๏oึœ3้๚ำฉ1ฯZฅบ€๛P=ล-4๕เึฅีˆ\{šiง๓ง|ิu๕ิJ7ู oฃ๒ ็Rœw๓ :ฯ”`็ฆiูo๎าœ๖อ&ใ฿๙าฒ@!-้J7p๚b๛‘Tขภ1๊็KšLzLิSี ๚เi?๐ฎ<@y้2่•ฏjhึDqจ€*ุ ๑_ฟ๒MA_่•ฏlŸ๎šย[ฒYย๘šFƒSC๓" ุ๎rG๒ŠoŠไ%p๚QP3นฆขษ3บฦUBažqœc๒งRู7อuํ/ศดฤ/ูฆž๑฿ฃลQ๖iฟ็ผ๗่๑Ucuฉˆฏ๖iฟ็ผ๗่๑T}šo๙๏๚?UXF๊ฏ๖iฟ็ผ๗่๑T}šo๙๏๚?UXF๊ฏ๖iฟ็ผ๗่๑T}šo๙๏๚?UXF๊ฏ๖iฟ็ผ๗่๑T}šo๙๏๚?UXF๊ฏ๖iฟ็ผ๗่๑T}šo๙๏๚?UTึu9lRึX’Kปษฤ‰ ง‹69ภ N;ี'ึ๏4›ถƒWLm-ฬSZฦS>Xะซ1็sฯ=(c์ำฯx๏ัโจ๛4฿๓?๛๔๘ชกˆํdฺg‚โั$ฎc{€ ท~ทฃฑ2Š$าฃ.ฟ๘เฎgšะNื‰ฦฑsz๐9ฟฑx?๒/๘?๕๕wว้ณ๔.ฟ๐Ž่ฏ›ฯ?Z—}‚กiชŽค?•S\‹”k€}„0kข8จษsEJŒฺ8ท%{ฟน~ลแศ@ภซฯ?Jtช๘s@?๖๕yว๋J=7Oฺ1rธ4ู4ํ0 ดM๘)4,L{K๎a๕ื{]ศฮ98๐๙ทปฯ?OV’G>ะฟ ซ฿?R?J ฐštฏษ้Mv“'ผ•พ„้Oวดพๆ_ึฅฤmฆhใe} ฏ?๘4išY้แ] .ฏ?๘J4“‹™ gŸๅW ำ,ใฦฮGฃRx˜%ชs&Xวฟแสm;KNพัฟ ๏Oืง&ฅ?สZ@ถืฟ~ถšา๘ƒ7๒ำanฑ“0ต?Zฅk๊G๖„ฟคcพ›ค''ยz?ผใ๕[หั7์ัณ่gผใ๕ั‹8`?W'๚ำ>ฦ›๚พ›Ž8bi=‡ม๕2Lาd„OEgผใ๕!า4ฟ๚4_ผใ๕ชึ๎0ู้้ถŠH*A็ๅ"—ึ้-u๛™?_“๋๘'MาAว"š>๋ต๏ฃ๛+M๊<%ข77Ÿ~ถ%ำer wZŽฃfsQKค[บ‘,๎}Hอ%ก-K›๐†3?ฒ๔฿๚ดO ผใ๔+M?๓)hฟ…ี็ซูR.Mศวซ8ซ1่vd„{U9bi%y_๎eผk]๘&KูiQ|ค^ŸฏP์u<๘;KYฏืฎฆ= จ๙]˜{ฑขM;ๆ1วaถR๖ƒ[ซœP้๔๐Ž“๏ืฉพมฃ๗๐ž‘๘หyว๋i-cSq๏ืฉ>ฦฎ?ืฐ๚นใ(วw๙๑๎๚‹aคžา? /๘#Xi=?แำดฝใ๕ฑ—“ลไŸ™ค:™ฯฺe?๐?ตO๖Ž๙1ฌcoภวf•ิ๘OGY๏?๘2K]!๓x[Fฟ๗Ÿ~ทF"Mฉ&œt่ศ๙ถทํ 7๓~bxๆžฌๅZM ้'฿ฯผไŠž84YFWยz?ผใ๕ผ4ศร็zmU8ฑ@ฟ) ๎ขXทŸ~Ÿ:$<-ข฿๛฿?[๒i8#qd๖จง.™่ไ{เAMใฐ๑_ๆ'˜hc ;H# ่ว้5็จeตัฃ๘GI?Iฏ?๙"ทNๆœ-ิ฿A๐ฆ7…^AŸ฿ฟ๓,ร ๔sวO฿๐0ญ—F–เ"๘GJฯ฿ฏ]Znƒดgรh>ำ]๑๊,;shไˆŽู^GใZKง(๙ข+๕ฎlVeN ิงw๊c‰ฤNoZz• Ÿ๙–t๏๛sวฉญงh#eญ;\๑๊ณ,Mลej3ˆฃ<็๛ๅ•a„ฏˆฤKIœฑฉVRๅ"Fำ@†ใยฺ[๖ฆบใี€eะษ‘KHฟ๗Ÿ~งฝฝ’E*I#ึa5์MZ)Iž3P๗‹~f„?ๆQา?๏็ฅ๓๔/๚t๛yว๊–Mฌ–›e฿;C?๓(i?๗๓าyš™CGฟ๗Ÿ~ชs๋IVhh v…BŽ‘๏?๘n‡ย:Gผใ๕K๑ U$฿7CกGIฟ๗Ÿ~7CกGIฟ๗Ÿ~ฉiฯฝ);xหกw๐–‘๏?๘fƒย:Gผใ๕G๖ฉx๗ฅ{wอะฟ่Qา๏็ฃฮะฟ่Qา?๏็ช;ง`ิjฟ;B?๓(i๗๓ะ&ั?่Pา?๏็ช™„‹uธ|ํ… #๑๚_7CกGHฟ๗Ÿ~จ{\ๆšปฺ~5ซx\6šuต„{฿1[ผฌค๙cๆฬŽว=\qาฝVบkษ~ศ‰ฎืI?๔PฏWบw\‰ห)P๋’?Lึ2ˆแ|W!(?๋€ะšŠaฃฬ5[สฝž๖ฟ๘฿]U๏๗ตภvโ่ฯ˜h๓ V๒ฏ็ฝฏทG•{=ํ๐ฟ๘บณๆ<รUผซ฿๙๏k€ํลัๅ^ฯ{_o.€,๙†0ีo*๗{ฺเ;๑tyWฟ๓ื‹ ตKํ(a3A=ผขh&QŽPA CYZŽ•w-ๅๅฯ.ลŒะ[ว w/8\ฑ,p^+kสฝž๖ฟ๘฿]U๏๗ตภvโ่฿C–๎ช]ใK6ถHึ/,ชบ€ลŽN[:๑EŸ†ึึ9#‰x…e†มc—‘Œณ็๐5ฑๅ^ฯ{_o.*๗{ฺเ;๑tZ-0ว>—'ŸŸฐ@ะใg฿ศQžผ}฿~ต4๖†mVฮ๛ฬวู’Dูท๏o฿ฮ฿๗ศoใI‘๋Mฎํไึศฟ๒o๓ถ?๏?๒?ฦŒG๖พG๘ิy4ฟO/f๒m๙๖ฟ๒oH~ุ๛ณ฿z1๗›๙๋ำ0}M/?ไำไ}฿แAํa>ืMcถฤz;~ ืคู๗Ÿ๙๋า}iฝ›๏๙{Xฯต“˜๐#๓฿?z?w๖พG๘ำr=Eš‡๗ฟ/๒m๙๖ฟ๒oH~#๓฿zLG๖พ๚๕แ๏Kœ๖4ญ๏๋๎m๙๖ฟ๒o๓$ฤo๛็ฏI„๛฿?zoแIฏ็Ui[w|…ํa>ืMdั˜ใ‘[spปืฎ–วQจTXษrไJๅ?Vmแ‘ุl}4“ฉVพG6)Qฉส &ไŽัc,โ๖ิ๑5:ดส8X๏๑โ+ ซˆPฒ}*FีdQอดซ๕็ิสฅ'คD๔ฅ๓—$kK=ม–q฿ำฤึFฃฉฝธฺUC่๙วๆ*•ฮณ1"•๚ƒ‘,ญ3–v$๛ึ๘lพ45oSซF.\ำฅ›’-iKฟwฺg๚๘ฉื\ธ$8pg๙ึWJ+ซ–๚7๘/๒= zQษฟฬฤ`a“๊W [‡ฤWk’ำK๔/Œ~Uฬd๚šLๆขXj/u๘/๒3th=ฉEเ_‘ุ/‹nฏ๊ไJณ‹o\€ป?ํ๕ซ‡ษ*Xง16p>ธๆฒyn[ว๒"8%๎ม}๓ไ@]oPeขAmH”๑ชc็ด˜๑5สYje2น=ห็๙šั]FR8ทoฬW\ž ๛‹๑ฑ็ิซ(ฟแว๏—$kIจฃ)ค?ทš๘šo๖œ ศ&ํณ–ฒQพrฬŸฉัจ๊gญˆ?ึ…–ดญo*ฺkJ{ไvึ CƒคFi๕ Iฏ กaฃฦ}ผืS๚จฌฯํ เ?ใษ‰๚4ึิ๕ |ถ$|๋G๖o—Nศdๅฬ>๗eรโ 3ฬฺุtA๓Œ฿ฏืm=ตญ?:dg— ’ึ_๖žฌ?ๅฮ3๋ิmซkว”๗์_ิZ่๐7Fชคิa๗ฟ๓5Nตฅ๖lxแ‰ฯำm^Kจ\ บdc>ท-ฤื7ฏซ๗ฑLื&นงxภfุ๋ดŠŠ˜ ฮ6ืฌู*$ดฃฝฟิ๒&”~๎ึู>ท๖ZB’ย>{[V๚\ฐkXวUธA–ฯะ™ฆl^น~ฒ+Ÿ๛'฿‹3๖‘{Q฿/HHๅœ|––หo'๚-/๖mเ91cำํˆฎvM_Q๒ษq๎ๆขๆxถษฎ”ึS‰้$RpkZ17ษ+ฉ€~๒สพ—-ฤTb๎0xำ"ฯฝห๑5†5}@ห—๏*Uิฎ[ญฉพqN9]{{ฮ6Lช[j0๛฿$mท๙ฺ๛l฿ME%ไX%๔ุฑํtรeฌ–ฟป‹%#บ๕ฉ‡V™xk d?ข]Hส๚๖ช฿น‡ใษžL*Hำฃ9๎—„g๑V ปทXืสำG`n‰ูk!๕›‘๗tูีH•4ZคฒlคS๎ธฎš˜)ส<ญKeฮณๅ ~๗ษkpEknŸ๏Hวeฉ :”ใ]ฎ=ฅ#eฌ6พ˜ œ฿ฬToชฮผy/๘H๕ษ‘S์้๋ฉฌฅคฉG๏—$oฎŸy- ณsฤPำI ejํฃ๑ฯGช]‘’}ไว๕5 ิ/›๏Yฉถู”<ขฝ็ภงR๘hว๏‘ดoˆ— _ยWโiช\ฮุwcฒึW็l฿>ฬ1HoฎOKQ๘ห้N9L–๋๑D{w>ฃ๗ฟHุ]E฿๏ุ“]X์ต2ผ๒ุ ำsฤึพธ›B~Ž FบฦN๛=ƒืZขYEG๐้๓ธีk๏F?{ไ๓g|Nแoj=ผ๏ฦŸ—รฺZŸ๛l๘š็ฮฌร€สก“ญ@ฟน“ฌ0ฐฎน”dbํฺมjจว๏—$obi๘[KP๋ซ’ข}+P|์†฿๐œ๑5Šฺ•ไc‹t%๋Uwึๆ่๐0>าWK+ลBWŒ’FงoB?&๙#v Qˆไภ2rI˜Eฉิc็ŠยW?ษ+“]^X˜ g๛๒“๚bฌGฎ>A๖\…m[-ลิw•DV.J๛๒ไŽ”ZuHํฟค๛(งb๙x6ถ็\Šึ๋R7T˜4๏ํ'?๒ห๓`+ๅ‡ปLอิŠฺ„~๙๒FำGty1[ฃ“ฃ ZฐศŽ฿๑–AฒV๊’ใศc?์ธH5‹ผเ๎Ÿ่*–QˆZฉ$ pzบ1๛ๅษ† •–v฿๗Ÿ’”hF2ข›XฟฺwวXิ„Jqีคใ(ค๒Šำฝํ ถฃพ_‘ฎu ไ80ฺ“๕o๊ด-ฃ!ยลn?ํงcY‚๒23ๆ'เ๔ำ~ชxlidอ์•ษ๚รฟ๐—฿/Hฺ๒๕99)lํปไ)รํ‘ZZททo&ฐNจ๙3~มฆถฅ;}fซbกๅ›V/Gฅ๒ไฆฟhฯƒํ๓๊%cฒTrj—„a"Ž?คว‰ฌธ๏ฎ ๅํ6ภมฆMฉ*นHญiๅ๒I๖ํป*Q๙9~’$ผื/ํ]wK๒žฃฬc๚œR&ทs0๛เe๋V ลโOธจu๔dฉcป‰Fฟไ•๊,พŠ[~ ŽฆกศฏI_ึ_‘ญ%๔ไ๎*ุ8็๔ชแ๏-[>ป๊ fiไฟ*ฯ– ‹c๘[ร|.฿w๙IQ๋N+็/H[™b๑•๚-W+๗ุภG๘า0*p7Œ๕5"฿๒#ำ…JiYS_๙7$8,].ุผ฿๗ว^˜OาŽฝ๋%u‹๖ฐŸk&1๘‹ป๛ไ๛อ|๕้œzšN”ฺ}/๒k๙๖ฟ๒o๓$?๏ท๓ืฅฤo๛็ฏLฺ“๐4ิพ/๋๎m๙๖ฟ๒oH~#ฦ๗ว^}ฟ๏Ÿฝ7ิ`R๖r]ฏธ=ด?็ฺษฟ๙!ลb๕c๋ัถ?๏8€๑จศ>ดปqK’]/๒k๙๖ฟ๒o๓$ฤ฿o๛็ฏIถ/๏?๓ืฆ~4ผ๚ีrI๕ƒC}ฏ›วl๛๏|๑ฃlc๘฿๙๋ำ8๚4 ๛\ž—๙ถ‡๛_๙7๙Ž฿๗฿๙๋า~๏z7๒?ฦ็ิRsุๆ‡ฯ๐m๙๖ฟ๒o๓=—แPQเ]wi$y’u–BฝN๖+ฃโๅœ๒็r6ž:๓^W๐งDMwบIข…zิtึmY˜I+Šไ%p๚QGŠไ%p๚QRuEฮ^kwQ๋3ู}ซOฐXสˆEโ179Prญน@8๎r 1จj๋ฆ—yฌฎšฺ0K” R1๊Fํฤ๘ซ^x–ฺสโ๒7ตปtฒ๖™‘คjภถHม็ž:PีŽ"ทŽู'ตป€ฺ›ข’"†’1žW ํะเ๚โฃปืฟะ.ยCqkr,คนท3*แGQ‚zน‘ลnQXว_HbU6๗7REn“\ดคFฮNHษเœ.Oต^บิ`ตาfิ‰i-โ€ฯ˜๙,กwqŸjทEfjฬึ้4zM๛๏?*,1\ป—๔<๛U7๑ ษyฆ-•”ท๗‘Jํ€ช๊W3 Iฯ้@ิVI๑ธœ"ไ ฮnย(Iปn:๎๛฿.qŒ๗ญ'ด G*yr>bภ9_Qฯ_ญKEP3ฬbจ›ไ‘ถข็?ZMšŸ๛[฿๓ฤาOึ๕ุ่ Xบ๗Šฏ4อN๒7ฐŒคmฌแŒืลปFC ฝžธทณSŸko๛๘š6j๓ํmฯYฺ–นช-ึซฏ“ฅBฒL“ซ™Š๏(คๅว$7'ฅ6j7’-|›;H๎_ํ*ลฆ.ฅ‚.๒ผsษ้LFžอO}ญฟ๏๙โhูฉฯตท?MfยAจ๊’‘ขฅชคv^นบVmๆPล#Hยœท=GEโCZ’ฺ=-b/งว~ํtฌใ๗™ฺูFสูnqว€4๖j๓ํmฯFอO}ญฟ๏๙โk.ฤw๚ูฐHKh$žภ^สืJาษฺ+ฮCsi-|Gฌ:2;k{‹‹FบฎUคX๖ฐM€)RIl๓ž่s@ป5?๙๖ถฟ็‰ฃfง>ึ฿๗๑5&…ฉถฏฃ[ผB)rศ€ไ+ซ`ฆTึelิ็ฺŸ&šŸ๛[฿๓ฤึญ•ณSŸko๛๘š6j๓ํmฯZดPVอO}ญฟ๏๙โhูฉฯตท?Mjั@[5?๙๖ถฟ็‰ฃfง>ึ฿๗๑5ซEeว$โo&ๆ%ส๎]ญธ0ฮจ๊jKฟ๙ [ื๔(้i ใ'@ื>ป…d‚2าG๓O:Bƒ็—r~'ฺผ๛o๙ะวฦฌ๘ํ{?ฦพ~๊\ใ๗่ีฏ•@วzึœn†Cใb:ฌ๘ํ)ั'Ÿvvผ๋#ฑ>ขดจ‡‡1๋กเ๎ฯŽาaฯ?๚ํ?๘ํyO๗Aฅ’ฟP=hsะCCมีงฃ๛o๚h๘:ดใต็g‘MมJซด=๛n๚†‡ƒซO;G๖฿๔ั?๐wiวkฮsŽ™งOง็I4=๛๚h๘:ณใดŸุswิ4Oู๑ฺ๓ณธtญ&ๆ๎ๅJOธ‰…(—vv—๛o๙ะ๐ugวkฮว=ฺ—ŸBhI๔€๔?์I่#กเ๎ฯŽาaฯA Vvผ๏ิr}ชนP=๛๚h๘;ดใดaM฿Qะ๐ugวkฯ0{’i3Žว๑5.=ภ๔AกKื๛CCมงฉbาnblฎฅข๛Y๑ฺ๓S“4๕ NqWN๗ฒ&I5ช=fบA‡พะศฐŸซ9b?ใ๛Dมีงฏ*Šส)@ฤค}jFำvŒ‰ckg๓็Oวข]Zห0;u ๛ ู๑สฮ:$ไไ๊์5gวk‚’งd?…BTƒ๗๚Pโ๖ฟ3ช”c๎ž…‡?4?Y๑ฺ?ฐๆ †‡ƒซO;^x=9 ซ{ยกยHฺ่๔?์9่!กเ๊ำŽั‡74OY๑ฺ๓บ2}*_๕ ์z'๖๓ขเ๊ฯŽะ4Iว?ฺธีŸฏ;ข…ฏPh๔์‹กำSั nำŽั“wAM–Ÿvผโ—ีY๕dูv=๛*๏‚š7-?๘ํ/๖e๗mWFร–Ÿvผ฿ฅธชๅoญ‰qcา?ณ/ฟ่-ฃเ๖ำŽะ4แำWาวm?๘ํyม๖TำK•ญุrล๔=,iฺmcIมํงฅvฃžu+ถŸvผำZ >[j.HพŸ้ยย๘๙ ้_๘<ดใดำeจšฦŽ~บŸฏ1ใ=้ิ–ฝP•(ฎ‡ฅf“๓๊Z}u›?9R  8ิ๔e๚kVvผหv; n๒„~œญป้E๔=<ู^บฆŠึฌ๘ๅFฺuั?๒ะม๖ึํีฏ4๔ฃ้EไชP]N7๊>]_E๗ดใด=D๕ึ4cqป?;^c€}(เzP๎ทeวง žญกฑ๕:อŸง›[์auM~šŸฏ.M(๖4&ุ}Q้ฟeิฟ่1ฃเ๎ฯŽะl๕ืXั๐wgวkฬˆ#ต&qEšz‡ฒงั#า_Lผฟฉ่๕ึฌ๘ํG‹qA ๐ึl๘ํyุลนชœ^๗Iicั—Iบ^šŽ†?๎5gวjQง^wิ43qซO;^g@อMฺ๊7M>‡ง >์/t1qซO;L}2ํน7๚ใฌYŸฉ^hOพ(ม๎hปฌ%J)์zW๖mๆ1งข~ Rำ—Lผ๏จ่็ใ–ฟvผฯก็4ดโ๎œ{˜tป“๗ฏ๔Z๑สJ•:_h€๛๋VŸvผฮŽ=?ZญI๖q=8ู]ะCAว†ญ?๘ํA&“q'&CมีŸฏ9ุ RC๒c4บˆ4[ำRั๐wiวjUำ.—b:๚๋vŸvผุ_—ะ51^c”S่zIำ&?z๗B>vŸv์ษ๛j(๚k–rผิฐ…s;ฺเฉวฑ้cMธŸ ๛mู๑สCฅ\Ÿ๙}ะวฦญ?๘ํyงแFphM๕a์โzW๖eฯC}ก๛Z๑ฺCฅN:^h#ใ6vผ฿๑ค9ํI๓’'ฅ 6๋ฝ…ƒ›?;Htฉฯ[๐ึฌ๘ๅyฎ=@ฅว|‘Qอ1๛8ž‘'{nฯŽา*d?-ˆ?๎9iวkอ….3Vœšบ„zž—๖ ์qฉ่ƒใvŸv˜ฺ]ใํOE?]nฯŽื›เ{R`zQi๎ุ” ถGฃ pไ!กเๆฯŽี„า%ปG?MnำŽื™ {ิจЇึฎ)พคฮ+ฉ้gNœ CH๗ณใต ้— 1=๑ึ์๘ํy้ทNญ8…1’!า\๙YP่w็DœœhhŸ๘:ณใด฿์I่!กเ๊ฯŽืžŸcLู\๕ฏกาถะ๔_์9Oฤ4?Y๑ฺ_์)ฟ็CมีŸฏ9ฟZvั่*c ๔O์I็DมีŸค:ว_๔1qซ?;^yํศฃๆ›‹`z๖๕Vv์9่#กเ๎ำŽืžRชฆภz/๖ต vŸv่W๔ะ๐uiวkฮฒ=E.O๗s@‰ƒ?tOY๑ฺ?ฐฆ๓ั?๐wiวkฮภg†„ปEฤŸ‚'ฌ๘ํุsะCDมีŸฏ;ภํF*นdกaLๆ!ขเ๊ำŽาaฬ?ๆ#ขเ๊ำŽืe‡j2aš€๔O์Yฟ่%กเ๊ฯŽั‰9˜Ž…ƒปO;^yœvคษ๏๋O}ุX๚sแฃY๘'\ๆต˜—vmu๊?v80Ž™ฯOZ๕9้ฏ๘$฿ฤ๕๑'‰Z๖ษ้ฌ$ฌุŽ ล๒ƒธ จฅ๑g„ ฎBj*w5ช้WฺœW6ฟฺฅ•ย์hฺืsจ#kn฿•8ญŠ)ˆๆ5_.คทI๖ˆvฯ ฤญ=ท$8]ฟ#๕—-ฒ@‰’ฤ‚F1ิ๖ฦ)NqtŽooฤฏ๖9-a+฿,8™พcนพU๔tๆทจ vใยฑIu๖ˆฤ๒4IŸkฒƒด`๙Sr8ฉ}ฆ‹อ ใLWX–kfท ฉยevไ/JฝEdjš'๖”ถฎd–e0มๆฦูวอทp๙†8<๕5Zืร’ุZ้ษk{šศสษo•e‘ฒFะรใ=บWAEsั๘V/ฺh–มขiฬไMbฏ(%ท$ศภฮqHญศd2๙ำ HL`&‹๒๕็œ๓๏Rั@Q@็๋๚์๔ช—…ฅฝ›U๒oใ†฿UU[ค’ฬq„ ๒6แท€:†มไVœฐฌมCNๅe8*}E&ห๙นพcโ(†fžk฿ฑ๊Fฺ๘Vดh|ฦ`ชWr6แตŠœd†่8ข๏รR™งm6YGul–ทa๓2ชR‡pฺุb2r:qล^ูq?๗?๗ฬE.?็็๙ˆฆ"Œ–)w้โฤ=ขYสญ›˜ำ; ร 0ษศ็ฅ แฉ-๔k๑dัY-‹y๙กฃOธGฬธa–็‘ฯ"ฏlธŸ๛Ÿ๛ๆ?"—๓s|วฤP๐รุ‰ดkแi%ต ณ-4>pxว ‘น~`rsœrx4‰แwฐKาo…ตลฅณZ™'‡อก!‰`~mร9นเี—๓s|วฤQฒใ๎๏˜๘Š›Iำcา4ธ,bvuˆป๕v$–c๕$Ÿฦฎึfห๙นพcโ(ูq?๗?๗ฬEiัY›.?็็๙ˆฃeว฿1๑งEflธŸ๛Ÿ๛ๆ?"—๓s|วฤP™ฒใ๎๏˜๘Š6\ฯฯ๓@tVfห๙นพcโ(ูq?๗?๗ฬEIw!+๚ใ/…-Fํส๒ษ,„m๘เz%!ž}๑ฏ?๐ซu,ฯH๔jืสผ๗ฏชพ5๑๐ทRฎ่ีฏ•FOZ“่4{~t›~‚—฿๓ค?๎ๆต”zดŽ็๕ J@=ฉp(๚ a฿ญG;š9๔4ฌ€MซM‰…--—ู˜>ดึ๗4๎}GๅIŸSS%ะŽ”นจ ๎์๕SBmuxว{ัธzสŒƒ?ฅ-CFH๋ยํฏqU{lฤ‡ฎ)Gท็Lวฆ)ใงQJ2m๊‚GB xy}_๓4ี๔ฯใRแq๗๐5ึกี3IuDl\โLiอ€x}iพ๕์‹ˆSƒฒŽ›A๖ฯแRฺL™#ฆšU๚ŸๅF[๛อFI๋šฎd๗ธนmฐ”ดœw ิคบจฝ:PI์h“w<šrqทa$ภ“จRา๖ฉmF9ฃš1žฆŽ)วšเ์-%ด๙ต KE%6ฺดR`}(ลG4›ิซ  {QKอZM“q0;ัƒ Q฿4ปlŠžXฝย๏ ฿Ÿธ๏ยŒ“ิšB3Ešุ~ฃร/๗E&}ะ>Ÿ•.j”›๘‰ฒ่…}i7AFIข†ๅi!r?บ)>€ NœsHq—8X^hhฅ๚ัห0ฝ„วพh็า”QIŽzสฆIกฆ€ Q€?ฮijข•„ล฿ทธ่ป฿่i@Sิ๘R^ลIซ๗ืR/ยq่:8๔ค(วฐฉkศด“฿.=ฉk7ฝJธ‚Š9ฃฝZKk ‹Iœ๗งv๊)0}A8 ˜)Aวa๘าc•J้ิšGPฟ•0พ{~B–Š›ทิ\ฉt๐ฅๆŒSAlw5IFฺ…฿Ažz๎ล7ฏ4;Ÿาˆู=J์~H่ญ4‚{็๑ฉ]ƒ€ #Nอฦญ]ฬา—DGMรv8ฅ<๗็๋I‚;šไฉf๔7WฐdอณาŒ๏PH๕j>c“"7ท๋Nžฃ4๏ฐ}1๙า#ต:šTzUหšˆnwvฅ ํ๚า‚ึ๋Pฃไภ6œาyb—ฏFcJ9bˆ๒้Bในฅ:?:ฎHฎ€„วื๓ฅ๚ioB*็sRšnภ:t๒งSqฯ9ฉธ๖่_Cwรฝx๗2่ฅฏTPธH)mgQ"2แฝศ$`3^W๐$cแๆป_R่ฅฏSJ็—ฤ&d฿ฺ}ขใอบปO ; ๗๋ัV๏ฟื/๛ฟิัP3~Š(ฆ ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ฯพ5ษ-ิฟ๋ค?๚5kๅ\{‘_U|k8๘[ฉ๚iZ๙SvzV๔œRิQH(วฝtsiข wํ@ษ๎(ม๕ฃ#ฑฌ๕ธรงฝ'>Ÿญ/z:๔5I๙…ƒงฉฃญ้š1Oq I๘Rำ~l๕๊[Hbไjฏ๙u๋ŠMธ๕Rๆ’ุธฅ‡จฃ9้Šn?ฅม๕'90ฐธ>ดธฆH?…Ž:|ศวฆ(็ŠB ๖ฃธก7}€v`Oาฑ๑ย‘L ƒ*x•ฝr=ลnน_S7อั Žนค้อ+0=BŠ(v่5~ขRัJ1~F›.ยqR๎วqOยžอMฺฃท้Pใ4๔ ฆ.ใฯๅHOญ!8 r)๓=ƒ• ๔ค?J0aF;ิJๅ ฃhฮqE>†šๅถ ๎๖ฅคลโ•ากมใŠ?*3ํ@>ิh๚มฯ|R๔ฃ ูsFบ‘TฎถืQx๗ค>ฤัN9_ึชZ๎ะถุg็G4โA๛ฃญ จไ]q)hค$ŠvๅŽ๗J6jLŸC๙Qœ๚ŠŽd๗AaJF=3KITิz W๔4ii9๏Iคท Dม่=ix=จ ๚T๒ฟฒ1๔ฅป๚QŒ๚่ฯฏื7Y€ ๔ฃ๐ฅO๑P@๕ซ๗บ?ศWBgึŽิแz_“šƒ๊ฤไ0œQJqื&Œ฿๔ค ๏ธ„ๆƒžิด™9ฅ-4c^AŠZ) ว้J๊(,. LIธvฅ)_ฬ,(โ‚๘๘ CŸZ?:ง'ฒะV]@Ÿ|QKƒ่hมTำOฟ๊‚๛Rัž?๚๔”›]/A ๓ภ&Œ“ฺIš‹ส๚ศvเ€xp7#3G€ฌo–—T);บœ~mpsIšNz:r’[ก%ุN)ฅA๊ิน' ่h็ะื4ญ'ฑ ›l6๎ดนวP:^{Pฃฃา“ ้๚RŸ|R๎?:wํ`ฐปGฅล/ใIŸNjšŠ 9๊)ํŸฅ.}xฅฆต( ๓Iทิตฎรธคž฿สŽOZ?าำ๖lW(ฯฅ=• cQ~]6ฟR(ศ๕hษค๙‰้Mพฺ๔/ภ“Ÿ‡š๏}Iข–ฝM+ห>ษ<ื๋๊Oต๊i\ำ๘ฤTพ\ฟ๎SE฿๋—฿๊hจฟEย๘Zึlu๙า[ห3JHิรs€ธG$|ฯ๐เ็LGuErำxฆxo๔ฝ:ฮั59ฏ-<๕f+`rpAภ8ฯ้ŠชํSJทธ6e.ๆน{co,ส‹ฆ7n๐9วz์่ฎ9>!Z>“%ศดgป[ฅด[xฅW#gnื8<ิ>'๑ˆดแ4ไฐฎึ&HIrค ป฿‘ํท€;z+–บ๑Nฅkฉุ้‡B_ย๒๙Iv0˜'‚ลqŒ ็฿5ืg†K#F’xดี_ถศ.|ถ#$(วอŽ}:P]Ersxฬบhดฝ2KิŠอo&4Gฑw๊pG๑ฤญcกOำKซBทl*qิฎsํz์(ฎGW๑•ฮŠนปำm–0๒Du(ฤœ๕ ธหc๐อ>๗ฦrGikง้Oxnฌ๔m็ˆ๐ง' ๖s฿ ฎŠไ4฿h\้A๔ฉ`ดิ‹$3ดช~u๛รh็ใ?ฅu๔QEQEQEQEQEQEQEQEQEQE็฿ไ–๊_๕าต๒ฎk๊ฯผฟ 5Dgc$8U'๗‹_,g]๖ณŸ๑ฟยถฆฺ[ ส+Fศ ƒาŽ*ว๖u็๚O~อูื๓้q~ฺถๅ{ฅa{Hw+๒}จลXฮปŸ9๏ู ?ณ๎็า๛๖ิ$๛ด‡tVฺ=)jว๖}็kI๏†ฃ์ฃญค๗ํฟย‹$๕Vi่‚“ MX๛ ็๚\฿ฆ …ู—9๏ั vB๖ฐ๎Wภฆ7\Uฏฐ–W๗่…'ุoOน฿ณœ์๔C๖ฐ๎V รฅ;-ฺฑ๖ ๏๙๓ŸŸ๐ฅ๛๗{Iฟ๏RJ\=ค;•rOU c๛ฟฅZ๛ ็๙฿ฆ ๏๙฿ณOฎแํ!๓H[ุีฏฐ^ฯค๗์าgฯœ๗์…[‹ถแํa}ๅ\ุ4์Tๆย๐หฅวแRg—๗ํชcCฺCบ!]ƒ๏n*Pะเoฤา‚๐tดŸต`ผ๏i?๛o๐ญิš่C•7๖ฟ'd'„สฑ๖ฟ๙๕Ÿš_ฐ^ฯค๗์…;๕8.ซ๏+w่hฉอ็{Iฟ๏…/ุฎ็ึo๛๖jc๏2H.ฟ‰_ŸJZฑ๖ฯ๙๔ธฟg)>รyา๛๖฿แT์ดฟ๕๗ชE๕_y_่($JฑŸw>“฿ณฟู๗๓้?๚5+™lWด‡rฎG๗ฉI๑S>๋|็ฟG)>รvz\฿ณP๙ผƒฺCนesކฌ +ฟ๙๔Ÿ๘?แGุฎ็ึ๛๖kHฅmษ๖‘๎@1Q๒‘ม58ฐปŸY๏ูฅ๛็๚O~อรๆ‡ฤƒ๎?:๐jccy>—ูŸ๐ Y]ฯฌ๗์… I๔x2๛ศา“๊jวุ/?็า๛๖h๛ ฿{Yฟ๏ูกฐ็‡u๗•่วญX๛ ็๚ฯ~อ`ผ?๒๋?๛?แJหฐ{H๗Es๔ฃJณ๖ ฯ๙๔Ÿšiฑป๒็7๛4Ÿ˜ค:?ฤ„๕xTขฮ๐หค฿๗มง ฯ๙๔Ÿต$๛/ม‡๗}&ฟg)~มw>ณ฿ณ—0ฅ7ิƒๅ๗ …์j์๛ฒ?ใึ๛๖฿แIŸvณ๛fย{\\๐bฝฯoาฌ ฟ๙๕œ3ŸbปŸI๏ูค๊W<;bŒ๚‘V>ลu>ณ฿ณŸcปํk?๛4{จ9ใƒ ข—,z>*ฐ]ฯค๗์ะ4๛ฌวฌฃู7๘Q๏?๊ยs‡rŸ๏ƒ๘ั–๕jsง\ฯวา6 O์๛ฑาเ3jบ~"๖๎Whศ=Zœู^๙vธฟG)•็{I๏ู อฯRนแRUฑ]Ÿ๙tŸ7๘R†๓}'ฟfดฟ2iิญ๘าŒžฦง๛ ฿๛N?ํ™ pฒผ<}š๛แฟยœiค๗ญ่ฏะrด™ฯAŠตŸuŽmgU4ำง–๒฿5rOก*ฌ:ฒถ=อ!ฯญYฯผŸI๏ู O์๋ร.—๗์…rส๗4U!Kœ๔"ฅ:u็k;๛๖h}๗๚฿ฆ •&ดฐ{HwD$7ฏ้IS*ฯ๖}๗๛O~๘QŸ}>ณ฿ณ8ทะ=ฌ;•ภ˜t๊›๛:๏ฝค๗่าgฯœ๗่…i%ญƒฺA๕Esว|Qœ๛*วุo็ฮ๛๖h๛๗๙ฯ~(rธ{Hw+’;ำqฯk์ฟ๓้?๛jCa}>sŸ๛fk7ๆ‡ํ!ƒŸoส“wตN,ฏปูฯ~›)~รxๅสslอW3ถŒ^าั\qKœ๚๊ฐ^๖ณœ3J,/Gนฯ~อ ฑ๛HwEbกฆ๑ฺท๖+ฯ๙๓ธฟm}‚๔หฅภถg)4˜ฝค;ฃ฿>ษ<ื๋๊Oต๊i^_๐6`๘}ฎฌฑบ1นแิƒ)kินๅนWOTTพ\ฟ๎SE฿๋—฿๊hฉฟX:ง… ีn'’MOT.Y`‚็ln06zฮ:ึ๕ฤq—–_i?dYํด๋K&„Oม^3ฮ1““๙อ_„#H]ฝ’}ก ผฆx๎VO๏=Xœ`็ถ8ฎ’Š็ไ๐……ฦ˜๖WW—ฅ,าJ<ศ ค~้ืถผั฿Mผฟิ.Uฅ ฅ˜†1ดใq้ึ๕‡-ใี,ต.๎็นด…กW™ิ๏ I%ฐฃ'žุชื ำฏ๏.ฎ ๗ถโ๓jŠmฉ>?ผ1ฑ]รx‡รS}ดถ‘ฆ]|๖bุฝฝ๊ร …‘O$ก็ฅi้^ŠฺรA[นœi!ู|ข63?ฮFHบWMEsš—‚๔ํN๚๖ํ็ป‰๏cฮฑ:€ภ ส’:‡<ฑ‚๒าๅeธ/k`,\วsว=ซrŠ็ญผงฺมคB“]าคy ,ห–,rw|ผฎ†Š(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(‚๘ษq%ฏรMBhŸcฌแฑœ~๑E|ลฟจŸ๙z?๗ย…}3๑ฏInฅ]!ัซ_*€+zMฺฤJ9ปส)ฏj}ฎฟ๑ล o๖ซ?๘๊…QขตไM๎CรัE๗#@kฺง{uยํํS~O๒ฟแYิดrญฎWฃ‹๎F€ืต3ึไ๘…/๖๎ฅ?G๘_๐ฌ๊JจลzƒรัE๗#Hฺ๋—ฃ|/๘Ro๊]ฎฟ๑ี ฮ่8 Sqธ–๒ฏน?ฺก้t?๏… OํW~ฟ๑ล ฯคฺ=O็Y8ขพญG๙/ํํPหัพ)?ทuO๙๚?๗ย…g็ฃ'๛ฆ’Q๊ร๊ิ‘}ศัี?็์฿ ŸบงŸ๛แยณท{Mว๑ก๒-˜}Z๒/นฺ—๛แยƒฏj_๓๖๏… อษ=1๙ะs๋E๔ซQE๗#G๛TํpOยํS~๒ฟแY™cะำ”0๋Š˜ฐ๚ตไ_r4?ทต?๙๎฿๗ศ pืต#/$ภ+;>๔น5ฒทม ๊ิฟ‘}ฦ‡๖๎ฅ?'๘_๐ฅิฑG๙_๐ฌฺ*WD%‡ฅซ๎F๖๎ฅ?'๙_๐ฃ๛sRŸ“|ฏ๘Vu๛~U6ˆฏK๙hn๊๓๒๏• _ํK~๐ฟแYวพ(ฃ% ๚ฝ/ไ_qฃปฉฯษพW(:ๆฅ?M|๐ฌิ{ฮฃำ๒ี้"๛‘ข5ํK๑๒๏… ?ทต/๙๘o๛ๅยณฟฯZ9&—๕ทZ๒ฏธัิฟ็ไ฿ n๊_๓๒๏… ฮฦzŠZvL>ฏK๙ํK~O๒ฟแG๖๖ฅ?G๘_๐ฌ—ฝ4˜๛*Rivี่"๛‘ฅนฉg>๐ฟแG๖๎ฅ?'๘_๐ฌี๊˜ฏG๙ํO~๐ฟแG๖๎ง?G๘_๐ฌ๏ฤะ~ฆ;ีจ*๛‘กปจwป9uยฎ๊^˜ Ÿฯฉฃp๕ทE|ร๊ิ•}ฦŸ๖๙้p% iืu.ื'๙_๐ฌ์าโดVhŸซQ_e}ฦˆื5#/_๘๊…;๛gTฦEฮเ+—Žx<ำท0่ฤP’ูก<=.‘_r4นฉŽท'๘_๐ค฿ิsอัพ*‘ปšC“้๙Tธฏฒ5‡ฅึ ๎4?ท5/lเ nj_๓๒๏• ฮ ๛Pญ$ํะVฃซ๎F‡๖ฃ?-|๐ฅิ‡ฝ7๐ฟแYแˆ=้sžร๒ช๗Zะ>ฏK๙‹ฺ—{ฏqยํํK~๐ฟแY๘4„7ท็Rื—เWกซ๎F—๖๎ฅ?'๘_๐คิ็ไ฿#+; ๆŠi_`๚ฝไ_qฅปจ๙z?๗ส…บ—๛แยณzRัmC๊๔‘}ศะิ‡ฝ๛แยํK~๒ฟแYฦ–’ตว๕z?ศพไh oSŸ“|ฉ”ฟzง7๐ฟแYข—sc‚jฝj‰๚ฝ/ๅ_q uอK~O๒ฟแG๖๎ฅ?'๙_๐ฌ๏˜๗(คน_๔‡๕z_ศพใG๛sQ?๒๔฿๗ส…š—Ÿ๛ๅยณ๘วz3M[m๊๔ฟ‘}ศพฺ๎ :7๒?ยฎ๊?๓๔฿Šฏ๘VyF=ฉvcช•ฆร๖?•}ศะิฟ็่฿+ฃ^ิ‡ผใ‹›๚Qอ]ถี่*๛ฏ๊'ตc่ซŸz–ใ่฿#*‡m฿•MŸฏG๙hn๊?๓๔฿๗ย…/๖๎ก?'๙แYŸ…4ž๒ฏธาิ?็่C)ปจฯัพW+;ะQ้Cบ Xj?สพไhnj'^›๙_๐ฅิGฝ๛ๅยณณFE/tWฅ‹๎F๖๎ฅ?G๙_๐ฃ๛{RํsŸ๘ …g๑L(่)ธIํa{ `พไhojŸ๓๓Žฏ๘PuํO~O๐ฟแYว8โ“$uaYJหFWีจ"๛‘ฃฝชฯัพ)ทต?๙๙?๗ส…guํKDcๆVฃ‹๎Fืต1/'๘_๐ค„ƒRŸ†พ+?‘@9ํC>ญG๙ํํK~ฟ๑ี ?ท๕๙๚?๗ย…gdR ,Wฃ‹๎F๖๖ค:Ÿ๛แย๘H5ืg๘_๐ฌธ่Jpึ’พึซQE๗#G๛{TŸŸqย—๛wS๒๔๏… อ8๕hศZz-ร๊ิ‘}ศัิฟ็้ฟ๏… ?ทu?๙๚?๗ย…gšF๚ ญp๚ตไ_r4ฟทตO๙๙วW)ทต/๙๚?๗ย…e|วง๓ฅ๙ฝ:”ƒ๊๔‘}ศิิฟ็่฿ ฿ํO?๑๔฿๗ย…f๒:๑๕4ผญ6๏ฐ}Z๒/นF|ผž๗ภ:ไ“ศ]ลหจ$ว”พŸZ๔ฤฏ,๘1๐๓]ฏฉ?๔Rืฉฅa/‹SEdด*_ฎ_๗ฉข‹๏๕ห๏๕4ToึTšู•ล•พ™{r๖๛<วˆฤnyม้ํZตƒŠาx‹Rพœวด&ห"พีมสซ ๓๊)ˆฑถืณ้wณ$yLฆ ฐ ๊แฐช%๑ ญ~lฟฐ๕!:ฦ%e-I็อ๕๒ฆiz+Eฉj—ๆ6’๕ฅ‰Rๅ‚2mP EmงzŽีi-'*ž๔ง๚;YG|ŽX;’1ืกzๆ๎ฺส5ีฤPD สแW๓5ิํหย้qjึฒC$ฆo=z.;ฏ''<`zี}rีฎ"ถxํ๎ไ–|ศีใWŒํ#?ผ!OŒZฯŠ฿YIฌ/งตAivฌŠ่…™ž3žqธ…ไŽฯตl๊๚e฿™๖mFาo-wฟ—:ถี๕8< |…•อป\Ayo,*pาG*ฒƒ๎Aลs/ฅj†vณZ\EฉN๑K4ฒด[dุแผฅร>@ศว99ษซ–ถ3จ]\i๗ท2อF`ผklLœ 'หฦzท๔ ŽŠ( Š( Š( “rx~u/qg41ศbyชศ:ฉ#ญq_๐…฿ฯ=4๛—<ไ3๋ต' rฦ็M 4๊'ฯ>SบฟV ตฟšษhฎ๛ H=‡สz{W]๗๒ำ๏ณฦซWAฑ}[IลบผจŒG*Gฬ;จGตM:ต%+J*ต PแS™๖ฑนsฑ๒ๆ†I<ฝ๊ŽŽๅ๒€$’$Uหแ๙ึMF,Eฟษ๛ษโแ@็็\๐{ฺฎeฺv?๛๔+ ไ,๎_๏ฮหแ๙ีo์ปO๎ว~…ูvŸ ณนผ?:7/๗‡็Uฟฒํ?ป๚eฺv?๛๔(ฮๅ๐่ฟVหด์๗่Q—iุ๏ะ  ;—๛ร๓ฃrx~u[๛.ำ๛ฑ฿กG๖]ง๗cฟB€,๎_๏ฮหแ๙ีo์ปO๎ว~…ูvŸ ณนผ?:7/๗‡็Uฟฒํ?ป๚eฺv?๛๔(ะ ๔9ขข†ฺ;`D]`0?*–€<๛ใ_’KบCฃVพU5๕Wฦฟ๙%บ—t‡Fญ|ซอoJึิhL/ง้K้@น(ภ๋อh’์๙ำx๎ๅNศ๗hเ๚าi=†7nzf— ?‹๔ฅวื๓ฃงึˆภ@>น๚QKIญl•…ธu :ะqำ?ญ4๑๋ฌg.ศhwฃฐค๚ฮซb„ำZ  OึŒ ๒ฟญ/ๆ~”œ๚€6Žิm–“๋ฉ๛ฝ‚ยไ{~tดา  ๖iว๚ฌ vh็าŠ3ŠำEปฌN}จฦi ญ’zb“œokI1Bใฑฅเฉ ๋UnศBาŸOฦ‚qุ~&Ž{Š–ิด*ึํ๘Sจp:Uย<ปรŠi_N>”คœQŸฏๅQ7๕)+ํ๚P=จคlwฉNXŒ Nฝล"ใSชาoQh%/‡๓ข“8๕SmvM 9ฃ'๒ ๕ก฿๚‡zั€} JSRี๚~&ัํGแF=ฉ;ิจ๖*โใŸZ)jํ%2thฆ”ฯzP๋Syงฐ๔M ็ƒNฆเ็ฏ้S$ไ11้šZซPำa6!ดQำฉ ๖กK ฌ๖4gAฃ>ฦŒŸCS๓ ๛L๛bŠ2zา/MDะด“ิRu้I†๎J–าwH5dพ_}ห๙ำมควนโฏš2Z‰)!9ฯQJ@ๆŠOฮฅฅุbา~4ดs๏G-๕ย“ฬํศฅฆ‚ฆSkoศ-qr{~ข‚Oต๕8ฃ๑ง_q5`#=h8ฃ้G>ฃ๒ฅ+-†ต}ล๔ๆ€1N๙qš‹jํุMaฝhฮ=:^=็Eพaq ขŒฏจฅข–ซขผฦœzด`zŸฮI:ัษี…ฤภ๕hฺฏๅJ}๚U›Q…qิฦŒžิŽิcะ~u:_A‡อ๊)1žนงcิสŒUr>ข Pฆ?:Z*นW@ž๔`gฅ6h=)ฆNžiiน>†ฅ๏จคฯฑฃ9๕QำŸ๋Tํั€™๊hฯ>ิr}?:\ื๓ู€pi0@h$zŠP~Ÿ…7๕ ŸB| ’yฎืิŸ๚)kิาผทเW“อwพคัK^ค•อ%i1/ฟื/๛ฟิัE๗๚ๅw๚š*oัEฤQEQEQEQEQEQEQEV๚ล/bqIS˜ไT‡ตZข€3t9แoด]ฒษqัvิ็ึดจข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€<๛ใ_? u/๚้Z๙Wาพช๘ี$ปRฎ่ลฏ•บWEฌ1:tfƒ‚9iQVถ_ ‡๔ฅฃƒ?ไTํ ลวท็FyฦGแI]ฟ•๔#๒ฆšBŽ:๕ Rn๖4ฟ_2่ล`=)Žผา’=i2งาขI7ธล็้I†๕.=1Iฏ็F0ิ>oZiSƒŸฝKฉฉi0ว๗จส๚ำฒปK‘่*|ภh#švGฟๅFฝ๊โš์ 2=hฃ?Z5zub’‚}จย“iŒ9ฅอN็๒ญ#%mY24vฅ?„šiažM)J+ฏไ โŽE๔โŠ0=M“ุz‡=้N๙ปiดgžฟ…Zะ—จธ=๓๙Rใำ?•&3Iฯ๙๏}ะZEม๔ขnฉw7sJหฅวv'ๆhม?ZZP๏Bค˜9Xo=ศฃ8๕ฉHวzCRำ_ฬL3GึŒR๒SM^[ƒะใHq๏AๆŽiษญฌ 0วึ—š) ๗ฉๅŠ[Ž์: ]วฑ8ค๋๋ฃ้้ฉต่'i๏ฯ็E๛TฮI๊4‚ŒŽœR๋GดIh—ŸJj็ใ๐ง;œUBาWะJ? Rญ้‚”`gง4~ t่M฿Q้ะ\J(Ž3๚ั’zีE-ะฎรฏา“QวzN+vŒ๔4๊N(#'Ž? #ถฃ)i0ฝ@ฯsšต+๎…`4ฦœB4๖Zvณฝล!)ค1=8ฅศฯjZ™(หqซ {๙าแจhค –ษP็ธ€ŸJZPiจ&๗m(๋Kดž‚“kwSV—(›ธ๏/#๏/ใHTฅ&๗MZmก$ฤคษ๏๋Oดา[=ซ9GNฟqIŒฮC๙า‚Ooึ—๒.๎kžฬฑ0cKล&9๏J1๏Wฟญ( @ํ๚ำณพ€.G๙u่JZi[็ถขะ^{*3์*Nžฆ—'าง›ธ์๚้2Ÿญ.hศM%nเ&3Fพ็๓ฅ(๋๙Sด'CมiF}จ ข›ฐ ›4๔๏ส“Žร๒ฃoนฅไ{ะำ๊3่?๒O5฿๚๚“E-zขW–| ฯ+อw#้R่ฅฏSJๆ–ไ•/ฟื/๛ฟิัE๗๚ๅw๚š*FoัErบฮ™ฆ๋:คš|}“\ฐ {zะ#4(G>๛žƒŸLฑUฬ\K5ตอ…๊้ถบm”rBกƒ›–ส6ฦ^j1ซ_฿‰\3ศำกปูฑNๆubwnๅcŒผะWErgPีu %x๏ษSJ‚๓สX‘ˆ•ผยA(uใ‚9อ>๛P7šaธผ๓Qณyฺ?-Bยเ!p3œโzPGECiฟ์p๙“ฅร์ฆEฺใ๏“€~ต5QEQEQET7s=ฝœำG•ใBสƒซ:W –ก}<{๚~r ฦญxRท1ำC Rบn๖Šเฟแ2ฟŸ?๘ํ”ยe?๑+/ฎา7ฬฤy}็{Ep_๐™_ฯฦŸ|๖ส?แ2ฟŸ?๘ํ”}vfb<พ๓ฝขธ/๘Lฏ็ใOพ?๛e๐™_ฯฦŸ|๖ส>ปH?ณ1_y3Rฬpษ& ŽKษKชyg•๓%ฺฤzใ๕"ธyผY}q ภำุ•‘J‰ฮง๏?…wr”ธDW@งน๋๎ภ†ถฅZ5UโsWรฮƒJ}B ฤ๑๎ สA*สTŽ ิต›บ{๋๓nWgœนฬeน๒ำฆจ๚ฏ๘?ใZ˜(ช{uUฟhจ๚ฏ๘?ใ@(ช{uUฟhจ๚ฏ๘?ใ@(ช{uUฟhจ๚ฏ๘?ใ@(จ ๛@N{ปs๘Tด็฿ฟไ—j_๕าต๒ต}S๑ณInฅ๙้Z๙TWEญfzัด‘Gฉk~Eธ\B= 4ำ‘๕ค •:OQฅฆๅป(ฯ๛BญN6 @ใฝ(๚ๆ“>ฅ=i+_๐เ!'ำ๕ฃ-้JH>†˜~ธ๚TสMu ๚ัŸB)ก~ฟ.>ตQm€ภ็๔ฆ๎บ~ฅ!€TสZฐธnZ23ว๓ค=ฯ้N้๊hNLb}E((๙&๕ฆนฏ ‡‚ฝง๐“L3ะ~t๎•ฒr{ข,ปˆsฺŒ_า—๑ฅวธฃู฿Q๓ รzสŒำฟFาz jฑดc4ํญ่*LR”{‚}„R3F@=่ภ5›––Žƒาำv๎าแGc๘SW{ก{Cv?83ึ’€yฆ“‹4c‰'ฉ4”P Uฝ~!mฐ˜ šSMฦ{šRำ`ธผั้F=อฉkmPร๑ค$zดc๐๚R๓๋๙ิ{๔อ/˜Œ็ีZฦii"\{ ~ด”b–‰. ˜Rq@๕้ลOฅ๏ iJBqKNGE•4›าโoศf~ฟ•!’C๔จฮใษTš่ ๗Eš0}i3์ใP฿I8:]็๒ฆ”~5JM์&—Qsš))s๋Myฐ๔iวjL‚{Rไ๖วๅC”D“ 0Oำ้F[ิ~Tœัunฃิ^i1ƒGอ๕๚RาVoT18๔อเ}ค<๖ฺOf โ Z >ๆ’”V€ำ4bŒš0O[ี{ ว๛+JตขณQKญ‹ธs–“>„PฝยาwฃภwŽwฐX3Š2๑Q๊ฃzี7&!~_๏ไ):Qึ‚qุินูBdคFฺ›ืธ(๙O ฌ/ๆPป‡จ ๔?ฅ'˜Qิัvฯจจ?Znๅ๕ฅ๋ะี9h ๔ix4{ัฐz’”ถษค็ิPI้ีJ-๊ยใ~oQ@>น œv4žีtcŒz0sึฐ๋Kซj ็นcาdง๔ง}*7h8๕คฦ?ˆยŽพดนํ‘๙ำั๔'ภŸ๙'š๏}Iข–ฝM+ห>ษ<ืy—ฉ?๔Rืฉฅsฯโd•/ฟื/๛ฟิัE๗๚ๅw๚š*oึt๚u;ฯqคุM+œด’[#3rG5ฃE1฿IำdŽ฿OดdƒˆUกR#tcยคนำ์ฏ6บดทฃ9C,aŠ28ซPf‘ไ0ฦ^D์Te”gžใ“วนคถใหฤ)JG๒‘N2 เqํRั@ Š(เ…!†4Ž$Pจˆ  t๚( Š( Š( Š( —'ิาQ@ “๊hษ๕4”Pไ๚š2}M%น>ฆŒŸSIEGqนถ–'dŠPเ๖#Š๗—ถ’’Ey&o๕e8๛๛{ึ๕  ถฯm™$4ญพB8ภุญไ๚šJ(r}M>ฆ’Š\ŸSFOฉคข€'ิั“๊i( 9ขŠ(ฯพ5ษ-ิฟ๋ค?๚5kๅLgิWีไ–๊_๕าต๒กc้šึญจะ`z—ธอ&๖M!cZ๓A๚Oย™ธ๚PGcŠ=ข่ŽMฐฆ{5894ทcฑ์ดzƒKsKUศ๚ŠใvŠB่)r}(หz –ฃะ๚ ใI๓gฏ้N๚ีFํ?t})H”ฯ˜Cั๊1๛~ด`SC7๗iู๕jQkD ฟZ1ํI‘่hฯ=>”& “้J9์(švW๛ง๓ญ š๋}ฤIˆT๚~ดb”žxญ!ฆี๕ฟ Z๚ะEทๅFGญ.m,วayวZJฅรzSiุIก1๔ฃ˜ฅม๔4ก ่ G/‘W3฿แธ๔&”ยI{าlฃ จฉu_‰ ลŠbŽดŒ:Ž}qN O๛่Sลปใ๚ซp[’ฅmูฅZ—์ฯูใพ้ .Ÿ๗ี พจ9ฃั‘GcIœSœ๕‹}S„kUj7+™Ž}hใฮค0ƒาX:U€ฑใูช’่'%น>๕>ศTpู๚54 c๒’?ีrพโ็]ˆOใ๘P>ง๑ฉฬjฝXŸย~ฏโj=–ทธข"๋ŒZŸ์ฒFฟV @3บ#ชq]…ํrbi ŸC๘U“๔ฬ]โ“์๊ๅผCCฆšจŠxcV ท ๘iพR“) JƒE{Hฟ๘b"ฬ{š*a?ผ~€Sท"QเC*œ./h–ศฏIŽ{Uก,Gช ๚MtFๅX~`T๛5=ฎบข L๛~”๒ iธ\ๆฅ(ฯกjHJึคƒk๘ำฐWˆiจiจœี๔!ฃ?_สฅ฿L—๒ฆใ?_ฦ…ะ9๛ฯ๙ลSOเธอAึ๚Šj๋v]สJ˜LฃฌI๙SL€@)ฺ๛1]๕Dtm™งn็ ฉสรัS์ำnM"0(็S_Oหo ?ฅอ-ฮ฿BCK“Žต!“=ฺฃ๊xอ;tธำ๎„ *A‡ข“G”ใช7๓K“บ:๎3๑ฃ๑งุจN)ยŸ•ู}Sๅd๓ฎคTTฦฺA?๏กL0๊ศึฆฯฐิใŒŒัอ<จฤา˜@ฯSK–ฺฅ^โั@โƒMฉ4 คฦ๒}(ูžดธนค*=็\ฝส‚—h๔;โŒ๏Pฌบธ‚ŽjึƒŽ๕Zn€ZBqH๛PqำŠท9[ ฌƒ'าทจธ •.sYฺOจฦ†€งg๋๙QืกŸ7๙+ LภฯJS๏šoส;šR•ภw4=)2ž๔ก‡aBkจ E!E'ฬzำmt@} ๐'Iๆป_R่ฅฏSJ๒ฯ5ัOR่ฅฏSJ็—ฤ"ฅ๗๚ๅw๚š(พ\ฟ๎SE@อ๚(ฎKV๑5ี†ฃฉฤ—Zr}Qขต™ฮน%sตH~นเaM1m7ˆํเyw\˜`eK‰ีAHX€pไใpฮฦyฅน๑%•ฃ”•& /™G T6ใฯม?ฅlQY-ฏ็d6๗ฬg’โŒ.้ |‚HAใ$ŽiงฤvไZˆํnฅšๆI"XUT2บ}ๅlฐ<็๔ฑERิ58ดอ;ํ—MทthcE เป๓หŸ†k=Q B็ฬำฏีํ๛”(„ฤ˜ศrC`Œg…$๐x  ฺ+6X]=Wณบ–ีฬ’โ ฅ{’ 8๐ 2๓ฤ–7-m,sŠฉA7Ž1<เ๕ฮ1ืง4ซECภ’โX|ฉTฦ–d![9่zcŸN*j(ขŠ(ฆษ"EI#Ef=ฌ๘JดžำLGจถƒŽิสqฤ์\)N[๔6hฌo๘JดŸ๙๋?ษฤั V“=gภY?๘šŸmO๙—_ีซ#๛™ณEcยUคฯY๐O&๘JดŸ๙๋?ษฤัํฉ2๛ร๊ีฟ‘ฬูขฑฟแ*า็ฌ๘ 'G%ZO๕Ÿdโh๖ิ™}แ๕j฿ศๆlัX฿๐•i?๓ึ“‰ฃญ'zฯ€ฒ๑4{jฬพ๐๚ตoไs6hฌo๘JดŸ๙๋?ษฤั V“=gภY?๘š=ต?ๆ_x}Zท๒?น›4V7%ZO๕Ÿdโh„ซIžณเ,ŸMฺŸ๓/ผ>ญ[๙อš+ญ'zฯ€ฒ๑4ยUคฯY๐O&mO๙—Vญ๎fดณE๎šD}]€E4Sฎ่คIี["ฉiwvือq~คU“หŒ˜pA8R29'ทaR_K7ทjŒฆG1>‚รk‘ืชฆดM5tdำNฬนEG ้8%7qิ2#RP#ฯพ5ษ-ิฟ๋ค?๚5kๅ\~๕Wฦฟ๙%บ–?็ค?๚5kๅ=ญฺ๊–ใฑ๘าmdRŠ:ž•ต—๕ aKHIํH3้Bi;“Q๔ฅ็ฝ…7๊u9๚ำธํI๚Rะš[™อ&๗ฉsŽง๔คส๛ิทoนงSA_oส—#ิQ]ภ(#้๙Rฦc=1Iสเ;ŸoสŒjZJำ•X:‰“ž—ŸJB?ฺล็p?…fฏ ษ๕ง('๛ฟ‰ฆั[ลทฉ2Ea๗โ้AS๔5โi3ฮ9ช”๛ฃ5ัŽฺ๓ŸฮžฌƒYƒ๕5(ข๖ุง๎Jeข๒อhq๗BฏัEEG“—`TืRO>Sีอ0ปŸใc๘ำy์qGืšh๚ข”#ะpf๕?ณุ~Tฅ/^โฉ6ี…d'๘E.า’Š—}ฌ4ด”นฝ&sาškญ€ZNii:RrทQุZ( Ÿjฅ}ะบŠศiKฑ๎iน๚Qšj}ุนW`>๔œcŠZBqS&ทe!G™็šQJฉูตtษzt’นS๚Sp}:\ษฬ:าา`๗4 zŠžg}F;8์(๐ดาijีO2yC่(ค9 ฅฅฬ›ฐ์้~^๋๚ำr=hB?9า{\9n)วlาg=๓Aึ–—4ะ,„ฯฑฃื๓ฅฆํ้S)Mu“ ๗ฅคภํEZๆkQhƒ#฿๒ฃฟZZn9๋T]ฆVใยฑ๕าk๒ค็ึžึ—R[f„๏J)Fัืu/l"ฃ’)่;€ใำ๑แ!—๒ฆ๒iŸ\U^}ิz’๕‰ค๓Œฦ›IาชR}X(ฎร้V4™ฯRM7๓Kล5{w— เส?ๅž~ฆ—อวEQ๘Ty๖ฃฏTน4>Tว๙Ž{Œ}!$๕#๒ฆํ๔tเำN-WI 'Šn@๗ๅO Žฃ• ๗lจป์7ฬ๔แ4ธฯa๙ัƒMci=สc๙ำ€ล!๚šL๏ฮ’ฒฅฐiAฯงเi>Q฿4nฆแM;nฤ:“ฟZin:ŠU้Z)ล่…aIภจหd๗ฉ3ํA฿ญDใ) gฆ” ๗oฮŒ๊?:2พ…BVSF)2?ฝKZ&†:ŠLญ.ต ุ๋Tฝ^{L๚ใ๓ฃž์*^ดีภ๚เO“อw๓๕'ŠZ๕4ฏ,๘1๐๓]วIข–ฝM+ž$ฉ}นฆŠ/ฟื/๛ฟิัP3~จฺ้ยTพฝ๓7ฃท6ฎน็5zŠb0ฎ=%มฝ/Dv7า .!1e‰ภ ๓ภ!Fr|b’๛ร1_j——pส—6ˆ/r1ๆžป@‡Zข€9ื๐คOง้๑4ฐอsf๗—ยDนห–L๗<๐x๕ซVฺทšยPึ๑›V‘Š[‘หŒp8วใšุข€)๊vฺ6‹™ๅโhฅท?rE|~;q๘ีkํW?hกn!๛™๒๐ฌน๋ฯ๖้ZดP5ฉ๘Lj"pื-บภ{Q+C…#1’ภ.sž‡ž๕f๋รฯup—-|หqlชถLฉฤ˜‘Ÿ›wCำŽ8๋[”P1ค๋q+ษ2ผL$a1ฐŒไ็<็ฆ*j( Š( ็‚;›y •wG"”a๊ฐแ ฑฯ}~qŸๆ•ัQYฮ”'๑+šำฏR—ภ์sŸ๐†Xฯ็Bโ(„2ว~๏?๒]Vฅฆฟ]ฤ;9ฯ๘C,็๎๓!๑ยc?wŸ๙ ˆฎŽŠ>ญK๙C๋ธ็g9eไ/"๘C,็๎๓!๑ััGีฉ(}w์็?แ ฑŸปฯ…ฤQeไ/"บ:(๚ต/ๅฎโ?œ็!–?๓๗yฟ๘Š?แ ฑŸปฯ…ฤWGEVฅก๕G๓ณœ„2ว~๏?๒G!–?๓๗yฟ๘Š่่ฃ๊ิฟ”>ปˆvsŸ๐†Xฯ็Bโ(„2ว~๏?๒]}Z—๒‡ืqฮฬ 8cา ฺs™ ndm Sผm\๖ฦA1้VEนผตท‰ $$เฃkœ3–้Zv‘^ภb”u 8*{}hดดŠฮ@ใฉ'ซS๏[$’ฒ9ฅ'&“E๛ˆ–Š)ˆ๓๏๒Ku/๚้Z๙Vพช๘ู$ทRว๔ƒFญ|จ7{V๔›ตะp} .ํAคฮ:“๘ึทKโN()2C๚าเ๛ะฆบ ฐ:๔ฃ่i8๎ /|f’ณ`-'ะัอง๓5ฃŠรงSL8'็N8๔อ}‡ๅXฯ]ฤŠv}iir(Jรƒ้@w(ภ๔ลJ<ภ cต{พ>†ฃา—Sณ}D&ฏ็K๕`z :๚ะฃุใ฿๕ฅฦ}:(8๏Wหm์ ฅคZ1U},ตภ๔ดœ๗ล(>๔F>VฝEq3Žดดธ)ธ๗?S‹]H3อ`‚ยงoˆ~‚าpiิ”J7ูรp๗จŽ}J3Žฦy ั‡แAวึŽด)^๚ฐŽุฃจ้๙าาw๏M€`๚โŠP 5Jl.`z8๔?/ห๏IฦxฯๅUvทhZ!ฉฃ๋G=ฑ๙Tษล&C๚ะิฮ–“>†ณo•Œ ข“*xศ4ฟ7lR‚›†ฤด”Urฎƒธั’:ถ(ไvh๋ึฆแaŽ:าM'AM๓7Q--‡9๋N Ga๙S<ภh ์hU"ถak๎8ฑ?ชOฮŒ็ึ”w~ทEฒฏญง|ท~4„žฤีrE+ฒnุsžc๘Rn๚~Tํ็ีฟ:iAuอะ<ณืVŒw ณโ'๑คฆๅ%.ฌJ9๖ฅ าทf0ฆฑงRw๏YอKaซ Sƒ๗ชN;ŒŠLQ๔ข7[†ŒvW)ฆ๗้KIZ]=ญ`8๏Š;zSƒ7oๅKฝ๑ศวแO‘!91กG]ว๑ฃ๕“œ๑ŠCƒ฿๕จๆI่†“@v์ไ})ธ๗?-“้๘…1ฯv4า`๚าaฝJnVZ<โŽ)2}(šมษฝ‹ “ุR๓่)ป@=OๅN็ึœTžโ QE#า“๏zPไ๖q@>ƒ๕ฃoฐฉFoา‹>บใGญ‡ญ7๏ฮ“•ผภwึŒ๛Sw๊hตหธ œ้q๘Qฯฏ้HXฅu3ดsอณะR;c๒ฃ,{โ—5ถน>†“ฉ๏๙ำ‡นคส“ม45~ข>…๘1๐๓]ฏฉ?๔RืฉฅygภŸ๙'š๏}Iข–ฝM+i *_ฎ_๗ฉข‹๏๕ห๏๕4TฟE—uโ2สๆkyๆ•^ฆV๒##s…ฺ8๕4ฤjQ@ €Aศ4PEPEPEFฒ–ธ’/*EชD„ ญœ๐9ฮF9๚Š’€ (ข€ (ข€#šxํำ|ฎs๎}ฝjํ+o๚m~*;oญํ‡๑ส‰ฆึNrปH4ใส›๊MฅmMฟ๏ร…ฺV฿๔?๘T4R็œ<๘฿ฺV฿๔?๘QฅmMฟ๏ร…CL–E†•พ๊)c๘Qอ ไ‡Ÿ฿ณฅmMฟ๏ร…ฺV฿๔?๘REฆJ๑šําR3ฒ5]ซํศษลVŒธi"—dMฑŠ๔<โชnh”ฉทe๋ไZาถฆ฿๗แยํ+o๚m~**yไWณ‡Ÿ฿›๛J›฿‡ ?ดญฟ้ท๘๐จhฃžA์แ็๗ภ&าถฆ฿๗แยํ+o๚m~*(็{8y๐ ฟดญฟ้ท๘๐ฃ๛J›฿‡ †Š9ไฮoํ+o๚m~(าถฆ฿๗แยกขŽyณ‡Ÿ฿นฬWผฆษ^ ‚5-g[๑ฉฆ;ย๙๗ร.?™ญาmjeR*/Cฯพ6ษ,ิฟ๋ค?๚5kๅAํŸฮพซ๘ื$ทRฎ่ีฏ•kฆ’บ%}&3ิ~tฟ…_ึตkซฦ:bŒ๚าs—๚าRd,&๏JQG๔ำ๏š\อ;ถฟ Z`*?ˆš]๋๋Vช'ป€‘฿Ÿ/าi”‡ฏa€็4๏ฦ›ฦ9โ“rโ5Q’Bcฟ Cฯc@ าŸำ้JO›จะพว๔ฃŸ๎tแŽร๔ ŸcQส—Q‰ƒีฉ@"“<๒q๕ง้Šา =ษ~BˆะาŠS#๋๘Ssžุญ๙ข•ˆJWิ;า๑Š@)j"ผฟ˜˜๚tc๋KI๘TšKt?@ฦi6ในฅฯื๒ฅค”[ัz:\/|t gฝ'zพK-‰บbแGBิ#ก4‚qš))_แ*๊;{ฆŒ๎9ฆํฯj0=UๅิV]c~taqิำr(๚RๆˆY‹œtงว๘๑Mค)๓(ใฯV›ŽzRโ็๓ค๕ะ0}MลŽใ๒คwLิ7กZ‹KSIKŸzด’ธ„{ัวฏ4ค“I๕ขZjy‹Ÿฏ็Aคฯ< 9๔ฉU๙PbŒQฯงๅI4นฏะ,:ŠNดธ๚ีYฐธ˜ฯsK๊(้HN=?9RึยปŒwคฅใบŠ ๘M_๐ภ[ฒ“Fึ๎ง๒งใฆh,็ฉjททd้Iผƒฯ๓ขŒ/ฅCoฃพโญไ;q>Ÿ•&i0)8้95ปBหฐเA๊ zใ๋@ม<ž)ุNออhฌึไทf7๏A่ฆƒ๙ำHQ่+9Iฎˆคฎ;Žร˜=…ŽƒปŠ๔&uญXkะiฯ ฅุR–$ri1Ÿ]อ=Ps[pฦ)hฦ%W-^เ\Ž0@ažCQืกฃาฅนpฒ Gป~bƒณฑ58งtข3”ดฒ/[‡๕hฦiir}?JฎUีโp=่ฅ็ำ๔ฃำ๔ชัซ"}FาmฯQJsŽ)€1๋šๆžŽอมŠLฐ^;‚i8์ฆ—ฃพเ'า›=E๖#๑ฅwง๏=ภZLŠ3์h๋G-ยฯS๙าํ๗ฃ>ฦƒŸzอ$€1ZN}hพจศบ >ธ?…๐ค-q@a๏๙RๆW‚’GR)7฿๙SฉŒคžŸญ6ๅะ๐}9 ๎ฆ€Gc๙า๐{ะฅ'ธB|<ืs?R่ฅฏSJ๒ฯ8…yฎใ~คัK^ฆ•„พ!/ฟื/๛ฟิัE๗๚ๅw๚š*oื0๚,บŽทญค๗–๖W$dT,๋ณ 7'ุํ"บz)ˆโต>O7RŒX\>ฆ๓/๖uสDลb@ชั!ฒ ็ฎi5m2M^๒ {yLŸํX)ฺำช…X๓๊XวฝvิP-์ถ:}ิ๖อไM=อฺ4๛Yฮc฿Nี๙{เใK๚G&๑ษsh“\9Y-^$E+๒ฉF$…ฯ@•ุQ@#ณ7ฺร 2ขุlˆ„&qŽ€Oถ+๓ร๐๘H<„Ke’ษ2eุูhภเ6B๒9้]•วjvWwCUo;y๐X ช6X‰พ1“Ž•yฌ ฒิ5x–ฦUำdฑ‰š+hุ|ศn|v็๔ฎŽŠEฦั€@วzZ( Š(  ฝYei``ณ%ว lฆ+‘อื;วxOฏฺวสป+๒๎…ฺ้“ำ$ฉ๔4•วV’ฉ'vฯGˆ•(+$๏฿ีœw๖nน<๏๐,๑ฺ?ณuฯ๙็{cŽืcEg๕X๗f฿_Ÿ๒ฏป วf๋Ÿ๓ฮ๗วฆKaฌG ผฉv#U%‹]dcพG˜s๙WiHสJฐHมฝ ๏v)cfำ\ซ๎,ห)yีิฃรcฟฆ๑ใาณuจ฿Iผฏ๏p์?ๅšzUvถผ‚Aป}ืc“๔๗๖ซะ@–๑lL๚–<–>ฆป%$ั็B-2?ฐ๙๊๏๋ั๖=OzณEAฉ[์zŸ๛๚๔}€ฯS^ฌั@พภ?็ฉฟฏGุ๕?๗๕๊อ[์zŸ๛๚๔}€ฯS^ฌั@พภ?็ฉฟฏGุ๕?๗๕๊อœ>Nคƒy`a~คœrอjึmฑ฿ฉ ผ„‰ƒุ’ธFดช้์ฬซn=๘วยฝOบAฃVผย–ืZe๓ฯoฌฎv™1น”๑Ÿpเ+฿6ษ+ิ๋ค๚5kย<3ค๊?๏ํkŸ';i๖ฯ'5“ŽMy~g>ัGtS์_8๊†L||ต8ฯฆ{T๚,>"ิโ‰BF—rชขŒฮ…Zo๙แฐ“่ดช#‘ŸVฏษฟ๔3WJRu5อ๙ขจ7ํ๐/อv6ฐ=ท† Aต\ >b๎‹๚ŽOิื_ใ=+Nต๐”๓[้๖สญ*ฌ3ท<๏\พ›พฐœŸ๚Uู๘๋Dฏ๚้ษ^F"r๚ี%ด๔ฆxxช“Xส 7๑?-˜‘้ถ>g…ฟะํ๑2Ÿ7๗K๛ฯ๔xฯอว<’y๎kKมzN›uเ๛i๎4๛Iฆi˜$Yˆ{‘Uใ?„??๚MjxD›_๚๎฿๚ฎlUIฌ=ำ{ฏฮg&2ญE…บ“u๕CหLฐk ณY[šX„คฤฟ8(ไ๎ใžƒฏฅrฺŒฅพพR(ิลฉF‘ lS็p=a]ฅ‡ƒ|)]โัrWฉวฏ‰?์+ืฎ์,ไ๊J๏ท–z8:“uewี้eธฌํOรinอด&ไ;6มผ~๒1ืฏB:]&าฺI|$&ผย]ศ™‰ฝx๕ฉก’U7to7๚๏ืIฟ๔aซs—$๕๛RาYคชKูิืํฯHfฟร2ย๓BŽKซi:๎–%cƒŒ‘าฆณาดๆkMึงvทqฬ+ส.งAวฐฉ~ศป~I  žห๏Xุz็๙M^n"ฌฝUฬ๗$yชี&ฒR{๗๒‘ภxโO_Am pยพ^ุใPช3“€=๊๏‰,ํญ)ขM ผ1ห"๎ˆ›๗hy#ฏ$u[โŽ๚‡ฒัkZ*‘;@t่คฏZœฅษ†ืuถžๅ)ห“ ฎ้้&ๆ›bพ,ฟ…lํฤKจ้่จ"]กYฐqณcฑต:,nma.Z฿,cๆ๊u<๛€ฃ่ฅnศๅฉุKNัmYh1กล๕ท•W*Mย:'ไ>Y๛8๊ๅ฿’ŒDถ€๘ซ\‡ษสŽ;า‰ฐm]ช๛p;c˜ฉ๔ปKi>๊ท/o\$„$ฌ€บะ๔=GS๙šl๒8๘ƒน฿่/VtXฎงB†ป*ษฺ:๕‡ๆzง.XkึŸๆฬ฿ CมึD๑G.อ*wM๊k0ร=๕ฎL7ฐฉำญ ›w#ศ^X๙น=:œศW แฝฎุ"ใ๚Wค[ว๖ถฺตว™ีœj;7X๓๓š“YYฝฟศใSaim'ˆ‹X"}สู]™vtฯ|uฎ'ิืฆ๘แ•ขึ๐˜?_2J๓๔rส’ษ๖าbzน4ๅ<=ๅๅคฤ]วิั“๊i(ฏF์๕…ษ๕4d๚šJ(ๆ`.Oฉฃq๕4”Qฬภ]วิัธ๚šJ(ๆ`;{Œ:7ฟ๗๓ฆัG3๎+!w7ฉ่ษ๕4”Qฬ๛Œ\ŸSI’:(ฅpq๕4n>ฆ’Šw`.Oฉฃq๕4”Qvไ๚š2}M%s>เ.ใ๊:77ฉ้(ฃ™๗r}M>ฆ’Š9Ÿp'ิา๏aั็MขŽgy๖้7S๙าQG3๎q๕4n>ฆ’Š.ภ]วิันฟผ:J(ๆ}ภv๗๓~t›˜๕'๓คขŽg,.Oฉฃq๕4”Qฬ๛€น>ฆŒŸSIE`.ใ๊hษ๕4”Qฬภ]วิัธ๚šJ(ๆ}ภ]วิาd็9ขŠ.ภ]วิัธ๚šJ(ปr}M>ฆ’Š.ภ]วิัธ๚šJ(ปwSFใ๊i(ข์ษ๕4d๚šJ(ปยIGoฮƒ#žฎว๑ฆัG3๎+#ข๐]ŒŸˆาาํร$2ฮ>Sศ๔#จ5ฺวeง๎บ_์๋ภfู8ฬ๒งง •qžน[Oญรเ*Dฤ’p8ฯใWดํrv๑T๖[’[y๎ŠFvจ•œ`Žน,:๑qด๊ิญ'ขI.็˜าญVผน‘Š‹ฟเwืšŽบ•บฎ•bฦI0~tž็๓ช—z6–บยฎ›fYLภNผŸฮถ๏ไ'k\ฯŒŽจsจ\๚pŸ๙E_?FตM=็ณ๊|ฝ ๕}฿y์๚™ึZ>˜"ืโm:อฃŠkQ„W8ใ=๋›ะl,ๆ๘‡ฌZหiว็์‰ฃ1ะbป๙G]ํ?๔ฎ_รฟ๒Sตฯ๛xะลzkTไซ๏?‚=|ขzt*อยตไ‡&&ปkoซ4PDŒšฤ…Pฉ‡๙G เqV ฒตo‰ฐZhMฑู˜v ‡๗ ๔้ืš‹ฤ?๒ ึ์>๚ ี๙+6Tัฝi?e-_ร/ส'ชง/c'ฑ?ส'_โIท๐ฦก4:e”rค Uาิ+.]+N(†aj"6w,Sษ]ค‡ cจฎล฿๒)j๕๎ี‘8Šถ฿ผฎ๔aฏ ^ฃฅฌŸฺ๋ไมึจ่]ษพฟAชฺ่Z}—f›fปฎญTโ†GN‡ฝr)ฒตท๑ˆโ‚ฺฃ†ฮ0ก ’Hกไfป_]?๋๎ำBฎ'ล฿๒2xŸผaัW^[Rnขป{~ฑ;๒šณ•XOn€šี…œZท$v#ว- FXภ* JNl“อv๚~…ค=Œ ฺU‹1ŠIทC’@ฯjๆผGnฑ๘?Vœบ[‹`Gn"ฮปM3A๖๕ฦไ+ ]i๛ดคN|myผ4\d๗๏ุ‡๔ฝ>หBy-lm }๑ ัBชy฿ž@๖ๅ๛ฉฏ[๘“"๋ฟฯ^G^ึM9K v๏ฏ๙Aร๓”๐—“พฟข;h,ญ_รฺ †ฺ$ถš“HXห•VฺI๎GoJ—TฐดรDษkห#ู‡uŒmษ!lž๙ภฯฎ)๖ฃ)ฏืžง ตMซ๘คด?๗์ฟ๔ +™ิ—ดZงฅHไu'ํbฏ๖ฅฅฬ๖Ÿ‡–ะZ๘GVKx#…Lณ’ฑ Pyaุ๘ ์นOศงชืI๔'ฎญ+ำม6่Eฟ๋Sฺหxh7jTพ\ฟ๎SE฿๋—฿๊hฎ“ธ฿ขŠ)ˆ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠkขศ…C)๊dƒ๛>ห|ํ๏า…Yข“Š{”ฅ%ณ+gูฯฟ๚_๐ฃ๛>ห|ํ๏า…Yข—${ฺOน[๛>ห|ํ๏า…ู๖_๓็o~—*อrGฐ{I๗+gูฯฟ๚_๐ฃ๛>ห|ํ๏า…YขŽH๖i>ๅo์๛/๙๓ทฟKgูฯฟ๚_๐ซ4Qษมํ'ญŸe>v๗้ย์๛/๙๓ทฟKfŠ9#ุ=ค๛•ฟณ์ฟ็ฮ฿/๘QŸe>v๗้ยฌัG${ดŸrท๖}—๙฿ฅ ?ณ์ฟ็ฮ฿/๘Uš(ไ`๖“๎VฯฒŸ;๛๔ฟแG๖}—๙฿ฅ ณE‘์า}ฦGpฆศฃT_E๚(ช!ป๎y๏ฦ฿๙%zŸtƒFญxOฦtGฅ%{ทฦ฿๙%zŸtƒFญxWไฉพ?๔[ืc๎_™ๆf๎ฒ๙~fศ„ŸEฅW๑ท~Mกšฒ฿๒#รa7ัiUผI#Fญ_“่fฎ๑?๐/อC๘ฟ๘ๆฝ4ข๘Cยr่qWeใฟ๙๏๋ฌ_ษ+Žำธต๐y'ํ7?๙*๋k๓จPฐg…?๋ผ?๚.Jใต?๘๔๑'…cฺ๕ูXศ+ยŸ๕%qฺŸzx“ยฑ9๋ฟ Izฏ,๔๐_ล—ชำ†”?๒JgฎฃcฃE[เฟ๚้?Œ4ฐษ'Ÿบ7Žo‚฿ŸFท๐T๔†\ฟ‡Wsา$t_?ไ]‡ฟ$ะ*k>ถ?๖นST_ไ^‹ฟ$ะj[>ถ?๖นSW™ˆ=__าGŠyฏ๊)'ฤ๙๕๛eขึฏ๘ซDํัข’จ|@‘P๚Eขึฏ๘ซDัขฃฏbŸม†๔O~—๐๐~‹H7๏?ไqิฟ์#ง่ถฌภ1ขE๕ท•\WMd3ใ}w?๓าIนฃ XถาซŠ๓ฉJ้GฝG•FwQeKIF<_๒8๘ƒน฿่/[ท–pi๑ญฒl†9ศUษ8PzšรƒG/ื;๏๋ฅึ?ไโ๚๘WUvญ5ๅอธ™?mI_KC๓G'เฝฎุ"ใeฏIถ๘?์mตkอ๗ตฯ๛Oฒืค[ว๔๖ถฺต†kI]Žl๋๘า๔#Ÿ๑ ฮพ้•งŒ’ผสฝ;ฦ๑๏ฏ๚eiฃdฏ1ฏK)๙้1=\“๚ฏ&!Eฑixt,‘ษzNVx๗‹ะ๎ลฟ๏š๔''ขป=Z“q^๊ปf=ฃฌฆ–๒ผฑs˜๊รl` tฮ=๋:œ%อŽœ๙โฌQEQaEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP–ำP>–r1O๐ืŒบwwZn‘ซR>–mก-/†ฟไfำ?๋ๅ๋\ต>žŸกว[เซ้๚ูy!+O๚ๆ๔duJ๓?ฎ?๋ยๅทKz4๙ั™ฟv่ลบ๎YQ[๕‹ฟ๘ธฏ ”U๑ะ‹Œ”_KgภS‹„”_KdV?๒3xพ-?๔ฎ_รŸ๒S๕ฟ๛xะลu6?๒2๘‹พ-?๔ฎ_รŸ๒S๕ฟ๛xะลwQ๘*‚?”OK:฿๕๎?๚LLศ+Yฐ๛่/W-ไญ[SD งโ/๙k?๖๊ํฟ•ซ๘ˆ้หฉ†”O]_เŸๅฝ๑wŠ:Ÿ{ตe\ศo^W๚2ต|["–ง^ํYw๒6็|ฎฟ๔exXoแเ_๚J>kIEอ[ฅง}Z่uฤ๘ปF?ืŒ?๚2 ๎5_นk_Vฟ๚q.‘‹ฤ๕แŒ‚ป2ฯโ/๋ํD๏ษŠฝ?๖่พ&‘Qฏ˜?๔\UืiŸ๒ทฎ0!\—‰ไEิ?๋โuบ_ƒญฟ๋Œ?ศW6#?โ”NLW๛คฤ(œ฿ฤŸ๙ŸบCณื‘ืฎI‘u๋ค?๛=y{ู'๛ฏฯ๔Gำp๏๛Ÿฯ๔Gi"ื‡๋ฯSMS๊๒)h_๏ู่Pูศตแ๏๚๓ิฟ‘ซธŠKA~ห@jไ—๑W๘Ÿ•#†O๗ัฟ๔นžืเ?๙๕_๚้?„๕ี%rพ‘OT~oๆ๕ี%zุเG๚๊{๙o๛ฌ?ฎฅK๏๕ห๏๕4Q}นฆŠ๊;๚(ข˜‚Їํv฿k๛'ฺ"๛Nฯ3ษ7ํฮ7m๋Œ๗ฉจขŠ(ขŠ(ขกvอvึ‚โ#rฉผยo ๋ทฎ=๊j(ขกนบทฒงบž(!\n’W ฃ< “ลMEไdtข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€<๗ใo’ฝOบAฃVผ/ภŸ๒ ิฟ฿๚Wบ|m’WฉืH?๔jื†xA—๛๋ šแฬฟ฿ห๓<ฬ฿า^ซ๓G>ไH‡ยoขาซx“F[ฟ%ะอY?๒$Aa7ัiUI#Fญ_’่fฎ๑?๐/อC๘ฟ๘ๆ;ฯม็=5 DŽทc อ{๋Oไ+OPt฿ dหลษG๘VฏŠ.R็M๑!Lโ9ญฃ9๕^\ี๑~oN5D*ณ๚tท‘CมคษZ>‘*ะใ?พn?เfณโ๒'ธ?๔™+Gภ๒%ฺืgะอpbฟพk๓™ๆcช๊lJผ(้โ%qบ—y๘—ยฑ9ซดฒ๑(๐ฏ|รขžธอKึ7—แLฑฦฌ๎า•UQ’Iš<(า#hๆ๐j:•u{สF"CลTšไจฟฟ?!•&ฝU๙้7ศฟ~I ิ๖Ÿ๒แa๛Ÿๅ5C๐๓@ืไŸ๚ Mk.๖นSื›ˆ=__าG‘Šyญ๋๚Hเพ ศํจ}#ัkWU"o‡๚*:ก๑Gkค๚-jŠฟไM๐๛ฃEG^อ?ƒ ้ถŸAK๘x?Eค—Žฺ๏tทาwฎi†4X฿ถาฉ๋ฅณ‘ำ^~฿D=s’ h้ท•O^]‰zS‡ฤฝ)้&4๒9๋๎_'ฎ—Y๑!๑G|ๅsvร>5ืฝM].ณ /ืมะ`ฎบฦง้อุŸ๗Š^‘โr^๛๚็‚gk^“mะุ>jื›x;๏๋|g:L‡+^•kะุ>jึYฏ๑%v0ฮ/O๒9๏๔MxใYZู่kฬkิCกŠๅ–ฐจ#Žzำช#ี<aƒพm๔:แ[#‰ฟ๋ย veŸฤ_ืฺ‰฿“_j‰ค'มฺœx๙VKfŠ'๘Wcฅศ6ธC…q^'‘ร”E€v๛1Q๋…L1]ฎ— หo๚แ๒Ž%[W๙D็ฦ+ac'คภ็>$ศบ๕าžผŠฝณลั$ัุล*+ฦ๗ถชสร!vศ5ใw่ฑj71 VVP` ฏg$š๖Ÿ3่8vข๚ท'#บณ‘kร฿๕็จ#V5a–—€ีŠkร๕็จ#VueŠSร๙วฒว๐kš_ล_โ๚TŽ9?฿GRาฆ{??ไSี?฿›๙ฝuI\ฏ?ไRิ›๙ตuI^พ?ืS่2฿๗X]J—฿๋—฿๊hข๛rปMิw›๕็/๐ž(ะJู(:…ใซๆod‚sฯOJ๔z†k;k™a–{xe’บ1ŸU'ก๚Sลศุž+ธำด่โ‚ึC’h”Fฅ•ท“๗ˆ,F{jฮำ๕ฯ?‡•๕x๖ฤrƒ›TึฯโฦN?j๔7ฑด’แฎึ™ฃ14,P =qําšše„fฅฒ›lˆ6ฤฃสฯ]ผ|น๖ =okQ๘rิดŠn_Q{9.ึ$ศUมศRB†9๏วำxCUิต}ขC๙/•)1‡e9แี€F?ึเำ,ฺKacl ‘‹ผB%ฺฬz’1‚i๖–6–˜์ํ`ทBrVย๘ โsBฅ๒:sŒาiZu์ซ-…ฌ๒/ ๒ยฌGะ‘@+๊—-ิตTทSpพY wูSŒŽ {Q ๘ง]ž๊ัๅoถAqn๎่ย*แ F,รŒr3]๒ูZฅษนKhVržY”F๎zใฺขทาtKƒ=ถŸk วฌ‘ยชว๑4ษx{Qิต/ํr๘’žๆ9@ฒŠ๓๙‰ฯ9ตอ้ื76? ็น‡QŽ]คด’œBL’9ฯ^ ๕8ดหnฺ๎+h๎[;ฆX”9ฯ\ถ3Qbi;&O์ป-ณe_ณฆ$มศว<๓อq๚ฟˆ๕1ฌjึัjฐi‘้ึซ4H๑+–+ป๘ปgŽ)bืตอ_Uะmกปมง˜๐ร<๓฿ก๏]ฅฮ™az่๗V6ำดpหฑ_ฆG!ณถk”น6๐›ˆืbJPnU๔จ‰เญ^๏Z๐ไw7ฬฏpฒ“Vณ๑(๐ฏ|ลขคฎ+R?ุV?็5wฃ/…O=ลข^ธ}K<ผKaTsWฉƒ$ฝW–{8๛ูzฏ8tž๑BZื๔๚Q5ไ9แฏ๚๚ฝัญRxlเKOOถวฅ1T`ฤ๏ร_๕๓}ฃ^ณฤฉ)้22—๑jŠ๚D_‡ฟ๒ฟ$ะMMm0๛\ํz‹แ€ำฟ$Fฆท6๖นฺ๕ว_๘๕}IŸ๗šฟคŽโŽืH๔Zีศ› บฟ๚*:ฃ๑Gkค๚-jŠฟไLะ?_•ํS๘0Ÿ๛i๔4ฟ‡ƒ๔_๚Iุูœ๘ร_?ํ่—ฎza!๋ฅท•O[ip-|IโไS…{|…็ฌL?ญc\ i ำ[*žผบKTม๙#ฦขš’๕๏IF5 ฯต๏ฅ็อ].ด?โGโsฯ๚๓ ม\—๏ฝ3]6ธ?โGโ๚๘?๚ฝuWฟง้อ˜งัKา?œN;มภึ๒3นฟšืฅ๔๘๋ย฿jืšx;๏๋?๖ —๙ญz6˜Yฎc,I"า!ฯณMYๆฟฤ“บgk๗ฒึศล๑6qตั๒ื—Wฐ๋:w๖ ื-|ฯ,5ด ปn~์ณท๔ฏฎขIำ”zฆฟ๔•Gง‘N.”กี5๘ฦ?ไ]ัขY๕ป›๎ฝฤaธฯ†jฌา™็’V๛ฮลิœีํCVอยฯ๙)?าณซา_ฤ~‹๕=uW่ฟ6ก|ลญ๊๒vˆf๕ฝ ๚ฎ?#Y๕fฮ๐ฺป†A$2 ฒฦz0‡ะ๖ง4๔kt:‘zJ;ขตจ-mต(ค6˜gˆn๒Z]j€rWŒไ`;ไใลeัฉiิpš•ึอt (ขฌฐขŠ]>)|<žLJืŒฟi-ธn(D O”_าณฉQBื๋กZช›๊์aัEก QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEฅ>†์GsupzณฯGh]ซฉYN>ขดฏ‘โั4ดu*[อ”1H;k.ฒฅฌ_ซู 8?W๙ณำ~ฺb’I&ๆL“๔ฏฆsคฺุ!๔ซแ฿‚ำพdpVพ“ kCP‡ะ"ฏ˜ล~ฟๆ|n;โงฏ$Oi#~ถ?ทะbฎsรฒ$?๕ษeuHะ\33ม$žยบK_๙๕Ÿ๗เQWพ/ฏ;ฺxx๓Fq๏Hฌ$yใR=้ว๒‰ˆyัตcQรขฺบ ข|Eี$‘•Qlโ,ฬpฤG?ฅs๚€u3๋ญํ6ญxN฿xŒิ0่ค?าบ๊+ัkษํ‡uX๓Pq๒3ฒิ๎„ƒSฒูช8džปุŒcg๋Xศsฏiไะ:o )๚่‹ฦ7–Lเ ‹™Wห#ฝธ-Uํdk๖@B้๎8๗๋^]*|ฐ๕Wษฬ๑จาp†ฺ8฿๏๙›z0C_฿๚ฎลŸ๒0x›ผ!ัืuฬ๛Mn๒ ฎลŸ๒๑7xCฃ!ญฒฯโ]โo“_jผ[ หŸ๚็๒Žป}6๋jูZlฮ๛4“vzmุ1~•ฤxท6็นCฃฎยร?t฿๛Xhฤค๐ะฟŸไƒ“ยSฟ๗ฟ$3ล=t๚ดะฺผoSญ็wืฒxงฎŸ_๖Ÿ๚W๊๒ผฎ๏ก๔2Ožง ีˆฯ†ด๚๓ิ?ญ[ี‡Rž๚ู่&ช้ไ่ธดฟฯ๋W5qฏ†ํหAฌ'U'ฅHๆ›ล/*gฑxEK๋/๓j๊’น_ศฃจeูซชJ๖p?๎๑บŸE–บร๚๊Tพ\ฟ๎SE฿๋—฿๊hฎฃผ฿ขŠใfำล๏Šต†:.›จm๒F๋ว Sไ่?v฿า˜ŽสŠๅo๏uแ ž ใZdk$,HTโ ๅX‘œbฯZnฟญZ%ํี”ืg์1ซษค>H$ฺล๐็ ป๊;ะRณD๒ผK"4‘ใz†ฎzdvกf‰ฆx–D2 0สƒœ;g๒5ษห9ษฯ9ฺ๋€$šT‚–C„E,วะ ฎ./4›ฌF^!๚ฃTด›ฑ๋ าถh&—y™ญeทฉu;€ $q‘๙ีŠmุ‰ฅฑ๔‚QGN Š( Š( Š( Š( Š( Š( Š( Š( =๘$ฏSฎ่ีฏ๐D๑ลฅซบซIๆ B’vฎรแkeหฅฃฬ…7๎I-/ใQ…ฃฬ‹ฅiVว;ึ9GฆUOgซlu/…FŸ0ทM”O๒๐O๗žฯ๋๚RxŸC1วx๕cj3}ไฟ๖ใมญaๆ๛ษํใ-ธัผ,1/qsl^ธ}K<ผKaTsWu+ฆ๘exบ„เ๚e%pบ—yx—ยฉๆฏK๑หี้gญ—^ซK: ๘ ญ?๋๖/)Žกl๘hำลzฑแฅSเK›พู ๘ฟแP‘_ร?ื๊฿jษฟT๔™ท๛๊฿โŸ‘#Wภ#*ืฟศิฐ}ํ<ิr็๙T^ใCท™๖jŽฺๅ›Uดต;HT’LŽนgผArึMึชFqb""ณ]้#‰๘ƒ#ตา?ตกโ‘^๔O•Ÿ๑ Gk๏ค๚-k_ฤฑ๐‹.NQก\{๚ี์มฺžๅคžฉ`฿’าM›๏๙ x˜ทm ฅv1ฅk*žญ๊พ&#๛ึ็5Zmำฺx?๔ชj๓ฉํ๛w๒‰ๅาฺฐาbbXŒ๘็]ฯ=่Fบ)MฤชF7HdเฌCe5ฬุ๘ฎต๏ญื‡]_Š—vปภๆ?_›ญ[b๛E?HhฺฉzG๓‰รx<€๚ฦ่ ว–ฝEf{ง็lHฃุošผ๛ม๋5^ๅลวืๆZ๔›ู‡ขอFk๑Oๅ๚:๘ช?Oะด OU๙ธkh—น–เW‡ืญj๗Skpฌ2”–ฐI€Tหs‘ำุW’ืVQywๅŽฬŠ›<ป๒F†ŒJ]อ.๒ํf<๛ฦภ~คV}h้™[=VO๎ฺำึDศšฮฏV:ฮOั~ฟฉํรZ’~‹๕BŠ(ญ GG#E"ศŒUิไุึ›EฐX(owh%๛™.ผgž0+*Ž•…๕Z39ย๚งfK๖iลฟฺ /ไ๎ๆm๙s้šŠฏฎฏrf–Iย\y‘„e”8 ƒŽr3๏“œไิ๗v?nX/t๛i69GFBIิŽƒbงฺ8ปOB=ฌขํQZz5ะภv๊žCพ\jztiŸ?๚ฎ}•‘Šฐ*ภเ‚0AญษGซhdqฒ(๏g๚ิWี%๋๙‰\ษ/_ห ”ึ3ญ›•ยL!-Ÿโม8วะU“ข-ํลฃ* `€8ภ@<[1๐…๐๎5Vใ่ ์ีตq1ึ‡PtๆN‡žQ+šXษ+ฯ๐ๅ3’x๙ซฯ๐ๅ6y๔qผฒคhปศUน5g๛6๏หผs™ >H๙ mธ๋sOำ`D๐ลา&%นผ"Vฮw ƒภ่j๔จ ฏ‹Ž๓%‡ๆฯค๑vv๕๏rณJ˜๋Jั_ื?+N*Šํแำํ็๑†a–hŸNF‘A …vษLV;Z„๐4’b๊{ `g?๑"ช8ธษฅmํ๘ถฟBใŽŒšV฿‹k๔0(ฎ็Pำ`›ลzิrBฌ"ำYะ๗]cU๓ฎw๛6—ค#ฐ–๚wˆ†๛ ‘๘๎งO ค—ทโฏ๚–:œาoK๑M†EะGคGŸโ4”,“Xผqว&;๙„>กMs๕ต:ฑฉ~^ŸไŸ๊tRญ—ๅ้IกEuถnD’รฮ ทG*Gnมป:ๅ้SญŽั๒แ…Jผ*ปGฒ}ศ(ฉm`7Wpฉฅu@ObN+f-8ฌผBณ๓ุ2Gr9๓0N>Šiิซoๅ๘ป~กRผ)้//ลฅ๙ณdนธІd‘ย(ฮ2Iภฉ/lฎ4๋ทตบห™1•ศ=FG#ุืBถู๊Z ‘ฦฝ˜ธ““๓0 ๙ฑ๙U ซตซญย™ล_“ŽN๔ฦ8„ๅŸ๙วฅ;ํ~ฏŒZ+IดลƒP ๆI.Zฝฐ๘็4ู4kศฎoญูฬฒB๓aธ q๋ิVสฌ_๋cu^›๋'c>ฅkiึูn'ณmGœGาฏZiRอ$Nษพ‘v๓;๖œ๚t5*\=๎ŸซI#G–๊ ๛ >€n้S*บ๛ฟึถ"Uต๗uฺ7o๋ะวขŠีะฌ ฟ–๙gRDVrส˜l|เ|ฟฉซœิ"ไอjTTเ็-‘Ut๋†ำM๚…0ซ•#?0ฦœze”gชWIlัb‡’7๚TvzLp๘zbK}ญรศญะm“ทถV k๓wv๙_ŽeŠๅๆ็๎ํ๒ฟ๙3โึ{IOFฤdU kE<ทz%๚อ#ศ!hไ@ฤนb=3บฌdลaซ[ซn‘~ภoaŸ˜DอฆแWํนnฅบฟเ“K๚ว-ิ๗W๙ู'๚˜ `ษ<W๕ก/3ผฐร)>ฌัซิš‡Lอีฌใ่ฟ› ัN๐็๒นชฉz~ำสไฺถš4ษขŒN&„ณภ •‡พ žk>บIํฦฏuฅF๎Ugธš6Aๆn'ฎ~โos,$ไฦๅ ๚Vt*s.Y=เดe‡ซอY?{ _กQ[!E_นำMพcผŸต4‹ทwi๕ษช-2ูn๕KKgฮษfTlzฯ้Qํ"โไถW73UbโๆถW7*ัZบิฟi]>็jฏ›m๗T`.ู@‹งF“R๙ผีผ๕ใnยO\Tชซ•9uv๙’ซ.U)iwo์eัO†?6xใ๛อ]ื,ขำ๕ซซXwyH&๎ธ##๙ี๓ฎnNป–๊%5ญ_๒1๖š4—1ป\Eนm!9gl•ƒ Œึemณ˜.ผ>ภ‘ๅฤŒ?๏๓ท๕ก 5+ษ`I ‘qI๗r๒H๏€ฟญ`ชษ]ฝ{}๖#š5ค›o^฿}ฟศฤขตฎeŠIš่Z[ม$3ฦŸน]นฎNGี โฒใO2TAีˆดgt๎ญcขๆN๊ึ$šึx"ŠIbdI—td?ากฎฃT€_มHซ@1ูIˆ(ฯท5E์“Mฝี^6,l%ูqิ—ภb=p ๚โฑงˆRŠพ๐laOฅ}฿O‘JJผผฆ‚"ส8QŸ™ K 2็QิำO‰B\9`™ s๙Q6ฉ};+=ฬƒfv;B0@ วญiโน „mb’๎(ถ[Ž3Œd็9ขฃฎข๙Ro๒0ฉ,J‹ๅIทท—๙nบ6kwqp<—๒p;lฅgำๆšK‰ไšV$Œ]ิ“’i•ผ"ใะ่ง(พˆ๔ฟ‡ฎฉฃ‡v ซq!$œ3li๒ฒฐC่W7แ๙/?ธPWIฃs ูฬ&O*๙|bไ฿๗ฟF|n>6ซR_=ท๚ฟปรขฎ,H‘๘ณลลุ(6—j 8ไอug—๗ปOตลj_๒1xงษ๔jVธ(]ต1ถ_N๒kผ#๚"ฮฟ"๖ข}u•?๙ิฺญไ–:ฟˆๅˆ)fณ†/›=Oใ‚j{Ÿ Ÿ]Z3 7ฤ๒ื๋ฏ๒Žป)%.Tญ`wัŠ—,^ฺtอปน^iฒศูy4ศูฉ “PxDๆ๖๊—๚uผ๏?ญ#|b+Qq้ไซ65/ƒใ๊ลื‡sT-u~R9*ร“o๎ฏสgm{%x็|8ฟฉ\fฟh๗*ืญc*ฒOkm–่ K๖ฎย๙‚ˆrุRsำ‡S\ๅฮ5ถหŸ๛my๘โ—oึ'——IยNKท;ฦ Rฦ้Iษย?๔]uึ๑๛ฆุ48k“๑ ลฝ็q‹๙ว]e‰ล๎•`ำแญkk‡‡ฯIFุp”ํ๏% ๑9ฯ๖„-?๔cWŽjŸ๒ฝฎ๏ก๖/tฐฐ…ฏŒj๒หอ8Nuห฿0ฉตน {{ฐ1]น4”`ฎา= ‚q…6฿งา:,gBั}ญ/?ญ_ี„cร:ูŽพีKH่ZO KŸิšฟฉd๘oร ๖{Q๚Šฦง๑—๘Ÿ็# ฏ๗๋O๓‘๋‘CPถŸ๛5uI\ง€น๐u๙๖ไีีฅ{XเG๚๊}[๋๋ฉR๛rปM_ฎ_๗ฉขบŽ๓~จ]hšM์ๆ{ฝ.สโb2KnŽวไU๚)ˆƒ์vฆ9c6ะ์™vสพXรŒmรใsฺฃŸKำ๎ค2\XZฬๅv’cทำ$tไ๑V่  “iz}ฬยi์me”Cษ ณ:‘Sž๒?•๙+ถั—8ิr3RQ@ญ4๋ cณทท฿๗ผ˜•7}p9ขใNฑผ–9nlํ็’?ธ๒ฤฌW่Hโฌั@fำ,.'3ฯcm,ฤ`ศ๑+6>คTฆึคศ`ˆคฤ™W`ฤ„Œผ9๔ฉh  ฐ้–ึ๒[มcm}๘า%Uoจ–-:ฦamผp"H”(`AฦA็ฺฌั@gำ,.ฎโโฦฺYำd’%f_ก#"งHbId•"E’Lop ว'พ)๔Pdeฃq•a‚=E4$เ/n0=์ดฒสฆ๙งึก๛t๓สใ?๘Pซ๓<ษ%’W ดวพ0 ชJญ๖่็•ว๘๐ฃํัฯ+๛๐แ@hช฿ny\฿‡ >๒ธฟfŠญ๖่็•ว๘๐ฃํัฯ+๛๐แ@hช฿ny\฿‡ >๒ธฟfŠญ๖่็•ว๘๐ฃํัฯ+๛๐แ@hช฿ny\฿‡ >๒ธฟfŠญ๖่็•ว๘๐ฃํัฯ+๛๐แ@hชย๖2@๒็ใ˜XJ—ฮฆ3฿ฆ ’ŠjH8ิ0ม๊๓฿ฟ๒J๕?๚้Z๙ืร™๒์1ิ๊ฐะืั_ไ•๊๕าต๓ฏ‡Nฐฤอ‹8๑฿มdD‹๛ ?‹Jซโ_๙5_๚๛—B5yใ1xศ “Pi@เะิค๗3ิmm“|า^Jจน'q๎k:RJฃo๛฿š0ก$ชถ๖\š7e็Q—ฺ๚๋D๐ฎkOFฏ\cัซ],Ÿ๒ผ็๎฿ql[+™ำ๓•ซื๔jVT>๓1ร|๘”zt๒ด0@T๚xทฯL‹เe]รz$ฬFyqมๅD9ค ˆ€ใท๚Mฝsพผ’รำฤคl:\าทฎVVB5ใช^าŒขฟ™~r<Gฺแๅห๓‘ำณง›กซ)xฎ-ร๗r…pฺ—x๘›ยฉๅฎŽัB๘๕@ภ]Fุt๔†Q\๎ฅ&ฐช9kฏ Yส/๏iธ(rTทu๗ษ?ิฺ๐ึขF‘ฆ้~_ๅ\o้zjษใW๐๑=<ํGทปVg‡‘ในัรฉRm#`์o”ƒ๙Vณ5}ฏ๊=ฝEhฅVV๋ฬ๒YืŒcZ|ฝy฿K#Kม'ผKณี[ROˆเศว๚jŸอฏO๕ญอ.ฦ-29-ก"ถแ“žYŸิšมด็ล’90œV่Zแ็S•Y-šน็๓ช“ฏ5ณW9ˆ_๒;_}#ัk[^!๐“ํ๖sซโŽื฿H๔Zึฮพโ‰าำŸ๕vวง๛ฏ] ๒‘๎/เเ_’4๕3‰ผN}ํ๔ะใIบ~ณOX:ฉใฤอŒqวk^๒๒kkปื…ถท”‹ธ`ใls0@5ไี‹•%ๅ๘(ž%hสtT[~ล้๘๋_ ๑บใงtลuพ,๛?Yฮmใํ\ฆ™๓xื]|˜J฿LสŸใ]งˆm$พ๛uค[D“ฺD‰ธเeภอtโค•zm๔K๔:๑’Qฤาoขฺyืƒึj#Ÿšo<+ะ?! ฑžCฒRM^}แHฬW7ัธไlŒw๕ซะ|4ูฟพl๊A‘gซอ~๔ 3ฝ๊5ๅ๚$}šฅซ็uc‘ํ-อqพ1-ผQu*ชชE€ฃZืEโ๛ฌฺฝิ.ญถ๕ƒ‰.k›๑4—บ‚jRฦุธ†ฮ…/ๅฉ ๋หเใ(ทตšŽ์ชŒฃ'ตš๙๛ฟ๐Jึ.‰ฉฟฉŠ?อ‰ูk6ดไ๐๔?{u๐|่bณ๋ีงผŸŸ่jŸล7็๚ ขŠ+CPขŠ(ฉ ปžูeXd(%BŽเิ4Ri=šMYšสmuU๓o.Vฺx—๗ๅ็อเเc-’3๊9์j}fฑ๑ ตณฐ/mบ1#!๑๙ึO5ืWiธษ)+–=๐ ฒjwOK=>๏๘'?ฐjwOณำึ~?ื\ว๖pu)[ง4‰jw๘Ž๎LgอทT๔ฯ้QL™ž๒ r ญ“q-%ฉ฿l๘ฯšaO˜๕อิƒ๚WŽแ_ฦ฿ไx- ๙ฟฦ฿ไWณ่คS)ไzด(๘๔ึ–จญŽ[–ดถ_๑็ง๕฿฿œSŸ้Hฺศ:๙–ฅน–*ีฃ๘฿๕ึๆฏ๘’๛๒k–„ีดy>_ุ21‡ช1ล/uN?ดdlv๛สตrๅถ2ษŸ๕QNœHแึ›t™‚๒ใ๎Fมใ^QiAูม๚~oษƒณƒ๔2ไป_ฤ๚ซ€ธ’ษ“ŽœฬOยณ์ Žหดc๘ส็๙ บ‡~ฐ\Œ๙ˆ‹๙ธ•Rฯ=4Œ๕O๔๊ฒท๔จZFญ๙4Dt…ป[Ik๕Nm|L{ฬ่วŽธGo๋\Mv๏อถข9d[ฑ๔ตkˆฏG๖พ_’_ก๋ekๅ๙%๚Œ€X็ ด ุหษN+ฮHมมฏDํื™ฮา# คใƒ‹๕ึธ …ูu*๚9ญg€ฟ_๓1หฒ๔_ฏ๙—4Ÿi ๔๛Td฿BบY2mPqนัธ?์;Zๆ?!๛#ู~\ืH๑ํฉ{lwโืw๕ฃ_’าฎ๏ใ|—แ$A/AYดฦžz\ซษ๎-ฤาx}wฺ๊9?วง•ๆtง฿`a’ฺ้20ŒZรํถM.\ใeจว~ฟ๗ีsฟเ~๚Qห-p๚z้E{hฤžำuฟ„๗2ฟ๐ฟ(jž"|Xฉฮ}a฿*;โ]คมƒvํ‘ๆZ’&฿5๋ไf[8Žผฺศ?ฅ)ฟz?) r๗๊>ืาฃD ›ยฯอ็ž:šนํ3;X_๚tS‘ข่ภV‘นŠ79ึึ6•ฮiC6๚ ภ9ณ?คˆฅtั๘_หJl์ร ๚?ณ6บOวฮฃืๆด1๑๏"W7]'„1๖‰๓Œ3B‡>๒๐ฎœg๐eu:ฑ๎๒๙~h Gaว:Eษ=ปฮ฿ะV†ลแฃ‘๒$งฏคh฿ึณเโ๛NNyาๆ__ผ’iฑGานบ‚Vวฆlใ?าธช_{า>ทฦฝ$๔ณšำฐt\8ถFฎั๋]ฐิKpvi/ไฮŸ…sบW6šฒ๚ู)c?าบ]pŸด^ทหฒž?ง๚Q๛5i_๘ฉyฟษโŽ—všึึูท๗ฌแ๏่ JM๑›‘.ฃ$z€ย—Wๆ=5ฝlำ๔fาศzฬใ;_w>ภš้˜w่ฮฯ๙†~๕4๔r|&^้strคqท๕ฌqvxƒR_KฉGLญ]gLน๙$ผ=ุ้้Yพ ‘‡P<ำปs๎sYา;^OJf4?Z๒๚S3hขŠํ=ฃีQš(้sะฟ๘ ฮะ5ปf้f”Ÿ้ZZงŠ–+ฯษๅใยSYบจ?‚vขs\Pํ๏๓<๊๎๕=e๘…:F”}#‘zำBญiG"‰OfNฟ๎-f๓ ้งาI—๕SkN?๙9๛ฌ๙*Ÿ ล๚ฐซ๐รซ1tฅซู/ฌ๑xU฿sฏH฿†โCU๔฿โ-1G{ธ‡>*Myท[ษwZยxp้Zฟ๗…้๚ภ6๏k?ฏu6๒ๆำO๗-b?ฬZนญ/—จ;Yว?t7T5ฏ๘๙ถ^xณƒจ๕O๕ญ/ถA๓5Y#ฟ ๖jษoOฯ1[า๓ฟ่ฬNt IyโH[CึซiหฟSดO๏LƒfวU‹ใเZE]ฺ๖œผ๓sเด+{ูTึศ่nสซพoY2ี๘๙uฒvžฟ๐ญซ๑ฒใ๗vt‘ฟฅKข6๐$ฯิU๒z}ว?าฃึ‡๚r7ฯjzำ?ึธฃฅn_Oอ|UฑพŸ๚Rg7EWจ{!EP xGD๋๏ญวƒtZ&?แฐbF[J˜ภGืฎsยC(@Œd “ŽรZิ ๖ƒk OณCun9ฮ๏‘?ฎ1ํ_3‹ƒnmt—่ฯวSru$บK๔f„ู„แ8แฎฟ”I\NงŸ๘HผSไฟ๚5+ท™‘_ฆหฒฯศ<ช‚ธSFน'ŽJำ๑/๐ฏ*ฦนoฦฟมยV.x|);2ฉBสH๊>ฯิUGั5YB/˜ื1)lr@Š}9?Kใ_๙๔ร๋$!ษIโพ<;ฉ{วขa tgฬ้ฟ7๙ฤt*9ส“๓_s“ก^Eจx๎xwl6่Ÿ0มสยชU5กเgทv่ใ๑W?เo๙m3๚ญ฿ZภวแญฑฑPๆŠูE~R:3(sมlฃสgYญ0[u๔สS๙`ึ*Œ๘ฆํฟ้žŸฃc ำ๑bวใ~J+ CšKซรq3๏–H๔๒Nฯ๏Ga๔ฏ3จน_#วยมชืฤฟศgธ†๔ำฟœuำ[ฮ๊*9 หงฒ'N"8ฎkฦr๘๙๗ˆใัึฬํ_ยฃฆ?๙*ๅl=5ๅ/%8๓aiงฺ„.๘›๎ุุFืF5yใ๘”xทฺ๒%vฺฝฯฺf8:Eซฺขเ๐0ฯ5ฦศธั`=/!ั[e้ฦŸx้Q:2ธธRณ๏*&ฮŠ3 ุฑg/๊ไUห๓ปBะTvš`๖”U]Ÿ)ม;lืงlส฿แV๎‰:VŠค}ธ‡าF?ญMOใฯ๕dีx~RซO^๐‰ทงี†บดฎOแ๙ฯ‚nฌDใฆบฤฏs]Oฅหฟau*_ฎ_๗ฉข‹๏๕ห๏๕4WIoึ\ฺฺฅไ๖ึ๖—mn@™ Tฺ„€ภ|ฬ 8 ๐Zิฎg[ฐธžโๅ์tปจ๏™@Š๚้bRqมnำ[LGBnญยฬฦx‚มŸ8๏Œœy์jช้ห:ภื๖ขg`ซ™w@ žธ "นZสแ๕ซ[eh๕X”_cŽ! ณcัุ —Pะ็นด๑"‹Ey/fŒร’นuXใsฦ7\Pญๆนi“{k,7‚ัItŠPy‰มซv๗๖w~gูฎเ›ส8“ห6ร่qาฐ5อ๎ไ๊๋glฅ.tฤทŒU แŸŽผ`0ๆฃฝา/ตStRศiใ๛9ํYิ‰ฐ#๎“„H็็์๊SW๙?ิ๕K%นฐTธธhU_`ท ˆ01ผ๑ปŒ็ฮJใ Nilฆิต%ท“Oล*iฑปฐ‘ฬŒY|๐”™ณฯN•าฎwิ< เ\็~ ิbฮ--๔Ršๅหขฅ'๋๗7gU9ส2W๗7gsแ๛/Vึ%ิmฎ/พำ-์N๐=ช์RP?x$$ป‰;Fœ๎5} ์บะ:–ค"}Hถ๛n‰ฟy€ƒฮเฯ%8็ช‡Nัอpหืํใ๐"@Eฎ5ฅฏ‰cfJ7ใญฬ?๔*ญ!‹”NOมขํceMlน๙4tzmฎ&ฑฆ$7Wฎฉฅด์Š  ธ K3ไไ/ทŽ~Pๅ,๛y๎๎9/<จ„ cmร —฿•ภม)ษใŽต†Oด๛)ศต6ฉmไ๊๐ะ๙Q3{๊ฝษ5ร9๙ม๖ัๆฮง๏g๘๓/ิ้e๐ห1Y$.็ย”aฦG<๔>ŸญsšzูทŠH๓็ยตณAˆGฮ|น๘oŸๅ'‘ป ใž,xฅส่๚มRAXWใ4•—งสฑx™es„Ž;wo Š_๑ฎzฬๅ—๙œธjoุTŸuoป—ฬ้Vพ$œวu~5ๅ†Œุฏูท 7™Ÿปฮ6{{ึ‰ltM>หOธฝผยฐ#ศ–Š\) ๆ’G#w[ฅOโY5;;…lซ๋๖้Œz"ƒ๚ƒUึวUžฺ๚๐*ด๏$ญhฃ ศIT๓|8ษ\เgใ?Qx`ิbถVI5ตp™ไ‚Xฑวื˜ชั7Hตo๖—P๘ชํ•๊F๒๊ั่MบัN]Z๛ฟคgEกMแุฦงฉ 2่ั.•ุฝม!ฃ๓€Q’yz9โKํ6‡๖ฏำ}ฆ„๒Fำถ5 nซvžxวzฤผ?๑BYืTะงฎ‹Dป‚๓มwฐฃƒ%ตƒ,€ฉ๙Xฌ  ๋บดฅN<๑[M:•yJ”}คVีใกฯ_[hฺi1วฉjFฦGๅ™ด๘ฤซยˆโ+พ8็ž•Jo ตๅสอช๊ฉjป~ฯ"i‘ณษวอนLเ&L3gฏ* @ฆi*Xใ+้Yี๊า๘~o๓gทGแ~ฏ๓f‡“ฃc๙ฟnพำŸฑง“๗ฟ็ฏ›ป๎๓๗:๑๏V&ถ๐ฺ[,:ฎช๖ญปํ>™ผ||ปTNCไ๕ห.:๓าฑ่ญ Mˆmผ6ื—+6ซชฅชํ๛<‰ฆFฯ'6ๅ3€˜=0อžผtชNๆบ๛๛O}ฦžOžพn๏ปฯ๋วฝgั@[xmo-–WU{V๖‰L^>>]ช'!๒zๅ—y้D6kห•›UีRีvžDำ#g“›r™ภL˜fฯ^:V=กไุ่oฏฟด็฿์iไ๏๙๋ๆ๎๛ผฮผ{ี‰ญผ6ท–หซชฝซn๛DฆFฏ.ี๙=rหŽผ๔ฌz(ิ’.Mvd{ปฒ\๏mขฬnิถs'xUœ‚Om9บpฑ:N—r๓ฯ๖ณuˆผc#ํR‘๓๏ศใv~^รฎN&ŒลSaœแญ<๋เทQำฅdY8O ้rศBx๔i๕ฏ+ทšO™‚ผ-ๆฟ๖๏๒6R฿GŒฌQ__ดh‘Œ–hฅ[NU” NโAษฎ=OdH4c[๋๑ ร"ภยษศŸcUf`eH€ d๑‘ึช0k1เ”G“ภ"ัว๓5ถ๋?Ÿž+‘y*Jญ๛ฏตฒ๗—7uถ6[ิ’ศh๚‹ญอษป๎ล๖u‚L*~}๙่ฌGฏฯ”๚ด‘}ถ๔ว'™$„ฺ&Uไxyœ‚ู8ภ็ฃP‰zŸ.๊eฯๅ„Jะม[G€LฐมใญๆฅFะOณ’fmฺ}›“Iญ#ัm!ผผ๛9xNlำsฑน˜๋ๆaFF2 qฮ?†ชฺลง&2nnไqฑˆ/–“)~เฎใผฃœ–meIา็ใ?l€_๕ำตXeฮฅEi sํg'๘ีษYอ[ฏ๓.Jฮข๕_ฉbhดฑ%ฒEyzึำA'œ๏jกีEมU๓cดƒ‚รใ8+mkแษ/็Ž]WU[`P[ศšll๒d|ืฯ0xfศ็Ž•ธ฿๊4žฟฝ†eม๖ณ‰ญq๖kพ๚}dQ๚ืnฺ-๙~ฌ๔p.ัoษ~K๔=็์~MๅฯŸ?>ั"˜ผ‘ๅใํจฤ๏œ๔ใos้ฯ/ฉฺ๘y5ฝ‹ฉ๊f,ฟjsงF">่E๓๐๙9%09็ฅk\ฟJo&ภภฝ•~Ÿพซ—ึWnนจ/ฅฬƒ58fืฏ่F\ฌฺ๕ ญ฿A„‚LjZ—•–ถo์๔'ศล๗;ไวlฯ}ตถัi฿ุแำy๖ษ,ู„?g_,ฐฒo๓3คํ๋๒ใืกเjDœ|ถ๗ ฯด.kฅl}ŸK9– †3ฯyฦฟ—4ฑล๙›7๘฿๖๏๙ฟะฟจEค๙ฒถ฿}˜}ญn$๛๏Œํ€aSฬรG%—ฏN9H‹EKttิumjฑHlP;ดFวr๙ค/ฯดpว “มMM@ก๋็,|ปซฅไs๚UM9ถxQe้‰JไXZฐŠฝ$ฟผฟฏฤ็‚ฝฏ๏%๘ม6์ขฒDฑ5ศปŽx[สƒัw&๙ฯ-ฦรžx"‹H h-๕ ู#”ภ’ณD`ข ‚ง$๗ใ“Qข์ืeO˜yQฃW$๔j‘&ืFมฬšq๔ฏ๕ฌฏu'฿ย๗R}ํe๘ขาšIkี‚€†Hํ™ื์#%—ฬNะNlž2อ\ึ“”t›ื[หรฉI7[›E€r%๓7€๑๏Zฤ+R็(•zsอ›ฏ๔ฎoEวฺ.”ใ›9๚๛FO๔ฎส?ผ’3ฟ9๙(™4ึ[หe‡Uี^ีท}ขGำ#W—j‰ศ|žนeว^zV฿†#ัใิ.|ป๛ำlทV‚Wฒ@ฮ‰รฏšB ร sŽีฦV‡›ห‡ฬใQณํึC+ซฏEฏOฬ์ฦซะ’๔ัซ:Riลฏ/Fฆ,ีZ!„‚‡Z๙น~็^=๋Bx๔ฑ๖a๕ใคณHm:/ุ€Wฬ!Žะ ฎFp7V$‹ณฦฺt'%บ~qฏ๘ีๆ9ติ~a˜แQวฝฎ฿้\๙_๗7๓*;ธพ๑_‹‚g่ึ๚]๊ฐij?f6ุŠOฐ&๗^ ’พv‚1ศษ%zmpY7V˜\อ๖ฬฮžI„l๖ล9฿ฟ9้ฦ็ž9ๆผ67๊2ว๛y้Ÿ้[:›nัต93ึy“ง7ซZ๏๕_ืเo‰zชแŠบดํ KR6mjแๅ:z ‡}ค'‚Knn’vƒAทะทๅฦฅฉcRmุ้๑๎yl_x๓พLvมl๗YZ‰ฮ™ฃœŽ-๒4‡๚ัก๘™“€v\7>ะนฎ—฿›:฿๛ผํ๏อ›ฺ,Zq๐ดฒ}ช์"Ÿ([จqฦ7๙™ฦัœํ๋ฦ1๓U]z ๘ˆgRิ„Rื-ž…ฃ๙A]ƒฮ๙๒zไฎ=้4/๙ต&ๆ๏zfk฿๒๚ว~qฉฌฉผห็๚?ิส๛ฝ่Rhmผ6ื—+6ซชฅชํ๛<‰ฆFฯ'6ๅ3€˜=0อžผtชNๆบ๛๛O}ฦžOžพn๏ปฯ๋วฝgั]วขwค๖L KR๛0ko6O์๔ชb”ก ็a‰=AaŽลซ7CƒAฝ๏L๕/!-ฅ๒์๎u0ธฒ๙ุR3๒€[wrดKA7)ุ๔๖้๙`฿Uf่ง6@ลœ}ะ๋\0 ญา<๊๎๓๓b‹“GฆŸYศืwb๕n& ตSo๎ฬ€iiษ$`ธํ4ค,)ฉ๊fฤู;<งNA hŒ 'ƒ–ศ?8ภ๓ตฬษฯ†mน?-ไฟชGค‡$Š™o›IsŒำ๖Z*|1๊ยฏร๑ฌ‡ญ๔๘J`ฦฅฉใธ…ญ้๑ๆSœ‘ ๓ฟvเ_#œ•ซ”ฺM”ฯ{x5/ฒFmย@8ๆ_3p8๘@;ไQะOฌฮร๎็ุFซอถ”ถc๔’A+Yz™ฌฟWขMr ๛fังฉyg‰g์๘๗"ˆSห*พvž2 ]ฝ‹๗าึ ะdฺžฃ f๚W‰ ำาV|วํภฬปpz`œ๛tฎg^ผƒ๛ฑฤฟ”j+Kล}žฯฮ๏วผq…eŠฃŒฃ๑P๔’!ฒM„cSx๎ฎP๒Tษ[(‰œ€'˜I8#ƒฉ็Žgำ-๔Oค}‡SิๆOด‘ฆำใˆซ gศ'‚xภไ้Yš_6Zธ็›1ะ๚M”x~ศไฒ†ใšึ O๋ข6ŸมW๚๛(่;›๐ท๗ฦา9โhek49๒fน<.>lอœ™8‹\‹LI~ีv/\[7”m—หไ'g™œm9ฮผc5S๐ภอŽฆx#/’=!›hืธะดใŸฟฐ๛๑BนŸ๛๙~W8฿๛๓^Ÿ•สs[xmo-–WU{V๖‰L^>>]ช'!๒zๅ—y้D6kห•›UีRีvžDำ#g“›r™ภL˜fฯ^:V=้นกไุ่oฏฟด็฿์iไ๏๙๋ๆ๎๛ผฮผ{ี‰ญผ6ท–หซชฝซn๛DฆFฏ.ี๙=rหŽผ๔ฌz(ัดYด=?ย‹5้ฑ’โ[hๆkE’๑FO๎ฤ„d8๐qษโ ›๐ฺ•นธ7F่#Fะ(@ฮU@ฟ$`ฃž1โ๙&aoค* +เํLฉ ‹จ0GoฝไสŠ”g็?๘ฉแหฅ šSK๑K๕;ศMก๑†ลคำKKzคˆ#gŒ๐Œdsะ~ฯ]Cค7ˆW๖ปุ๋ขูหEf’SU่@็I;Hฺl่’m“ม NrืC๓b*‡‹,ฦŸฉ๋๒ฃ ๖ฦC๚ล\๔†#—ห๒จฮ\2Pลry?ยซ7<`ฐ‡kI$‹ ีc3l<‘‚ว8<€1ฮD'‡LวธK›หศํšๆ34‘ฺซบ)6ํS œ.rหŒžธๆงŒˆ?๔a฿๗'!šTlช๎D€หผ…ษแ›žzU}eณฎ\Œ๔ั๏G?(”xTfฮิxY~“M็๒จat๒ูไ๒จ`๔๒า›%๑ยY’๙๓ฌ[!๒ผ‘ๅํ๓#฿ป9้ฦ}c๑ณงX๋zฎไEmhcญขป*ษU! Š 8ไnภ๕n•yนฟ#6'งด๑…qพ#‘ไึ_{glQ(๖5ฎฌิ…>m’ŠHํห0๑ญNŸ>ษK๑Q_ซ;:m*ฮkคปผ๛4šฬRฤํh‚Fr‚ฒy„*๎$d1ใœvฌ[ศฌ“ร,1\\5ัผ_:'…B&'`ป\9-‘ษสŒ9๋Kแcปย‘ง8ฟ๊Vขฝ‰“I๑kบ‘ๆฯ ฃ0ฦ์ศsŒ๕็?•(ฅฒŠeฅDQJ็ัาขtZืy>ึ๗ฟ๘Š>ืy>ึ๗ฟ๘Š( ํwŸ๓ํoˆฃํwŸ๓ํoˆขŠ>ืy>ึ๗ฟ๘Š>ืy>ึ๗ฟ๘Š( ํwŸ๓ํoˆฃํwŸ๓ํoˆขŠ>ืy>ึ๗ฟ๘Š>ืy>ึ๗ฟ๘Š( ํwŸ๓ํoˆฃํwŸ๓ํoˆขŠ>ืy>ึ๗ฟ๘Š>ืy>ึ๗ฟ๘Š( ๅš๎dุaFๅ91่A็ตD`JFH่Kž?๑ฺณEELฌ]ศฮ0ไ_ไ*Z( =๘$ฏSฎ่ีฏ0ษoแ,ƒ฿ฃŽ{3d~†ฝฏใo’ฝOบAฃVผwSใร ฎ๖๚ฏ70zำ^oIgšษ๓R›าYฉจ(:•ูว+s๕uN๊ๆบด•ัYขะ‘๗NG#๐ศjํ๎ด5knฟ…,๖ฅt๛KภIข˜ˆวhR9๗ษซรŒนZบ5 ๒ตฏE๙IH=mG‚๕ฮiC6šฐฯนฝŒึ฿‚๎ขŽฯ]ทwฤณYฑEมไ*พyEbi u1Nmกฅ{ษ5Vซ๓่}ัฺMgld_ก8‰[0ฟปถณnยั,ุฎ_MsฒTmnFp’@jท‰-โนพพ๓7—al้์ยiSQ๘sEฟ [๖ัrาŒjƒึอ?๔ฆJยฮฌžฺไว:‹ง^ษ:ไ๐ X็F๑zว๓ZืีH๒.๑Œ ซกว{ลีOSฺำz(๔4ณชŸืีื“5k%ค}_“Y-#๊๔˜ฺงzZXWFCT๗ํ ๘๗๕I๊ๆฃฬ6#ึ%ัฐึ\Rnžีฝm ศsื%zOๆy๔U่ฟŸๆ`๋๒>i@wพ?๚ะฌรฺŸn5ฤ?ญX๑ŠK๔1ฉ—น&“ŠK๔7#˜Gแ-9ณŒj Ž๎?๛=jพอgฤฉธ–@~Qlูซ…๓d๒„[หV,<q“^ๅV๎๕[ปหปท“l—C„เ0เใ้ภฉห›พ๗ZกSภนIป๏ฦQ’:}เฏ†G?ฦึža๒Q+&.๚๔&ถŸLm[U[ีx…”๒)w2ช‘ฦ\`๗๑๎=jฃBW“ำ_ะจAaคๅ7ฆฟง๙2†‹ลีหs๒ู~ฑ0ตาFมแ๓7^จ‰+*k8tฉuโ.HCพื`9ฌษต[‰`ำใRck%"7BAฮโู๖=?*‰มื—A๗ไ:QYฺ้ฮขฯอknyฐฅCkจKkc{hŠฅ.ีUษ๊6ฐaๅ๘ึ…ํ‹ฌbXใƒ์ฐง›)!Kช…ฺ<ง๒ฉQ๖uœๅณ(“%Gูb%R{=พ่“0่ซGMปUนc lq)ศใœq๋ืทึงŠาฺ!.ข'W.Bภซต›sžƒ๑ง๘VFฑ2kw๓!โF\z8ฉumI5ดๅEe6ึซ ไXศ๖ฦ(Œ%zOฒ4ๅz.-~เา9R_๏Yฟ่สฅฬ-ีv‘7Go๔ฉใ&[iSฐ‘๚Švˆฌ/eˆํงb}?tภ~ธชฉตEๅ๚WEQw_ฅฟB†Ÿm–ด=,œใฅ๖j]u๐…‚yY ู้c_–ฐเบžูfXd(&หโ\ƒฬ ž๏Q{ฝ>ฦัดWU9๛˜ท[๐ฉt%ํ•O?ตฏฬ‰aฅ๕…Uw9ZสTQEuมEPH?ไš7…๖•Vฒ‘?Uฏ›ๅ%Y๒M†‰ชถ๒(jฟ๕๓oคฏ=|2ัๅวเŸ|_๚R6ํ'ะx"VษU–lื™ฑO๑ฌ†Uิdl๛T Ÿa๖S?๒ ๐gu“Gีฏ็ศผ9—ธ๔+ŠๅQ^/ฮ_๚[8ฃ๕ˆหญๅงญโฤi~hฑ ห7‘๎c๋าxูร่LC\BAฦ?„้V5ŸŸยž\g-k ญf๘ก๗x@H?”Ÿแ\˜}้๙I-‘ร…^๕/)ฟฦKŒศ็งผ๚U#?๐็ถgั–ีWภxฯM}ฟ๔ซš4niB1^ef€K`g฿๒ฏKgnํ็ญŒำํฯฮdฯ#ฟ‹|Fู•-/A?t`œNI?jxRc Z8ฺฌ&hP๎ํ๓]๒=มฒฯ‹ผO^ืฟศึ‡Ixt็ƒ4_๚rbbฝ…ผฃ๙3๐อyGId1รj#ƒ›IA•ล๋๒›ูc๘โืAu4—Rฬ๏$’i3–v$–;$ฯ๘ƒCwำhวEu`!ษhvO๓GfYfิD4Ž๏แ’G.‘v’FŽฺฐ3‚ ~*๏ˆ i~]yq–…'hษภ—q&จ|/?่WCŸ๘๙_ซงw๘Nแฝo ิื‹›ง”ปJ,๙uGK0”ปJ,ส›Oทำ'พณต`ŽMŠ[8ๆ={๕ฎ[I?๑Xk๙$โFl.cฎฯPV—WผEgŠศ๎^Zใ4๙Cm๔ก o…“”&ึหm:pRrงQษฺ?๛i๊ฟไ๋ฟ๕๕'ŠZ๕Tฏ*๘ $๏]ฏฉ?๔Rืชฅ})๖%K๏๕ห๏๕4Q}นฆŠC7๋‰ีl๕ ๋฿มf`h8–Xž"า8๒๙ูภlgœWmE1fฏซ[ฯ fฮy}…f†Wฟ{pูฮ6ชƒๆ8ว Žเwง้าร/ˆ ฝปธh๎n๔หY"Srศฒษ๛อส 7U๙pz็š์( '@ผฝž๖ภอ} ฑ?lท’๙ฯสrพA@ Œzง5ี้ฏุซAt๗Q๎|J็$ว# ่r? ทEQEQEQEQEQEQEQEQEQEQEQEQEQEQEp"’†ŒPฦ๒Hา@PdŸฏ@+ฦ๕?๙]ํฟ๔^ใ•แถ๔/W€jฃƒGคึ฿๚ฏ#;ื„;k๗ฉ‘เf•/‰งOถฟz—๙ท™ะี?๋ิ่7uฃ1Š&๚๑๚(ิ:„BKa‰?ปำba๏ลภต,็(ˆ?๋วhš๐$๏ห๊ฟ#ๅ็.nOX้'”xXงื…ว€jถ‘๗5/๚๓ jว…ใ๏ผ.?๔Yช๚?MCผไbพฎํ฿อŸoSใฉ้อž†ื๚๘ธาุ+‹๑ืŽ7ฟ๎ลข’ป7[ื้?๚[qพ;‘ส๛ุฟ๔RW›–ๅ/อFQ๓๒—•Oแฝือง†kRr 6๋หn๑AY^้y_6Ÿ๚0ึดƒ1ฺSn[ASˆ{—ห๒Dbฟ฿ง๒‘ะO%)์๔m3X๛บฏvฒะึ9‹”ฟ๖ฺิอg๎๊฿๕ฺหF-yP๘แ้),?‰O1า‘โึ#H๑๋ˆ-?YไฌkŒyฺฟโะ^๑;5ม“ƒgoวผ5g๊๖‡@Z๔ฐฑต%t๋`ใj+อ”อ๏ ฯ…N:฿ฟ5I0ฮกฉ๚sO)’ฃ๐ฯŠฏ้?๔๊vีu!NiฅW%OใOี้lโฌฺ*zฟ-œ๖ฃt‹เก,€I(xำ=X‹œเz UะjŸ๊.ฟ๋๊๋Išธuณแ›/๚๛ŸCo๑ฎืSkฏ๚๙บาfฎšะQQ}E๚•้จ(ตีฯ๔_กณ}ส้๕อ?๔l5‡h฿-๕ตทัWน}ำMq?๔tฯูiฟ๕๋oขฎ+‚‚หปž^~โ_?ิฏโฯ๙<9]วŽฌูOS‡ึ๗G[ึ—‹?ไz๐฿|/Žฌน?ไWฟทฯo^แั๙~r=l7๐จ|ฟ9๗๒!ูืภrึNw†ณgw(cS+>ั“ท<ใ๐ญkฟ๙์ฟ๋็ŽW9^ลฉFq}[=4แR/g)\I็\ห/๗ทๆj:(ฎคฌฌv%e`ขŠ)Œ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ)I$ไ’Oฝ%QEQEQEQEQEa๏ฎ]!S3โ+6ƒื>œUz(ค’[ E-QEฦQE๖gฬ็PไวI๗ๅfdง'๒{ฅ‡‡-q:W>0๑าs‘–ปIOOบi๚•ลi_๒7x‡หตั„๘'๚8๎T Cี~ษ;ื๋๊Oต๊ฉ^U๐Iป_R่ฅฏUJ๚c์ส—฿๋—฿๊hข๛rปM†oื?จxŠๆส}Lฅ„RZ้ศฏ4sฑศ+ปๅ]˜'ฌ3]bง‡ญคืoต4ฦ`/fMซƒิqฯฅ1$ืด่fI;+|ป–ลc๗CฐRr:‘ึ›sฎYฦืถ๑ฬ~ำj„ศL:Dvoˆฦ9๋ฯAอf]๘ngปฟฺ‰qk{'˜้%๔ะํส… ขe\qํ้W_Hกืะ4YิI๒ŽOนXn=T๔ฯb}vยอc7;D%o.'`จ‰ฐี๋หbฃิ๕๛-> ฑ0i–2…@มฺXจย‚GRET}'Rท–wฒ6๖ซXเ—ฯf[ #rเรๆ่qำฏ5#๗ถVwV–o,w6qธfR…#ูœw0q‘ฮ}hfวPŽ๊+dwAu-ฒNัฏ`{3Wj•Œ7Vั[[ธ„รฒ!ecปฬ1ธjํQEQEQEQEQEQEQEQEQEQEQEQEQEsž8‘jCŒโDuเZะฦแ้qo Š๗฿ศฏ?๛ยผ^ำ<&?้ๆ฿Aแใฟ฿#้ษ5™ฟรำ๔™ฟyz๏‚ขฺ๔\ศ‘xํIwZ๗‚ขฺ๔\ศ‘xีแฏณ๊ฟ๔”|ฺ๛>ฑาQๅ๛ฟ๚๐นัmQhQ<๓^C–‘ํ]UGRN0*O วืx\่ฆซ> ‘…?ู–พฒผน}คป%๚Ÿoˆ—'ต’่—๊vOฤวพn๔ถ ใผy#๗า/•ุหฝ๋ๆ็K`ฎ;วŸ๒9฿"ัI^v[”ฟ4yYO๛ฯส_๚TK^ํ<9โธH@-คˆฮ9 ืGฆZ5๏๖td๙eํโ›q^฿ฒฑส‘\ฟ‡ฟไO๑Gsทะอw๚ ห๘ภ๙bฌ๑๒ไœไทฟุ™že?gRค–฿”"วษJ_๛ํcQ๋_sWฎึ?๚1i๗๒RWภ๛Xิzืึ8้=Z๓a๑รา?๚RJฏแ~|/แO๚—AžญF3ฎ_๚sO-yuฟSี้l๑๋ฏซาูมkG>ฒฏษ๔*ํ๕?๘๖บฏ›ฟ&jแต๙ฌฟ๋๒ใ๙Š๎5?๘๕บฏ›ฟ&j๎ฤํYgฅ‹ZCึ™ท}0฿๗GA\uๆฅ•ฃY^ผา–๖ƒfํนย๕kฑพ˜g๛‰ฃ ฏ?๑ŠRธุ่3ื iF[7๚ž~W4ฃ-›Mศ๗แฟ๚๘_YRศญoŸ๚>ต|]#ื†๋แ?๔udษ"ฝพ่๛z๋ร ห๓‘… —็#&๋D;/๚๙ใ•ฮWEu"—}žนฺ๖pKO๓>ƒ ดล/ฬ(ขŠ้:ยŠ( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( “i™ฐภั5NำE-Oพญฟ๔j็ำCaขj•งŠzŸ}[่2ื~~h๓#๐OkJF“i9ฦ$“ฏwฎ“วg> ต9ฮu)9K\~ฏ"ท‡ฟธัฆบ {IV…]ว๒’น*C๗”ง๙/ฦG jฝกSžI~25ฎนั|8=!ต?๘๔๚ืโƒ›mฝO†ีี๘k7บf„ทฝฺ’cyฮD๒เ~ษx˜ๆGฏSฃงนkrvon#/\˜gฺOn!ž ‘ฟMฎ‡A5ฟแ๙&บ—~ฏ๓Šนศงczึ๗‡ฯ[Lv๛b8ซlwว๓‡•#ฃ2'ฮŸ•"ขศโ๚ใ}ณV๎Œโ–๐„…%`ง>-๑GqพูซgK–8|'แ9%uD]H’ฬp'S\๘ฅxEz้29qŠ๔โฟรคHฦ๑แฅุ"๏jVˆx๑ ๘ฮ|ีาiึฟo}ำ~ฯ?Mนv3Œ™q\็ˆไbิ?๋ป:ํร5ํš๒๚S= $—ึzฺ_๚[4ผw%†ง}yS$Jกบ Ÿn+ึa:๛ววRผ{ย๋5o๛่5์0ศ!?‹๙%yส^ู?Cรโฏฌ'่cษ!฿๘Ÿกษ\^—#wˆนั‚ปGเฎz‡%qZ_พ!ฎw?๚ชย| ภ?ระ๕€฿๒N๕฿๚๚“E-zชW•|’wฎืิŸ๚)kีRพ”๛ฅ๗๚ๅw๚š(พ\ฟ๎SE!›๔Q\ถฌ—Vื๗ททหจหงช‡ŠKขžBท eฮN~n;qLGSEs๗พ šิฤฉ“‰๔๑ƒ‰ผฯ•A็œ?\c‚*ฝ๎ทซ[ZhาอเำeD(QƒL #6์/฿88?N2@:Š+‘ืฏฏF‘ฎุ_},ย< Ta‹ง$๒ ๕๏ž‚ญkทฺC\-v๓ฐณ{จผ€ศVU(ู'ปฏอว~(ฃขน=n๚=/Wำตm#ษคฯp’[ฃ YH$็๏ 3ฯณซ_Kฆxrๆ๖F– r่ฏะ;โ€4่ฌ;๋Bษa‰๏-ิ›Ÿdv3LvŒp8œทNGF฿Sิ5]ODธทž;x๎,ง’H^6uฏ?ฤพผ8็ฎx๊จฎ^ฤwทW1ษณ=ณ<ฅณ›rจrža—8ฦHวพkฃ€3ํ!๛รๅ๙dœงl็ฝKEPEPEPEPEPEPEPEPEPEPEP7ใฌย+s‚Nฟx7ˆF4 ๚yทBฝใวŸ๒)žฦผ#ฤ๑ใแo๚๚ทBผŸ๛tN“ย฿๒,xWฟฅะgซqsฏ_u4้]ๅชž‘cยฟ๕/=]ถ็ฤWฟ๕ๆŸ๚:Z๒+งฯKg‡‰5_Wฅณฯ5cŸ ุืๅว๔ฎใS[ฏ๚๙ปาVฎT9๐ญ‡~\์ต^Oฦ<ะJ’ฤ๗e]p?่ญะืฃ‰ZCึ™๊ใๅƒ๓Ÿๆo฿ฬ3ฤัะW›x’๎5ั,lฮ|ู-lไ^8ยฌภ่K^“}0ฯ๗SGA^OโŽบ?ƒ!ูซŸ)Š”’}ฬๅศเฅ$Ÿส์์|_#ื†๋บ่๊ษ“Ek๏๛|ั๖ีญใGŽผ7Ÿ๙๎Ÿ๚:ฒ%‘^๛๔}ตk†—็#l'๐h|ฟ97_๒!ูืูO\ํt7_๒"Yื&ฎzฝฌ6าฯ ยm?๑K๓ (ขบฐขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ค๒M†‰ชVฟ๒)๊๕๕m หWG“CaขMQต‘SSฏซojเร/๑ฏอd> ้HŸV‘_ร฿๎\่ำ]ฝ$ซBฎใ๙I\ญ"ฟ‡ฟธัฆบ {IV…]ว๒’น๊oKrไsU|—็3Cมูhœ‘๛™๔˜k’๑/z่฿๕่๔cืYเ๏๘๔ั1ŸJ"ฎKฤŸ๑๋ฃืกัฏYแฟๅ๊๖ใ๛์ฟฤ9Œ๐บwt?ศึ๗‡ไj๕๖ฟ๚5เ๙t๏๚้ oxIๆฅ_kกC[cพ?œ?6o˜็OJ‘Q?ไm๑Oqพูฉ๚Ÿ’พŸ๙ษLO๙|Q\oฟ๖j~ง$ทEฏฉ?œ•ใง๋&DKใฅ๋&E๏d๊d›+K\Ÿˆม_j@๕?Z๋<1!ฏ ืฅว…-rพ&‘งUฏฉ?๔#W†{’๒๚\0๏า_๚\‹Yชุ2ใAฏ`ƒA1!I^?แ๕šฏƒ.?๔๕๘?ไฑคuๆ็?ล_ืcศโใG๚์d?†ืน้๚•ลi๒6๘‡น]่uฺ7†“น้๚•ล้Ÿ๒6xƒน]่UXO†ง๘W่V เฉ๚ฑ๐Iป_R่ฅฏUJ๒ฏ€฿๒N๕฿๚๚“E-zชWา`Tพ\ฟ๎SE฿๋—฿๊hค3~ณnด->๖i$ธŽV๓qๆ ธ‘Q๘วฬถžqZUsฎXZ\ฝผ’JาฦE’๓ศUH^9็ฤCqคต็ˆ,ฏeŠทฑG๒vฑ.ฬภF`๗<ใฆ*บU”ัว$9[ฦ8~r(๏ว ฝ=*ๅN๋Jฒฝ3›ˆ7›ˆDฤn@IวิŸzŽ Nทท&ส5ฺLง๗โpผ๔T๚…๔ZnŸ=์สํ]‚Iำ5f€3cะ4ุเน„@์—1%2L๎ฦ<ด1$ษเV๎lเผฒ’าx๗ม"ldษ™า_Gง้๗7ฒ†hํโi\ ษ!A'T๊มะ0่Fhญึ›k{2M28•จxๅxฮำŒ‚TŒŽก] NHmbމ-2!๒ฆt( ษŽ+FŠ บ5Š]›”IQห๙…RwT-ืq@v“ŸjตดVg”๓$26Xœฑ๋ืงะqJ๒•ž8„R0pIpีฦ:๓฿<}*J(ชำ_Eํญฃ+™.w์ ฃ'5f€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€9Ÿqแฟ๓ุื…x—‹? ืีฟ๒๎ž?‘B๓้ x_‰ฟใืร๕๕o…xx๏๗ศz๒Gอf๒0ง้ษ7Ÿ๑๑ฎุ&/ฏMฝ8๐,?๖o'j[ฯ๘๘ื์ึช"ป’หแีดฑ…,ึัฤwtรวฐ8c^=8นJ]\๔”xเ็8EuqาQๆ๋Ÿ๚๑บั/Zฟไn‡นIซ—ŽY!bัHศYJงR0GะƒŠ้ศแs“A5๔๘ฺุ…Yw๙Ÿe˜ยุjา๏สๆt๓ฎ—พฎฟ๔บ ไผ{วu\ฟ๔ZืY7๚ู๋ๆ๋K ฎOว฿๒;j๖ฯEญpe฿ว๙K๓‰ๅๅ_๏+า๚TG่๒'๘ฃห ืwคฌ๐ืFA\ƒ"Š?ทั†ปญw‡์ฟ๚2 ห0๘ง'ค#ืใŸ๘Ÿ›‰bใJ:ุjš[˜วvฑัขŸq%์ ตj=sc?๕ฺวFŠ๓ก๑รา?๚R<ชฤง้Hโ~"ศร{ํGฉฎ๏u๛[(jˆ๒0ล^๛Q๊Kƒ๛ํ[ภ–ส ๖้—ง่จปQ๔ขu>๐ื…ณ?ณ่ึ†œกUvฌ2 š๑mฅช‘kย๕๛7‹žด4ฯ๙ฎ๋อ๔lตใb‰W็ฅ3็ฑลญ๓าไyžคsแ]?ฟ.?๖J่4?๙ ฎทŸ๚N๕ฯj'>ำ๋๒ใ๙%t:'‰๕ึ๓IฝฌG๐๘Ÿ}/ูŽ_๛q฿ฬ/ุ๔tไ'˜?ƒ!ูซึ/บiŸ๎วฃ ฏ&๑7ม์อ\97ล๗ง|๊vพ4‘๓ร_๕ึ?+_๙๏ฟํ๏GV฿?ไ|๐฿uFŠฤ—E{๏๛{ั๖ีx_แQ๙~r4ม๒ไdศ‰c_msีะ\ศ‰c_s๕ํaถ—ซฯกยm/๑K๓ (ขบ ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ค๒M†‰5FืE]Oพํฟ๔ช๐’j์0?๔Iช6ฟ๒*๊๕๕m อ\1๘e5๙ฃอ‡ม?๑ฏ)๊฿๒,xษ๔iญ{IV…]ว๒’น[Eน?5ะk฿๒J๔?๚๎?”•ฯSz_ใ—็#–ถ๔๋ไฟ9mธ้DUศ๘‹=4o๚๔?๚5๋ฐ๐LfHดE [ท>ำฦฅq!Mผฯ’ฒรฝหีs1มฟKีu z Z^นi{:ปE ๎`€x=3]?‡ไŸj_๕๖ฟ๚5รื_แ๛ศƒ๕; Oœ&ŽR1ฦำ$#ฏิ์วSผT–๗เเ๙+ลMoอน?๘#SF฿ื๏šŸฉษ.ั๋้œ”ฤ‘ณล๕ฦ๛fง๊_๒K๔o๚๚็%sฟŽŸฌ๔™’๘้zรI‘ย๒๐Ÿz\่Rื+โo๙5_๚๛“B5ิ๘[Cžฏ[ jๅ|K#Fซ_r่Fซ ๗/๐ฟ.F˜O๗้…้r,๘cfซ`หฝz๙ม๔๛Nผƒร?๋5_๛\่5๋ะ๘•[ฟoดซฮฮŠฟฎว“Ÿ?ืc!ฟไ3sำฟ๔9+‹ำN—ซขเ0HญŒ\8P$ฉQภœฉโบช)ˆไ5hn—RzฦUuิA9CฤL€ O <๎ตฃขy‘๘†ๅ,ค๛RFl๎\Eฬx้ศ##ำซซใP7ุˆUใ!A8\เggีšใต%ํขืm๔) ๔ี*กรหนมฦ:ถ1ž3M–สg7฿ุVW6Jฺ{ว hฬ&Iฒ6ใ8หผo็๏MvtPsd$ดีฦ‘ฆZ>“4O ทhฬณ๒แHห0#9ศไึืŠ„/R9๛# tํ[• ฌ7ึ’ฺฆ๘eRฎน# ๛Žh”šาโc}ƒg=ˆ:{ฦมโ0๏˜‘ทฦX ใx๐ๆช9ฮ—ซ’'B๚dัhดษmฤŽGสNๆ;฿จใ9ฯSลwtP5uฅ5ตํ‚้–ยื9‘S!T \๚’:žN*……”ขK_์ป+‹+”ณ‘/$š&@๒w1โF฿ฮแž3ฯ5ฺQ@n™c zฦˆ๖ฺeิ2 ษP\ 3‡l็ๆ็๋อt๚jยบ|Bก‹ฉ0`ใ“ืw5nŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠๅ>#Mฟ‚ฏd–Dglž5เ'ิlš-5ผทg‚๊*ฌชJsƒล{ฦ฿๙%zŸtƒFญ|ก\uฐqซYUoo๘?ๆyุœพ5๋ฦณ•ฌญ๙™์7zพ˜gึˆิm“J‰ืๆa็p9ไ๒8๗—โNยใแๅญผ7ึาNcITฐ ๐xฏ2ขนฉๅ0„ฃ.gฃO๎V8้d”้ฮ3็~๋O๎V ้|sฏ‹-ๅธš8c /#t๗5อQ^jJญ9S}U[EVฅ*M™5๗ž6ฃbe“ถ็7'‰Wกผ…‡~๊ ๚kš๑ฤ๐๘ฦX%ŽX›หรฦมฤj#น๊+ž† 4gฮ๗Zกห†หใ‡ฉํฏฃ_{O๔:โผ+โ8คš4’TƒหF` แ๙ภ๏]ž—ช้๑Mก/ญ”Gฅข>fQตผศx<๐x?‘ฏ+ขฆพ5›m๎๏๘%๚‰หc]ถๅkปไช?ก๋wพš|z.กhaษ๒ฯ9v๎๓3ท9ฦqฮ*=kVำคฟ—จZพ๙lสํ™Nํฒqฯ8kส(ฌ#”ม8พgขK๎i‡4r:q”eฮ๔I}อ?ะ๊€Ÿภื˜x†hฆส๒คGูงBตฺร9ะ๛V5Ž/ŽJ็>+†2ฟ๔ฬ๔j67>5๐๐^หrF^D•YTy€๒AใŠว–๒ิ๘r๒!s ‘พี…2s=น{…c๘Jใ่งKq„o๐ม2จๅ‘ฅAKแทเMห‰ฃoูฤ$C ปrSp:ใ๑ฌ:(ฎบpไMwm็}*jškปo๏ (ขด4 (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€7ั+ำm็G็j‰<ญรv฿+ฑืใ5RึXืรZ”M"‰โ• rภ r@๏ŒฬV]Šข’j๛ป)‡:รคšพ๎Šกณฉอ๘wC‰$F’4›z†ฎd$dvญอj๖ึ_†š5ดw0ฝฤs๑,€บŒ?QิuqTVrยฉr๋๐ษฟพๆg,eษฏร'/พๆzO‚u +qค ฏ-โูmt|ชปI‘ฮOšใ๕ษฃ–ืHศŽRะซ`vŸ5ฮงjฦขฆž Bซซ}เ™,iืu”ทwาฟ๙ ญ xกถิึI ลPฬโ'Œœ~Ÿภึ5ำR๑ๅ~_ƒนูVšฉWๅ๘;B][๘Ž_>/.Xฏoผaหnฦ|๖๕งjV๏๐ใIถYโiาๅูข (ฬœ‘ิuสัX<*n.๛[๐M~ง3มEธป-?น5๚ท†ฏmaึผ,๒ย‹ตยศYภKM€}3‘๙Šๆต๙o๊rฤ๊๑ฝฌฌง!s‚qYิSง†Pช๊฿uoลฟิชXENณฌž๊฿๙3—๊l๘vhก“R๓dD฿งN‹น€ลx฿ฺฝFoJeบNฬ2ตน#ฯ\Œyy๏์*๑Z+ ^_L”œฌrใฒจbๆง)ZวซWNี‰฿kฐG`7yห•ไ฿ถF}+‘ฑน|MฎศgŒG$7axรg8ม๏šๅ่ข–_jIKuaัสแII)nฌ}๐Iป_R่ฅฏUJ๒ฏ€฿๒N๕฿๚๚“E-zชWy๊•/ฟื/๛ฟิัE๗๚ๅw๚š) ฿ขŠ)ˆ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ๓฿ฟ๒J๕?๚้Z๙Bพฏ๘$ฏSฎ่ีฏ”)ˆ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ๚#เ7“ฝwพคัK^ช•ๅ_ฟไ๋ฟ๕๕'ŠZ๕Tค2ฅ๗๚ๅw๚š(พ\ฟ๎SE!›๔QE1Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@{๑ทI^ง] ัซ_(Wีไ•๊๕าต๒…1Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@D|’wฎืิŸ๚)kีRผซเ7“ฝwพคัK^ช”†Tพ\ฟ๎SE฿๋—฿๊hค3~Š(ฆ ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ฯ~6ษ+ิ๋ค๚5kๅ ๚ฟใo’ฝOบAฃVพPฆ ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(H!’ๆโ8"]าHมT{šาo฿ฉ”7’ฆ"Cn”๘}yวจ"X๏oŠโ(m7็ฃ:•๕ฌึvv์X๑ษ9้Xท9IจฝŽw)สmAค—•๕๛๛ไะตYRH‘e`De]ไ๛sšO์[ซ0๒ส…s้qœsNzV~sึŒีZงu๗ม/–ฏ๓/ป ค4KฒmฝF] ยพ™ษ๏วOZDะ๏C,hA`)ิ‚€Obk:ŸายIŠFBARTใƒมšฉัฏปœk[I/ป p่ืใX‚zเHง#๛รžW฿งา์kภmˆgŒด่}9>ผ}A๔ช>ดSตN๋๎‚;U๎พ๏๘%๓ฃ_,…^€™ูภQุ‚ูฦGqืƒRj7)rlOy=อลv๎;sœgฝI๖™ฮmึ๒‹‰ ็ภc?ญ&ช๔k๎‚&ซtk๎ๆiKแุวศ๐L~๎)AnN3Lไ~‹Ÿ ๊V๋๙ฅ‡ฬ#็ct๛‘‚1ื"ฒU™UŠœqมเำคšY›tฒ;ถห1'€ฉrีฟฤพ๏๘$จWบ๗•ฝ?เ—?ฑฏw์ูrpชeP_y๙‡N{R่สส<ฒ™ฤr๎๙%=‚ไ๚~xฌ๚qveU,Jฏ๐>•Vฉ}฿๐Kๅซห๎‚_รฟม4/€B,ชฬภใ้ศ็hทo‰#ก’EQŸL“ืพ:โจe9RAฦ8=ฉ|ว1๗ท– `นเ฿€ฅjืVซ}฿๐KวDฟ\๙‘ว1$ศน>ƒ'Ÿ๑uœšใก``เ๒<ี8^์qฦัะŸZอฃ8งjื9j2๛ฟเšp่๓ถิXwใ!|ๅห{ ๘?‘จŽ|O๎ก๓ื๛๐๋œใg๑้TiCะ‘Eชw_wๅซ‰}฿๐M๔[ถ‰žO*฿un$—9ม?Cื)ฑ่šŒ€‘jใฐ†ภ ใ9 ๖๗้Tค‘ๅr๒;;žฌว&ž.gPM&ยป ๎8+œใ้žiZฏu๗ม V๎พ๏๘%™4mB=๙ตv zจศnq‘๊:t๕ต$šกๆ&‰@เ €ŒO@๐NxลPIฅรคฎฎ8 ‚8ว๒ฆ๎mกrp@ฯz-Sบ๛ฟเ…ซw_w๘ั/ฮ‰wœ~๏ฬ]๚ฎr;Gาคธะo-_l๏mŸบํ:€ใิsžœ^ขณYู˜–bIby$๕คgg9f,@$็€0(ตK๎พ๏๘!หZ๛ฟเ——FิBŸfa†นˆ žOqืงOQJบ%๙h•?6๙vgกlž=9๎1TžieUY$w ย†bqภ~~Tสvฉ}฿๐GjฝืำmQIDrBจฤqบE=—ฏRxวฎ} 54iษImข มๆ\ช{ไ}?จฌ๒KX’ORi)rิ๊ื\ตmฌ—ั:ข. ?g;#vpคƒŽพ็zไzำฑuแZีืฎYˆ ธ๋–่1๏U^โwbฯ4ŒN %8จ๗ถpy#=hJฏVพ๏๘ •nญ}฿๐M๔[’ŽำดVฅ3๒6ยqิg๑๖8•<;}"พI—hq•Ie้ธใใฏZหggฦๆ-“œJnOญ5?™}฿๐AฦทI/ป ฉy:H๐5ผย>พ\๊ว=†3œ๖๗จฮ‹|0|ดู‚gšปpฮqกอgƒŽ”แ#ˆฺ0์ˆ%sม#ง๓?ฉ}฿๐C–ญ%๗ม4Bพ“1œํ•H^˜็9๕อ3๛๘ไคAื8VG?บ๓๓cพ:wลRมYCญŒ€x4™8ฦN)ฺงu๗มฟฬพ๏๘%๙4[ธไุZp๊>ะ€ƒา ศ9ใ๐ฅmy1&ราO1B‘ืp$G=9ตEฉ}฿๐GหW๙—ะ& Gdt:–๕ฦ3œใœzsา์kะ˜ฑDA้$ศผz๒zt็V}Zงu๗มZฟฬพ๏๘%ใค^†H—œำ ม๔<๐}บำŸDฟFฺะฎ่$]ส=Hฯ๑ศ๕ฌ๚sศ๒6็vc€2Nx -Sบ๛ฟเ…ช๗_wEt+ขชํ-ฒG’ฬรŸFว~ผuเาท‡๕๑ฌqคgC ‡งR8A๚V]>9d‰ƒG#ก ฉฦญ.Zฝ$พ๏๘$ธึ้%๗ม.Iข฿วr!$ฎง(}๓ะqฯ=ˆ=๊E๐๖คใ)ถึ*ผใœ;GะึzM"#ขHสฒ 8†yฆซฒซ8วิZฏu๗ม-ki%๗ม4Eบ†&fษT ฒ|gชา&‰|๙Q 1Ÿ(ศขO\mฮsŒœz ฯอ)$’I9=ฺ้งu๗ม-_ๆ_wZ]ศA˜ว ด1p฿98U  'ฟLLTGAฟRยHา<”ป€$>ŠzŒŸงแYˆRน8'$RgŒvฅหV๛ฟเ“หZ๛ฟเš’x~0XฃYษ;H*มFท#ึก:=๖์,!‡๐บบ•oฃgก้ำ= R Aศ'=sJdvcgb‰ชO=qBU;ฏปิk/ดพ๏๘%๏์[ถ c0JGEŽtfa๊r,บ6๏4ฐ„U]๘.2G|n•œElxq ึช,šSO ฑ๎<…สq๕ฆฃฉน]Yyม"ฌชำƒ›jห]ฟเ˜๔T๗ถอe}qj็- >คTฒiซฃข-I]QLaEPEPEPEPEPEPEPัฟไ๋ฟ๕๕'ŠZ๕Tฏ*๘ $๏]ฏฉ?๔Rืชฅ!•/ฟื/๛ฟิัE๗๚ๅw๚š) ฿ขŠ)ˆ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ๓฿ฟ๒J๕?๚้Z๙Bพฏ๘$ฏSฎ่ีฏ”)ˆ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขฅตท{ปจญใภy\ ' ษ๏ํIด•ุ›I]š:ŠฺiVVqHํ3คN`.ไR ~ฒjๆซsฃ$‘b ‘ก#UP BฉิRMA_s*jšพ๏W๓ (ขด6 (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€5๕ล‚oณ๊0Hอ๖ฐLก†6ศ1ธ^ต‘]™ฑน๐…์2๓}lฦXF อ'ำฑ๋Ÿฌ(?uร๙]ฟห๐9ฐฯpw๗]ต?ขŠ+sค(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ(ขŠ๚#เ7“ฝwพคัK^ช•ๅ_ฟไ๋ฟ๕๕'ŠZ๕Tค2ฅ๗๚ๅw๚š(พ\ฟ๎SE!›๔QE1Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@{๑ทI^ง] ัซ_(Wีไ•๊๕าต๒…1Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@h่|jช๘ฯ—ฒu์l฿าณซfาIด๏N# o$XU:ฆืดp3YW~ใKwงaˆปq[ฝ>๊ๆ5QZ›…Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@ZO1jK๋fO๔ฌฺะัuฆ๊"g‚9ั”ฦัษ๗Hˆ๘ $๏]ฏฉ?๔RืชฅyWภo๙'z๏}Iข–ฝU) ฉ}นฆŠ/ฟื/๛ฟิัHfQLAEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPžm’WฉืH?๔jืส๕ฟล๘ํ&๘q~—ื2[[!฿,p๙ฌฟผ\aw.yภ๊:ืฬฉง๘hฯ(“_ฝXF<ท]4n9ศ๓Fz`œ๛Tนฅฟไฬๅ5gน˜TVวุtฐ๏น๛g๒๛๎๚~zs๗z๑๏RพŸแกึ>s# ŠM?รFyDš๊ย1ๅบ้ ณqฮGš6๓ำ็ฺข๛ƒ๖w?kž_`฿_๏๏ฯN~๏^=่๖‹ฯ๎ไึ>s#Š}?รBx„z๋Bsๆ3i 2๑ฦšwsื$c„ำ4g”Iฏฌ#S.š 7ไyฃnLŸj=ข๓๛Ÿ๙ตŸศยขถ>ร ‡๖ฯฺ็—ุ?wื๛๛๓ำŸปืz•๔ โ๋๗ญ ฯšอฆ€หวiฯ\‘z=ข๓๛Ÿ๙ตŸศยขทSO๐ัžQ&ฟzฐŒynบh,s‘ๆผ๔ม9๖จพร ‡๖ฯฺ็—ุ?wื๛๛๓ำŸปืz=ข๓๛Ÿ๙ตŸศวขท_O๐ะž!ฟzะœ๙ฎฺh ผqๆ๕ษ๗ก4 ๅk๗ซว–๋ฆ‚อว9hฯLŸj=ข๓๛Ÿ๙ตŸศยขถ~ล  Wf๔ž"ห๗3==๓วNjGำ4'ˆGฏด'>cถš/`yงw=rF=้๛E็๗1๛X๙ฯŒ*+u4 ๅk๗ซว–๋ฆ‚อว9hฯLŸj‹์:ุwmณy}ƒ๗}ฟฟ=9๛ฝx๗ฅํŸศ^ึ>s#Š}?รBx„z๋Bsๆณi 2๑ฦšwsื$c„ำ4g”Iฏฌ#[ฎš 7ไyฃo=0N}จ๖‹ฯ๎ไึ>s# Šุ๛ƒ๖w?kž_`฿_๏๏ฯN~๏^=๊Wำ4'ˆGฏด'>k6š/`yงw=rF=่๖‹ฯ๎ไึ>s#นนŠภ/+„\๚“W๕™– Hงมm (ฤกlฤ~?สด,c๐ีŽขำพณจO\ฒใฏ=(†รmyrณjบชZฎ฿ณศšdl๒q๓nS8 ƒำ ู๋วJวขด<๛อ๛u๗๖Ÿ๛<Ÿฝ=|฿wŸนืzฑ5ท†ึ๒ูaีuWตm฿h‘๔ศีใใๅฺขr'ฎYqืž”ElCmแถผนYต]U-WoูไM26y8๙ท)œม้†l๕ใฅW๒t์7ํื฿ฺ๓๏๖4๒~๗๕๓w}~็^=่>Šุšรkylฐ๊บซฺถ๏ดH๚dj๑๑๒ํQ9“ื,ธ๋ฯJ!ถ๐^\ฌฺฎช–ซท์๒&™<œ|”ฮ`๔ร6z๑า€1่ญ'Gว๓~}ง>cO'๏ฯ_7w็๎uใฌMmแตผถXu]Uํ[wฺ$}25x๘๙vจœ‡ษ๋–\u็ฅcั[xmฏ.VmWUKU๖yLžN>mสg0za›=x้U๛อ๛u๗๖Ÿ๛<Ÿฝ=|฿wŸนืzฯขถ&ถ๐ฺ[,:ฎช๖ญปํ>™ผ||ปTNCไ๕ห.:๓าˆmผ6ื—+6ซชฅชํ๛<‰ฆFฯ'6ๅ3€˜=0อžผt  z+Cษัฑ฿ท_iฯฟุำษ๛฿๓ือ๗y๛x๗ซ[xmo-–WU{V๖‰L^>>]ช'!๒zๅ—y้@๔Vฤ6kห•›UีRีvžDำ#g“›r™ภL˜fฯ^:U'Gว๓~}ง>cO'๏ฯ_7w็๎uใ€3่ญ‰ญผ6ท–หซชฝซn๛DฆFฏ.ี๙=rหŽผ๔ขo ตๅสอช๊ฉjป~ฯ"i‘ณษวอนLเ&L3gฏ(Šะ๒t์7ํื฿ฺ๓๏๖4๒~๗๕๓w}~็^=๊ฤึ[หe‡Uี^ีท}ขGำ#W—j‰ศ|žนeว^zP=ฑ ท†ฺ๒ๅfีuTต]ฟg‘4ศูไใๆฆpฆณืŽ•_ษัฑ฿ท_iฯฟุำษ๛฿๓ือ๗y๛x๗  ๚+bko ญๅฒรช๊ฏjพั#้‘ซววหตDไ>O\ฒใฏ=(†รmyrณjบชZฎ฿ณศšdl๒q๓nS8 ƒำ ู๋วJวขด<๛อ๛u๗๖Ÿ๛<Ÿฝ=|฿wŸนืzฑ5ท†ึ๒ูaีuWตm฿h‘๔ศีใใๅฺขr'ฎYqืž”ElCmแถผนYต]U-WoูไM26y8๙ท)œม้†l๕ใฅW๒t์7ํื฿ฺ๓๏๖4๒~๗๕๓w}~็^=่>Šุšรkylฐ๊บซฺถ๏ดH๚dj๑๑๒ํQ9“ื,ธ๋ฯJ!ถ๐^\ฌฺฎช–ซท์๒&™<œ|”ฮ`๔ร6z๑า€1่ญ'Gว๓~}ง>cO'๏ฯ_7w็๎uใฌMmแตผถXu]Uํ[wฺ$}25x๘๙vจœ‡ษ๋–\u็ฅcั[xmฏ.VmWUKU๖yLžN>mสg0za›=x้U๛อ๛u๗๖Ÿ๛<Ÿฝ=|฿wŸนืzฯขถ&ถ๐ฺ[,:ฎช๖ญปํ>™ผ||ปTNCไ๕ห.:๓าˆmผ6ื—+6ซชฅชํ๛<‰ฆFฯ'6ๅ3€˜=0อžผt  z+Cษัฑ฿ท_iฯฟุำษ๛฿๓ือ๗y๛x๗ซ[xmo-–WU{V๖‰L^>>]ช'!๒zๅ—y้@๔Vฤ6kห•›UีRีvžDำ#g“›r™ภL˜fฯ^:U'Gว๓~}ง>cO'๏ฯ_7w็๎uใ€3่ญ‰ญผ6ท–หซชฝซn๛DฆFฏ.ี๙=rหŽผ๔ขo ตๅสอช๊ฉjป~ฯ"i‘ณษวอนLเ&L3gฏ(Šะ๒t์7ํื฿ฺ๓๏๖4๒~๗๕๓w}~็^=๊ฤึ[หe‡Uี^ีท}ขGำ#W—j‰ศ|žนeว^zP=ฑ ท†ฺ๒ๅfีuTต]ฟg‘4ศูไใๆฆpฆณืŽ•_ษัฑ฿ท_iฯฟุำษ๛฿๓ือ๗y๛x๗  ๚+bko ญๅฒรช๊ฏjพั#้‘ซววหตDไ>O\ฒใฏ=(†รmyrณjบชZฎ฿ณศšdl๒q๓nS8 ƒำ ู๋วJวญํbๆ]rา=Qผ,A–t F\v๚|j“ฃc๙ฟnพำŸฑง“๗ฟ็ฏ›ป๎๓๗:๑๏Z0IแBกฉ\ุฬฌ—‚m64`ฃ กTNs’99]ฝFzVU!vฆท_ำ1ญNํN+XM๕บ–iๅฏ^ค#S 437๎hะœ๛T_aะ~รฟ๛n็ํ๓ห์ป๋๙้ฯ๋วฝ?hผ็C๖ั์็F=บ๚†„๑๕๛ึ„็ฬvำ@eใŒ4๎็ฎHวฝ ง๘hฯ(“_ฝXF<ง]4n9ศ๓Fz`œ๛QํŸศ=ฌ|็Fฑ๖์;ถ๎~ื<พม๛พฟ฿฿žœผ{ิฏง๘hO_ฝhN|วm4^8ภ๓N๎zไŒ{ัํŸศ=ฌ|็Fบš†Œ๒‰5๛ี„cสuำAfใหๆธ=0N}ช/ฐ่?a฿ทs๖ฟ๙ๅ๖๕๔็๎๕ใhผ็Aํc็๗?๒1่ญืำ4'ˆGฏด'>cถš/`yงw=rF=่M?รFyDš๊ย1ๅ:้ ณqฮGš6๓ำ็ฺhผ็Aํc็๗?๒0จญฐ่?a฿ทs๖ฟ๙ๅ๖๕๔็๎๕ใฅ“O๐ะž!ฟzะœ๙Žฺh ผqๆ๕ษ๗ฃฺ/?น{X๙ฯŒ*+u4 ๅk๗ซว–๋ฆ‚อว9hฯLŸj‹์:ุwmณy}ƒ๗}ฟฟ=9๛ฝx๗ฃฺ/?น{X๙ฯŒz+u๔ โ๋๗ญ ฯ˜ํฆ€หวi“๊F=่M?รFyDš๊ย1ๅบ้ ณqฮGš6๓ำ็ฺhผ็Aํc็๗?๒=ฏเ7“ฝwพคัK^ช•ๆ_bถ‹แ๎ฒ-ฎZpn$.L[ท–8œŒ`็ŽคcŒŸMJค๏ฉชwW*_ฎ_๗ฉข‹๏๕ห๏๕4PQฟESQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE็ฟไ•๊๕าต๒…}_๑ทI^ง] ัซ_(SQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE๔Gภo๙'z๏}Iข–ฝU+สพษ;ื๋๊Oต๊ฉHeK๏๕ห๏๕4Q}นฆŠC7่ขŠb (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€ (ข€<๗ใo’ฝOบAฃVพPฏฏ~*ฺ่†ฟ๐๛Mาํšๆ๒Y")3‡๒Hฏž?แP๘๓…้๏_U8š+ถ…Cใฯ๚ฅฟ๑๑Tยก๑็ า฿๘ฟ๘ช`q4Wm ‡วŸ๔/Kโโจ…Cใฯ๚ฅฟ๑๑Tฤั]ท*ะฝ/‹Šฃ?่^—ลลPEv฿๐จ|yB๔ฟ๗/*๘T><กz_๛@Mยก๑็ า฿๘ฟ๘ช?แP๘๓…้๏_Uq4Wm ‡วŸ๔/Kโโจ…Cใฯ๚ฅฟ๑๑Tฤั]ท*ะฝ/‹Šฃ?่^—ลลPEv฿๐จ|yB๔ฟ๗/*๘T><กz_๛@Mยก๑็ า฿๘ฟ๘ช?แP๘๓…้๏_Uq4Wm ‡วŸ๔/Kโโจ…Cใฯ๚ฅฟ๑๑Tฤั]ท*ะฝ/‹Šฃ?่^—ลลPEv฿๐จ|yB๔ฟ๗/*๘T><กz_๛@Mยก๑็ า฿๘ฟ๘ช?แP๘๓…้๏_Uq4Wm ‡วŸ๔/Kโโจ…Cใฯ๚ฅฟ๑๑Tฤั]ท*ะฝ/‹Šฃ?่^—ลลPEv฿๐จ|yB๔ฟ๗/*๘T><กz_๛@Mยก๑็ า฿๘ฟ๘ช?แP๘๓…้๏_Uq4Wm ‡วŸ๔/Kโโจ…Cใฯ๚ฅฟ๑๑Tฤั]ท*ะฝ/‹Šฃ?่^—ลลPEv฿๐จ|yB๔ฟ๗/*๘T><กz_๛@Mยก๑็ า฿๘ฟ๘ช?แP๘๓…้๏_Uq4Wm ‡วŸ๔/Kโโจ…Cใฯ๚ฅฟ๑๑Tฤั]ท*ะฝ/‹Šฃ?่^—ลลPEv฿๐จ|yB๔ฟ๗/*๘T><กz_๛@Mยก๑็ า฿๘ฟ๘ช?แP๘๓…้๏_Uq4Wm ‡วŸ๔/Kโโจ…Cใฯ๚ฅฟ๑๑Tฤั]ท*ะฝ/‹Šฃ?่^—ลลPEv฿๐จ|yB๔ฟ๗/*๘T><กz_๛@Mยก๑็ า฿๘ฟ๘ช?แP๘๓…้๏_Uq4Wm ‡วŸ๔/Kโโจ…Cใฯ๚ฅฟ๑๑Tฤั]ท*ะฝ/‹Šฃ?่^—ลลPEv฿๐จ|yB๔ฟ๗/*๘T><กz_๛@Mยก๑็ า฿๘ฟ๘ช?แP๘๓…้๏_Uq4Wm ‡วŸ๔/Kโโจ…Cใฯ๚ฅฟ๑๑Tฤั]ท*ะฝ/‹Šฃ?่^—ลลPEv฿๐จ|yB๔ฟ๗/*๘T><กz_๛@Mยก๑็ า฿๘ฟ๘ช?แP๘๓…้๏_Uq4Wm ‡วŸ๔/Kโโจ…Cใฯ๚ฅฟ๑๑Tฤั]ท*ะฝ/‹Šฃ?่^—ลลPEv฿๐จ|yB๔ฟ๗/*๘T><กz_๛@Mยก๑็ า฿๘ฟ๘ช?แP๘๓…้๏_Uq4Wm ‡วŸ๔/Kโโจ…Cใฯ๚ฅฟ๑๑Tฤั]ท*ะฝ/‹Šฃ?่^—ลลPEv฿๐จ|yB๔ฟ๗/*๘T><กz_๛@Mยก๑็ า฿๘ฟ๘ช?แP๘๓…้๏_Uq4Wm ‡วŸ๔/Kโโจ…Cใฯ๚ฅฟ๑๑Tฤั]ท*ะฝ/‹Šฃ?่^—ลลPEv฿๐จ|yB๔ฟ๗/*๘T><กz_๛@ฅ๐Iป_R่ฅฏ[|๑ฑบZn๛ฏ๙—๙O&–{ซcrา$›•๐Oสx c๙M๛Mฟ๔ .๛ฏ๙—๙O&๗_๓๙/๒ŸM'ฺm็ง่h๛Mฟ๔ .๛ฏ๙—๙O&๗_๓๙/๒ŸM'ฺm็ง่h๛Mฟ๔ .๛ฏ๙—๙O&๗_๓๙/๒ŸM'ฺm็ง่h๛Mฟ๔ .๛ฏ๙—๙O&๗_๓๙/๒ŸM'ฺm็ง่h๛Mฟ๔ Ieๅใ;›๙Rbƒ…˜Žง๎เีmฌู@-ฉHˆบ“€>็ญeEชรง‡ŽY€นtq“’๋ิŸฮ•Cฅศkล 0a๛ท๊#ทจฆ-KUน$็y]Ž๐v^งpฏุฒFGไ:สMwIƒ-ฺ‚๒?๑6ๆํŠ“;๗.LูU'๓Pว-้’]H$Š8 ˜ฯจ๙zAi๛๎ฟ็๒_๛ๅ?๘šŠˆฯ™,ฮ’ถ๖Ž๐TŸiทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก ฿u?’฿)ฤัพ๋%พS‰ค๛Mฟ๔ iทžŸก vฝ๒^>}ั?๘šตธ.žืฒ฿ว#<„ชก~๗D็5Uฎก†ษ๚™ไฐ›J–ย[†ู4oฒ)ๆฮqวน  ฃ••a™.Eอฌุ ๘่r8"ฆ6–,”ท]ŽTจซZรl–YุFึ~‡?RIไšฟ@ˆจกTฃ Rั@ูinspectrum-0.2.2/spectrogramcontrols.cpp000066400000000000000000000170361330473745300205420ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * Copyright (C) 2015, Jared Boone * * This file is part of inspectrum. * * 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 . */ #include "spectrogramcontrols.h" #include #include #include #include #include #include "util.h" SpectrogramControls::SpectrogramControls(const QString & title, QWidget * parent) : QDockWidget::QDockWidget(title, parent) { widget = new QWidget(this); layout = new QFormLayout(widget); fileOpenButton = new QPushButton("Open file...", widget); layout->addRow(fileOpenButton); sampleRate = new QLineEdit(); sampleRate->setValidator(new QIntValidator(this)); layout->addRow(new QLabel(tr("Sample rate:")), sampleRate); // Spectrogram settings layout->addRow(new QLabel()); // TODO: find a better way to add an empty row? layout->addRow(new QLabel(tr("Spectrogram"))); fftSizeSlider = new QSlider(Qt::Horizontal, widget); fftSizeSlider->setRange(4, 13); fftSizeSlider->setPageStep(1); layout->addRow(new QLabel(tr("FFT size:")), fftSizeSlider); zoomLevelSlider = new QSlider(Qt::Horizontal, widget); zoomLevelSlider->setRange(0, 10); zoomLevelSlider->setPageStep(1); layout->addRow(new QLabel(tr("Zoom:")), zoomLevelSlider); powerMaxSlider = new QSlider(Qt::Horizontal, widget); powerMaxSlider->setRange(-140, 10); layout->addRow(new QLabel(tr("Power max:")), powerMaxSlider); powerMinSlider = new QSlider(Qt::Horizontal, widget); powerMinSlider->setRange(-140, 10); layout->addRow(new QLabel(tr("Power min:")), powerMinSlider); scalesCheckBox = new QCheckBox(widget); scalesCheckBox->setCheckState(Qt::Checked); layout->addRow(new QLabel(tr("Scales:")), scalesCheckBox); // Time selection settings layout->addRow(new QLabel()); // TODO: find a better way to add an empty row? layout->addRow(new QLabel(tr("Time selection"))); cursorsCheckBox = new QCheckBox(widget); layout->addRow(new QLabel(tr("Enable cursors:")), cursorsCheckBox); cursorSymbolsSpinBox = new QSpinBox(); cursorSymbolsSpinBox->setMinimum(1); cursorSymbolsSpinBox->setMaximum(9999); layout->addRow(new QLabel(tr("Symbols:")), cursorSymbolsSpinBox); rateLabel = new QLabel(); layout->addRow(new QLabel(tr("Rate:")), rateLabel); periodLabel = new QLabel(); layout->addRow(new QLabel(tr("Period:")), periodLabel); symbolRateLabel = new QLabel(); layout->addRow(new QLabel(tr("Symbol rate:")), symbolRateLabel); symbolPeriodLabel = new QLabel(); layout->addRow(new QLabel(tr("Symbol period:")), symbolPeriodLabel); widget->setLayout(layout); setWidget(widget); connect(fftSizeSlider, SIGNAL(valueChanged(int)), this, SLOT(fftSizeChanged(int))); connect(zoomLevelSlider, SIGNAL(valueChanged(int)), this, SLOT(zoomLevelChanged(int))); connect(fileOpenButton, SIGNAL(clicked()), this, SLOT(fileOpenButtonClicked())); connect(cursorsCheckBox, SIGNAL(stateChanged(int)), this, SLOT(cursorsStateChanged(int))); connect(powerMinSlider, SIGNAL(valueChanged(int)), this, SLOT(powerMinChanged(int))); connect(powerMaxSlider, SIGNAL(valueChanged(int)), this, SLOT(powerMaxChanged(int))); } void SpectrogramControls::clearCursorLabels() { periodLabel->setText(""); rateLabel->setText(""); symbolPeriodLabel->setText(""); symbolRateLabel->setText(""); } void SpectrogramControls::cursorsStateChanged(int state) { if (state == Qt::Unchecked) { clearCursorLabels(); } } void SpectrogramControls::setDefaults() { fftOrZoomChanged(); cursorsCheckBox->setCheckState(Qt::Unchecked); cursorSymbolsSpinBox->setValue(1); // Try to set the sample rate from the last-used value QSettings settings; int savedSampleRate = settings.value("SampleRate", 8000000).toInt(); sampleRate->setText(QString::number(savedSampleRate)); fftSizeSlider->setValue(settings.value("FFTSize", 9).toInt()); powerMaxSlider->setValue(settings.value("PowerMax", 0).toInt()); powerMinSlider->setValue(settings.value("PowerMin", -100).toInt()); zoomLevelSlider->setValue(settings.value("ZoomLevel", 0).toInt()); } void SpectrogramControls::fftOrZoomChanged(void) { int fftSize = pow(2, fftSizeSlider->value()); int zoomLevel = std::min(fftSize, (int)pow(2, zoomLevelSlider->value())); emit fftOrZoomChanged(fftSize, zoomLevel); } void SpectrogramControls::fftSizeChanged(int value) { QSettings settings; settings.setValue("FFTSize", value); fftOrZoomChanged(); } void SpectrogramControls::zoomLevelChanged(int value) { QSettings settings; settings.setValue("ZoomLevel", value); fftOrZoomChanged(); } void SpectrogramControls::powerMinChanged(int value) { QSettings settings; settings.setValue("PowerMin", value); } void SpectrogramControls::powerMaxChanged(int value) { QSettings settings; settings.setValue("PowerMax", value); } void SpectrogramControls::fileOpenButtonClicked() { QSettings settings; QString fileName; QFileDialog fileSelect(this); fileSelect.setNameFilter(tr("All files (*);;" "complex file (*.cfile *.cf32 *.fc32);;" "complex HackRF file (*.cs8 *.sc8 *.c8);;" "complex Fancy file (*.cs16 *.sc16 *.c16);;" "complex RTL-SDR file (*.cu8 *.uc8)")); // Try and load a saved state { QByteArray savedState = settings.value("OpenFileState").toByteArray(); fileSelect.restoreState(savedState); // Filter doesn't seem to be considered part of the saved state QString lastUsedFilter = settings.value("OpenFileFilter").toString(); if(lastUsedFilter.size()) fileSelect.selectNameFilter(lastUsedFilter); } if(fileSelect.exec()) { fileName = fileSelect.selectedFiles()[0]; // Remember the state of the dialog for the next time QByteArray dialogState = fileSelect.saveState(); settings.setValue("OpenFileState", dialogState); settings.setValue("OpenFileFilter", fileSelect.selectedNameFilter()); } if (!fileName.isEmpty()) emit openFile(fileName); } void SpectrogramControls::timeSelectionChanged(float time) { if (cursorsCheckBox->checkState() == Qt::Checked) { periodLabel->setText(QString::fromStdString(formatSIValue(time)) + "s"); rateLabel->setText(QString::fromStdString(formatSIValue(1 / time)) + "Hz"); int symbols = cursorSymbolsSpinBox->value(); symbolPeriodLabel->setText(QString::fromStdString(formatSIValue(time / symbols)) + "s"); symbolRateLabel->setText(QString::fromStdString(formatSIValue(symbols / time)) + "Bd"); } } void SpectrogramControls::zoomIn() { zoomLevelSlider->setValue(zoomLevelSlider->value() + 1); } void SpectrogramControls::zoomOut() { zoomLevelSlider->setValue(zoomLevelSlider->value() - 1); } inspectrum-0.2.2/spectrogramcontrols.h000066400000000000000000000040111330473745300201740ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include #include #include #include #include class SpectrogramControls : public QDockWidget { Q_OBJECT public: SpectrogramControls(const QString & title, QWidget * parent); void setDefaults(); signals: void fftOrZoomChanged(int fftSize, int zoomLevel); void openFile(QString fileName); public slots: void timeSelectionChanged(float time); void zoomIn(); void zoomOut(); private slots: void fftSizeChanged(int value); void zoomLevelChanged(int value); void powerMinChanged(int value); void powerMaxChanged(int value); void fileOpenButtonClicked(); void cursorsStateChanged(int state); private: QWidget *widget; QFormLayout *layout; void clearCursorLabels(); void fftOrZoomChanged(void); public: QPushButton *fileOpenButton; QLineEdit *sampleRate; QSlider *fftSizeSlider; QSlider *zoomLevelSlider; QSlider *powerMaxSlider; QSlider *powerMinSlider; QCheckBox *cursorsCheckBox; QSpinBox *cursorSymbolsSpinBox; QLabel *rateLabel; QLabel *periodLabel; QLabel *symbolRateLabel; QLabel *symbolPeriodLabel; QCheckBox *scalesCheckBox; }; inspectrum-0.2.2/spectrogramplot.cpp000066400000000000000000000231451330473745300176530ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "spectrogramplot.h" #include #include #include #include #include #include #include #include #include #include "util.h" SpectrogramPlot::SpectrogramPlot(std::shared_ptr>> src) : Plot(src), inputSource(src), fftSize(512), tuner(fftSize, this) { setFFTSize(fftSize); zoomLevel = 1; powerMax = 0.0f; powerMin = -50.0f; sampleRate = 0; frequencyScaleEnabled = false; for (int i = 0; i < 256; i++) { float p = (float)i / 256; colormap[i] = QColor::fromHsvF(p * 0.83f, 1.0, 1.0 - p).rgba(); } tunerTransform = std::make_shared(src); connect(&tuner, &Tuner::tunerMoved, this, &SpectrogramPlot::tunerMoved); } void SpectrogramPlot::invalidateEvent() { pixmapCache.clear(); fftCache.clear(); emit repaint(); } void SpectrogramPlot::paintFront(QPainter &painter, QRect &rect, range_t sampleRange) { if (tunerEnabled()) tuner.paintFront(painter, rect, sampleRange); if (frequencyScaleEnabled) paintFrequencyScale(painter, rect); } void SpectrogramPlot::paintFrequencyScale(QPainter &painter, QRect &rect) { // At which pixel is F_+sampleRate/2 int y = rect.y(); int plotHeight = rect.height(); double bwPerPixel = (double)sampleRate / plotHeight; int tickHeight = 50; int bwPerTick = 10 * pow(10, floor(log(bwPerPixel * tickHeight) / log(10))); if (bwPerTick < 1) { return; } painter.save(); QPen pen(Qt::white, 1, Qt::SolidLine); painter.setPen(pen); QFontMetrics fm(painter.font()); int tick = 0; while (tick <= sampleRate / 2) { int tickpy = plotHeight / 2 - tick / bwPerPixel + y; int tickny = plotHeight / 2 + tick / bwPerPixel + y; painter.drawLine(0, tickny, 30, tickny); painter.drawLine(0, tickpy, 30, tickpy); if (tick != 0) { char buf[128]; if (bwPerTick % 1000000 == 0) { snprintf(buf, sizeof(buf), "-%d MHz", (int)tick / 1000000); } else if(bwPerTick % 1000 == 0) { snprintf(buf, sizeof(buf), "-%d kHz", tick / 1000); } else { snprintf(buf, sizeof(buf), "-%d Hz", tick); } painter.drawText(5, tickny - 5, buf); buf[0] = ' '; painter.drawText(5, tickpy + 15, buf); } tick += bwPerTick; } // Draw small ticks bwPerTick /= 10; if (bwPerTick >= 1 ) { tick = 0; while (tick <= sampleRate / 2) { int tickpy = plotHeight / 2 - tick / bwPerPixel + y; int tickny = plotHeight / 2 + tick / bwPerPixel + y; painter.drawLine(0, tickny, 3, tickny); painter.drawLine(0, tickpy, 3, tickpy); tick += bwPerTick; } } painter.restore(); } void SpectrogramPlot::paintMid(QPainter &painter, QRect &rect, range_t sampleRange) { if (!inputSource || inputSource->count() == 0) return; size_t sampleOffset = sampleRange.minimum % (getStride() * linesPerTile()); size_t tileID = sampleRange.minimum - sampleOffset; int xoffset = sampleOffset / getStride(); // Paint first (possibly partial) tile painter.drawPixmap(QRect(rect.left(), rect.y(), linesPerTile() - xoffset, fftSize), *getPixmapTile(tileID), QRect(xoffset, 0, linesPerTile() - xoffset, fftSize)); tileID += getStride() * linesPerTile(); // Paint remaining tiles for (int x = linesPerTile() - xoffset; x < rect.right(); x += linesPerTile()) { // TODO: don't draw past rect.right() // TODO: handle partial final tile painter.drawPixmap(QRect(x, rect.y(), linesPerTile(), fftSize), *getPixmapTile(tileID)); tileID += getStride() * linesPerTile(); } } QPixmap* SpectrogramPlot::getPixmapTile(size_t tile) { QPixmap *obj = pixmapCache.object(TileCacheKey(fftSize, zoomLevel, tile)); if (obj != 0) return obj; float *fftTile = getFFTTile(tile); obj = new QPixmap(linesPerTile(), fftSize); QImage image(linesPerTile(), fftSize, QImage::Format_RGB32); float powerRange = -1.0f / std::abs(int(powerMin - powerMax)); for (int y = 0; y < fftSize; y++) { auto scanLine = (QRgb*)image.scanLine(fftSize - y - 1); for (int x = 0; x < linesPerTile(); x++) { float *fftLine = &fftTile[x * fftSize]; float normPower = (fftLine[y] - powerMax) * powerRange; normPower = clamp(normPower, 0.0f, 1.0f); scanLine[x] = colormap[(uint8_t)(normPower * (256 - 1))]; } } obj->convertFromImage(image); pixmapCache.insert(TileCacheKey(fftSize, zoomLevel, tile), obj); return obj; } float* SpectrogramPlot::getFFTTile(size_t tile) { std::array* obj = fftCache.object(TileCacheKey(fftSize, zoomLevel, tile)); if (obj != nullptr) return obj->data(); std::array* destStorage = new std::array; float *ptr = destStorage->data(); size_t sample = tile; while ((ptr - destStorage->data()) < tileSize) { getLine(ptr, sample); sample += getStride(); ptr += fftSize; } fftCache.insert(TileCacheKey(fftSize, zoomLevel, tile), destStorage); return destStorage->data(); } void SpectrogramPlot::getLine(float *dest, size_t sample) { if (inputSource && fft) { auto buffer = inputSource->getSamples(sample, fftSize); if (buffer == nullptr) { auto neg_infinity = -1 * std::numeric_limits::infinity(); for (int i = 0; i < fftSize; i++, dest++) *dest = neg_infinity; return; } for (int i = 0; i < fftSize; i++) { buffer[i] *= window[i]; } fft->process(buffer.get(), buffer.get()); const float invFFTSize = 1.0f / fftSize; const float logMultiplier = 10.0f / log2f(10.0f); for (int i = 0; i < fftSize; i++) { // Start from the middle of the FFTW array and wrap // to rearrange the data int k = i ^ (fftSize >> 1); auto s = buffer[k] * invFFTSize; float power = s.real() * s.real() + s.imag() * s.imag(); float logPower = log2f(power) * logMultiplier; *dest = logPower; dest++; } } } int SpectrogramPlot::getStride() { return fftSize / zoomLevel; } float SpectrogramPlot::getTunerPhaseInc() { auto freq = 0.5f - tuner.centre() / (float)fftSize; return freq * Tau; } std::vector SpectrogramPlot::getTunerTaps() { float cutoff = tuner.deviation() / (float)fftSize; float gain = pow(10.0f, powerMax / -10.0f); auto atten = 60.0f; auto len = estimate_req_filter_len(0.05f, atten); auto taps = std::vector(len); liquid_firdes_kaiser(len, cutoff, atten, 0.0f, taps.data()); std::transform(taps.begin(), taps.end(), taps.begin(), std::bind1st(std::multiplies(), gain)); return taps; } int SpectrogramPlot::linesPerTile() { return tileSize / fftSize; } bool SpectrogramPlot::mouseEvent(QEvent::Type type, QMouseEvent event) { if (tunerEnabled()) return tuner.mouseEvent(type, event); return false; } std::shared_ptr SpectrogramPlot::output() { return tunerTransform; } void SpectrogramPlot::setFFTSize(int size) { float sizeScale = float(size) / float(fftSize); fftSize = size; fft.reset(new FFT(fftSize)); window.reset(new float[fftSize]); for (int i = 0; i < fftSize; i++) { window[i] = 0.5f * (1.0f - cos(Tau * i / (fftSize - 1))); } setHeight(fftSize); auto dev = tuner.deviation(); auto centre = tuner.centre(); tuner.setHeight(fftSize); tuner.setDeviation( dev * sizeScale ); tuner.setCentre( centre * sizeScale ); } void SpectrogramPlot::setPowerMax(int power) { powerMax = power; pixmapCache.clear(); tunerMoved(); } void SpectrogramPlot::setPowerMin(int power) { powerMin = power; pixmapCache.clear(); } void SpectrogramPlot::setZoomLevel(int zoom) { zoomLevel = zoom; } void SpectrogramPlot::setSampleRate(size_t rate) { sampleRate = rate; } void SpectrogramPlot::enableScales(bool enabled) { frequencyScaleEnabled = enabled; } bool SpectrogramPlot::tunerEnabled() { return (tunerTransform->subscriberCount() > 0); } void SpectrogramPlot::tunerMoved() { tunerTransform->setFrequency(getTunerPhaseInc()); tunerTransform->setTaps(getTunerTaps()); tunerTransform->setRelativeBandwith(tuner.deviation() * 2.0 / getStride()); // TODO: for invalidating traceplot cache, this shouldn't really go here QPixmapCache::clear(); emit repaint(); } uint qHash(const TileCacheKey &key, uint seed) { return key.fftSize ^ key.zoomLevel ^ key.sample ^ seed; } inspectrum-0.2.2/spectrogramplot.h000066400000000000000000000062201330473745300173130ustar00rootroot00000000000000/* * Copyright (C) 2015, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include "fft.h" #include "inputsource.h" #include "plot.h" #include "tuner.h" #include "tunertransform.h" #include #include #include class TileCacheKey; class SpectrogramPlot : public Plot { Q_OBJECT public: SpectrogramPlot(std::shared_ptr>> src); void invalidateEvent() override; std::shared_ptr output() override; void paintFront(QPainter &painter, QRect &rect, range_t sampleRange) override; void paintMid(QPainter &painter, QRect &rect, range_t sampleRange) override; bool mouseEvent(QEvent::Type type, QMouseEvent event) override; std::shared_ptr>> input() { return inputSource; }; void setSampleRate(size_t sampleRate); bool tunerEnabled(); void enableScales(bool enabled); public slots: void setFFTSize(int size); void setPowerMax(int power); void setPowerMin(int power); void setZoomLevel(int zoom); void tunerMoved(); private: const int linesPerGraduation = 50; static const int tileSize = 65536; // This must be a multiple of the maximum FFT size std::shared_ptr>> inputSource; std::unique_ptr fft; std::unique_ptr window; QCache pixmapCache; QCache> fftCache; uint colormap[256]; int fftSize; int zoomLevel; float powerMax; float powerMin; size_t sampleRate; bool frequencyScaleEnabled; Tuner tuner; std::shared_ptr tunerTransform; QPixmap* getPixmapTile(size_t tile); float* getFFTTile(size_t tile); void getLine(float *dest, size_t sample); int getStride(); float getTunerPhaseInc(); std::vector getTunerTaps(); int linesPerTile(); void paintFrequencyScale(QPainter &painter, QRect &rect); }; class TileCacheKey { public: TileCacheKey(int fftSize, int zoomLevel, size_t sample) { this->fftSize = fftSize; this->zoomLevel = zoomLevel; this->sample = sample; } bool operator==(const TileCacheKey &k2) const { return (this->fftSize == k2.fftSize) && (this->zoomLevel == k2.zoomLevel) && (this->sample == k2.sample); } int fftSize; int zoomLevel; size_t sample; }; inspectrum-0.2.2/subscriber.h000066400000000000000000000015161330473745300162340ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once class Subscriber { public: virtual void invalidateEvent() = 0; }; inspectrum-0.2.2/threshold.cpp000066400000000000000000000021731330473745300164200ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "threshold.h" Threshold::Threshold(std::shared_ptr> src) : SampleBuffer(src) { } void Threshold::work(void *input, void *output, int count, size_t sampleid) { auto in = static_cast(input); auto out = static_cast(output); std::transform(in, in + count, out, [](float s) { return (s > 0) ? 1.0f : 0.0f; }); } inspectrum-0.2.2/threshold.h000066400000000000000000000017531330473745300160700ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include "samplebuffer.h" class Threshold : public SampleBuffer { public: Threshold(std::shared_ptr> src); void work(void *input, void *output, int count, size_t sampleid) override; }; inspectrum-0.2.2/traceplot.cpp000066400000000000000000000112661330473745300164240ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include #include #include #include "samplesource.h" #include "traceplot.h" TracePlot::TracePlot(std::shared_ptr source) : Plot(source) { connect(this, &TracePlot::imageReady, this, &TracePlot::handleImage); } void TracePlot::paintMid(QPainter &painter, QRect &rect, range_t sampleRange) { if (sampleRange.length() == 0) return; int samplesPerColumn = sampleRange.length() / rect.width(); int samplesPerTile = tileWidth * samplesPerColumn; size_t tileID = sampleRange.minimum / samplesPerTile; size_t tileOffset = sampleRange.minimum % samplesPerTile; // Number of samples to skip from first image tile int xOffset = tileOffset / samplesPerColumn; // Number of columns to skip from first image tile // Paint first (possibly partial) tile painter.drawPixmap( QRect(rect.x(), rect.y(), tileWidth - xOffset, height()), getTile(tileID++, samplesPerTile), QRect(xOffset, 0, tileWidth - xOffset, height()) ); // Paint remaining tiles for (int x = tileWidth - xOffset; x < rect.right(); x += tileWidth) { painter.drawPixmap( QRect(x, rect.y(), tileWidth, height()), getTile(tileID++, samplesPerTile) ); } } QPixmap TracePlot::getTile(size_t tileID, size_t sampleCount) { QPixmap pixmap(tileWidth, height()); QString key; QTextStream(&key) << "traceplot_" << this << "_" << tileID << "_" << sampleCount; if (QPixmapCache::find(key, &pixmap)) return pixmap; if (!tasks.contains(key)) { range_t sampleRange{tileID * sampleCount, (tileID + 1) * sampleCount}; QtConcurrent::run(this, &TracePlot::drawTile, key, QRect(0, 0, tileWidth, height()), sampleRange); tasks.insert(key); } pixmap.fill(Qt::transparent); return pixmap; } void TracePlot::drawTile(QString key, const QRect &rect, range_t sampleRange) { QImage image(rect.size(), QImage::Format_ARGB32); image.fill(Qt::transparent); QPainter painter(&image); painter.setRenderHint(QPainter::Antialiasing, true); auto firstSample = sampleRange.minimum; auto length = sampleRange.length(); // Is it a 2-channel (complex) trace? if (auto src = dynamic_cast>*>(sampleSource.get())) { auto samples = src->getSamples(firstSample, length); if (samples == nullptr) return; painter.setPen(Qt::red); plotTrace(painter, rect, reinterpret_cast(samples.get()), length, 2); painter.setPen(Qt::blue); plotTrace(painter, rect, reinterpret_cast(samples.get())+1, length, 2); // Otherwise is it single channel? } else if (auto src = dynamic_cast*>(sampleSource.get())) { auto samples = src->getSamples(firstSample, length); if (samples == nullptr) return; painter.setPen(Qt::green); plotTrace(painter, rect, samples.get(), length, 1); } else { throw std::runtime_error("TracePlot::paintMid: Unsupported source type"); } emit imageReady(key, image); } void TracePlot::handleImage(QString key, QImage image) { auto pixmap = QPixmap::fromImage(image); QPixmapCache::insert(key, pixmap); tasks.remove(key); emit repaint(); } void TracePlot::plotTrace(QPainter &painter, const QRect &rect, float *samples, size_t count, int step = 1) { QPainterPath path; range_t xRange{0, rect.width() - 2.f}; range_t yRange{0, rect.height() - 2.f}; const float xStep = 1.0 / count * rect.width(); for (size_t i = 0; i < count; i++) { float sample = samples[i*step]; float x = i * xStep; float y = (1 - sample) * (rect.height() / 2); x = xRange.clip(x) + rect.x(); y = yRange.clip(y) + rect.y(); if (i == 0) path.moveTo(x, y); else path.lineTo(x, y); } painter.drawPath(path); } inspectrum-0.2.2/traceplot.h000066400000000000000000000030001330473745300160540ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include "abstractsamplesource.h" #include "plot.h" #include "util.h" class TracePlot : public Plot { Q_OBJECT public: TracePlot(std::shared_ptr source); void paintMid(QPainter &painter, QRect &rect, range_t sampleRange); std::shared_ptr source() { return sampleSource; }; signals: void imageReady(QString key, QImage image); public slots: void handleImage(QString key, QImage image); private: QSet tasks; const int tileWidth = 1000; QPixmap getTile(size_t tileID, size_t sampleCount); void drawTile(QString key, const QRect &rect, range_t sampleRange); void plotTrace(QPainter &painter, const QRect &rect, float *samples, size_t count, int step); }; inspectrum-0.2.2/tuner.cpp000066400000000000000000000072071330473745300155640ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include #include "tuner.h" Tuner::Tuner(int height, QObject * parent) : height(height), QObject::QObject(parent) { minCursor = new Cursor(Qt::Horizontal, Qt::SizeVerCursor, this); cfCursor = new Cursor(Qt::Horizontal, Qt::SizeAllCursor, this); maxCursor = new Cursor(Qt::Horizontal, Qt::SizeVerCursor, this); connect(minCursor, &Cursor::posChanged, this, &Tuner::cursorMoved); connect(cfCursor, &Cursor::posChanged, this, &Tuner::cursorMoved); connect(maxCursor, &Cursor::posChanged, this, &Tuner::cursorMoved); cfCursor->setPos(100); _deviation = 10; updateCursors(); } int Tuner::centre() { return cfCursor->pos(); } void Tuner::cursorMoved() { Cursor *sender = static_cast(QObject::sender()); if (sender != cfCursor) { // Limit cursor positions to within plot auto posRange = range_t{0, height}; sender->setPos(posRange.clip(sender->pos())); // Limit deviation range to half of total BW (either side of centre) auto deviationRange = range_t{2, height / 2}; _deviation = deviationRange.clip(std::abs(sender->pos() - cfCursor->pos())); } else { auto cfRange = range_t{_deviation, height - _deviation}; sender->setPos(cfRange.clip(sender->pos())); } updateCursors(); } int Tuner::deviation() { return _deviation; } bool Tuner::mouseEvent(QEvent::Type type, QMouseEvent event) { if (cfCursor->mouseEvent(type, event)) return true; if (minCursor->mouseEvent(type, event)) return true; if (maxCursor->mouseEvent(type, event)) return true; return false; } void Tuner::paintFront(QPainter &painter, QRect &rect, range_t sampleRange) { painter.save(); QRect cursorRect(rect.left(), rect.top() + minCursor->pos(), rect.right(), maxCursor->pos() - minCursor->pos()); // Draw translucent white fill for highlight painter.fillRect( cursorRect, QBrush(QColor(255, 255, 255, 50)) ); // Draw tuner edges painter.setPen(QPen(Qt::white, 1, Qt::SolidLine)); painter.drawLine(rect.left(), rect.top() + minCursor->pos(), rect.right(), rect.top() + minCursor->pos()); painter.drawLine(rect.left(), rect.top() + maxCursor->pos(), rect.right(), rect.top() + maxCursor->pos()); // Draw centre freq painter.setPen(QPen(Qt::red, 1, Qt::SolidLine)); painter.drawLine(rect.left(), rect.top() + cfCursor->pos(), rect.right(), rect.top() + cfCursor->pos()); painter.restore(); } void Tuner::setCentre(int centre) { cfCursor->setPos(centre); updateCursors(); } void Tuner::setDeviation(int dev) { _deviation = std::max(1, dev); updateCursors(); } void Tuner::setHeight(int height) { this->height = height; } void Tuner::updateCursors() { minCursor->setPos(cfCursor->pos() - _deviation); maxCursor->setPos(cfCursor->pos() + _deviation); emit tunerMoved(); } inspectrum-0.2.2/tuner.h000066400000000000000000000027031330473745300152250ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include #include "cursor.h" #include "util.h" class Tuner : public QObject { Q_OBJECT public: Tuner(int height, QObject * parent); int centre(); int deviation(); bool mouseEvent(QEvent::Type, QMouseEvent event); void paintFront(QPainter &painter, QRect &rect, range_t sampleRange); void setCentre(int centre); void setDeviation(int dev); void setHeight(int height); public slots: void cursorMoved(); signals: void tunerMoved(); private: void updateCursors(); Cursor *minCursor; Cursor *cfCursor; Cursor *maxCursor; int _deviation; int height; }; inspectrum-0.2.2/tunertransform.cpp000066400000000000000000000042151330473745300175140ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "tunertransform.h" #include #include "util.h" TunerTransform::TunerTransform(std::shared_ptr>> src) : SampleBuffer(src), frequency(0), bandwidth(1.), taps{1.0f} { } void TunerTransform::work(void *input, void *output, int count, size_t sampleid) { auto out = static_cast*>(output); std::unique_ptr[]> temp(new std::complex[count]); // Mix down nco_crcf mix = nco_crcf_create(LIQUID_NCO); nco_crcf_set_phase(mix, fmodf(frequency * sampleid, Tau)); nco_crcf_set_frequency(mix, frequency); nco_crcf_mix_block_down(mix, static_cast*>(input), temp.get(), count); nco_crcf_destroy(mix); // Filter firfilt_crcf filter = firfilt_crcf_create(taps.data(), taps.size()); for (int i = 0; i < count; i++) { firfilt_crcf_push(filter, temp[i]); firfilt_crcf_execute(filter, &out[i]); } firfilt_crcf_destroy(filter); } void TunerTransform::setFrequency(float frequency) { this->frequency = frequency; } void TunerTransform::setTaps(std::vector taps) { this->taps = taps; } float TunerTransform::relativeBandwidth() { return bandwidth; } void TunerTransform::setRelativeBandwith(float bandwidth) { this->bandwidth = bandwidth; } inspectrum-0.2.2/tunertransform.h000066400000000000000000000024431330473745300171620ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #pragma once #include "samplebuffer.h" #include class TunerTransform : public SampleBuffer, std::complex> { private: float frequency; float bandwidth; std::vector taps; public: TunerTransform(std::shared_ptr>> src); void work(void *input, void *output, int count, size_t sampleid) override; void setFrequency(float frequency); void setTaps(std::vector taps); void setRelativeBandwith(float bandwidth); float relativeBandwidth(); }; inspectrum-0.2.2/util.cpp000066400000000000000000000027461330473745300154070ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * * This file is part of inspectrum. * * 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 . */ #include "util.h" std::string formatSIValue(float value) { std::map prefixes = { { 9, "G" }, { 6, "M" }, { 3, "k" }, { 0, "" }, { -3, "m" }, { -6, "ยต" }, { -9, "n" }, }; int power = 0; while (value < 1.0f && power > -9) { value *= 1e3; power -= 3; } while (value >= 1e3 && power < 9) { value *= 1e-3; power += 3; } std::stringstream ss; ss << value << prefixes[power]; return ss.str(); } template<> const char* getFileNameFilter>() { return "complex file (*.fc32)"; }; template<> const char* getFileNameFilter() { return "float file (*.f32)"; }; inspectrum-0.2.2/util.h000066400000000000000000000053611330473745300150500ustar00rootroot00000000000000/* * Copyright (C) 2016, Mike Walters * Copyright (C) 2016, Jared Boone, ShareBrained Technology, Inc. * * This file is part of inspectrum. * * 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 . */ #pragma once #include #include #include #include #include static const double Tau = M_PI * 2.0; template const T& clamp (const T& value, const T& min, const T& max) { return std::min(max, std::max(min, value)); } template struct iter_pair_range : std::pair { iter_pair_range(std::pair const& x) : std::pair(x) { } Iter begin() const { return this->first; } Iter end() const { return this->second; } }; template inline iter_pair_range as_range(std::pair const& x) { return iter_pair_range(x); } template struct range_t { T minimum; T maximum; range_t& operator=(const range_t &other) { minimum = other.minimum; maximum = other.maximum; } range_t& operator=(const std::initializer_list &other) { if (other.size() == 2) { minimum = *other.begin(); maximum = *(other.begin() + 1); } return *this; } const T length() { return maximum - minimum; } const T& clip(const T& value) const { return clamp(value, minimum, maximum); } void reset_if_outside(T& value, const T& reset_value) const { if( (value < minimum ) || (value > maximum ) ) { value = reset_value; } } bool below_range(const T& value) const { return value < minimum; } bool contains(const T& value) const { // TODO: Subtle gotcha here! Range test doesn't include maximum! return (value >= minimum) && (value < maximum); } bool out_of_range(const T& value) const { // TODO: Subtle gotcha here! Range test in contains() doesn't include maximum! return !contains(value); } }; std::string formatSIValue(float value); template const char* getFileNameFilter();