pax_global_header00006660000000000000000000000064143777240770014534gustar00rootroot0000000000000052 comment=d466163a4e7ba8bd90644a2a6734395be5e51cd4 libinsane-1.0.10/000077500000000000000000000000001437772407700135575ustar00rootroot00000000000000libinsane-1.0.10/.gitignore000066400000000000000000000010371437772407700155500ustar00rootroot00000000000000*~ .* build_windows/ build_linux/ build/ generated/ venv/ *.gir *.typelib test_hw_out/ GPATH GRTAGS GTAGS tags # Prerequisites *.d # Object files *.o *.ko *.obj *.elf # Linker output *.ilk *.map *.exp # Precompiled Headers *.gch *.pch # Libraries *.lib *.a *.la *.lo # Shared objects (inc. Windows DLLs) *.dll *.so *.so.* *.dylib # Executables *.exe *.out *.app *.i*86 *.x86_64 *.hex # Debug files *.dSYM/ *.su *.idb *.pdb # Kernel Module Compile Results *.mod* *.cmd .tmp_versions/ modules.order Module.symvers Mkfile.old dkms.conf libinsane-1.0.10/.gitlab-ci.yml000066400000000000000000000076661437772407700162320ustar00rootroot00000000000000image: debian:bullseye stages: - build - test # Do not run Linux and Windows tests at the same time. Test rigs share some scanners # and both systems cannot access a scanner at the same time. - test_hw_linux - test_hw_windows - deploy .apt: &apt before_script: - apt-get update # WORKAROUND: manpages is required to install some of the openjdk-jre # and openjdk-jre is required for plantuml, which is required to generate # documentation - mkdir -p /usr/share/man/man1 - apt-get install -y -qq make meson build-essential - apt-get install -y -qq libsane-dev - apt-get install -y -qq libgirepository1.0-dev gobject-introspection - apt-get install -y -qq libcunit1-ncurses-dev - apt-get install -y -qq valgrind valac - apt-get install --no-install-recommends -y -qq gtk-doc-tools doxygen plantuml graphviz .msys: &msys before_script: - c:\msys64\usr\bin\pacman --needed --noconfirm -S make - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-cunit - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-doxygen - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-gcc - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-gobject-introspection - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-meson - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-python3-gobject - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-python3-pillow - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-vala .msys64: &msys64 before_script: - c:\msys64\usr\bin\pacman --needed --noconfirm -S make - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-cunit - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-doxygen - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-gcc - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-gobject-introspection - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-meson - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-python3-gobject - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-python3-pillow - c:\msys64\usr\bin\pacman --needed --noconfirm -S mingw-w64-x86_64-vala check: stage: test only: - branches@World/OpenPaperwork/libinsane - tags@World/OpenPaperwork/libinsane <<: *apt script: - apt-get install -y -qq sparse clang-tidy-11 - make check test: stage: test only: - branches@World/OpenPaperwork/libinsane - tags@World/OpenPaperwork/libinsane <<: *apt script: - make test doc: stage: deploy only: - branches@World/OpenPaperwork/libinsane - tags@World/OpenPaperwork/libinsane <<: *apt script: - apt-get install -y -qq rclone - make doc - ./deliver_doc.sh artifacts: paths: - doc/build expire_in: 2 days test_hw_linux: stage: test_hw_linux only: - branches@World/OpenPaperwork/libinsane - tags@World/OpenPaperwork/libinsane tags: - linux - testhw script: # Keep in mind this one is a real system --> you're not root on it # --> no APT commands here - . ./activate_test_env.sh && make test_hw artifacts: paths: - test_hw_out expire_in: 2 days test_hw_windows: stage: test_hw_windows only: - branches@World/OpenPaperwork/libinsane - tags@World/OpenPaperwork/libinsane variables: MSYSTEM: "MINGW64" CHERE_INVOKING: "yes" tags: - windows - testhw # This one is a real system too, but it's a Windows, so nobody cares. # Dependencies should already be installed, but still it's simpler and safer # to ask pacman to install them anyway. <<: *msys64 script: - c:\msys64\usr\bin\bash -lc "make install PREFIX=/mingw64" - c:\msys64\usr\bin\bash -lc "make test_hw" artifacts: paths: - test_hw_out expire_in: 2 days libinsane-1.0.10/ChangeLog000066400000000000000000000175231437772407700153410ustar00rootroot000000000000002023/03/01 - 1.0.10: - New error code: LIS_ERR_OFFLINE: returned when attempting to use the scanner and the scanner is offline. - normalizers/raw24: fix unpacking of 1bit images. - New workaround for Sane: 'hide_source_auto': remove sources 'Auto'|'Automatic': those source behavior depends on the scanner and cannot be used reliably. - New workaround for Sane + Brother scanners: 'invalid_page_size': some Brother scanners/drivers report there is still a page in the feeder, but when requesting the page, we get an absurd size (2500x0 for example). - dedicated process: do not try to log messages through the log socket if one of the socket has just died (happens if the master process crashes) - dedicated_process: disable backtrace support when another Libc than GLIBC is used (ex: musl) (thanks to Bernard Cafarelli) - dedicated_process: fix build with some Libc (thanks to Bernard Cafarelli) 2021/01/01 - 1.0.9: - Fix: dedicated_process: Don't hang when shutting down (ea2e964392c9aa5d09465d71fc059d8689c311cb) - dedicated_process: Reduce the trace level from the child process's stderr from warning to info 2020/10/09 - 1.0.8: - workaround 'dedicated_process': Fix crash on s390x architectures (thanks to Elliott Sales de Andrade) - Sane + normalizer 'min_one_source' + normalizer 'all_opts_on_all_sources': Fix crash with scanner have no option 'source': 'min_one_source' creates a fake item, and this fake item must not return any option when `get_options()` is called. Otherwise 'all_opts_on_all_sources' crashes. - workaround 'dedicated_process': Fix reading from the stderr output of the worker process. 2020/09/01 - 1.0.7: - workaround 'dedicated_process': fix crash on 32bits systems. 2020/08/31 - 1.0.6: - workaround 'dedicated_process': work around a GCC >=10 bug 2020/08/30 - 1.0.5: - Sane: Implements new workaround: dedicated_process: run all the scanner operations in a dedicated process. Avoid issues with Sane backends crashing, corrupting the memory or closing file descriptors just for fun. - Sane: disable assert when receiving the code SANE_STATUS_CANCELLED unexpectidly. - Workaround/opt_values: Add support for Sane + Samsung C48x - Workaround/opt_values: Add support for Sane + Brother ADS-2100e 2020/03/13 - 1.0.4: - TWAIN + WIA2: Add support for grayscale ("Gray") and black&white ("LineArt") scans. - Make sure "LineArt" is always capitalized the same way everywhere. - New workaround 'lamp': Make sure the lamp is turned off at the end of scan (Sane + Canon Lide 30). - Safe_defaults: Fix value of 'page-height' to ensure we get the biggest scan area possible by default (Sane + Fujitsu scanners). - Build has been made reproducible (thanks to Thomas Perret) 2019/12/20 - 1.0.3: - Various documentation improvements (many thanks to Vasilii Blazhnov questions) - Sane: Fix: When getting number lists (for instance the possible resolutions), do not drop the last value. - Safebet: Fix support of Canon Lide 30 (driver Sane plustek ; and possibly other scanners with a similar problem): Reorder the workaround/normalizers to make sure the Libinsane does not switch the option 'source' too many times. Otherwise the (buggy) driver ends up using the wrong source, with a wrong scan area. - WIA2: Fix: Canon i-SENSYS MF3010: IStream.seek() can be called with argument 'plibNewPosition' set to NULL. - WIA2: Fix crashes caused by drivers that keeps using the IStream after releasing it (implies a small memory leak at each scanned page ... :/). - WIA2: Fix: When an invalid device ID is passed as argument of impl->get_device(), it now returns INVALID_VALUE instead of UNKNOWN_ERROR. - WIA2: Fix: When requesting the children of a child item, return an empty list instead of an error (like other implementations) - WIA2: Handle correctly some other error codes that may be returned by the driver. - Sane: Fix support of Black&White output (mode=Lineart). - All APIs: Fix impl->base_name (previously, multiplexer always set it to NULL). - Fix compilation as a 64bits library on Windows. 2019/10/14 - 1.0.2: - Libinsane/gobject: Added mising flag Libinsane.CAPABILITY_INACTIVE. - Sane: when the application expect one page, do not request a second one (fix unittests timeout). - WIA2: Use the option 'dev_name' to figure out the manufacturer name and the device name. It is the only reliable option. - WIA2: HP Photosmart C4200, Epson Perfection V30/V300: When getting the scanned image, allow calls to `seek(SEEK_SET, current_position)`. https://openpaper.work/scannerdb/report/280/ https://openpaper.work/scannerdb/report/350/ - WIA2: Ignore sources that are not explicitely a flatbed or an ADF (for instance 0000\\Root\\Auto: It is simply not supported by Libinsane). - TWAIN: Fujitsu fi-6130 / fi-6130dj: Keep reading Windows message queue while waiting for the DSM callback to be called with the value 'ready'. If we don't, the DSM callback never gets called. - normalizers/opt_aliases: Fix: When using option aliases 'tl-x', 'tl-y', 'br-x' and 'br-y', with WIA2, if the lowest values for 'xpos', 'ypos', 'xextent' and 'yextent' don't have (0, 0) as minimum values, inaccurate values were set in WIA2 frame options. https://openpaper.work/fr/scanner_db/report/335/ - workarounds/cache: Fix: do not drop the item type (root, adf, flatbed, etc). - normalizers/resolution: If the driver does not specify any constraint for the option 'resolution', put one default constraint. - normalizers/safe_defaults: Sane + Fujitsu fi-6130dj: Cannot set the option 'page-height' to the maximum: Scanner rejects it. Option must be set to slightly less than the maximum. https://openpaper.work/fr/scanner_db/report/392/ - normalizers/safe_default: Sane + Epson Perfection 1250: If the default value for an option is out of the range specified by the option constraint, do not change it. https://openpaper.work/fr/scanner_db/report/328/ - workaround/opt_names: Sane + Canon Pixma MX520: Take into account that somes backend provide both an option 'resolution' and 'scan-resolution'. In that case, do not generate an option 'resolution' that would be an alias for 'scan-resolution', just keep 'resolution' as is. - normalizers/source_names: Sane + Canon CanoScan Lide 30: Normalize the weird source names specified by the plustek driver. https://openpaper.work/fr/scanner_db/report/298/ - Sane + Canon Lide 220: * https://openpaper.work/fr/scanner_db/report/279/ * workarounds/check_capabilty: Some options are marked as unreadable (INACTIVE) but may still be writable (for instance the option 'source'). * normalizers/source_nodes: If the option 'source' is marked inactive, still try to set it, but do not return an error if setting it fails. 2019/08/18 - 1.0.1: - Sane: make sure sane_cancel() is called at the end of all scans (required by some drivers) - Sane: Fix memory leak when opening an invalid device. (thanks to Elliott Sales de Andrade) - WIA/Twain: Fix reading bits-per-pixel from BMP header on big-endian CPU (thanks to Elliott Sales de Andrade) 2019/05/08 - 1.0: - TWAIN: Add support for frame options (tl-x, tl-y, br-x, br-y) - Sane: Fix: 'net' backend: when we get SANE_INFO_RELOAD_OPTIONS, we must call we must first call sane_get_option_descriptor() before sane_control_option() even if we just want to use sane_control_option() to get the number of options. - normalizer 'min_one_source': do not use the type of the root item on the child, it's not a good value and prevents 'one_page_flatbed' from working correctly. - Documentation updated, completed and clarified - Linux: .so files now include the version number (thanks to Eliott Sales de Andrade) - Fix various CI issues - (unchanged) Known limitation: Only support scan of color images on Windows (24bits) 2019/03/10 - 0.9: - First release: Test preview. - Support of Sane, WIA2 and TWAIN. - Known limitation: Only support scan of color images on Windows (24bits) libinsane-1.0.10/LICENSE000066400000000000000000000167431437772407700145770ustar00rootroot00000000000000 GNU LESSER 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. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License. "The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version". The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser 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 Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. libinsane-1.0.10/Makefile000066400000000000000000000060651437772407700152260ustar00rootroot00000000000000UNAME := $(shell uname) PYTHON ?= python3 VERBOSE ?= PREFIX ?= /usr/local SRCS = $(wildcard src/libinsane/*.c) HEADERS = $(wildcard include/libinsane/*.h) ifeq ($(UNAME), Linux) CFLAGS=-O2 -D_FORTIFY_SOURCE=2 else CFLAGS= endif all: build check test build: build_c build_py install: install_py install_c uninstall: uninstall_py uninstall_c build_py: build/build.ninja: mkdir -p build echo "Uname: " $(UNAME) echo "CFLAGS: " $(CFLAGS) (cd build && CFLAGS="$(CFLAGS)" meson --werror --warnlevel 2 --prefix=${PREFIX} ..) build_c: build/build.ninja (cd build && ninja) version: doc: build/build.ninja # Libinsane doc (cd build && ninja subprojects/libinsane/doc/doc_out) # Libinsane-gobject doc (Meson 0.37.1 || Meson 0.47.1) (cd build ; ninja libinsane-gobject-doc || ninja libinsane-gobject@@libinsane-gobject-doc) rm -rf doc/build mkdir -p doc/build mv build/doc/html doc/build/libinsane mv build/subprojects/libinsane-gobject/doc/html doc/build/libinsane-gobject cp doc/index.html doc/build echo "Documentation is available in doc/build/" check: build_c ! command -v sparse || python3 ./check_sparse.py build/compile_commands.json # Debian / Ubuntu (cd build ; ! command -v run-clang-tidy-4.0.py || ! (run-clang-tidy-4.0.py | grep warning 2>&1)) (cd build ; ! command -v run-clang-tidy-7 || ! (run-clang-tidy-7 | grep warning 2>&1)) # Fedora (cd build ; [ ! -f /usr/share/clang/run-clang-tidy.py ] || ! (/usr/share/clang/run-clang-tidy.py | grep warning 2>&1)) test: build/build.ninja (cd build && ninja test) test_hw: rm -rf test_hw_out subprojects/libinsane-gobject/tests/test_hw.py test_hw_out linux_exe: windows_exe: release: ifeq (${RELEASE}, ) @echo "You must specify a release version ($(MAKE) release RELEASE=1.2.3)" else @echo "Will release: ${RELEASE}" @echo "Checking release is in ChangeLog ..." grep ${RELEASE} ChangeLog @echo "Checking release is in meson.build ..." grep ${RELEASE} meson.build @echo "Checking release is in subprojects/libinsane/meson.build ..." grep ${RELEASE} subprojects/libinsane/meson.build @echo "Checking release is in subprojects/libinsane-gobject/meson.build ..." grep ${RELEASE} subprojects/libinsane-gobject/meson.build @echo "Releasing ..." git tag -a ${RELEASE} -m ${RELEASE} git push origin ${RELEASE} @echo "All done" endif clean: rm -rf build rm -rf doc/build rm -rf subprojects/libinsane-gobject/generated mkdir -p subprojects/libinsane-gobject/generated touch subprojects/libinsane-gobject/generated/.notempty install_py: install_c: build/build.ninja (cd build && ninja install) uninstall_py: uninstall_c: (cd build && ninja uninstall) help: @echo "make build || make build_c || make build_py" @echo "make check" @echo "make doc" @echo "make help: display this message" @echo "make install || make install_py" @echo "make release" @echo "make test" @echo "make uninstall || make uninstall_py" .PHONY: \ build \ build_c \ build_py \ check \ doc \ linux_exe \ windows_exe \ help \ install \ install_c \ install_py \ release \ test \ uninstall \ uninstall_c \ uninstall_py \ version libinsane-1.0.10/README.markdown000066400000000000000000000062051437772407700162630ustar00rootroot00000000000000Libinsane --------- Libinsane is *the* library to access scanners on both Linux and Windows. Its main features are: - Cross-platform: tested on Linux and Windows, [by CI](https://gitlab.gnome.org/World/OpenPaperwork/libinsane/pipelines) and [by users](https://openpaper.work/scanner_db/). - [Cross-API](https://doc.openpaper.work/libinsane/latest/libinsane/scan_apis.html): supports Sane (Linux), WIA2 (Windows) and TWAIN (Windows) - Cross-scanners: takes care of all the [quirks](https://doc.openpaper.work/libinsane/latest/libinsane/workarounds.html) of all the platforms and all the scanners to provide a [consistent behaviour](https://doc.openpaper.work/libinsane/latest/libinsane/behavior_normalizations.html) everywhere. - Cross-programming languages: [Libinsane-GObject](https://doc.openpaper.work/libinsane/latest/libinsane-gobject/index.html) provides bindings for [many programming languages](https://wiki.gnome.org/Projects/GObjectIntrospection/Users) (Python, Java, Ruby, etc) thanks to [GObject Introspection](https://gi.readthedocs.io/en/latest/). - Returns the scan as it goes: whenever possible, the image returned by the scanner is returned to the application as the scan goes. - Very few runtime dependencies: Libinsane itself is a pure C library with the strict minimum of runtime dependencies. Only Libinsane-Gobject depends on the [GLib](https://developer.gnome.org/glib/). However it has some limitations: - It is only designed to work with *scanners*, not webcams, not USB keys, etc (think paper-eaters only) - TWAIN API or drivers may display some dialogs. Libinsane cannot prevent them. - Full page scan only: Presence of the options to set the scan area and their consistency cannot be guaranteed. You are advised to crop the image later in your own application (see [Paperwork](https://openpaper.work) for example). - On Windows (both with WIA2 or TWAIN), images are often rotated by 180°. This is because both APIs return the scan as a BMP (DIB), and by default, BMPs start by the bottom of the image. Libinsane returns the top of the image first (as Sane does). Since we want applications to be able to display the scan as it goes, Libinsane has to rotate the image. - We do our best to support as many scanners and drivers as possible. However not all the scanners in the world are supported (nor even supportable). You can have a look at the [Scanner database](https://openpaper.work/scannerdb/) to see the scanners that are known to work and those that don't. It is the successor of [Pyinsane2](https://gitlab.gnome.org/World/OpenPaperwork/pyinsane) but shares no code with it. It is released under [LGPL v3+](https://www.gnu.org/licenses/lgpl-3.0.en.html). - [Documentation](https://doc.openpaper.work/libinsane/latest/index.html) - [Forum](https://forum.openpaper.work/) - [Bug tracker](https://gitlab.gnome.org/World/OpenPaperwork/libinsane/issues) - [Scanner database](https://openpaper.work/scannerdb/) - [Donate](https://www.patreon.com/openpaper) (I also accept hardware donations to fix specific issues) Related third-party projects: - [lisgo](https://github.com/foenixx/lisgo): Go bindings for Libinsane libinsane-1.0.10/activate_test_env.sh000077500000000000000000000003531437772407700176260ustar00rootroot00000000000000make build_c && \ export GI_TYPELIB_PATH="${PWD}/build/subprojects/libinsane-gobject/src" && \ export LD_LIBRARY_PATH="${PWD}/build/subprojects/libinsane-gobject/src:build/subprojects/libinsane/src" && \ export VIRTUAL_ENV="libinsane" libinsane-1.0.10/check_sparse.py000077500000000000000000000030161437772407700165660ustar00rootroot00000000000000#!/usr/bin/env python3 import json import os import subprocess import sys def get_cflags(compile_commands): for cfile in compile_commands: cflags = cfile['command'] cflags = cflags.split(" ") out = [] for f in cflags: if f == "": continue if f[0] == "'" and f[-1] == "'": f = f[1:-1] if f[:2] == "-D" or f[:2] == "-I": out.append(f) yield (out, cfile['file']) if __name__ == "__main__": with open(sys.argv[1], 'r') as fd: compile_commands = json.load(fd) os.chdir(os.path.dirname(sys.argv[1])) for (cflags, filepath) in get_cflags(compile_commands): if "libinsane-gobject" in filepath: # gobject macros raise many warnings --> do not check continue cflags += [ '-O2', '-Wsparse-all', '-Wsparse-error', '-Wno-non-pointer-null' ] # WORKAROUND(Jflesch): # TODO(Jflesch): Why do I need to do that ? cflags += ['-D_Float32=float'] cflags += ['-D_Float32x=float'] cflags += ['-D_Float64=double'] cflags += ['-D_Float64x=double'] cflags += ['-D_Float128=double'] cflags += ['-D_Float128x=double'] cflags += ['-D__ARM_PCS_VFP'] print("Running sparse on {}".format(filepath)) cmd = ['sparse', filepath] + cflags r = subprocess.run(cmd) if r.returncode != 0: print("Command was: {}".format(cmd)) sys.exit(r.returncode) libinsane-1.0.10/deliver_doc.sh000077500000000000000000000013401437772407700163730ustar00rootroot00000000000000#!/bin/sh directory=doc/build if [ -z "$RCLONE_CONFIG_OPENPAPERWORK_ACCESS_KEY_ID" ] ; then echo "Delivery: No rclone credentials provided." exit 0 fi if ! which rclone; then echo "rclone not available." exit 1 fi echo "Delivering: ${directory} (${CI_COMMIT_REF_NAME} - ${CI_COMMIT_SHORT_SHA})" out_name="$(date "+%Y%m%d_%H%M%S")_${CI_COMMIT_REF_NAME}_${CI_COMMIT_SHORT_SHA}" latest_name="latest" if ! rclone --config ./rclone.conf copy "${directory}/" "openpaperwork:openpaperwork-doc/libinsane/${out_name}" ; then echo "rclone failed" exit 1 fi if ! rclone --config ./rclone.conf sync "${directory}/" "openpaperwork:openpaperwork-doc/libinsane/latest" ; then echo "rclone failed" exit 1 fi echo Success exit 0 libinsane-1.0.10/doc/000077500000000000000000000000001437772407700143245ustar00rootroot00000000000000libinsane-1.0.10/doc/index.html000066400000000000000000000006521437772407700163240ustar00rootroot00000000000000 LibInsane documentation libinsane-1.0.10/meson.build000066400000000000000000000002501437772407700157160ustar00rootroot00000000000000project('libinsane-global', 'c', version: '1.0.10', license: 'LGPLv3+', meson_version: '>=0.37.1') subproject('libinsane') subproject('libinsane-gobject') libinsane-1.0.10/rclone.conf000066400000000000000000000002301437772407700157030ustar00rootroot00000000000000[openpaperwork] type = s3 env_auth = false region = us-east-1 endpoint = https://objects.openpaper.work/ location_constraint = server_side_encryption = libinsane-1.0.10/splint.rc000066400000000000000000000000211437772407700154070ustar00rootroot00000000000000-Iinclude +quiet libinsane-1.0.10/subprojects/000077500000000000000000000000001437772407700161225ustar00rootroot00000000000000libinsane-1.0.10/subprojects/libinsane-gobject/000077500000000000000000000000001437772407700215015ustar00rootroot00000000000000libinsane-1.0.10/subprojects/libinsane-gobject/autogen.sh000077500000000000000000000000321437772407700234750ustar00rootroot00000000000000#!/bin/sh autoreconf -fvi libinsane-1.0.10/subprojects/libinsane-gobject/doc/000077500000000000000000000000001437772407700222465ustar00rootroot00000000000000libinsane-1.0.10/subprojects/libinsane-gobject/doc/gtkdocentities.ent000066400000000000000000000002211437772407700257710ustar00rootroot00000000000000 libinsane-1.0.10/subprojects/libinsane-gobject/doc/libinsane_gobject-gtkdoc.xml000066400000000000000000000033311437772407700277020ustar00rootroot00000000000000 %gtkdocentities; ]> &package_name; Reference Manual For &package_string;. The latest version of this documentation can be found on-line at &doc_url;. Libinsane GObject Bindings Documentation API Index Index of deprecated API libinsane-1.0.10/subprojects/libinsane-gobject/doc/meson.build000066400000000000000000000005161437772407700244120ustar00rootroot00000000000000## Doc if build_machine.system() == 'linux' gnome.gtkdoc('libinsane-gobject', src_dir: include_directories('../src', '../include'), main_xml: 'libinsane_gobject-gtkdoc.xml', content_files: 'gtkdocentities.ent', # gobject_typesfile: 'libinsane.types', dependencies: libinsane_gobject_dep) endif libinsane-1.0.10/subprojects/libinsane-gobject/examples/000077500000000000000000000000001437772407700233175ustar00rootroot00000000000000libinsane-1.0.10/subprojects/libinsane-gobject/examples/list_devices.py000077500000000000000000000024731437772407700263570ustar00rootroot00000000000000#!/usr/bin/env python3 # source ./activate_test_env.sh # subprojects/libinsane-gobject/examples/list_devices.py import gi gi.require_version('Libinsane', '1.0') from gi.repository import GObject # noqa: E402 #! [Logger] from gi.repository import Libinsane # noqa: E402 class ExampleLogger(GObject.GObject, Libinsane.Logger): def do_log(self, lvl, msg): if lvl <= Libinsane.LogLevel.WARNING: return print("{}: {}".format(lvl.value_nick, msg)) def main(): Libinsane.register_logger(ExampleLogger()) #! [Logger] api = Libinsane.Api.new_safebet() print("Looking for devices ...") devs = api.list_devices(Libinsane.DeviceLocations.ANY) print("Found {} devices".format(len(devs))) for d in devs: try: dev = api.get_device(d.get_dev_id()) print("|") print("|-- {} ({} ; {})".format( d.get_dev_id(), d.to_string(), dev.get_name() )) try: for child in dev.get_children(): print("| |-- {}".format(child.get_name())) finally: dev.close() except Exception as exc: print("ERROR: failed to open device {}: {}".format( d.get_dev_id(), str(exc) )) if __name__ == "__main__": main() libinsane-1.0.10/subprojects/libinsane-gobject/examples/list_options.py000077500000000000000000000072161437772407700264300ustar00rootroot00000000000000#!/usr/bin/env python3 # source ./activate_test_env.sh # subprojects/libinsane-gobject/examples/list_options.py import os import gi gi.require_version('Libinsane', '1.0') from gi.repository import GObject # noqa: E402 from gi.repository import Libinsane # noqa: E402 class ExampleLogger(GObject.GObject, Libinsane.Logger): def do_log(self, lvl, msg): if lvl <= Libinsane.LogLevel.DEBUG: return print("{}: {}".format(lvl.value_nick, msg)) def main(): if True: os.environ['LIBINSANE_NORMALIZER_ALL_OPTS_ON_ALL_SOURCES'] = "0" os.environ['LIBINSANE_NORMALIZER_BMP2RAW'] = "0" os.environ['LIBINSANE_NORMALIZER_CLEAN_DEV_DESCS'] = "0" os.environ['LIBINSANE_NORMALIZER_MIN_ONE_SOURCE'] = "0" os.environ['LIBINSANE_NORMALIZER_OPT_ALIASES'] = "0" os.environ['LIBINSANE_NORMALIZER_RAW24'] = "0" os.environ['LIBINSANE_NORMALIZER_RESOLUTION'] = "0" os.environ['LIBINSANE_NORMALIZER_SAFE_DEFAULTS'] = "0" os.environ['LIBINSANE_NORMALIZER_SOURCE_NAMES'] = "0" os.environ['LIBINSANE_NORMALIZER_SOURCE_NODES'] = "0" os.environ['LIBINSANE_NORMALIZER_SOURCE_TYPES'] = "0" os.environ['LIBINSANE_WORKAROUND_CACHE'] = "0" os.environ['LIBINSANE_WORKAROUND_CHECK_CAPABILITIES'] = "0" os.environ['LIBINSANE_WORKAROUND_DEDICATED_PROCESS'] = "0" os.environ['LIBINSANE_WORKAROUND_DEDICATED_THREAD'] = "0" os.environ['LIBINSANE_WORKAROUND_LAMP'] = "0" os.environ['LIBINSANE_WORKAROUND_ONE_PAGE_FLATBED'] = "0" os.environ['LIBINSANE_WORKAROUND_OPT_NAMES'] = "0" os.environ['LIBINSANE_WORKAROUND_OPT_VALUES'] = "0" Libinsane.register_logger(ExampleLogger()) api = Libinsane.Api.new_safebet() devs = api.list_devices(Libinsane.DeviceLocations.ANY) print("Found {} devices".format(len(devs))) for dev in devs: print("") print("") print(dev.to_string()) try: dev = api.get_device(dev.get_dev_id()) children = dev.get_children() print("|-- Found {} sources".format(len(children))) for item in [dev] + children: print("|") print("|-- {} ({})".format( item.get_name(), "device" if item == dev else "source" )) opts = item.get_options() for opt in opts: print("| |-- {}".format(opt.get_name())) print("| | |-- Title: {}".format(opt.get_title())) print("| | |-- Description: {}".format(opt.get_desc())) print("| | |-- Capabilities: {}".format( opt.get_capabilities()) ) print("| | |-- Unit: {}".format(opt.get_value_unit())) print("| | |-- Constraint type: {}".format( opt.get_constraint_type())) print("| | |-- Constraint: {}".format( opt.get_constraint()) ) if opt.is_readable(): try: print("| | |-- Value: {}".format( opt.get_value()) ) except Exception as exc: print("| | |-- Value: [{}]".format(str(exc))) else: print("| | |-- Value: (unavailable)") print("") dev.close() except Exception as exc: print("EXCEPTION: {}".format(exc)) if __name__ == "__main__": main() libinsane-1.0.10/subprojects/libinsane-gobject/examples/scan.py000077500000000000000000000173511437772407700246270ustar00rootroot00000000000000#!/usr/bin/env python3 # source ./activate_test_env.sh # subprojects/libinsane-gobject/examples/scan.py import os import PIL.Image import sys import traceback import gi gi.require_version('Libinsane', '1.0') from gi.repository import GObject # noqa: E402 from gi.repository import Libinsane # noqa: E402 #! [ExampleLogger] class ExampleLogger(GObject.GObject, Libinsane.Logger): def do_log(self, lvl, msg): if lvl <= Libinsane.LogLevel.INFO: return print("{}: {}".format(lvl.value_nick, msg)) sys.stdout.flush() #! [ExampleLogger] #! [ExampleListGetDevice] def get_device(api, dev_id=None): if dev_id is None: print("Looking for scan devices ...") devs = api.list_devices(Libinsane.DeviceLocations.ANY) print("Found {} devices".format(len(devs))) for dev in devs: print("[{}] : [{}]".format(dev.get_dev_id(), dev.to_string())) dev_id = devs[0].get_dev_id() print("Will use device {}".format(dev_id)) dev = api.get_device(dev_id) print("Using device {}".format(dev.get_name())) return dev #! [ExampleListGetDevice] #! [ExampleListGetScanSource] def get_source(dev, source_name): print("Looking for scan sources ...") sources = dev.get_children() print("Available scan sources:") for src in sources: print("- {}".format(src.get_name())) if src.get_name() == source_name: source = src break else: if source_name is None: source = sources[0] if len(sources) > 0 else dev elif source_name == "root": source = dev else: print("Source '{}' not found".format(source_name)) sys.exit(2) print("Will use scan source {}".format(source.get_name())) return source #! [ExampleListGetScanSource] #! [ExampleSetOption] def set_opt(item, opt_name, opt_value): try: print("Setting {} to {}".format(opt_name, opt_value)) opts = item.get_options() opts = {opt.get_name(): opt for opt in opts} if opt_name not in opts: print("Option '{}' not found".format(opt_name)) return print("- Old {}: {}".format(opt_name, opts[opt_name].get_value())) print("- Allowed values: {}".format(opts[opt_name].get_constraint())) set_flags = opts[opt_name].set_value(opt_value) print("- Set flags: {}".format(set_flags)) opts = item.get_options() opts = {opt.get_name(): opt for opt in opts} print("- New {}: {}".format(opt_name, opts[opt_name].get_value())) except Exception as exc: print("Failed to set {} to {}: {}".format( opt_name, opt_value, str(exc) )) traceback.print_exc() finally: print("") #! [ExampleSetOption] #! [ExampleListOptions] def list_opts(item): opts = item.get_options() print("Options:") for opt in opts: try: print("- {}={} ({})".format( opt.get_name(), opt.get_value(), opt.get_constraint() )) except Exception as exc: print("Failed to read option {}: {}".format( opt.get_name(), str(exc) )) print("") #! [ExampleListOptions] #! [ExampleRawToImg] def raw_to_img(params, img_bytes): fmt = params.get_format() assert(fmt == Libinsane.ImgFormat.RAW_RGB_24) (w, h) = ( params.get_width(), int(len(img_bytes) / 3 / params.get_width()) ) print("Mode: RGB : Size: {}x{}".format(w, h)) return PIL.Image.frombuffer("RGB", (w, h), img_bytes, "raw", "RGB", 0, 1) #! [ExampleRawToImg] #! [ExampleScan] def scan(source, output_file): session = source.scan_start() try: page_nb = 0 while not session.end_of_feed() and page_nb < 20: # Do not assume that all the pages will have the same size ! scan_params = session.get_scan_parameters() print("Expected scan parameters: {} ; {}x{} = {} bytes".format( scan_params.get_format(), scan_params.get_width(), scan_params.get_height(), scan_params.get_image_size())) total = scan_params.get_image_size() img = [] r = 0 if output_file is not None: out = output_file.format(page_nb) else: out = None print("Scanning page {} --> {}".format(page_nb, out)) while not session.end_of_page(): data = session.read_bytes(128 * 1024) data = data.get_data() img.append(data) r += len(data) print("Got {} bytes => {}/{} bytes".format( len(data), r, total) ) img = b"".join(img) print("Got {} bytes".format(len(img))) if out is not None: print("Saving page as {} ...".format(out)) if scan_params.get_format() == Libinsane.ImgFormat.RAW_RGB_24: img = raw_to_img(scan_params, img) img.save(out, format="PNG") else: print("Warning: output format is {}".format( scan_params.get_format() )) with open(out, 'wb') as fd: fd.write(img) page_nb += 1 print("Page {} scanned".format(page_nb)) if page_nb == 0: print("No page in feeder ?") finally: session.cancel() #! [ExampleScan] def main(): if False: os.environ['LIBINSANE_NORMALIZER_ALL_OPTS_ON_ALL_SOURCES'] = "0" os.environ['LIBINSANE_NORMALIZER_BMP2RAW'] = "0" os.environ['LIBINSANE_NORMALIZER_CLEAN_DEV_DESCS'] = "0" os.environ['LIBINSANE_NORMALIZER_MIN_ONE_SOURCE'] = "0" os.environ['LIBINSANE_NORMALIZER_OPT_ALIASES'] = "0" os.environ['LIBINSANE_NORMALIZER_RAW24'] = "0" os.environ['LIBINSANE_NORMALIZER_RESOLUTION'] = "0" os.environ['LIBINSANE_NORMALIZER_SAFE_DEFAULTS'] = "0" os.environ['LIBINSANE_NORMALIZER_SOURCE_NAMES'] = "0" os.environ['LIBINSANE_NORMALIZER_SOURCE_NODES'] = "0" os.environ['LIBINSANE_NORMALIZER_SOURCE_TYPES'] = "0" os.environ['LIBINSANE_WORKAROUND_CACHE'] = "0" os.environ['LIBINSANE_WORKAROUND_CHECK_CAPABILITIES'] = "0" os.environ['LIBINSANE_WORKAROUND_DEDICATED_THREAD'] = "0" os.environ['LIBINSANE_WORKAROUND_LAMP'] = "0" os.environ['LIBINSANE_WORKAROUND_ONE_PAGE_FLATBED'] = "0" os.environ['LIBINSANE_WORKAROUND_OPT_NAMES'] = "0" os.environ['LIBINSANE_WORKAROUND_OPT_VALUES'] = "0" #! [ExampleSetLogger] Libinsane.register_logger(ExampleLogger()) #! [ExampleSetLogger] if len(sys.argv) <= 1 or (sys.argv[1] == "-h" or sys.argv[1] == "--help"): print( "Syntax: {}" " " " [ []]".format(sys.argv[0]) ) sys.exit(1) output_file = sys.argv[1] dev_id = None source = None source_name = None if len(sys.argv) > 2: dev_id = sys.argv[2] if len(sys.argv) > 3: source_name = sys.argv[3] print("Will write the scan result into {}".format(output_file)) #! [ExampleInit] api = Libinsane.Api.new_safebet() #! [ExampleInit] dev = get_device(api, dev_id) try: source = get_source(dev, source_name) list_opts(source) # set the options #! [ExampleOptsToSet] set_opt(source, 'resolution', 300) # set_opt(source, 'mode', "LineArt") # set_opt(source, 'depth', 1) #! [ExampleOptsToSet] print("Scanning ...") scan(source, output_file) print("Scan done") finally: dev.close() if __name__ == "__main__": main() libinsane-1.0.10/subprojects/libinsane-gobject/generated/000077500000000000000000000000001437772407700234375ustar00rootroot00000000000000libinsane-1.0.10/subprojects/libinsane-gobject/generated/.notempty000066400000000000000000000000001437772407700253050ustar00rootroot00000000000000libinsane-1.0.10/subprojects/libinsane-gobject/include/000077500000000000000000000000001437772407700231245ustar00rootroot00000000000000libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/000077500000000000000000000000001437772407700265035ustar00rootroot00000000000000libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/capability.h000066400000000000000000000006721437772407700310020ustar00rootroot00000000000000#ifndef __LIBINSANE_GOBJECT_CAPABILITY_H #define __LIBINSANE_GOBJECT_CAPABILITY_H /** * LibinsaneCapability: * Not actually an enum but a bit field. */ typedef enum { LIBINSANE_CAPABILITY_NONE = 0, LIBINSANE_CAPABILITY_EMULATED = 1 << 0, LIBINSANE_CAPABILITY_AUTOMATIC = 1 << 1, LIBINSANE_CAPABILITY_HW_SELECT = 1 << 2, LIBINSANE_CAPABILITY_SW_SELECT = 1 << 3, LIBINSANE_CAPABILITY_INACTIVE = 1 << 4, } LibinsaneCapability; #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/constraint.h000066400000000000000000000004451437772407700310430ustar00rootroot00000000000000#ifndef __LIBINSANE_GOBJECT_CONSTRAINT_TYPE #define __LIBINSANE_GOBJECT_CONSTRAINT_TYPE #include G_BEGIN_DECLS typedef enum { LIBINSANE_CONSTRAINT_TYPE_NONE, LIBINSANE_CONSTRAINT_TYPE_RANGE, LIBINSANE_CONSTRAINT_TYPE_LIST, } LibinsaneConstraintType; G_END_DECLS #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/device_descriptor.h000066400000000000000000000032631437772407700323550ustar00rootroot00000000000000#ifndef __LIBINSANE_GOBJECT_DEVICE_DESCRIPTOR_H #define __LIBINSANE_GOBJECT_DEVICE_DESCRIPTOR_H #include G_BEGIN_DECLS #define LIBINSANE_DEVICE_DESCRIPTOR_TYPE \ (libinsane_device_descriptor_get_type()) #define LIBINSANE_DEVICE_DESCRIPTOR(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), LIBINSANE_DEVICE_DESCRIPTOR_TYPE, LibinsaneDeviceDescriptor)) #define LIBINSANE_DEVICE_DESCRIPTOR_CLASS(cls) \ (G_TYPE_CHECK_CLASS_CAST ((cls), LIBINSANE_DEVICE_DESCRIPTOR_TYPE, LibinsaneDeviceDescriptorClass)) #define LIBINSANE_IS_DEVICE_DESCRIPTOR(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LIBINSANE_DEVICE_DESCRIPTOR_TYPE)) #define LIBINSANE_DEVICE_DESCRIPTOR_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), LIBINSANE_DEVICE_DESCRIPTOR_TYPE, LibinsaneDeviceDescriptorClass)) typedef struct _LibinsaneDeviceDescriptor LibinsaneDeviceDescriptor; typedef struct _LibinsaneDeviceDescriptorPrivate LibinsaneDeviceDescriptorPrivate; typedef struct _LibinsaneDeviceDescriptorClass LibinsaneDeviceDescriptorClass; struct _LibinsaneDeviceDescriptor { GObject parent; }; struct _LibinsaneDeviceDescriptorClass { GObjectClass parent; }; GType libinsane_device_descriptor_get_type(void) G_GNUC_CONST; /* no public constructor */ const char *libinsane_device_descriptor_get_dev_id(LibinsaneDeviceDescriptor *self); const char *libinsane_device_descriptor_get_dev_vendor(LibinsaneDeviceDescriptor *self); const char *libinsane_device_descriptor_get_dev_model(LibinsaneDeviceDescriptor *self); const char *libinsane_device_descriptor_get_dev_type(LibinsaneDeviceDescriptor *self); const char *libinsane_device_descriptor_to_string(LibinsaneDeviceDescriptor *self); G_END_DECLS #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/device_descriptor_private.h000066400000000000000000000004371437772407700341070ustar00rootroot00000000000000#ifndef __LIBINSANE_DEVICE_DESCRIPTOR_PRIVATE_H #define __LIBINSANE_DEVICE_DESCRIPTOR_PRIVATE_H #include #include "device_descriptor.h" LibinsaneDeviceDescriptor *libinsane_device_descriptor_new_from_libinsane( const struct lis_device_descriptor *desc ); #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/error.h000066400000000000000000000013321437772407700300040ustar00rootroot00000000000000#ifndef __LIBINSANE_GOBJECT_ERROR_H #define __LIBINSANE_GOBJECT_ERROR_H #include G_BEGIN_DECLS GQuark libinsane_error_quark(void); #define LIBINSANE_ERROR libinsane_error_quark() typedef enum { LIBINSANE_ERROR_OK = 0, LIBINSANE_ERROR_CANCELLED, LIBINSANE_ERROR_DEVICE_BUSY, LIBINSANE_ERROR_UNSUPPORTED, LIBINSANE_ERROR_INVALID_VALUE, LIBINSANE_ERROR_JAMMED, LIBINSANE_ERROR_COVER_OPEN, LIBINSANE_ERROR_IO_ERROR, LIBINSANE_ERROR_NO_MEM, LIBINSANE_ERROR_ACCESS_DENIED, LIBINSANE_ERROR_HW_IS_LOCKED, LIBINSANE_ERROR_INTERNAL_IMG_FORMAT_NOT_SUPPORTED, LIBINSANE_ERROR_INTERNAL_NOT_IMPLEMENTED, LIBINSANE_ERROR_INTERNAL_UNKNOWN_ERROR, LIBINSANE_ERROR_OFFLINE, } LibinsaneError; G_END_DECLS #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/error_private.h000066400000000000000000000006051437772407700315400ustar00rootroot00000000000000#ifndef __LIBINSANE_GOBJECT_ERROR_PRIVATE_H #define __LIBINSANE_GOBJECT_ERROR_PRIVATE_H #include #include "error.h" #define SET_LIBINSANE_GOBJECT_ERROR(gerror, libinsane_err, msg, ...) \ g_set_error( \ (gerror), \ LIBINSANE_ERROR, lis_error_to_gobject(libinsane_err), \ msg, __VA_ARGS__ \ ); LibinsaneError lis_error_to_gobject(enum lis_error err); #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/img_format.h000066400000000000000000000011671437772407700310050ustar00rootroot00000000000000#ifndef __LIBINSANE_GOBJECT_IMG_FORMAT_H #define __LIBINSANE_GOBJECT_IMG_FORMAT_H typedef enum { LIBINSANE_IMG_FORMAT_RAW_RGB_24, LIBINSANE_IMG_FORMAT_GRAYSCALE_8, LIBINSANE_IMG_FORMAT_BW_1, LIBINSANE_IMG_FORMAT_BMP, LIBINSANE_IMG_FORMAT_GIF, LIBINSANE_IMG_FORMAT_JPEG, LIBINSANE_IMG_FORMAT_PNG, LIBINSANE_IMG_FORMAT_CIFF, LIBINSANE_IMG_FORMAT_EXIF, LIBINSANE_IMG_FORMAT_FLASHPIX, LIBINSANE_IMG_FORMAT_ICO, LIBINSANE_IMG_FORMAT_JPEG2K, LIBINSANE_IMG_FORMAT_JPEG2KX, LIBINSANE_IMG_FORMAT_MEMORYBMP, LIBINSANE_IMG_FORMAT_PHOTOCD, LIBINSANE_IMG_FORMAT_PICT, LIBINSANE_IMG_FORMAT_TIFF, } LibinsaneImgFormat; #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/item.h000066400000000000000000000027031437772407700276140ustar00rootroot00000000000000#ifndef __LIBINSANE_GOBJECT_ITEM_H #define __LIBINSANE_GOBJECT_ITEM_H #include #include "item_type.h" #include "scan_session.h" G_BEGIN_DECLS #define LIBINSANE_ITEM_TYPE \ (libinsane_item_get_type()) #define LIBINSANE_ITEM(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), LIBINSANE_ITEM_TYPE, LibinsaneItem)) #define LIBINSANE_ITEM_CLASS(cls) \ (G_TYPE_CHECK_CLASS_CAST ((cls), LIBINSANE_ITEM_TYPE, LibinsaneItemClass)) #define LIBINSANE_IS_ITEM(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LIBINSANE_ITEM_TYPE)) #define LIBINSANE_ITEM_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), LIBINSANE_ITEM_TYPE, LibinsaneItemClass)) typedef struct _LibinsaneItem LibinsaneItem; typedef struct _LibinsaneItemPrivate LibinsaneItemPrivate; typedef struct _LibinsaneItemClass LibinsaneItemClass; struct _LibinsaneItem { GObject parent; }; struct _LibinsaneItemClass { GObjectClass parent; }; GType libinsane_item_get_type(void) G_GNUC_CONST; /* no public constructor */ const char *libinsane_item_get_name(LibinsaneItem *self); LibinsaneItemType libinsane_item_get_item_type(LibinsaneItem *self); void libinsane_item_close(LibinsaneItem *self, GError **error); GList *libinsane_item_get_children(LibinsaneItem *self, GError **error); GList *libinsane_item_get_options(LibinsaneItem *self, GError **error); /* TODO */ LibinsaneScanSession *libinsane_item_scan_start(LibinsaneItem *self, GError **error); /* TODO */ G_END_DECLS #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/item_private.h000066400000000000000000000003571437772407700313510ustar00rootroot00000000000000#ifndef __LIBINSANE_ITEM_PRIVATE_H #define __LIBINSANE_ITEM_PRIVATE_H #include #include "item.h" LibinsaneItem *libinsane_item_new_from_libinsane( GObject *parent, gboolean root, struct lis_item *lis_item ); #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/item_type.h000066400000000000000000000003721437772407700306550ustar00rootroot00000000000000#ifndef __LIBINSANE_GOBJECT_ITEM_TYPE_H #define __LIBINSANE_GOBJECT_ITEM_TYPE_H typedef enum { LIBINSANE_ITEM_TYPE_DEVICE, LIBINSANE_ITEM_TYPE_FLATBED, LIBINSANE_ITEM_TYPE_ADF, LIBINSANE_ITEM_TYPE_UNIDENTIFIED = -1, } LibinsaneItemType; #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/libinsane-api.h000066400000000000000000000027401437772407700313720ustar00rootroot00000000000000#ifndef __LIBINSANE_GOBJECT_API_H #define __LIBINSANE_GOBJECT_API_H #include #include "item.h" G_BEGIN_DECLS typedef enum { LIBINSANE_DEVICE_LOCATIONS_ANY = 0, LIBINSANE_DEVICE_LOCATIONS_LOCAL_ONLY, } LibinsaneDeviceLocations; #define LIBINSANE_API_TYPE \ (libinsane_api_get_type()) #define LIBINSANE_API(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), LIBINSANE_API_TYPE, LibinsaneApi)) #define LIBINSANE_API_CLASS(cls) \ (G_TYPE_CHECK_CLASS_CAST ((cls), LIBINSANE_API_TYPE, LibinsaneApiClass)) #define LIBINSANE_IS_API(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LIBINSANE_API_TYPE)) #define LIBINSANE_API_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), LIBINSANE_API_TYPE, LibinsaneApiClass)) typedef struct _LibinsaneApi LibinsaneApi; typedef struct _LibinsaneApiPrivate LibinsaneApiPrivate; typedef struct _LibinsaneApiClass LibinsaneApiClass; struct _LibinsaneApi { GObject parent; }; struct _LibinsaneApiClass { GObjectClass parent; }; GType libinsane_api_get_type(void) G_GNUC_CONST; const char *libinsane_api_get_version(void); LibinsaneApi *libinsane_api_new_safebet(GError **error); LibinsaneApi *libinsane_api_new_from_string(const char *desc, GError **error); GList *libinsane_api_list_devices( LibinsaneApi *self, LibinsaneDeviceLocations locations, GError **error ); LibinsaneItem *libinsane_api_get_device(LibinsaneApi *self, const char *dev_id, GError **error); void libinsane_api_cleanup(LibinsaneApi *self); G_END_DECLS #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/log.h000066400000000000000000000013541437772407700274400ustar00rootroot00000000000000#ifndef __LIBINSANE_GOBJECT_LOG_H #define __LIBINSANE_GOBJECT_LOG_H #include G_BEGIN_DECLS typedef enum { LIBINSANE_LOG_LEVEL_DEBUG, LIBINSANE_LOG_LEVEL_INFO, LIBINSANE_LOG_LEVEL_WARNING, LIBINSANE_LOG_LEVEL_ERROR, } LibinsaneLogLevel; #define LIBINSANE_TYPE_LOGGER libinsane_logger_get_type() G_DECLARE_INTERFACE(LibinsaneLogger, libinsane_logger, LIBINSANE, LOGGER, GObject) struct _LibinsaneLoggerInterface { GTypeInterface parent; void (*log)(LibinsaneLogger *self, LibinsaneLogLevel lvl, const char *msg); }; void libinsane_logger_log(LibinsaneLogger *self, LibinsaneLogLevel lvl, const char *msg); void libinsane_register_logger(LibinsaneLogger *logger); void libinsane_unregister_logger(); G_END_DECLS #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/option_descriptor.h000066400000000000000000000051161437772407700324250ustar00rootroot00000000000000#ifndef __LIBINSANE_GOBJECT_OPTION_DESCRIPTOR_H #define __LIBINSANE_GOBJECT_OPTION_DESCRIPTOR_H #include #include "capability.h" #include "constraint.h" #include "unit.h" G_BEGIN_DECLS typedef enum { LIBINSANE_SET_FLAG_NONE = 0, LIBINSANE_SET_FLAG_INEXACT = (1<<0), LIBINSANE_SET_FLAG_MUST_RELOAD_OPTIONS = (1<<1), LIBINSANE_SET_FLAG_MUST_RELOAD_PARAMS = (1<<2), } LibinsaneSetFlag; #define LIBINSANE_OPTION_DESCRIPTOR_TYPE \ (libinsane_option_descriptor_get_type()) #define LIBINSANE_OPTION_DESCRIPTOR(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), LIBINSANE_OPTION_DESCRIPTOR_TYPE, LibinsaneOptionDescriptor)) #define LIBINSANE_OPTION_DESCRIPTOR_CLASS(cls) \ (G_TYPE_CHECK_CLASS_CAST ((cls), LIBINSANE_OPTION_DESCRIPTOR_TYPE, LibinsaneOptionDescriptorClass)) #define LIBINSANE_IS_OPTION_DESCRIPTOR(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LIBINSANE_OPTION_DESCRIPTOR_TYPE)) #define LIBINSANE_OPTION_DESCRIPTOR_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), LIBINSANE_OPTION_DESCRIPTOR_TYPE, LibinsaneOptionDescriptorClass)) typedef struct _LibinsaneOptionDescriptor LibinsaneOptionDescriptor; typedef struct _LibinsaneOptionDescriptorPrivate LibinsaneOptionDescriptorPrivate; typedef struct _LibinsaneOptionDescriptorClass LibinsaneOptionDescriptorClass; struct _LibinsaneOptionDescriptor { GObject parent; }; struct _LibinsaneOptionDescriptorClass { GObjectClass parent; }; GType libinsane_option_descriptor_get_type(void) G_GNUC_CONST; const char *libinsane_option_descriptor_get_name(LibinsaneOptionDescriptor *self); const char *libinsane_option_descriptor_get_title(LibinsaneOptionDescriptor *self); const char *libinsane_option_descriptor_get_desc(LibinsaneOptionDescriptor *self); LibinsaneCapability libinsane_option_descriptor_get_capabilities(LibinsaneOptionDescriptor *self); GType libinsane_option_descriptor_get_value_type(LibinsaneOptionDescriptor *self); LibinsaneUnit libinsane_option_descriptor_get_value_unit(LibinsaneOptionDescriptor *self); LibinsaneConstraintType libinsane_option_descriptor_get_constraint_type(LibinsaneOptionDescriptor *self); GArray *libinsane_option_descriptor_get_constraint(LibinsaneOptionDescriptor *self); gboolean libinsane_option_descriptor_is_readable(LibinsaneOptionDescriptor *self); gboolean libinsane_option_descriptor_is_writable(LibinsaneOptionDescriptor *self); const GValue *libinsane_option_descriptor_get_value(LibinsaneOptionDescriptor *self, GError **error); LibinsaneSetFlag libinsane_option_descriptor_set_value(LibinsaneOptionDescriptor *self, GValue *value, GError **error); G_END_DECLS #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/option_descriptor_private.h000066400000000000000000000004751437772407700341620ustar00rootroot00000000000000#ifndef __LIBINSANE_GOBJECT_OPTION_DESCRIPTOR_PRIVATE_H #define __LIBINSANE_GOBJECT_OPTION_DESCRIPTOR_PRIVATE_H #include #include "option_descriptor.h" LibinsaneOptionDescriptor *libinsane_option_descriptor_new_from_libinsane( GObject *parent, struct lis_option_descriptor *desc ); #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/scan_parameters.h000066400000000000000000000030441437772407700320240ustar00rootroot00000000000000#ifndef __LIBINSANE_GOBJECT_SCAN_PARAMETERS_H #define __LIBINSANE_GOBJECT_SCAN_PARAMETERS_H #include #include "img_format.h" G_BEGIN_DECLS #define LIBINSANE_SCAN_PARAMETERS_TYPE \ (libinsane_scan_parameters_get_type()) #define LIBINSANE_SCAN_PARAMETERS(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), LIBINSANE_SCAN_PARAMETERS_TYPE, LibinsaneScanParameters)) #define LIBINSANE_SCAN_PARAMETERS_CLASS(cls) \ (G_TYPE_CHECK_CLASS_CAST ((cls), LIBINSANE_SCAN_PARAMETERS_TYPE, LibinsaneScanParametersClass)) #define LIBINSANE_IS_SCAN_PARAMETERS(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LIBINSANE_SCAN_PARAMETERS_TYPE)) #define LIBINSANE_SCAN_PARAMETERS_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), LIBINSANE_SCAN_PARAMETERS_TYPE, LibinsaneScanParametersClass)) typedef struct _LibinsaneScanParameters LibinsaneScanParameters; typedef struct _LibinsaneScanParametersPrivate LibinsaneScanParametersPrivate; typedef struct _LibinsaneScanParametersClass LibinsaneScanParametersClass; struct _LibinsaneScanParameters { GObject parent; }; struct _LibinsaneScanParametersClass { GObjectClass parent; }; GType libinsane_scan_parameters_get_type(void) G_GNUC_CONST; /* no public constructor */ LibinsaneImgFormat libinsane_scan_parameters_get_format(LibinsaneScanParameters *self); int libinsane_scan_parameters_get_width(LibinsaneScanParameters *self); int libinsane_scan_parameters_get_height(LibinsaneScanParameters *self); gsize libinsane_scan_parameters_get_image_size(LibinsaneScanParameters *self); G_END_DECLS #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/scan_parameters_private.h000066400000000000000000000004001437772407700335470ustar00rootroot00000000000000#ifndef __LIBINSANE_SCAN_PARAMETERS_PRIVATE_H #define __LIBINSANE_SCAN_PARAMETERS_PRIVATE_H #include #include "item.h" LibinsaneScanParameters *libinsane_scan_parameters_new_from_libinsane(struct lis_scan_parameters *params); #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/scan_session.h000066400000000000000000000033251437772407700313460ustar00rootroot00000000000000#ifndef __LIBINSANE_GOBJECT_SCAN_SESSION_H #define __LIBINSANE_GOBJECT_SCAN_SESSION_H #include #include #include "scan_parameters.h" G_BEGIN_DECLS #define LIBINSANE_SCAN_SESSION_TYPE \ (libinsane_scan_session_get_type()) #define LIBINSANE_SCAN_SESSION(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), LIBINSANE_SCAN_SESSION_TYPE, LibinsaneScanSession)) #define LIBINSANE_SCAN_SESSION_CLASS(cls) \ (G_TYPE_CHECK_CLASS_CAST ((cls), LIBINSANE_SCAN_SESSION_TYPE, LibinsaneScanSessionClass)) #define LIBINSANE_IS_SCAN_SESSION(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LIBINSANE_SCAN_SESSION_TYPE)) #define LIBINSANE_SCAN_SESSION_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), LIBINSANE_SCAN_SESSION_TYPE, LibinsaneScanSessionClass)) typedef struct _LibinsaneScanSession LibinsaneScanSession; typedef struct _LibinsaneScanSessionPrivate LibinsaneScanSessionPrivate; typedef struct _LibinsaneScanSessionClass LibinsaneScanSessionClass; struct _LibinsaneScanSession { GInputStream parent; }; struct _LibinsaneScanSessionClass { GInputStreamClass parent; }; GType libinsane_scan_session_get_type(void) G_GNUC_CONST; /* no public constructor */ LibinsaneScanParameters *libinsane_scan_session_get_scan_parameters(LibinsaneScanSession *self, GError **error); gboolean libinsane_scan_session_end_of_feed(LibinsaneScanSession *self); gboolean libinsane_scan_session_end_of_page(LibinsaneScanSession *self); gssize libinsane_scan_session_read(LibinsaneScanSession *self, void *buffer, gsize lng, GError **error); GBytes *libinsane_scan_session_read_bytes(LibinsaneScanSession *self, gsize lng, GError **error); void libinsane_scan_session_cancel(LibinsaneScanSession *self); G_END_DECLS #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/scan_session_private.h000066400000000000000000000004231437772407700330740ustar00rootroot00000000000000#ifndef __LIBINSANE_SCAN_SESSION_PRIVATE_H #define __LIBINSANE_SCAN_SESSION_PRIVATE_H #include #include "scan_session.h" LibinsaneScanSession *libinsane_scan_session_new_from_libinsane( GObject *parent, struct lis_scan_session *scan_session ); #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/libinsane-gobject/unit.h000066400000000000000000000004241437772407700276330ustar00rootroot00000000000000#ifndef __LIBINSANE_GOBJECT_UNIT_H #define __LIBINSANE_GOBJECT_UNIT_H typedef enum { LIBINSANE_UNIT_NONE = 0, LIBINSANE_UNIT_PIXEL, LIBINSANE_UNIT_BIT, LIBINSANE_UNIT_MM, LIBINSANE_UNIT_DPI, LIBINSANE_UNIT_PERCENT, LIBINSANE_UNIT_MICROSECOND, } LibinsaneUnit; #endif libinsane-1.0.10/subprojects/libinsane-gobject/include/meson.build000066400000000000000000000012061437772407700252650ustar00rootroot00000000000000INSANE_GOBJECT_HEADERS = files( 'libinsane-gobject/capability.h', 'libinsane-gobject/constraint.h', 'libinsane-gobject/device_descriptor.h', 'libinsane-gobject/error.h', 'libinsane-gobject/img_format.h', 'libinsane-gobject/item.h', 'libinsane-gobject/item_type.h', 'libinsane-gobject/libinsane-api.h', 'libinsane-gobject/log.h', 'libinsane-gobject/option_descriptor.h', 'libinsane-gobject/scan_parameters.h', 'libinsane-gobject/scan_session.h', 'libinsane-gobject/unit.h', ) install_headers(INSANE_GOBJECT_HEADERS, subdir: 'libinsane-gobject') libinsane_gobject_inc = include_directories('.') libinsane-1.0.10/subprojects/libinsane-gobject/meson.build000066400000000000000000000003351437772407700236440ustar00rootroot00000000000000project('libinsane-gobject', 'c', version: '1.0.10', license: 'LGPLv3+', meson_version: '>=0.37.1') gnome = import('gnome') LIBINSANE = subproject('libinsane') subdir('include') subdir('src') subdir('doc') libinsane-1.0.10/subprojects/libinsane-gobject/src/000077500000000000000000000000001437772407700222705ustar00rootroot00000000000000libinsane-1.0.10/subprojects/libinsane-gobject/src/device_descriptor.c000066400000000000000000000061751437772407700261420ustar00rootroot00000000000000#include #include #include #include struct _LibinsaneDeviceDescriptorPrivate { char *dev_id; char *vendor; char *model; char *type; char *to_string; }; G_DEFINE_TYPE_WITH_PRIVATE(LibinsaneDeviceDescriptor, libinsane_device_descriptor, G_TYPE_OBJECT) static void libinsane_device_descriptor_finalize(GObject *object) { LibinsaneDeviceDescriptor *self = LIBINSANE_DEVICE_DESCRIPTOR(object); LibinsaneDeviceDescriptorPrivate *private = \ libinsane_device_descriptor_get_instance_private(self); lis_log_debug("[gobject] Finalizing"); g_free(private->dev_id); g_free(private->vendor); g_free(private->model); g_free(private->type); g_free(private->to_string); } static void libinsane_device_descriptor_class_init(LibinsaneDeviceDescriptorClass *cls) { GObjectClass *go_cls; go_cls = G_OBJECT_CLASS(cls); go_cls->finalize = libinsane_device_descriptor_finalize; } static void libinsane_device_descriptor_init(LibinsaneDeviceDescriptor *self) { LIS_UNUSED(self); lis_log_debug("[gobject] Initializing"); } LibinsaneDeviceDescriptor *libinsane_device_descriptor_new_from_libinsane( const struct lis_device_descriptor *lis_desc ) { LibinsaneDeviceDescriptor *desc; LibinsaneDeviceDescriptorPrivate *private; lis_log_debug("[gobject] enter"); desc = g_object_new(LIBINSANE_DEVICE_DESCRIPTOR_TYPE, NULL); private = libinsane_device_descriptor_get_instance_private(desc); private->dev_id = g_strdup(lis_desc->dev_id); private->vendor = g_strdup(lis_desc->vendor); private->model = g_strdup(lis_desc->model); private->type = g_strdup(lis_desc->type); private->to_string = g_strdup_printf( "%s %s (%s ; %s)", private->vendor, private->model, private->type, private->dev_id ); lis_log_debug("[gobject] leave"); return desc; } const char *libinsane_device_descriptor_get_dev_id(LibinsaneDeviceDescriptor *self) { LibinsaneDeviceDescriptorPrivate *private; private = libinsane_device_descriptor_get_instance_private(self); return private->dev_id; } const char *libinsane_device_descriptor_get_dev_vendor(LibinsaneDeviceDescriptor *self) { LibinsaneDeviceDescriptorPrivate *private; private = libinsane_device_descriptor_get_instance_private(self); return private->vendor; } const char *libinsane_device_descriptor_get_dev_model(LibinsaneDeviceDescriptor *self) { LibinsaneDeviceDescriptorPrivate *private; private = libinsane_device_descriptor_get_instance_private(self); return private->model; } const char *libinsane_device_descriptor_get_dev_type(LibinsaneDeviceDescriptor *self) { LibinsaneDeviceDescriptorPrivate *private; private = libinsane_device_descriptor_get_instance_private(self); return private->type; } /** * libinsane_device_descriptor_to_string: * Convenience method: allow to see quickly which device is designated by this object. * Do not use in production code. */ const char *libinsane_device_descriptor_to_string(LibinsaneDeviceDescriptor *self) { LibinsaneDeviceDescriptorPrivate *private; private = libinsane_device_descriptor_get_instance_private(self); return private->to_string; } libinsane-1.0.10/subprojects/libinsane-gobject/src/enums.c.template000066400000000000000000000015551437772407700254030ustar00rootroot00000000000000/*** BEGIN file-header ***/ #include "enums.h" /*** END file-header ***/ /*** BEGIN file-production ***/ /* enumerations from "@basename@" */ #include /*** END file-production ***/ /*** BEGIN value-header ***/ GType @enum_name@_get_type (void) { static GType type_once = 0; if (g_once_init_enter (&type_once)) { static const G@Type@Value values[] = { /*** END value-header ***/ /*** BEGIN value-production ***/ { @VALUENAME@, "@VALUENAME@", "@valuenick@" }, /*** END value-production ***/ /*** BEGIN value-tail ***/ { 0, NULL, NULL } }; GType type = g_@type@_register_static (g_intern_static_string ("@EnumName@"), values); g_once_init_leave (&type_once, type); } return type_once; } /*** END value-tail ***/ /*** BEGIN file-tail ***/ /*** END file-tail ***/ libinsane-1.0.10/subprojects/libinsane-gobject/src/enums.h.template000066400000000000000000000007401437772407700254030ustar00rootroot00000000000000/*** BEGIN file-header ***/ #ifndef __LIBINSANE_ENUMS_H #define __LIBINSANE_ENUMS_H #include G_BEGIN_DECLS /*** END file-header ***/ /*** BEGIN file-production ***/ /*** END file-production ***/ /*** BEGIN value-header ***/ GType @enum_name@_get_type (void) G_GNUC_CONST; #define LIBINSANE_TYPE_@ENUMSHORT@ (@enum_name@_get_type ()) /*** END value-header ***/ /*** BEGIN file-tail ***/ G_END_DECLS #endif /* !__LIBINSANE_ENUMS_H */ /*** END file-tail ***/ libinsane-1.0.10/subprojects/libinsane-gobject/src/error.c000066400000000000000000000032571437772407700235740ustar00rootroot00000000000000#include #include #include /** * LIBINSANE_ERROR: * * Error domain for libinsane operations. Errors in this domain will * be from the #LibinsaneError enumeration. See #GError for information * on error domains. */ GQuark libinsane_error_quark(void) { static GQuark q = 0; if (q == 0) { q = g_quark_from_static_string("libinsane-quark"); } return q; } LibinsaneError lis_error_to_gobject(enum lis_error err) { switch(err) { case LIS_OK: return LIBINSANE_ERROR_OK; case LIS_ERR_CANCELLED: return LIBINSANE_ERROR_CANCELLED; case LIS_WARMING_UP: /* shouldn't be here */ assert(err != LIS_WARMING_UP); break; case LIS_ERR_DEVICE_BUSY: return LIBINSANE_ERROR_DEVICE_BUSY; case LIS_ERR_UNSUPPORTED: return LIBINSANE_ERROR_UNSUPPORTED; case LIS_ERR_INVALID_VALUE: return LIBINSANE_ERROR_INVALID_VALUE; case LIS_ERR_JAMMED: return LIBINSANE_ERROR_JAMMED; case LIS_ERR_COVER_OPEN: return LIBINSANE_ERROR_COVER_OPEN; case LIS_ERR_IO_ERROR: return LIBINSANE_ERROR_IO_ERROR; case LIS_ERR_NO_MEM: return LIBINSANE_ERROR_NO_MEM; case LIS_ERR_ACCESS_DENIED: return LIBINSANE_ERROR_ACCESS_DENIED; case LIS_ERR_HW_IS_LOCKED: return LIBINSANE_ERROR_HW_IS_LOCKED; case LIS_ERR_INTERNAL_IMG_FORMAT_NOT_SUPPORTED: return LIBINSANE_ERROR_INTERNAL_IMG_FORMAT_NOT_SUPPORTED; case LIS_ERR_INTERNAL_NOT_IMPLEMENTED: return LIBINSANE_ERROR_INTERNAL_NOT_IMPLEMENTED; case LIS_ERR_INTERNAL_UNKNOWN_ERROR: return LIBINSANE_ERROR_INTERNAL_UNKNOWN_ERROR; case LIS_ERR_OFFLINE: return LIBINSANE_ERROR_OFFLINE; } return LIBINSANE_ERROR_INTERNAL_NOT_IMPLEMENTED; } libinsane-1.0.10/subprojects/libinsane-gobject/src/item.c000066400000000000000000000144031437772407700233740ustar00rootroot00000000000000#include #include #include #include #include #include #include #include #include #include struct _LibinsaneItemPrivate { GObject *parent_ref; struct lis_item *item; gboolean root; gboolean closed; }; G_DEFINE_TYPE_WITH_PRIVATE(LibinsaneItem, libinsane_item, G_TYPE_OBJECT) static void libinsane_item_dispose(GObject *self) { lis_log_debug("[gobject] Disposing"); libinsane_item_close(LIBINSANE_ITEM(self), NULL); } static void libinsane_item_finalize(GObject *self) { LIS_UNUSED(self); lis_log_debug("[gobject] Finalizing"); } static void libinsane_item_class_init(LibinsaneItemClass *cls) { GObjectClass *go_cls; go_cls = G_OBJECT_CLASS(cls); go_cls->dispose = libinsane_item_dispose; go_cls->finalize = libinsane_item_finalize; } static void libinsane_item_init(LibinsaneItem *self) { LIS_UNUSED(self); lis_log_debug("[gobject] Initializing"); } LibinsaneItem *libinsane_item_new_from_libinsane( GObject *parent_ref, gboolean root, struct lis_item *lis_item ) { LibinsaneItem *item; LibinsaneItemPrivate *private; lis_log_debug("[gobject] enter"); g_object_ref(parent_ref); item = g_object_new(LIBINSANE_ITEM_TYPE, NULL); private = libinsane_item_get_instance_private(item); private->item = lis_item; private->parent_ref = parent_ref; private->closed = FALSE; private->root = root; lis_log_debug("[gobject] leave"); return item; } /** * libinsane_item_get_name: * @self: current item * * Returns: (transfer none): Item's name */ const char *libinsane_item_get_name(LibinsaneItem *self) { LibinsaneItemPrivate *private = libinsane_item_get_instance_private(self); return private->item->name; } LibinsaneItemType libinsane_item_get_item_type(LibinsaneItem *self) { LibinsaneItemPrivate *private = libinsane_item_get_instance_private(self); switch(private->item->type) { case LIS_ITEM_DEVICE: return LIBINSANE_ITEM_TYPE_DEVICE; case LIS_ITEM_FLATBED: return LIBINSANE_ITEM_TYPE_FLATBED; case LIS_ITEM_ADF: return LIBINSANE_ITEM_TYPE_ADF; case LIS_ITEM_UNIDENTIFIED: return LIBINSANE_ITEM_TYPE_UNIDENTIFIED; } lis_log_warning("Unexpected item type: %d", private->item->type); return LIBINSANE_ITEM_TYPE_UNIDENTIFIED; } void libinsane_item_close(LibinsaneItem *self, GError **error) { LibinsaneItemPrivate *private = libinsane_item_get_instance_private(self); LIS_UNUSED(error); if (private->closed) { return; } private->closed = TRUE; if (private->root) { lis_log_debug("Closing item '%s'", private->item->name); // only the root item must be closed private->item->close(private->item); private->item = NULL; } g_clear_object(&private->parent_ref); } /** * libinsane_item_get_children: * @self: current item. Should be a root item (not a result #libinsane_item_get_children()), * not a children. * @error: in case an error occurred while looking for children items * * See [C-API](../doxygen/html/structlis__item.html#ae4039acefa6acf85a110dec491340411) * * Returns: (element-type Libinsane.Item) (transfer full): * list of children items (usually scan sources) */ GList *libinsane_item_get_children(LibinsaneItem *self, GError **error) { LibinsaneItemPrivate *private = libinsane_item_get_instance_private(self); struct lis_item **children; GList *out = NULL; enum lis_error err; LibinsaneItem *item; int i; if (private->closed) { lis_log_error("item->get_children() called on closed item !"); return NULL; } lis_log_debug("enter"); err = private->item->get_children(private->item, &children); if (LIS_IS_ERROR(err)) { SET_LIBINSANE_GOBJECT_ERROR(error, err, "Libinsane item->get_children() error: 0x%X, %s", err, lis_strerror(err)); lis_log_debug("error"); return NULL; } for (i = 0 ; children[i] != NULL ; i++) { item = libinsane_item_new_from_libinsane( G_OBJECT(self), FALSE /* !root */, children[i] ); out = g_list_prepend(out, item); } lis_log_debug("leave"); return g_list_reverse(out); } /** * libinsane_item_get_options: * @self: current item. Can be either a root or child item. * @error: in case an error occurred while looking for options. * * See [C-API](../doxygen/html/structlis__item.html#aa2e301604accfe64461b36e28365bf9e) * * Returns: (element-type Libinsane.OptionDescriptor) (transfer full): item scan options. */ GList *libinsane_item_get_options(LibinsaneItem *self, GError **error) { LibinsaneItemPrivate *private = libinsane_item_get_instance_private(self); enum lis_error err; struct lis_option_descriptor **opts; LibinsaneOptionDescriptor *desc; int i; GList *out = NULL; if (private->closed) { lis_log_error("item->get_options() called on closed item !"); return NULL; } lis_log_debug("enter"); err = private->item->get_options(private->item, &opts); if (LIS_IS_ERROR(err)) { SET_LIBINSANE_GOBJECT_ERROR(error, err, "Libinsane item->get_options() error: 0x%X, %s", err, lis_strerror(err)); lis_log_debug("error"); return NULL; } for (i = 0 ; opts[i] != NULL ; i++) { desc = libinsane_option_descriptor_new_from_libinsane( G_OBJECT(self), opts[i] ); out = g_list_prepend(out, desc); } lis_log_debug("leave"); return g_list_reverse(out); } /** * libinsane_item_scan_start: * Returns: (transfer full): item scan parameters. */ LibinsaneScanSession *libinsane_item_scan_start(LibinsaneItem *self, GError **error) { LibinsaneItemPrivate *private = libinsane_item_get_instance_private(self); enum lis_error err; struct lis_scan_session *lis_scan_session = NULL; LibinsaneScanSession *scan_session; if (private->closed) { lis_log_error("item->scan_start() called on closed item !"); return NULL; } lis_log_debug("enter"); err = private->item->scan_start(private->item, &lis_scan_session); if (LIS_IS_ERROR(err)) { SET_LIBINSANE_GOBJECT_ERROR(error, err, "Libinsane item->scan_start() error: 0x%X, %s", err, lis_strerror(err)); lis_log_debug("error"); return NULL; } scan_session = libinsane_scan_session_new_from_libinsane( G_OBJECT(self), lis_scan_session ); lis_log_debug("leave"); return scan_session; } libinsane-1.0.10/subprojects/libinsane-gobject/src/libinsane-api.c000066400000000000000000000145251437772407700251560ustar00rootroot00000000000000#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include struct _LibinsaneApiPrivate { struct lis_api *impl; int closed; }; G_DEFINE_TYPE_WITH_PRIVATE(LibinsaneApi, libinsane_api, G_TYPE_OBJECT) static void libinsane_api_finalize(GObject *self) { lis_log_debug("Finalizing"); libinsane_api_cleanup(LIBINSANE_API(self)); } static void str2img_format(const GValue *src_value, GValue *dest_value) { const char *str; LibinsaneImgFormat format; assert(G_VALUE_HOLDS_STRING(src_value)); str = g_value_get_string(src_value); if (strcasecmp(str, "raw24") == 0 || strcasecmp(str, "raw") == 0) { format = LIBINSANE_IMG_FORMAT_RAW_RGB_24; } else if (strcasecmp(str, "raw_grayscale") == 0) { format = LIBINSANE_IMG_FORMAT_GRAYSCALE_8; } else if (strcasecmp(str, "raw_bw") == 0) { format = LIBINSANE_IMG_FORMAT_BW_1; } else if (strcasecmp(str, "bmp") == 0) { format = LIBINSANE_IMG_FORMAT_BMP; } else if (strcasecmp(str, "gif") == 0) { format = LIBINSANE_IMG_FORMAT_GIF; } else if (strcasecmp(str, "jpeg") == 0 || strcasecmp(str, "jpg") == 0) { format = LIBINSANE_IMG_FORMAT_JPEG; } else if (strcasecmp(str, "png") == 0) { format = LIBINSANE_IMG_FORMAT_PNG; } else { lis_log_warning("Unknown image format '%s'. Assuming raw RGB 24bits", str); format = LIBINSANE_IMG_FORMAT_RAW_RGB_24; } g_value_set_enum(dest_value, format); } static void libinsane_api_class_init(LibinsaneApiClass *cls) { GObjectClass *go_cls; go_cls = G_OBJECT_CLASS(cls); go_cls->finalize = libinsane_api_finalize; g_value_register_transform_func(G_TYPE_STRING, LIBINSANE_TYPE_IMG_FORMAT, str2img_format); } static void libinsane_api_init(LibinsaneApi *self) { LIS_UNUSED(self); lis_log_debug("Initializing"); } /** * libinsane_api_new_safebet: * * Instantiate the safest list of API for most cases. * See [lis_safebet](../doxygen/html/safebet_8h.html) * * Returns: (transfer full): the new reference to @self. */ LibinsaneApi *libinsane_api_new_safebet(GError **error) { LibinsaneApi *api = g_object_new(LIBINSANE_API_TYPE, NULL); LibinsaneApiPrivate *priv = libinsane_api_get_instance_private(api); enum lis_error err; lis_log_debug("enter"); err = lis_safebet(&priv->impl); if (LIS_IS_ERROR(err)) { SET_LIBINSANE_GOBJECT_ERROR(error, err, "Libinsane init error: 0x%X, %s", err, lis_strerror(err)); lis_log_debug("error"); return NULL; } priv->closed = 0; assert(priv->impl != NULL); lis_log_debug("leave"); return api; } /** * libinsane_api_new_from_string: * * Instantiate a new list of API based on a provided string. * * @param desc see [lis_str2impls()](../doxygen/html/str2impls_8h.html) * * Returns: (transfer full): the new reference to @self. */ LibinsaneApi *libinsane_api_new_from_string(const char *desc, GError **error) { LibinsaneApi *impl; LIS_UNUSED(desc); LIS_UNUSED(error); lis_log_debug("enter"); impl = g_object_new(LIBINSANE_API_TYPE, NULL); /* TODO */ lis_log_debug("leave"); return impl; } void libinsane_api_cleanup(LibinsaneApi *self) { LibinsaneApiPrivate *priv; lis_log_debug("enter"); priv = libinsane_api_get_instance_private(self); if (priv->closed) { return; } if (priv->impl != NULL) { lis_log_debug("cleanup"); priv->impl->cleanup(priv->impl); priv->impl = NULL; } priv->closed = 1; lis_log_debug("leave"); } /** * libinsane_api_list_devices: * * Returns: (element-type Libinsane.DeviceDescriptor) (transfer full): * list of available devices (LibinsaneDeviceDescriptors objects) */ GList *libinsane_api_list_devices( LibinsaneApi *self, LibinsaneDeviceLocations locations, GError **error ) { LibinsaneApiPrivate *priv; enum lis_error err; struct lis_device_descriptor **dev_infos; LibinsaneDeviceDescriptor *dev_info; GList *out = NULL; int i; enum lis_device_locations lis_locations = LIS_DEVICE_LOCATIONS_ANY; lis_log_debug("enter"); priv = libinsane_api_get_instance_private(self); if (priv->closed) { err = LIS_ERR_CANCELLED; SET_LIBINSANE_GOBJECT_ERROR(error, err, "Libinsane list devices error: 0x%X, %s", err, lis_strerror(err)); lis_log_error( "API->list_devices() called on closed implementation" ); return NULL; } switch(locations) { case LIBINSANE_DEVICE_LOCATIONS_ANY: lis_locations = LIS_DEVICE_LOCATIONS_ANY; break; case LIBINSANE_DEVICE_LOCATIONS_LOCAL_ONLY: lis_locations = LIS_DEVICE_LOCATIONS_LOCAL_ONLY; break; } err = priv->impl->list_devices(priv->impl, lis_locations, &dev_infos); if (LIS_IS_ERROR(err)) { SET_LIBINSANE_GOBJECT_ERROR(error, err, "Libinsane list devices error: 0x%X, %s", err, lis_strerror(err)); lis_log_error("error"); return NULL; } for (i = 0 ; dev_infos[i] != NULL ; i++) { dev_info = libinsane_device_descriptor_new_from_libinsane(dev_infos[i]); out = g_list_prepend(out, dev_info); } lis_log_debug("leave"); return g_list_reverse(out); } /** * libinsane_api_get_device: * * Returns: (transfer full): LibinsaneItem object */ LibinsaneItem *libinsane_api_get_device(LibinsaneApi *self, const char *dev_id, GError **error) { LibinsaneApiPrivate *priv; struct lis_item *lis_item; LibinsaneItem *item; enum lis_error lis_err; lis_log_debug("enter"); priv = libinsane_api_get_instance_private(self); if (priv->closed) { lis_err = LIS_ERR_CANCELLED; SET_LIBINSANE_GOBJECT_ERROR(error, lis_err, "Libinsane get device error: 0x%X, %s", lis_err, lis_strerror(lis_err)); lis_log_error( "API->get_device() called on closed implementation" ); return NULL; } lis_err = priv->impl->get_device(priv->impl, dev_id, &lis_item); if (LIS_IS_ERROR(lis_err)) { SET_LIBINSANE_GOBJECT_ERROR(error, lis_err, "Libinsane get device error: 0x%X, %s", lis_err, lis_strerror(lis_err)); lis_log_debug("error"); return NULL; } item = libinsane_item_new_from_libinsane( G_OBJECT(self), TRUE /* root*/, lis_item ); lis_log_debug("leave"); return item; } const char *libinsane_api_get_version(void) { return lis_get_version(); } libinsane-1.0.10/subprojects/libinsane-gobject/src/log.c000066400000000000000000000041441437772407700232200ustar00rootroot00000000000000#include #include #include #include G_DEFINE_INTERFACE(LibinsaneLogger, libinsane_logger, G_TYPE_OBJECT) static LibinsaneLogger *g_logger = NULL; static lis_log_callback log_callback; static void libinsane_logger_real_log(LibinsaneLogger *self, LibinsaneLogLevel lvl, const char *msg); static struct lis_log_callbacks g_callbacks = { .callbacks = { [LIS_LOG_LVL_DEBUG] = log_callback, [LIS_LOG_LVL_INFO] = log_callback, [LIS_LOG_LVL_WARNING] = log_callback, [LIS_LOG_LVL_ERROR] = log_callback, } }; static void libinsane_logger_default_init(LibinsaneLoggerInterface *iface) { iface->log = libinsane_logger_real_log; } static void libinsane_logger_real_log(LibinsaneLogger *self, LibinsaneLogLevel lvl, const char *msg) { LIS_UNUSED(self); fprintf(stderr, "[missing log callback] %d: %s\n", lvl, msg); } void libinsane_logger_log(LibinsaneLogger *self, LibinsaneLogLevel lvl, const char *msg) { LibinsaneLoggerInterface *iface; g_return_if_fail(LIBINSANE_IS_LOGGER(self)); iface = LIBINSANE_LOGGER_GET_IFACE(self); iface->log(self, lvl, msg); } static void log_callback(enum lis_log_level lis_lvl, const char *msg) { LibinsaneLogLevel lvl = LIBINSANE_LOG_LEVEL_ERROR; if (g_logger == NULL) { fprintf(stderr, "Warning: no log callback defined. Defaulting to stderr\n"); fprintf(stderr, "[missing logger object] %d: %s\n", lis_lvl, msg); return; } switch(lis_lvl) { case LIS_LOG_LVL_DEBUG: lvl = LIBINSANE_LOG_LEVEL_DEBUG; break; case LIS_LOG_LVL_INFO: lvl = LIBINSANE_LOG_LEVEL_INFO; break; case LIS_LOG_LVL_WARNING: lvl = LIBINSANE_LOG_LEVEL_WARNING; break; case LIS_LOG_LVL_ERROR: lvl = LIBINSANE_LOG_LEVEL_ERROR; break; } libinsane_logger_log(g_logger, lvl, msg); } void libinsane_register_logger(LibinsaneLogger *logger) { if (logger != NULL) { g_object_ref(logger); g_logger = logger; lis_set_log_callbacks(&g_callbacks); } else { libinsane_unregister_logger(); } } void libinsane_unregister_logger() { if (g_logger != NULL) { g_object_unref(g_logger); } g_logger = NULL; } libinsane-1.0.10/subprojects/libinsane-gobject/src/meson.build000066400000000000000000000032371437772407700244370ustar00rootroot00000000000000INSANE_GOBJECT_SRCS = files( 'device_descriptor.c', 'error.c', 'item.c', 'libinsane-api.c', 'log.c', 'option_descriptor.c', 'scan_parameters.c', 'scan_session.c', ) GOBJECT = dependency('gobject-2.0') libinsane_dep = LIBINSANE.get_variable('libinsane_dep') ## Generate enums.h / enums.c enums = gnome.mkenums('enums', c_template: 'enums.c.template', h_template: 'enums.h.template', sources: INSANE_GOBJECT_HEADERS, install_header: true, install_dir: join_paths(get_option('includedir'), 'libinsane-gobject')) ## Build libinsane_gobject itself if host_machine.system() == 'windows' libinsane_gobject = library('insane_gobject', INSANE_GOBJECT_SRCS + enums, include_directories: libinsane_gobject_inc, dependencies: [libinsane_dep, GOBJECT], install: true) else libinsane_gobject = library('insane_gobject', INSANE_GOBJECT_SRCS + enums, include_directories: libinsane_gobject_inc, dependencies: [libinsane_dep, GOBJECT], version: meson.project_version(), install: true) endif libinsane_gobject_dep = declare_dependency( include_directories: libinsane_gobject_inc, link_with: libinsane_gobject, dependencies: [GOBJECT]) ## Introspection gir = gnome.generate_gir(libinsane_gobject, sources: INSANE_GOBJECT_SRCS + INSANE_GOBJECT_HEADERS, namespace: 'Libinsane', # Not a typo: This is the GObject API version. Not the Libinsane # version. nsversion: '1.0', includes: 'GObject-2.0', install: true) ## Vala support gnome.generate_vapi('libinsane', sources: [gir.get(0)], install: true, packages: ['glib-2.0', 'gobject-2.0']) libinsane-1.0.10/subprojects/libinsane-gobject/src/option_descriptor.c000066400000000000000000000311771437772407700262130ustar00rootroot00000000000000#include #include #include #include #include #include #include #include #include #include #include #include struct _LibinsaneOptionDescriptorPrivate { GObject *parent_ref; struct lis_option_descriptor *opt; GValue last_value; }; G_DEFINE_TYPE_WITH_PRIVATE( LibinsaneOptionDescriptor, libinsane_option_descriptor, G_TYPE_OBJECT ) static void libinsane_option_descriptor_dispose(GObject *self) { LibinsaneOptionDescriptorPrivate *private = ( libinsane_option_descriptor_get_instance_private( LIBINSANE_OPTION_DESCRIPTOR(self) ) ); lis_log_debug("[gobject] Disposing"); g_clear_object(&private->parent_ref); } static void libinsane_option_descriptor_finalize(GObject *object) { LIS_UNUSED(object); lis_log_debug("[gobject] Finalizing"); } static void libinsane_option_descriptor_class_init(LibinsaneOptionDescriptorClass *cls) { GObjectClass *go_cls; go_cls = G_OBJECT_CLASS(cls); go_cls->dispose = libinsane_option_descriptor_dispose; go_cls->finalize = libinsane_option_descriptor_finalize; } static void libinsane_option_descriptor_init(LibinsaneOptionDescriptor *self) { LIS_UNUSED(self); lis_log_debug("[gobject] Initializing"); } LibinsaneOptionDescriptor *libinsane_option_descriptor_new_from_libinsane( GObject *parent_ref, struct lis_option_descriptor *lis_opt ) { LibinsaneOptionDescriptor *opt; LibinsaneOptionDescriptorPrivate *private; lis_log_debug("[gobject] enter"); g_object_ref(parent_ref); opt = g_object_new(LIBINSANE_OPTION_DESCRIPTOR_TYPE, NULL); private = libinsane_option_descriptor_get_instance_private(opt); private->opt = lis_opt; private->parent_ref = parent_ref; /* set a default 'last_value' ; won't be actually used ; just here to be freed */ g_value_init(&private->last_value, G_TYPE_INT); g_value_set_int(&private->last_value, 0); lis_log_debug("[gobject] leave"); return opt; } const char *libinsane_option_descriptor_get_name(LibinsaneOptionDescriptor *self) { LibinsaneOptionDescriptorPrivate *private = libinsane_option_descriptor_get_instance_private(self); return private->opt->name; } const char *libinsane_option_descriptor_get_title(LibinsaneOptionDescriptor *self) { LibinsaneOptionDescriptorPrivate *private = libinsane_option_descriptor_get_instance_private(self); return private->opt->title; } const char *libinsane_option_descriptor_get_desc(LibinsaneOptionDescriptor *self) { LibinsaneOptionDescriptorPrivate *private = libinsane_option_descriptor_get_instance_private(self); return private->opt->desc; } LibinsaneCapability libinsane_option_descriptor_get_capabilities(LibinsaneOptionDescriptor *self) { LibinsaneOptionDescriptorPrivate *private = libinsane_option_descriptor_get_instance_private(self); int cap = private->opt->capabilities; LibinsaneCapability out = 0; if (cap & LIS_CAP_EMULATED) { out |= LIBINSANE_CAPABILITY_EMULATED; } if (cap & LIS_CAP_AUTOMATIC) { out |= LIBINSANE_CAPABILITY_AUTOMATIC; } if (cap & LIS_CAP_HW_SELECT) { out |= LIBINSANE_CAPABILITY_HW_SELECT; } if (cap & LIS_CAP_SW_SELECT) { out |= LIBINSANE_CAPABILITY_SW_SELECT; } if (cap & LIS_CAP_INACTIVE) { out |= LIBINSANE_CAPABILITY_INACTIVE; } return out; } GType libinsane_option_descriptor_get_value_type(LibinsaneOptionDescriptor *self) { LibinsaneOptionDescriptorPrivate *private = libinsane_option_descriptor_get_instance_private(self); switch(private->opt->value.type) { case LIS_TYPE_BOOL: return G_TYPE_BOOLEAN; case LIS_TYPE_INTEGER: return G_TYPE_INT; case LIS_TYPE_DOUBLE: return G_TYPE_DOUBLE; case LIS_TYPE_STRING: return G_TYPE_STRING; case LIS_TYPE_IMAGE_FORMAT: return LIBINSANE_TYPE_IMG_FORMAT; } return G_TYPE_INVALID; } LibinsaneUnit libinsane_option_descriptor_get_value_unit(LibinsaneOptionDescriptor *self) { LibinsaneOptionDescriptorPrivate *private = libinsane_option_descriptor_get_instance_private(self); switch(private->opt->value.unit) { case LIS_UNIT_NONE: return LIBINSANE_UNIT_NONE; case LIS_UNIT_PIXEL: return LIBINSANE_UNIT_PIXEL; case LIS_UNIT_BIT: return LIBINSANE_UNIT_BIT; case LIS_UNIT_MM: return LIBINSANE_UNIT_MM; case LIS_UNIT_DPI: return LIBINSANE_UNIT_DPI; case LIS_UNIT_PERCENT: return LIBINSANE_UNIT_PERCENT; case LIS_UNIT_MICROSECOND: return LIBINSANE_UNIT_MICROSECOND; } return -1; } LibinsaneConstraintType libinsane_option_descriptor_get_constraint_type(LibinsaneOptionDescriptor *self) { LibinsaneOptionDescriptorPrivate *private = libinsane_option_descriptor_get_instance_private(self); switch(private->opt->constraint.type) { case LIS_CONSTRAINT_NONE: return LIBINSANE_CONSTRAINT_TYPE_NONE; case LIS_CONSTRAINT_RANGE: return LIBINSANE_CONSTRAINT_TYPE_RANGE; case LIS_CONSTRAINT_LIST: return LIBINSANE_CONSTRAINT_TYPE_LIST; } return -1; } static LibinsaneImgFormat lis_format_to_gobject_format(enum lis_img_format fmt) { switch(fmt) { case LIS_IMG_FORMAT_RAW_RGB_24: return LIBINSANE_IMG_FORMAT_RAW_RGB_24; case LIS_IMG_FORMAT_GRAYSCALE_8: return LIBINSANE_IMG_FORMAT_GRAYSCALE_8; case LIS_IMG_FORMAT_BW_1: return LIBINSANE_IMG_FORMAT_BW_1; case LIS_IMG_FORMAT_BMP: return LIBINSANE_IMG_FORMAT_BMP; case LIS_IMG_FORMAT_GIF: return LIBINSANE_IMG_FORMAT_GIF; case LIS_IMG_FORMAT_JPEG: return LIBINSANE_IMG_FORMAT_JPEG; case LIS_IMG_FORMAT_PNG: return LIBINSANE_IMG_FORMAT_PNG; case LIS_IMG_FORMAT_CIFF: return LIBINSANE_IMG_FORMAT_CIFF; case LIS_IMG_FORMAT_EXIF: return LIBINSANE_IMG_FORMAT_EXIF; case LIS_IMG_FORMAT_FLASHPIX: return LIBINSANE_IMG_FORMAT_FLASHPIX; case LIS_IMG_FORMAT_ICO: return LIBINSANE_IMG_FORMAT_ICO; case LIS_IMG_FORMAT_JPEG2K: return LIBINSANE_IMG_FORMAT_JPEG2K; case LIS_IMG_FORMAT_JPEG2KX: return LIBINSANE_IMG_FORMAT_JPEG2KX; case LIS_IMG_FORMAT_MEMORYBMP: return LIBINSANE_IMG_FORMAT_MEMORYBMP; case LIS_IMG_FORMAT_PHOTOCD: return LIBINSANE_IMG_FORMAT_PHOTOCD; case LIS_IMG_FORMAT_PICT: return LIBINSANE_IMG_FORMAT_PICT; case LIS_IMG_FORMAT_TIFF: return LIBINSANE_IMG_FORMAT_TIFF; } return LIS_ENUM_ERROR; } static void lis_value_to_gvalue(enum lis_value_type type, union lis_value value, GValue *out) { g_value_unset(out); switch(type) { case LIS_TYPE_BOOL: g_value_init(out, G_TYPE_BOOLEAN); g_value_set_boolean(out, value.boolean > 0); return; case LIS_TYPE_INTEGER: g_value_init(out, G_TYPE_INT); g_value_set_int(out, value.integer); return; case LIS_TYPE_DOUBLE: g_value_init(out, G_TYPE_DOUBLE); g_value_set_double(out, value.dbl); return; case LIS_TYPE_STRING: g_value_init(out, G_TYPE_STRING); g_value_set_static_string(out, value.string); return; case LIS_TYPE_IMAGE_FORMAT: g_value_init(out, LIBINSANE_TYPE_IMG_FORMAT); g_value_set_enum(out, lis_format_to_gobject_format(value.format)); return; } lis_log_error("Unknown value type: %d", type); } /** * libinsane_option_descriptor_get_constraint: * @self option for which we want the constraint * * Returns: (element-type GValue) (transfer container): item scan options. */ GArray *libinsane_option_descriptor_get_constraint(LibinsaneOptionDescriptor *self) { LibinsaneOptionDescriptorPrivate *private = libinsane_option_descriptor_get_instance_private(self); GArray *out = NULL; GValue val = G_VALUE_INIT; int i; switch(private->opt->constraint.type) { case LIS_CONSTRAINT_NONE: return NULL; case LIS_CONSTRAINT_RANGE: out = g_array_sized_new(FALSE /* !zero terminated */, TRUE /* cleared to 0 when allocated */, sizeof(GValue), 3 /* nb elements */); lis_value_to_gvalue(private->opt->value.type, private->opt->constraint.possible.range.min, &val); out = g_array_append_val(out, val); lis_value_to_gvalue(private->opt->value.type, private->opt->constraint.possible.range.max, &val); out = g_array_append_val(out, val); lis_value_to_gvalue(private->opt->value.type, private->opt->constraint.possible.range.interval, &val); out = g_array_append_val(out, val); return out; case LIS_CONSTRAINT_LIST: out = g_array_sized_new(FALSE /* !zero terminated */, TRUE /* cleared to 0 when allocated */, sizeof(GValue), /* nb elements */ private->opt->constraint.possible.list.nb_values); for (i = 0 ; i < private->opt->constraint.possible.list.nb_values ; i++) { lis_value_to_gvalue(private->opt->value.type, private->opt->constraint.possible.list.values[i], &val); out = g_array_append_val(out, val); } return out; } return NULL; } gboolean libinsane_option_descriptor_is_readable(LibinsaneOptionDescriptor *self) { LibinsaneOptionDescriptorPrivate *private; private = libinsane_option_descriptor_get_instance_private(self); return LIS_OPT_IS_READABLE(private->opt); } gboolean libinsane_option_descriptor_is_writable(LibinsaneOptionDescriptor *self) { LibinsaneOptionDescriptorPrivate *private; private = libinsane_option_descriptor_get_instance_private(self); return LIS_OPT_IS_WRITABLE(private->opt); } const GValue *libinsane_option_descriptor_get_value(LibinsaneOptionDescriptor *self, GError **error) { LibinsaneOptionDescriptorPrivate *private; enum lis_error err; union lis_value val; lis_log_debug("enter"); private = libinsane_option_descriptor_get_instance_private(self); err = private->opt->fn.get_value(private->opt, &val); if (LIS_IS_ERROR(err)) { SET_LIBINSANE_GOBJECT_ERROR(error, err, "Libinsane opt[%s]->get_value() error: 0x%X, %s", private->opt->name, err, lis_strerror(err)); lis_log_debug("error"); return NULL; } lis_value_to_gvalue(private->opt->value.type, val, &private->last_value); lis_log_debug("enter"); return &private->last_value; } static int gvalue_to_lis_value(const GValue *in, enum lis_value_type type, union lis_value *out) { GValue converted = G_VALUE_INIT; switch(type) { case LIS_TYPE_BOOL: g_value_init(&converted, G_TYPE_BOOLEAN); if (!g_value_transform(in, &converted)) { lis_log_error("Failed to convert value to boolean"); return 0; } out->boolean = g_value_get_boolean(&converted); return 1; case LIS_TYPE_INTEGER: g_value_init(&converted, G_TYPE_INT); if (!g_value_transform(in, &converted)) { lis_log_error("Failed to convert value to integer"); return 0; } out->integer = g_value_get_int(&converted); return 1; case LIS_TYPE_DOUBLE: g_value_init(&converted, G_TYPE_DOUBLE); if (!g_value_transform(in, &converted)) { lis_log_error("Failed to convert value to double"); return 0; } out->dbl = g_value_get_double(&converted); return 1; case LIS_TYPE_STRING: g_value_init(&converted, G_TYPE_STRING); g_value_transform(in, &converted); if (!g_value_transform(in, &converted)) { lis_log_error("Failed to convert value to string"); return 0; } out->string = g_value_get_string(&converted); return 1; case LIS_TYPE_IMAGE_FORMAT: g_value_init(&converted, LIBINSANE_TYPE_IMG_FORMAT); g_value_transform(in, &converted); if (!g_value_transform(in, &converted)) { lis_log_error("Failed to convert value to string"); return 0; } out->format = g_value_get_enum(&converted); return 1; } assert(0); lis_log_error("Unknown type: %d", type); return 0; } LibinsaneSetFlag libinsane_option_descriptor_set_value(LibinsaneOptionDescriptor *self, GValue *value, GError **error ) { LibinsaneOptionDescriptorPrivate *private; enum lis_error err; union lis_value val; int set_flags = 0; LibinsaneSetFlag out; lis_log_debug("enter"); private = libinsane_option_descriptor_get_instance_private(self); if (!gvalue_to_lis_value(value, private->opt->value.type, &val)) { err = LIS_ERR_INVALID_VALUE; SET_LIBINSANE_GOBJECT_ERROR(error, err, "Libinsane opt[%s]->set_value() conversion error: 0x%X, %s", private->opt->name, err, lis_strerror(err)); lis_log_debug("conversion error"); return LIBINSANE_SET_FLAG_NONE; } err = private->opt->fn.set_value(private->opt, val, &set_flags); if (!LIS_IS_OK(err)) { SET_LIBINSANE_GOBJECT_ERROR(error, err, "Libinsane opt[%s]->set_value() error: 0x%X, %s", private->opt->name, err, lis_strerror(err)); lis_log_debug("error"); return LIBINSANE_SET_FLAG_NONE; } out = LIBINSANE_SET_FLAG_NONE; if (set_flags & LIS_SET_FLAG_INEXACT) { out |= LIBINSANE_SET_FLAG_INEXACT; } if (set_flags & LIS_SET_FLAG_MUST_RELOAD_OPTIONS) { out |= LIBINSANE_SET_FLAG_MUST_RELOAD_OPTIONS; } if (set_flags & LIS_SET_FLAG_MUST_RELOAD_PARAMS) { out |= LIBINSANE_SET_FLAG_MUST_RELOAD_PARAMS; } lis_log_debug("leave"); return out; } libinsane-1.0.10/subprojects/libinsane-gobject/src/scan_parameters.c000066400000000000000000000066061437772407700256130ustar00rootroot00000000000000#include #include #include #include #include struct _LibinsaneScanParametersPrivate { struct lis_scan_parameters parameters; }; G_DEFINE_TYPE_WITH_PRIVATE(LibinsaneScanParameters, libinsane_scan_parameters, G_TYPE_OBJECT) static void libinsane_scan_parameters_finalize(GObject *object) { LIS_UNUSED(object); lis_log_debug("[gobject] Finalizing"); } static void libinsane_scan_parameters_class_init(LibinsaneScanParametersClass *cls) { GObjectClass *go_cls; go_cls = G_OBJECT_CLASS(cls); go_cls->finalize = libinsane_scan_parameters_finalize; } static void libinsane_scan_parameters_init(LibinsaneScanParameters *self) { LIS_UNUSED(self); lis_log_debug("[gobject] Initializing"); } LibinsaneScanParameters *libinsane_scan_parameters_new_from_libinsane(struct lis_scan_parameters *lis_params) { LibinsaneScanParameters *params; LibinsaneScanParametersPrivate *private; lis_log_debug("[gobject] enter"); params = g_object_new(LIBINSANE_SCAN_PARAMETERS_TYPE, NULL); private = libinsane_scan_parameters_get_instance_private(params); memcpy(&private->parameters, lis_params, sizeof(private->parameters)); lis_log_debug("[gobject] leave"); return params; } LibinsaneImgFormat libinsane_scan_parameters_get_format(LibinsaneScanParameters *self) { LibinsaneScanParametersPrivate *private = libinsane_scan_parameters_get_instance_private(self); switch(private->parameters.format) { case LIS_IMG_FORMAT_RAW_RGB_24: return LIBINSANE_IMG_FORMAT_RAW_RGB_24; case LIS_IMG_FORMAT_GRAYSCALE_8: return LIBINSANE_IMG_FORMAT_GRAYSCALE_8; case LIS_IMG_FORMAT_BW_1: return LIBINSANE_IMG_FORMAT_BW_1; case LIS_IMG_FORMAT_BMP: return LIBINSANE_IMG_FORMAT_BMP; case LIS_IMG_FORMAT_GIF: return LIBINSANE_IMG_FORMAT_GIF; case LIS_IMG_FORMAT_JPEG: return LIBINSANE_IMG_FORMAT_JPEG; case LIS_IMG_FORMAT_PNG: return LIBINSANE_IMG_FORMAT_PNG; case LIS_IMG_FORMAT_CIFF: return LIBINSANE_IMG_FORMAT_CIFF; case LIS_IMG_FORMAT_EXIF: return LIBINSANE_IMG_FORMAT_EXIF; case LIS_IMG_FORMAT_FLASHPIX: return LIBINSANE_IMG_FORMAT_FLASHPIX; case LIS_IMG_FORMAT_ICO: return LIBINSANE_IMG_FORMAT_ICO; case LIS_IMG_FORMAT_JPEG2K: return LIBINSANE_IMG_FORMAT_JPEG2K; case LIS_IMG_FORMAT_JPEG2KX: return LIBINSANE_IMG_FORMAT_JPEG2KX; case LIS_IMG_FORMAT_MEMORYBMP: return LIBINSANE_IMG_FORMAT_MEMORYBMP; case LIS_IMG_FORMAT_PHOTOCD: return LIBINSANE_IMG_FORMAT_PHOTOCD; case LIS_IMG_FORMAT_PICT: return LIBINSANE_IMG_FORMAT_PICT; case LIS_IMG_FORMAT_TIFF: return LIBINSANE_IMG_FORMAT_TIFF; } lis_log_warning("Unknown image format: %d", private->parameters.format); return LIBINSANE_IMG_FORMAT_RAW_RGB_24; } int libinsane_scan_parameters_get_width(LibinsaneScanParameters *self) { LibinsaneScanParametersPrivate *private; private = libinsane_scan_parameters_get_instance_private(self); return private->parameters.width; } int libinsane_scan_parameters_get_height(LibinsaneScanParameters *self) { LibinsaneScanParametersPrivate *private; private = libinsane_scan_parameters_get_instance_private(self); return private->parameters.height; } gsize libinsane_scan_parameters_get_image_size(LibinsaneScanParameters *self) { LibinsaneScanParametersPrivate *private; private = libinsane_scan_parameters_get_instance_private(self); return private->parameters.image_size; } libinsane-1.0.10/subprojects/libinsane-gobject/src/scan_session.c000066400000000000000000000116661437772407700251350ustar00rootroot00000000000000#include #include #include #include #include #include #include #include struct _LibinsaneScanSessionPrivate { GObject *parent_ref; struct lis_scan_session *session; int finished; }; G_DEFINE_TYPE_WITH_PRIVATE(LibinsaneScanSession, libinsane_scan_session, G_TYPE_OBJECT) static void libinsane_scan_session_dispose(GObject *self) { LibinsaneScanSession *session = LIBINSANE_SCAN_SESSION(self); lis_log_debug("[gobject] Disposing"); libinsane_scan_session_cancel(session); } static void libinsane_scan_session_finalize(GObject *self) { lis_log_debug("[gobject] Finalizing"); LIS_UNUSED(self); } static void libinsane_scan_session_class_init(LibinsaneScanSessionClass *cls) { GObjectClass *go_cls; go_cls = G_OBJECT_CLASS(cls); go_cls->dispose = libinsane_scan_session_dispose; go_cls->finalize = libinsane_scan_session_finalize; } static void libinsane_scan_session_init(LibinsaneScanSession *self) { LIS_UNUSED(self); lis_log_debug("[gobject] Initializing"); } LibinsaneScanSession *libinsane_scan_session_new_from_libinsane( GObject *parent_ref, struct lis_scan_session *scan_session ) { LibinsaneScanSession *session; LibinsaneScanSessionPrivate *private; g_object_ref(parent_ref); lis_log_debug("[gobject] enter"); session = g_object_new(LIBINSANE_SCAN_SESSION_TYPE, NULL); private = libinsane_scan_session_get_instance_private(session); private->session = scan_session; private->finished = 0; private->parent_ref = parent_ref; lis_log_debug("[gobject] leave"); return session; } /** * libinsane_scan_session_get_scan_parameters: * Returns: (transfer full): item scan parameters. */ LibinsaneScanParameters *libinsane_scan_session_get_scan_parameters( LibinsaneScanSession *self, GError **error ) { LibinsaneScanSessionPrivate *private = libinsane_scan_session_get_instance_private(self); struct lis_scan_parameters lis_params; enum lis_error err; LibinsaneScanParameters *params; lis_log_debug("enter"); err = private->session->get_scan_parameters(private->session, &lis_params); if (LIS_IS_ERROR(err)) { SET_LIBINSANE_GOBJECT_ERROR(error, err, "Libinsane scan_session->get_scan_parameters() error: 0x%X, %s", err, lis_strerror(err)); lis_log_debug("error"); return NULL; } params = libinsane_scan_parameters_new_from_libinsane(&lis_params); lis_log_debug("leave"); return params; } gboolean libinsane_scan_session_end_of_feed(LibinsaneScanSession *self) { LibinsaneScanSessionPrivate *private = libinsane_scan_session_get_instance_private(self); return private->session->end_of_feed(private->session) > 0; } gboolean libinsane_scan_session_end_of_page(LibinsaneScanSession *self) { LibinsaneScanSessionPrivate *private = libinsane_scan_session_get_instance_private(self); return private->session->end_of_page(private->session) > 0; } /** * libinsane_scan_session_read: * @self: Scan session * @buffer: (array length=lng) (element-type guint8): buffer to read data * @lng: length of buffer * @error: location to store the error if any occurs * * You must call libinsane_scan_session_end_of_feed() and libinsane_scan_session_end_of_page() * after each call to this function before calling it again. * * Returns: Number of bytes read, or -1 on error */ gssize libinsane_scan_session_read(LibinsaneScanSession *self, void *buffer, gsize lng, GError **error) { LibinsaneScanSessionPrivate *private = libinsane_scan_session_get_instance_private(self); size_t buf_length = lng; enum lis_error err; lis_log_debug("enter"); err = private->session->scan_read(private->session, buffer, &buf_length); if (LIS_IS_ERROR(err)) { SET_LIBINSANE_GOBJECT_ERROR(error, err, "Libinsane scan_session->read() error: 0x%X, %s", err, lis_strerror(err)); lis_log_debug("error"); return -1; } lis_log_debug("leave: %lu bytes", (long unsigned)buf_length); return buf_length; } /** * libinsane_scan_session_read_bytes: * @self: scan session * @lng: number of bytes wanted * @error: set if an error occurs * * Returns: (transfer full): a new #GBytes, or %NULL if an error occured */ GBytes *libinsane_scan_session_read_bytes(LibinsaneScanSession *self, gsize lng, GError **error) { guchar *buf; gssize nread; buf = g_malloc(lng); nread = libinsane_scan_session_read(self, buf, lng, error); if (nread < 0) { g_free(buf); return NULL; } else if (nread == 0) { g_free(buf); return g_bytes_new_static("", 0); } else { return g_bytes_new_take(buf, nread); } } void libinsane_scan_session_cancel(LibinsaneScanSession *self) { LibinsaneScanSessionPrivate *private = libinsane_scan_session_get_instance_private(self); if (private->finished) { return; } private->session->cancel(private->session); private->finished = 1; g_clear_object(&private->parent_ref); } libinsane-1.0.10/subprojects/libinsane-gobject/tests/000077500000000000000000000000001437772407700226435ustar00rootroot00000000000000libinsane-1.0.10/subprojects/libinsane-gobject/tests/test_hw.py000077500000000000000000000133751437772407700247060ustar00rootroot00000000000000#!/usr/bin/env python3 # source ./activate_test_env.sh # subprojects/libinsane-gobject/examples/test_hw.py import os import re import sys import PIL.Image import gi gi.require_version('Libinsane', '1.0') from gi.repository import GObject # noqa: E402 from gi.repository import Libinsane # noqa: E402 class Logger(GObject.GObject, Libinsane.Logger): def do_log(self, lvl, msg): if lvl < Libinsane.LogLevel.WARNING: return print("{}: {}".format(lvl.value_nick, msg)) def get_devices(api): print("Looking for scan devices ...") dev_descs = api.list_devices(Libinsane.DeviceLocations.ANY) print("Found {} devices".format(len(dev_descs))) for dev in dev_descs: print("[{}] : [{}]".format(dev.get_dev_id(), dev.to_string())) devs = [] for dev in dev_descs: print("") dev_id = dev.get_dev_id() devs.append(dev_id) return devs def get_source(dev, source_name): print("Looking for scan sources ...") sources = dev.get_children() print("Found {} scan sources:".format(len(sources))) for src in sources: print("- {}".format(src.get_name())) for src in sources: if src.get_name().lower() == source_name.lower(): print("Will use scan source {}".format(src.get_name())) return src for src in sources: if src.get_name().lower().startswith(source_name.lower()): print("Will use scan source {}".format(src.get_name())) return src raise Exception("Source '{}' not found".format(source_name)) def list_opts(item): opts = item.get_options() print("Options:") for opt in opts: try: print("- {}={} ({})".format( opt.get_name(), opt.get_value(), opt.get_constraint() )) except Exception as exc: print("Failed to read option {}: {}".format( opt.get_name(), str(exc) )) def set_opt(item, opt_name, opt_values): print("Setting {} to {}".format(opt_name, opt_values)) opts = item.get_options() opts = {opt.get_name(): opt for opt in opts} if opt_name not in opts: raise Exception("Option '{}' not found".format(opt_name)) print("- Old {}: {}".format(opt_name, opts[opt_name].get_value())) print("- Allowed values: {}".format(opts[opt_name].get_constraint())) for opt_value in opt_values: if opt_value not in opts[opt_name].get_constraint(): continue opts[opt_name].set_value(opt_value) opts = item.get_options() opts = {opt.get_name(): opt for opt in opts} print("- New {}: {}".format(opt_name, opts[opt_name].get_value())) return raise Exception( "Failed to set option {}: No value match constraint".format(opt_name) ) def raw_to_img(params, img_bytes): fmt = params.get_format() assert(fmt == Libinsane.ImgFormat.RAW_RGB_24) (w, h) = ( params.get_width(), int(len(img_bytes) / 3 / params.get_width()) ) mode = "RGB" print("Mode: {} : Size: {}x{}".format(mode, w, h)) return PIL.Image.frombuffer(mode, (w, h), img_bytes, "raw", mode, 0, 1) def scan(source, output_file): session = source.scan_start() scan_params = session.get_scan_parameters() print("Expected scan parameters: {} ; {}x{} = {} bytes".format( scan_params.get_format(), scan_params.get_width(), scan_params.get_height(), scan_params.get_image_size())) try: page_nb = 0 assert(not session.end_of_feed()) img = [] print("Scanning page --> {} ...".format(output_file)) while not session.end_of_page(): data = session.read_bytes(32 * 1024) data = data.get_data() img.append(data) img = b"".join(img) img = raw_to_img(scan_params, img) print("Saving page as {} ...".format(output_file)) img.save(output_file) print("Page scanned".format(page_nb)) assert(session.end_of_page()) # TODO(Jflesch): HP ScanJet 4300C # assert(session.end_of_feed()) finally: session.cancel() def clean_filename(filename): return re.sub("[^0-9a-zA-Z.]", "_", filename) def main(): Libinsane.register_logger(Logger()) if len(sys.argv) <= 1 or (sys.argv[1] == "-h" or sys.argv[1] == "--help"): print("Syntax: {} ".format(sys.argv[0])) sys.exit(1) output_dir = sys.argv[1] print("Will write the scan result into {}/".format(output_dir)) os.mkdir(output_dir) api = Libinsane.Api.new_safebet() print("Looking for devices ...") devs = get_devices(api) if len(devs) <= 0: print("No device found") sys.exit(1) for dev_id in devs: print("Will use device {}".format(dev_id)) for t in range(0, 3): print("- Test {}".format(t)) dev = api.get_device(dev_id) try: print("Using device {}".format(dev.get_name())) output_file = clean_filename( dev.get_name() + "_" + str(t) + ".jpeg" ) output_file = os.path.join(output_dir, output_file) print("Looking for source flatbed ...") src = get_source(dev, "flatbed") list_opts(src) # set the options set_opt(src, 'resolution', [150, 200, 300]) if t == 2: set_opt(src, 'mode', ['LineArt']) else: set_opt(src, 'mode', ['Color']) print("Scanning ...") scan(src, output_file) print("Scan done") finally: dev.close() print("All scan done") if __name__ == "__main__": main() libinsane-1.0.10/subprojects/libinsane/000077500000000000000000000000001437772407700200665ustar00rootroot00000000000000libinsane-1.0.10/subprojects/libinsane/bmp/000077500000000000000000000000001437772407700206445ustar00rootroot00000000000000libinsane-1.0.10/subprojects/libinsane/bmp/bmp_parser.c000066400000000000000000000257531437772407700231560ustar00rootroot00000000000000#include #include #include #include #include #include #include #include "../src/bmp.h" #include "../src/endianess.h" #define ANSI_RED "\033[38;91m" #define ANSI_YELLOW "\033[38;93m" #define ANSI_GREEN "\033[38;92m" #define ANSI_RST "\033[0m" union bmp { struct bmp_header *header; unsigned char *whole; }; static int print_hex(int offset, void *_data, size_t nb_bytes) { unsigned char *data = _data; size_t i; if (offset >= 0) { printf("0x%08X | ", offset); } else { printf(" | "); } for (i = 0 ; i < nb_bytes ; i++) { printf("%02X ", data[i]); } if (nb_bytes <= 4) { for ( ; i < 4 ; i++) { printf(" "); } printf(" | "); } else { printf("\n"); } return offset + nb_bytes; } static void *load_file(const char *filepath, unsigned int *file_size) { struct stat st; FILE *fp; void *content; ssize_t r = 0, total = 0; if (stat(filepath, &st) < 0) { perror("stat()"); return NULL; } *file_size = st.st_size; fp = fopen(filepath, "rb"); if (fp == NULL) { perror("fopen()"); return NULL; } content = malloc(st.st_size); if (content == NULL) { perror("malloc()"); fclose(fp); return NULL; } while (total < st.st_size) { r = fread(content + total, sizeof(char), st.st_size - total, fp); if (r <= 0) { perror("fread()"); fclose(fp); free(content); return NULL; } total += r; } fclose(fp); return content; } static int dump_bmp_header(union bmp bmp, unsigned int file_size) { int offset = 0; uint32_t expected_pixels = 0; uint32_t expected_pixels2 = 0; uint16_t bits_per_pixel = 0; offset = print_hex(offset, &bmp.header->magic, sizeof(bmp.header->magic)); if (le16toh(bmp.header->magic) == 0x4D42) { printf("%sValid magic%s\n", ANSI_GREEN, ANSI_RST); } else { printf("%sINVALID MAGIC%s\n", ANSI_RED, ANSI_RST); } offset = print_hex(offset, &bmp.header->file_size, sizeof(bmp.header->file_size)); if (le32toh(bmp.header->file_size) == file_size) { printf( "File size: %s%u%s\n", ANSI_GREEN, le32toh(bmp.header->file_size), ANSI_RST ); } else { printf( "INVALID File size: %s%u%s instead of %u\n", ANSI_RED, le32toh(bmp.header->file_size), ANSI_RST, file_size ); } offset = print_hex(offset, &bmp.header->unused, sizeof(bmp.header->unused)); if (bmp.header->unused == 0x0) { printf("Unused\n"); } else { printf("%sINVALID Unused (!= 0)%s\n", ANSI_YELLOW, ANSI_RST); } offset = print_hex(offset, &bmp.header->offset_to_data, sizeof(bmp.header->offset_to_data)); if (le32toh(bmp.header->offset_to_data) < file_size && le32toh(bmp.header->offset_to_data) >= BMP_HEADER_SIZE) { printf( "Offset to data: 0x%X (%d B)\n", le32toh(bmp.header->offset_to_data), le32toh(bmp.header->offset_to_data) ); } else { printf( "INVALID Offset to data: %s0x%X%s (%d B)\n", ANSI_RED, le32toh(bmp.header->offset_to_data), ANSI_RST, le32toh(bmp.header->offset_to_data) ); } expected_pixels = file_size - le32toh(bmp.header->offset_to_data); print_hex(-1, NULL, 0); printf( "Pixel data size based on file size and offset_to_data:" " %u B (%u KB)\n", expected_pixels, expected_pixels / 1024 ); offset = print_hex(offset, &bmp.header->remaining_header, sizeof(bmp.header->remaining_header)); if (le32toh(bmp.header->remaining_header) == BMP_DIB_HEADER_SIZE) { printf( "Remaining header: %s%u%s\n", ANSI_GREEN, le32toh(bmp.header->remaining_header), ANSI_RST ); } else { printf( "INVALID Remaining header: %s%u%s\n", ANSI_RED, le32toh(bmp.header->remaining_header), ANSI_RST ); } offset = print_hex(offset, &bmp.header->width, sizeof(bmp.header->width)); printf("Width: %u px\n", le32toh(bmp.header->width)); offset = print_hex(offset, &bmp.header->height, sizeof(bmp.header->height)); printf("Height: %u px\n", le32toh(bmp.header->height)); offset = print_hex(offset, &bmp.header->nb_color_planes, sizeof(bmp.header->nb_color_planes)); printf("Number of color planes: %u\n", le16toh(bmp.header->nb_color_planes)); offset = print_hex(offset, &bmp.header->nb_bits_per_pixel, sizeof(bmp.header->nb_bits_per_pixel)); bits_per_pixel = le16toh(bmp.header->nb_bits_per_pixel); printf("Number of bits per pixel: %u\n", bits_per_pixel); offset = print_hex(offset, &bmp.header->compression, sizeof(bmp.header->compression)); if (le32toh(bmp.header->compression) == 0) { printf("Compression: %snone%s\n", ANSI_GREEN, ANSI_RST); } else { printf( "UNEXPECTED Compression: %s0x%X%s\n", ANSI_RED, le32toh(bmp.header->compression), ANSI_RST ); } // compute expected line lengths expected_pixels2 = le32toh(bmp.header->width) * bits_per_pixel / 8; if (bits_per_pixel % 8 != 0) { expected_pixels2 += 1; } if (expected_pixels2 % 4 != 0) { expected_pixels2 += (4 - (expected_pixels2 % 4)); } print_hex(-1, NULL, 0); printf( "Expected line length: %u px * %u bits => %u B (%u KB)\n", le32toh(bmp.header->width), bits_per_pixel, expected_pixels2, expected_pixels2 / 1024 ); // computer expected pixel data size print_hex(-1, NULL, 0); printf( "Pixel data size based on image size:" " %u B * %u lines => %u B (%u KB)\n", expected_pixels2, le32toh(bmp.header->height), expected_pixels2 * le32toh(bmp.header->height), expected_pixels2 * le32toh(bmp.header->height) / 1024 ); expected_pixels2 *= le32toh(bmp.header->height); print_hex(-1, NULL, 0); if (expected_pixels == expected_pixels2) { printf( "offset_to_data and image size do %smatch%s (pixels = %s%d%s B)\n", ANSI_GREEN, ANSI_RST, ANSI_GREEN, expected_pixels, ANSI_RST ); } else { printf( "%sMISMATCH%s between" " offset_to_data (%s%d%s B)" " and image size (%s%d%s B) !\n", ANSI_RED, ANSI_RST, ANSI_RED, expected_pixels, ANSI_RST, ANSI_RED, expected_pixels2, ANSI_RST ); } offset = print_hex(offset, &bmp.header->pixel_data_size, sizeof(bmp.header->pixel_data_size)); if (le32toh(bmp.header->pixel_data_size) == 0) { printf( "Pixel data size: %s%u%s B (%u KB)\n", ANSI_YELLOW, le32toh(bmp.header->pixel_data_size), ANSI_RST, le32toh(bmp.header->pixel_data_size) / 1024 ); } else if (le32toh(bmp.header->pixel_data_size) == expected_pixels) { printf( "Pixel data size: %s%u%s B (%u KB)\n", ANSI_GREEN, le32toh(bmp.header->pixel_data_size), ANSI_RST, le32toh(bmp.header->pixel_data_size) / 1024 ); } else { printf( "Pixel data size: %s%u%s B (%u KB) != %s%u%s B (%u KB)\n", ANSI_RED, le32toh(bmp.header->pixel_data_size), ANSI_RST, le32toh(bmp.header->pixel_data_size) / 1024, ANSI_RED, expected_pixels, ANSI_RST, expected_pixels / 1024 ); } offset = print_hex( offset, &bmp.header->horizontal_resolution, sizeof(bmp.header->horizontal_resolution) ); printf( "Horizontal resolution: %u pixels per meter\n", le32toh(bmp.header->horizontal_resolution) ); offset = print_hex( offset, &bmp.header->vertical_resolution, sizeof(bmp.header->vertical_resolution) ); printf( "Vertical resolution: %u pixels per meter\n", le32toh(bmp.header->vertical_resolution) ); offset = print_hex(offset, &bmp.header->nb_colors_in_palette, sizeof(bmp.header->nb_colors_in_palette)); printf("Number of colors in palette: %u\n", le32toh(bmp.header->nb_colors_in_palette)); if (bits_per_pixel <= 8 && bmp.header->nb_colors_in_palette == 0) { print_hex(-1, NULL, 0); printf( "Number of bits per pixel <= 8 (%d) but color palette is %sMISSING%s\n", bits_per_pixel, ANSI_RED, ANSI_RST ); } expected_pixels = le32toh(bmp.header->nb_colors_in_palette) * 4; expected_pixels2 = le32toh(bmp.header->offset_to_data) - BMP_HEADER_SIZE; print_hex(-1, NULL, 0); if (expected_pixels == expected_pixels2) { printf( "Expected palette size (%s%u%s B)" " and the space left for the palette (%s%u%s B) do %smatch%s\n", ANSI_GREEN, expected_pixels, ANSI_RST, ANSI_GREEN, expected_pixels2, ANSI_RST, ANSI_GREEN, ANSI_RST ); } else { printf( "%sMISMATCH%s between" " the expected palette size (%s%u%s B)" " and the space left for the palette (%s%u%s B)\n", ANSI_RED, ANSI_RST, ANSI_RED, expected_pixels, ANSI_RST, ANSI_RED, expected_pixels2, ANSI_RST ); } offset = print_hex(offset, &bmp.header->important_colors, sizeof(bmp.header->important_colors)); printf("Important colors: %u\n", le32toh(bmp.header->important_colors)); return offset; } int main(int argc, char **argv) { union bmp bmp; unsigned int file_size; int offset; int remaining; if (argc != 2 || strcasecmp(argv[1], "-h") == 0 || strcasecmp(argv[1], "--help") == 0) { printf("Usage:\n"); printf("\t%s \n", argv[0]); return EXIT_FAILURE; } bmp.whole = load_file(argv[1], &file_size); if (bmp.whole == NULL) { printf("Failed to load file\n"); return EXIT_FAILURE; } printf("------------ HEADER:\n"); offset = dump_bmp_header(bmp, file_size); remaining = le32toh(bmp.header->offset_to_data) - offset; printf( "------------ REMAINING HEADER: %u - %u = %u B (%u KB)\n", le32toh(bmp.header->offset_to_data), offset, remaining, remaining / 1024 ); while (remaining > 0) { offset = print_hex(offset, bmp.whole + offset, MIN(remaining, 16)); remaining -= MIN(remaining, 16); } printf( "------------ PIXELS: %u B (%u KB)\n", file_size - offset, (file_size - offset) / 1024 ); free(bmp.whole); return EXIT_SUCCESS; } libinsane-1.0.10/subprojects/libinsane/bmp/example_grayscale.bmp000066400000000000000000010020701437772407700250310ustar00rootroot00000000000000BM86(    !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz{{{|||}}}~~~21;8:678=9479:OjvimxQ^]F<;H71.1/.:AG?*,:I24KIAT=DCKI=GJGTD<:=Jd_G[=9:ME.8==Konm7/5QNLFJBrr[=5@y[T3+686/57GDORDBH5.9:8Kp^42A\bKStYCBQXWWXZc``bekjqorssuvu|{~z|}|ətkmd^]X]\\Z]a^bcjgjifwz~|{}zxnhbZ]]\WUPMPLIOIRVY[[]Z[ZUWTSVZa_gou|~y~~yyuoe_TMC??>=89333969<@HJMT^^dkiklp12:8:678=84799Ojwimw~Q]]F<:I81/0/.:AG?*-9J24JIAU=DBKI=HJGTC<:=Jd_HZ>9:ME.8>=Knom7/5QNKFIBrr[>5Ay\T3+596/56GDOSDAH5.:99Kp^42A\cKRuZCCPXWWXZd_`bekkpoqsstuu}z~z|||~ɚukme^]X]\\Z\a_bcjhihfw{~|{}zxnhbZ^]\XUQLPLIOIRWY[[]Z\[UWTRV[a_gou{~y~}zxuod^UMB@?=>88324869<@GKMT_^ckikmo2176:586?94:;ARmÿioyxNWZD5:8955656:6:<@IIQU^cgjgh43678788>;<8:EVtemqud`WP8417M?=F:FAMPC[HMO94::@TG7MD7FA66FB?Qsrr2/K[KKLewc@/2<6<5:897:<>ABINSZ_gied9:45::7;40;I=C@OSJXING65;@DP@6>N?GA58:ABMknu01T[KImoE2,5>Obyb8788DH=N]YBB?A079MLReP@Q[y]6.2349EHMSSVW_bdemslorszwxxv~{z~~||~~ѯjKLPVVX]\]Zbc``fgiipqustpvxy~}|uyxvtxzzy~~~zvrjge_ae\``c\XSUNTNNVVXWSUTVPOV[Ycmnsu}z{yslkf^VRQF?=8;>79:8::>;=DGPV[_ab^55<8;:7<=<>FFAHOQa^^b45;:8:99<><;>Hg}~hnwq]C?9:32CNEIHP851DhJ<933_fNL>264<;Yrpx5>WLO[lB20703Tdvd43AO=18NZHGP^V35HO?UsxTaj{tQ6,-,-.469>FHOUWad^hhoojlrrzurw|zy|y}y{}ĈPPQHWWYX[jceeadhghourvwwtvuyw{y~{uxvvvptswuswz{{ysokc``a``dggcZ\UTXTYWXQWVMQPIOPRSYbgouy{}}wztshifcXXRSDA>:86479:;=9G@CLQUV^`66989=7:>C<>>Je~zgsuzvWJ=<534=C65;A633A6PC>?<==<;DA?CAF045Sl?/700S~PB914264Srmy=DVLeS41.017QbqL/>LA0/?QWDIjl>-8]JHVug@]ol`1*.)),.347=?EJOUW^^fjosmptsvrrwz{{}y{{x}~~һ}GJLRRZ\kigebjg_dloitxrwyyxwxzv|yvvtvswqsposssttwx|~~{yuomgb`^bbaggca_U[[TQTTUNNQR[LMLTWV[ekovyzzzzureij^]USMI?A:=98<:AKJMTZ67;;=669;>>A@Igyõrits~~rlQH@:6/7@O;0=68.4:1BD99;?8AABE>CM<168X].-433R~VH706741Hpg}CEJRqN21//3A^ic3>L<.-0NPGHhzW21>X?T_oQP]ZJV604+.0/117==BEMNW^^ballopqqsvuxy{{}y||wz~~~ѭfEKQUS[b`_ccdghdjiloqwvvuzvvyywzxztuvuuvpumnropqryy|{zxsrmjedcb^aa`cbd[``ZQQQRLKMNNMXNJNRT[fqprvzxzytqkhlcY\VKOAB>=>7:BDB;;978B@IQ]55@629643352;5:@@:?=:<>ICA78C;>=B>>=9=A?>=BLU88:<::8;GACDAI^uŻiexs}vgSL>;AB<787502=94.:3397;EC>68<@@>A@61BUf=>FQSZ`dliooutxvyy}wvwyyz{{…NFRVSZUUahhelkjogjkoqorxuvxz|stuutsttwuqqrsmjkmifjkrtzvwrlhed\YXW]cbb`dabWYRRHEKILKLLMI_JOWUafmruxxxysqnljca[XSMEF@@;=>:?A8;<:<:=HH88<>=>9@D??GEIds{hhpv]HC8:>A;3>=52:@=42435=8:BE99<=8<@E?84LbT7025:0@Vyk?D.7621=dgsE7S~~c>:6./OoatsHM@*+*5FSK{V1+/:UQ\gtgC54-?8.28008.88358;;=;CFSW[`ciilrqsvxy{xwwx{z{}лwJGOWRV`^^eijijilomlmqp|txwutyyuswwvrxtrsrnpniigfefgnqsssmmhb__]WXV^]\bebc^[XUPOIFEMKOJGRGKPPXdinpvptrusohb`V\WUIHAB?D==<==9=><89>=EC>@CBEIKTeqthclwvRJ@4DJB?89/54::28641><6?D;:::::BF=6:Y^<5145-/CJka84--100@^lmC;f~wO51036EecsQH/&&(>UY_}d8,0@KbeomiSNEB9I3024.353147749=>:=@IMSY`adifpsvvyyxu{xy{{|~~ͫcIIMSUYY_cbchhijkonopnntsxvvrs{ytwrttxprrnimjjgihddgemlrromndc^ZXQQTVY__^de^UQNQKJLIOLMMMKFMQT[bgnurqyruuojffc\YUMEH>@JE541.7;12:429<8=E@<8>>??@78BaP673/214@Fb_<3/41-7Eblg?Ks~xe:*.--6ajbjG2+%'0A`UqrH+3DIcnhruoeTLFIH/.+.2.:401047@69:>ABFLVW[[ahfoutttssvuuzy|~˙YJMSTZ\]]bcdgghplnjjlrnspqrutxy{yusuvsswpnkhmjiifdcdahknkljfdc[ZURUVWXY_bdeaXRWSTNJJNOQIRMKOGQW[biprptxwwsjjmk_]TOIK@@>@=E=>:;9=9;66==>;>=@BKOQQRWjryqgdmq~`HAJJ<86<4=-5835=-/477=G=;>J77?;:')&-?NJTq^38FDGnelv}cKRfP[E7-.,1/M:,.-.3546;=>ABJMUYZ__^ijpqpqtyvyy|}{~}~ĊUMLPZY][^db_dfflnlqmjllnnosqysvwstprsorvrplikih`_a_]_cfiihfjb]Z^WSPWVTWZ^cjjc_^XSVNPQMTOPDMIHHU\bgwsnsxu|sljhhd_]UJKFBBBA@99=9976><;7CENSUWTbquwddmt|kFBPG86<6302<;98;12566TM=au_wx_;Alm_U9941123410/-+0/-34;??FKMQTY[\]adiihmqtxwzxz|z{~}}~Ӻ{QPNUXSV\]aacdgljlhqmlojhnkrqurtsrvqruuyrpknhijhc`a^]][cccageb_ZY[SSRTTTYZ`egfebeVRZQPVONMEGEDCQU]fhklrtuwyoohffcaTTIMIEA>>ABEA?<<;>655<;;@EJPQWUXbr{vmbbjw~pE>HQ4048073;IG5431;69AFE>;?;=BA7KsO2-47176??HKY\=8-12:JWd`hxkua8.3,1N^Ig~i6+&-5QTAZyZ5ON6Hvv^vsA9^rgmK7<3117;<>B<;501/0.324=BEGOMSZU]\]ahddksvuvx|~|}}~}ϫiLTRRU]Z\c``aedmliqonnkdijkmjvpsstxqzrrspplqqppjgc\YZ[\_][^dcaZ_\[TMOLSRSZ^`gmjba\Y`TRKRNOJBGEALR\ckhqmjqswqmlfjd_\UPMMECBA?B@BD;:9B<779>A?GSYSWYYgpyws_dmt{pEBNM4,2;03.373892463==@A@8B45E;6RgB/2<;488EFJ?]hE9.258[]flqibgL:2.)4YCSmyK(,'2@P:Lnc0/1636103212-/3/2/056:9@DFINWZ\ac^^einpqzwx|~|~~}̚\JWTXW_^Zbbagdhklgmkmoihhifcqnqtxqqqomrsqoqrtwrnid_[WWZXVXWY_]ZZUZZUSJPLRXZ_ecgjo]dTSMQKKGJDGCEDPT^ijimlnouxqsnijg\YPLIIECBC>@DB:;:85239:@EWR\Z\\^lwwh\blt}kCDQM;1.724225/55;4<45;C?A59=9<;7Pf703994685BA:XlK;3/9<[_gpraidL932.9E3_m^3,1*/M:CuBLM=?JS|juv`xl_L96J//00103003658>33371/..00><>FOPRX\\^cbhjintuxz}|}}„OPTTVWZa`bfedejgjimpkgfbbfdgkmkssprmokkpnrt|~ypg[YXTRUUTRYWXZ]\TWTVPEMMVYbdmfgige_[SQMHGFK@CBGISVcgemnquqppplcce`YTLLJ?FEC=@AC=<<7422B854;fdC,D)1B<9rO8U:7?R\ullgyc@>-2F;,*2441.-8958338556403201/00:>AHJQWU]dd`hqsvz|~ѸpLRUZW\\]cabbcgmkmfjjkiieeegbihhkmppomglihryi]WUSLONPRQRTYVXURROLKRRRVa`fkjnnd][YLOJJIJFBDFLR`ggqjoqsvtnpgcbg[ULJGFFBADEFEG>?7644633BJQY^Xb]`afp|hYY`ft|_Vc^_Z9/12/02947=5<>503JG@:638644MQ:/2659239LU?=}_A0.;EUPifOg]B5/47219[cS.,0?B8ED3K29?><72010//15:JST]degkppqvxz{~~˛YQV[[[]`ccdfdkkjkheeidjhcfb`]dfcggmjggd`_n~cXWU]W]SQIJOPRQRQPRNNKPP]^`gjroija\\ORQRRKKEEBMQYadhhlvonnmhffba_XREEAAGNLFCEE@@=66FTV]egcedcdr|vf[YcluxTVmgiZ910/14;56?967;:/8?H;=105587MIH9335780>TUD@y^?43:847.,35=AOZ[chkhmsux}}|ԾVQTV[caeedfblfhifdddggafeac]^a_cbbge_`]_cp¸e[UMSVPKKJEJNMKOPPMNINPTY_ckqmnqg``TROQOJEDEALQT]aaelonnmkhgfba_XPIG=DCKIGFMHDB=<F=427561FLGE74/38439ORE?{_B51;?NTaUTYA-073:35Z]I12<745KvsA5AED;XNTDH_}INH/=ICR=//.+037531/2--54-2136=JLTU\W_^YKC@I2.40-9BLYadjinptz{{z}ѰhMRVZ`a^bhcdfcgeggfb`id`cfddWXYW\Yc\_b_]Z^s}c\TRONEFJABFNMQUQNROJMKYYbglkmohge]YYMMJEFKDJOTX]_`jpooiokfda_\[TMKC=>DMHHIJG><==QZ^dnlppqnrtth[]`jrpJbwkjeM3--06.248>7CM65YQJCWgHZI.8IVY90/--.23684./.-4.-..235@FTUZYbfied_RF876-256DLXfinmruz{z{̝[QUXb_bddfehchhmmcgaaac\bca[[ZXVZ]_Y_^[^[^yö~lZUIFFBIB?@FDMGOKNKHGPLV[^eihlifb`[bUNJJKHIIUSW[]^hmopqljdgef^[^RKJE=DHDILHMD=BCQ_\fnororq||skTT`jvnPh|tseR31039814?=62A:3464B=GRT[R>0104511EYNHRGB,6LfI585/7313:9411/-0.-+-2247?JQSUZaijqkik]WD5.*)/4@OZejjntvyy}njUWS\\``ehdljfggkidbecee^c`bYYTXVSXV[Y\XVWawsaXRNIEB?CA?NJGNQOCJJKPYXZednihgd^\URNKJFMOQOQX^^_knqqqjdfg^W\`XNTJ??DBJONHD>GGSXafoopppvvaSU^jugQuri\Q907/<90369926;26:C=:376:>921<5:C;6338730347>COBERB179:OZVW713564,+9IWkWF8588Q_34>::Ui]9=Fbr{\:FRR[kdO?448225142337110-0,.416C79AMRTSTegjmhotxxvk]A1+.,1>F;5168KQYU4/8::/*.?BW_I513:A[L1=53@ZjK69;:>=EEGNOEHHGHPV[acmihif]X[QQQMSOPOSRTZdbjppqmgea^]aWZRLGHB;DCFKJGXW_[Yacbcjlsu^KZ^jx`Znzwn[XK3223=41154626<547353696:B?41=6;9540216>>AE<9;43FIQS:47:52,4D>TK;134=@FJJOKFIFLLYYbacghgfa^_XUOIROOPTVTW[`hgkorjga^\^VTSNPGH@AAIJJHWX[^\Z[baejoxu]KVdkwflft{sZWR9:26<4136448553360735899C?8548355141675=:6@CGC30455-.:=BG>-26=BIK2976AET=>DJS?=HoLfvtv@74177868713::01.610/,*.078:6=BMNPX^\almtu~}yzxztbI7,-,5::;:<@GKOIPHFJKQRV[_cjjl`dfUTNMORSTPOTSX[chknpqgefd\VUSTSKH?ABCAFCVV[Z[X[\bacjwpYITdivilcpzs[VTB5117864334679:243532;:7DB58661323>764;@DM?8C;6@?><22437/29CB:6,5@J=IC>>:=CDC;AHO@FKa|r{\_rWLC858:53211/4313561-,,-/25:77:BIORVYYoopw|wxwzyxlI6.--5BQZks~ΟcOT[_`fjfmklnmolkhcc\d\`ZWRSTRNKDIA:94287=>KnżĶy^IC@==9>?BJJNSRJIHKPNW[bjjkic^ZUPKPMMRNNRVX_ccejpnqha_^UUUVWSNBB@>?GFZZ[`^][\da\guxnVNXciwtqbnzzb\Z>31./:27@8678532775686637967668666EB<34@IP>AI?@CD1134001/5;=;2//?OH8H@;=962:9DBDFZpzbHVdz{uL728:46/4202111040./.--08779>EQRSRWblnwvwt{yz|zhS71-14NR^hx|ʼnRTW[cbiklilnlliidd`h_Y[][WYSMTLGEC?66031016Orx[NC;?=<@DIFKSWJHJIJOSVcchlmmja[SSVPROQQRRYY_afhpsseb^_ZVRTQUHGC>@@HF_`]^YWUZ[VZepv}iPHUZlzt|alx_TU6-.077.=D@E=C?5416434/38;:3-+9MI9>O?:76166/EEEm|xnYbSbpup:34:531522325410321-+001255;DNSORWYdlvwzvzxzx|}vkK740A7@TZjy}vSVW[bhimlgjkllghhg`c_WZ]XUQMRLGB@?:65/2,013Iożw]K=F?=@GENJPPQJIILIOW[deikmgb^]VVTTPPSUQXXZ]biroqngeb`XSNLQLIBB?>?G\\]ZYZSUYX[`nvvbMGO^lxsraji\M742.7885;9>BO<;5668035:89?8:338?94?FH=6=DH<;:?ED8334434-47323./:G<8ML?:14/1./?Hhr~nemea[Vlzr8049:96/32203..,22/./6564537;ISTRT]cjsvwx}xxy~{xzeM:7015@Q]p|ҬfUV_`fcfkjkjoineheca_a[[^YVNKMEBH?85641./,-0JoíŶsVFGA=B?>GJLMQSPMNJMOU]`gjjsgd]WUSNUUVSUUWRX_ejkrrfe`YZWPLQOIECC>=AMMVXTWRVQPTXetvaLHVYmyqne`pLG8<5/99:22:4HOJA72041538A?943998AA9:AF>99CK=;M:EB7655404/772/-18><29ZG:?756++6Me~}s~sdY^ucC^ti2/039=447280514/116//-1181367CMTRQ^]imuyvzxvz}{}xwhP>4205GXfu|˓[XY\`eciljilmineefaeb\WYYRRQJMD>;744420-*(,3Jtǵ¶eQPHD?;DBELNTQSUSKIPPV\`hnqoq\\TZUVSXSVWSWZ^efjnojc_WXWLLJHDD@;>42553;FC74>IAA:EA9:><>C687421./82-/3>K>7.;P=55575-5Qa{~nOPbnwlfQ3.+/9=<2./4133.014140--1/7247;COONU[einqxywu{y{yz|tfG8302;QafxȀWW[^afijhkoighgadd[a^[[WVOTLEAB?67728-,,4.,2GrǺɿ}b[QM@BBGBMMQTVSTOMIKOY^bmonjb^\ZVRVVVWYSUX\ceinmofb_\VNIFCJ?<;;<;?B;6;C:4//1+-.5CI>01:=84331-=Zcd~{mpJW^]uqwlTC0,.;9<<72//6145330./.5/-.21588@KPLR[`eoquywxzyzy}{p]B4026DPbmv¿ԴgUY^_ddjkfiehhggf``\[YWUUTLNHAC=9:855-/+,-.5;EfĽzdUMFCADAILQQWWWVKHJNV\]gfpmkfc][XYUUSZRS_[aajjgffd\]XSHA@F><>::?7768=<@A<@=Mj~kQCCM^hzd[\y`HA@?8--9804244<228B:=9?42<61>?DA652.2.6?@=?35;71/-10DZgdltbobW_L_XJ`\MK50/25;<9414357@=<;23480/,222128AHOMY]cmntt|wxxz{|z~ypVB422;GWfoѣ\SX]bbfliiggfhfc__[^[TSQNMNMDAA;7:71031-/29::::<885554;9<::OfjMCAR^i~jR[v|[IFIH6.08@7/0-152/33R^gt~ʆRUW^a`efeggia]c^]][\WTSQKIFEBA?:=545373338;?E[[o|n]SRKB@BFEMTRXVQROOS[aehfpkpie`]]ZX[XUY]^\aecihbcb`YVNL??A?;;9:23112/33107IblJC@P`g}jI_ss^TTRV<-24<;/-//43,125=NS:5=:4135IG:6059?HE?:107@11<@@<=2.38<;2,1Ghf[k{vofq_c[PNam[K4.302579<@:44203;7300/0110/13045:AJJR\]_jkqyuxxy{v{xz{xfM6.08KZajv׷kOV[[b]jdcdb`aa`^][VYZRNMLFFC;?=9<:448877=?DOTbchvĸrc^VPGC@>BJUSUXWTRTSX]`bikljid^\\ZY[YWY\^^\beffeba`\\RNB?B?<;<911,.*)+++/6FdzvJ?AMYiyuRTvzcRRY[9/+4>=5153820.136@WC?>;2023PM;9552;DE??H@CED@8=8/05;A2;8;965-+1*1740=_cXdvzmx}eMm{VfWdyoZI80+52347<9?:551227920200423/24127:>ABL[]^elsxyvvx}yzy|zypXA1.6<:;7;;@EMQ[fjqvy˿ocZTMFFADGYUV\[RPMPUPW_Zklnjfa\^^[]Z\`Z\][_efdidab]ZYQHEC?><:<...**)'**/8HdyjI=EOXnzeUn~dSZ\^=-+06?:034433/2024IJIA;4378LK=33667=FB?HE>:FD@:0/.98967><99627.,-.3MU[N]p~l]tEBLTd`Z|gC::0/;6114:<;IC94019=54332/20/04354:=CAJWXWaknuyzwz{yz|{yzmTA//5IVijsˌOLR\We^`ab_\YVZV^TRQPMNGBCHGDGCDDGCEGDFFTWX]kuyzvlcXTOHCEEMRTY[XTSTTPVUZcgilm`XZX^\]\_^Y\\abfgff`_]]YWNH@@?==B/.,,*(&(*/5Hl{kHAFL\l{vbo~aH[Z^=-+*27<61-542.33244BFHC7143AHC55577AECEIA;@;D?30/.45589884<6CS/()-Cb_JS`z{agmU26:UdYj~p`C@\B335446;=8@8941.57:61422:452281578A@EPTT[doty{{z~zxw}{zzugK72/:K`ilyxPPWYTaaY\_[VXUWQYOQJMFNLMFEIJLKOJNKRQLLTXaesv|ǺtgaVQOEFFNPUZ\_]WZTQQQU_cemn`Y_]_a^`d^Y\[]beghdY^b^[RRQE<@:;;**),++.*,.:Fkv`B;;<:<:532/06C62035343514383?@@EMWSX_iusyx|~}v{y|y{xtbD638H[cgvִdKTW]VZaUVTVURTUOUTPONPKPMLROQSSTUWQ^^Zadkko{~{ofcYVQNMNUWZ`b^[[WTPOSX_dikfddb_\`a^Z]\\g]eilh_eb`[WPHLF?8<;,,(*(*-,51;Fat\B<@MZp{rh^MN\]F..0.3@E96653542:4338BL<:62DFA806:??GADI@>888524055:78868233IqB'3Iurl^^v}evT>5=ITI8DJGJL524/15405378AIJ952AGA78998CB=EQ>:9933302-.:6/1/@4277QF1HqvkgZbqC=6:J`L25H9:@>3>IgN?WenB/427=:90-3;;6277007221.1576:CLNPSY_kwvy{{vywzx~zy}vbP74=NX^ht̎[JRVXJYaQLNKJJJMQTRURW[_X[^^_`adchkmmmnry}ʿ}vnd]^YVULQUZ\_dcbYULJRX[ecjqfb`_\`]^``Y\`aadhhc`aa^QMMB<>=@+,-,+++-25@Ufz~iND@AL[q~ojSHSTT?2,-/77>E984324335248?BFE85;ED@4565;E=CU?9655451403<30/.<=8;/<;Cd^]][UtpQ765BWJ0/;C8<864:?@,,-)+/0+05GZlwaFBEJP]r}v`TO^RKB4+.0/58>>C:3594=1342=:>GC7:GB=688<:5.4/0:976301.0=LF124@JN@9?Haw|go88=AG>//2:BMF;D50AUyi[`e^|r5.399;>825179345:7=52./.494:@GHILSVakrtswy{y|}}ygT;63006114;:62201/8OW6.6BC94:@NuyvzI5FMB1-(-4:>JZ_H40?ZtytZXR{@-2;;@B:/807;769584561.10339>CBFKMU[cmsswzwxy{~|t\I;8DU^dqѫv\VTSKRRcPQUYWXa`cdghjnnoryvwy{}Ƽxtoki`[TUTTY]bihe]XSOKPVS]cmgfcd`]cb^\\[_\bgfhd\]^VWTMEBC;0/.+')+0/8OgzoYJAEHSbrdFS_DCK7726.4356:6>74631213941=KA3BH@87>=70/6256756632-/1QX<2;;943:F`wtqe;DS?494*338Eup>64?cikdJLTwL0087;H@7.0/:<67863264232437=?@=ILRX^gnsuwxzx}|~}|yjN=:=S\alƙj\]RORXfWUZ___ecnmptswv{||{vrmkhc]W\S[[adhi_YTSKMPX]dkliffb_bac[VZZ``ejgf_^\ZZWNKHD;...0.**.-5Nf}t`KEBDQ\r_@M\D:C9200/03457377;522439?717?K8;EC<:889ALOD<329<79BF;51/../2GdP79:602:HgwtrkD:\@1?=70/+@[\868CUXFYBV}}Y-*698><50-2=C=99:22<5440325@77:AKPV[eossuzz{{{}||pWF9;O^^kwӺtjiWQTah\]^deigmmtwy{}¶yvuqolgdc_[a]`dffeeVSSTRX[]eghiffbc`b\ZVW_]`bceb^\`c]ROK=A-,0+.,,0,2Nd{t\I@AERctb=J`H?>7116071;778458455612>4138>@7?K?C;=6B@O=?42:>RN7Wlsw8*/689A64//8J<:=83789732126<8<:@GROU^kruwyyy~}~|rcL99GZacoϪun^Y[`n_gimjpsvtz}|ƹxxttnlgib_`Yabhkfd]VPROTW]`bdilgeidg``\Y__\abdb^]\^XYRLH?//,++*1007HZpnbG:AFT_tj@O\`7;;115255<@;?:87;7372585155=E<=C:958<6652:38396@FPTUZhtrstzx~}}~~zmX?7FVc^kwǕ||ubcflphoosru|~{ɿ|vsroomlh`dYa_`hghc]XZUQSV]_ehkkefaa]`ZUZ\YZ^`a_\Z_c]\ULD../-..).59Jbru]J>@FQbsgEI\[4>76106/4EPPOE;586354674426;FD@=424BJ=I=.108Lje<0137;6D[f]?D/.5?=;P^ioyfQF?1<7HUn}y=+296?@8412AC;6;94885=45576677>CIMUafmpvwz{|~~|~}r]J:=Qbcds}ӻ}jklqxpuvy{~|¸ywuupokefhda^]^dgecc[UWPOU[\giihlgfa`^\ZYV^X]]`^_]`beZUOI11.)-)(-.7Neyq]F?AIPatbCB_W;97././/1ANNY[OBB5524/10/115CI;5A7[v|oxwpX.-958@935/9C<98976:<675288727:BFPV]afmryy|}}~}ufS>6HXberx~ʧpzwotv|ǹxsqonqifcd^^^ebgeff_[VTOSVYchllojfb^_\Y\ZZ[\`ca``[af[VTK2233.-+/1:QekXD<=IScx`F?cU92;-,-.2,.==BU\\O=370/313/09?CDA>?873<58>F@<>:162:[F.8=@906MLQI9;=>>>Okd:,&*Lqi}f~oYaTH>DDe|msws|M/)36:759D9@C=94<:6799<3545:=FOYY[]irvyx|}}~yq[B6FVbcin|Ƈi{}sy±zuuurnkhjcb_Zbcdjgcb`ZSQPVW`ehonkifbcb[]ZX\Y\d]d`__a`ZSN01/-/,-,4=SjzeT<9>HTauh>:WQ;6?01,2-11378=JQaYJ>8663/1/958426?@8<:933;Dd9017<93DMTXW^erpry{|}~{x_J:AQ\ceozҿlbzz|}tsmoolloghd]_abgjeeb`]URMU[chnpkhcffd\[XYa\^a^dZ]`de^YU--,*---/8AXrziJ76@FPczw<7IH6/@8004,.//;977:S`cV?=:412317@E>>@=A:665B55>68.65EV0*2438??8.2U`GB9ELc_D-+<<6:888C860;57A33<75-20./28?3/1>ISTJC>6428/46EC>;:ACA;:6:77593;=K<.10202AF613NkU6=?^hP975[ygDGTWB[xne^C?Can}}Q:Vi9=81*--DG?F956.@K?FB:<89;>FGF?D514948BH??;AADB310595577KY:0.0027AC3+/A[Y@:SiS=>?SebRNbMCUb~cjfZJXnyU5:Vo22:80,33AHB:;A18HB>D<>47@BX^hnoսg,M{~~}}ɻzvwvtsvrjomfde_^fihkhaZTPQSY`egjkjkfdec_[Wbd\^a_d^Y]cbb..*,./235Mgtu_<348JOfzvla:=;376:F20443130<612538@JKE@508666BD@C>JHDCA>48OA6@BA?8RWIE:4864256@INSZ\dhpx{w]Q=;UYjijzӯK*G~|}z~ǿ~yxxzuspolqkid^dbcfekmb^_YRX\[fdgkjidddia^^ae`^`][\Z\]_`++)(,*/37Gd{x]I00:BNk{zlZ<<>338?C5/401061;;745638>833:35CFKE262-/..:J:1.3AVgHQ<*(@hZCJOY^cututo^s}qfmvF14?m^.10J>+2/3DKKC835MF8:CACL|iFB=7859378>HMPX\_bpu}~~{fU?8SZfihw͘2*Ez~z~}¶}{xwurssnnmke___cfgihjic\XY^\]_eejhmghgdc`\af\]`Z\`[^ab)(*),)*54NbzoWF127KOdzxjV9:6.399<92254333744822;65;B@9550=DILHC<>928;?6624>;FH:25/4/,+6?A.24:Yo`C,+0TT?BIQY__uw^d}|~tbWxztY0/2;uP.0.LK0)(+@EJA::7HEK7BLgqz_F>=?;7>5475EOKR\[eir{~{}kVF9OVchhuɀ*)=}~z{}|~Ż~{yyvvutonmleca]dijkgmlecZZ\YY\`cgimmiidfb]db_a[[X[``_b,,*,&++2;NgyoXA035APh{wc[=;C13;7890;=36456941195503;>D953-;KJHG@@5869@E76427DG9131413+:;F=<47Xnc9)*?Q409BEX\poLcmZUt}\zq=-24>wD+418W7)(,4GFD;:=PdYCKd~gVPA:9;==A91::9KJOZ[]ipz}kUK6BQXibo{ּa%'=v}~{~z~|Ǽ{zwtyxnokijga`dkfiljqkghea^ZYY[agfjjiiij`]]]b]Z]X^\X`\)()&(-/5DRjtW>126CRf|}ja@@H2198303=34494997321577879@::278NWSOHC;B<.BC99.54EB49;732,-/:C=7/VYhkjxӮN&+8y}z}~z~µ{wvtwvtmklkm_ccimnnorklhfb`]\ZY]dfhjklgg\Z^b`_WZX`^\[](((&(,.4KXnsV8/05DPhz~i;HO20/1641;334219=:4365I5<36:=8927\VUOIA<913@CK:75:EA24;?1<7426LE.3;UenD,>@,)*04DZhx{egxkNh[1',,2Rf2..018fL9@Koy|xy}qSF6@J9=>98A<67<9/624:?8257?>/784555:54QJ/9@F[cH5B9*+-/8BJp}m~rv|`YoH-,-/7]W9=ASLJxnzpegpfN[gc^@B@?546:?<96897CNOSZ]hrz~~~zdPD9LYdmjt~y+)(/c~y~vz{y~~ɽ{zuz|vmnnkeiffagjkoqoopnf_`]__\`dallihhdfd_^d`UUX]ZZX))(&'-/4G`quX<525?Mhx|wEA>488/4162523357A6347BUfK3116474@\MNZXM6-:593>D959G;13/761688BQ;-:?=RYR@D501/8>BWs{uxluajdHA7;PenXh}misrfSC=HJ4A:9:>=<98977307DUg{x{tI?33<533625544349;9645;S\\A96401==bZNXYS;1:1-08LQ7AE9/0850,468AI738.3O[WC9534;99C^sv|||nywhjVRcdkuunqA9@SQ>76;G89EBKTP:7838:HPLSW`lv{~|}~~rJB8?V_enp|СD$&),U}{~|y|z{y{ɿ{yx{umnjg`ficehefiqstqqrkc`_]\`adhkifhkkb]^`c[[[WWRS((++'-08Jjy{kX;026FUfrqdL?A;>:3/322576323830>23DKLRJ>45/5>lwQXSA44622,4GWA>?7.06120019=GC:0+/M`U=93/7?@Ccivzyz}{k^XN^z|t|YH>Xr96@L@6DBCF??EH:2120114553145:3/31;=>KXM5.17\VPR?8550444ARPE=4/2;531-389EL>.*/R_J5=89JVO[mu}v}um|lQBQ|xtUA-*-7YU8/ELC:8APC3B>DC6=C?96;CA869:99=JMKU[gs|~}yrTD;6V_[cnq~k&&()*E}~{{~}y|yyȼzsrnnngmgeeiefdgnvtvvsqkljba_^abccihlfjhgbh[a_YWSUQ((*)*,19Jgs|hK2-14@Uj{qG@=@EG965722363112:64/784845GyvUA53M_HTI42/436:>KQI;4.;<2---37=FG9/$0N\=BQD:4987C?<=79:RO>67BG98;78<8APGNU\p}~~}{zyq`C;6R[_dlt~͖5$(*',>w}{|zvzywyyƼ~tomljihccebdffjknuwwtmlicc^`_^`diijklhjgg_^bd_WSZ\)))))/0:KdwybG3.05CZp~}F664>D@A:=1--142136426590/,30?Wu{mKAjmE<7/2.0322<@IKC05><,.-/39@I=?1+?SC=GE8Ccu{mV?BMb^^t^x[`rMQ]M=/161:LNB;5CD8OFD:97AA:>;BA:59;586;LGDTYhu~{{~|}~tcK>7G[\ckr|s+)('+(--.4>YmuF0-25:>:8=EE965::@97:59@;8?@CS[kt}y}~|zyhV86AWYehqy¿є=%&&,)'8e|{}}}|{wyzpfefgaa]_]^_`bnlopoutqqke`d`[]\bdfmjgki`dj`ajig`\))),,.4>VgsW=,,17AZmJ5/,1<<189??94403135401-<74.+/,.@nwi_?+0,/.5:9:2GM;8?:/47:429A3255HG:@98ED69;69>;:98>>8?=ADPV`mwzz{}|zyjS;8<[Y_kryu/)%&+)(2Y~}|~{v}{wxzŹujddcba`_]^cbfiloqtsuvurkda]^ZY]cehiglmjgggegcgbW()+)).4@VqnT<,-/9HYn~~gJF/3>7.57@E>87:1/7321103<9-)-,31S||jXA451479B630GU<;98866A9.7<241;OK@T_EWmwshMEKFF<@Pq|{uXos[PAI~?l5%,(-MZRP8IOGD99><7BA7799=<9:79D999=FEDOYaqyuzz|}uiS748U^gkpt}ÿشY*('+.-(1P~{}z~{xyyvoca`^d`_abbbhijovxuvxuvqdb^[Y\^_bemiikeehcbgeb`^**)-*23GYpsZ>/+.9G[rrsn6-2=94119CB:95036;38902=80-..0/;azkV:--610;D:3-?UA::399;=2149584>OI8RdH^jpnbYNQTJ7K_t~ohu}{uE834;fUCgf1(.*-DWRQ8DMNN:8<>4:89:65?>;9C;:95:@6646896>BE@C>35498?@>D[[`limrw~}{sgQ=49F^\fqv|l246+.02+-@~~yy{tyvx{ic]_`a^``\^dillkssrtwurp_a[]]^[\dfjjgkfecgcgjig*)*-3:BI^rpR:,)*7I`q|xo9508=4.014207KC=49?B;1,16:?:8WW?B`hbWnqaVaYDQH@Sbkimhoj5,3+37UU/+*'*-0=YWY1@MWP77=@9;<7988=CK?B733748@B?DV]aidhilx}vhN=79Cd_bpvԩJ*///+.2(.;w}}}|zw|}zy~Żnb]`a`aa`b]ahjjkmorrvwsofaa^]^]`ackfjldedbdpgmd,+05169J^soV:.,07M^p|}I/05=<01135<@>558?9614558:9<5313=Y{`?1-*1IYKA-.6HA6.8?E;1,7?745K_R=;;?998;::7A?H@:4324586?A@P[dopgdcpvxvdL994Ea_diu}Ʌ:*.3,//2+-:n~~|}yzy{x}ɿug``[c^^ca^`ffllmlprrwsokha]_]_```jekpehb`_iejg((//18;Q^vlQ5/-08M_quuhyk4756753216<@B<37:75846825655660:Pxi;.-/4LXD9,,/B@5-6<<;9;@H>43N[AMg]94<>855?475>@Q@94318<56BB>I[fovojghmsqhK<38EX`]mw{֮V1034.-52++8d~zz~{yy|~ļ|i_`[a`^db[^bfdlikmpsturlhc^[Z[\abeeimgjd`bgdcl**,.0:>SexxS5*/.;M]ppkhl9.0167440054?@6::5834336;2<63028Nhm:--2=SN76/.0696/;;:BNUTYJ=6XN9HY`V]ofeY[ROPX[OOYrR,,2YP:8fΝ5*.++)-0NKM8:RfZ638<4118862<>OB98466<79;A?DWblwwsoiejpgLA16AVa\t{|{͉>22520/24)*6_||xy}yyy´qb\^__`bhb^bbhlgimnorurlidc\\[^]^cdhmghfd^fhff--/-5:=Qj{uX:-007F^u~lgzfor5--.57510176=G>9=662787170044432?]o5144?\N:4,+00G.1:@LZe^f]F36MC>TeTJnoijcg_MQQXQJWrz@*-=SK;>iѩ>&+('(+/KRC8GB<>@?N\doqvmmkjf`F>3?DUdcr||}ظb12279/238**6S|vyxxyz}żh\\_[_dfc]_]ciigjlnqqronie`\\[_c]cimfjgfg_fii***,29A`pxbE0-/6H`q~pmMT>0.35512.1<87BC8=632806<241/3055>JF<38758:87>==BSbdrowtrej^C956ESfek}}w}~Ζ?-608:3255216P{~}yvxxs{ıp_W[\\_cce`[^efihinpotqokf`a^WW]^bbijjikgbcje**(.6:@Yg}}ya@2-04IYtm~ɓIGA2.-1632/25@7O|عO-)-,+..AVO;BBPM;:5::526967=@LJ<87;58755<>922AQbgo{w}ٺf1225895476.)6K}{y~|y|{w~{źxdWUY]^ac_^\^`hjgimoqsttpjea\[Z]\]cghhkjeehbg,,138=Jblv^B422;IYthxP\P2+*16923/3499DR?:612436>50528777XloU:1:RGH?,3.*.46D`^I9/PZE;;HZd]SLXfdkmteXF@WgeWQo}dty\bT7,*;M`۷I+0/.(-/KT>75<:<638=A?CSajwurvxobT942/GP\hmzvvϖG<.56;985<:3*2C~}~z{{zyzx¯l\RTY[_a_^Z]^bgijknpssqokdbc\[W]^aghjihibcgd-,/4:EPdoz^G326;QdtrNv7*++3815017748YRD921179686639559Mk~nL/-7K?J4.3-+1;H^_L6-3^TF=RIBB;JH848;7442997;>LY@3><=8=461-0,+3J__E9-2=gUG=@V__L=Lm`]WOD@EJ\[l{[Ri~{lhqwQ3**,7afPٚ5+,,,,/2:SA>?6IG:96:;424:78>FQSD69=;A?34>CBCCYgsvx|zqgYA820BNTgixz}ʒB-.26=j?37m}{z|x|xɽv`ROPS[Zaca[XYbggedginrtpqkcd]\`^``fijjjlijd.-4=O\jo|{nYA3.8HUat՛ncJZa5,2-/441125;436Sd;55723D>7:75217RfyiL70?WC@2,/,.?^kT=1./=gNC=Pk_G7C\a]RQHA=VY_\q{ZRgrm}turT3+,.QPQц-+**,)-/8111536;IMG>;<<4@@676GC??TdlyzvrmV;353PMWfeo|zӰf7//76:B?77:K>./?d||}{}{ɿl[ONTUWX]bbZ[aeeccehlqsttqmd`][b^b_eggiilef119ITbrx~wjYB54:HYew،mqJOR;2.01.12./2>362EeD618=439=6423/3PaqgK30OYL<00.-1MscE6./0K_NJL[bI<>FYU\JALACjf\Xyye`lgixs~_8+.:{ERo.),-.,-.7ZAAG9DF:9;;:4807;6=>BG=;@;98915:GMA>Q]qy}ytmgR=625MRYemfwr|׾}M2147<9C<88>EE/2>b~yx{~yz~¸vcURQUTX]ecaZ_dcfcefjnswwwoke_\_``^ccikiiig88:<9621415K]kgX92OSH5./0.7QrT5-4/6Q[LSXcD5;BOMLKIFSDYoe\WusvprlspxwjD2;dY>Ve1/,/0-04<\E@D;>G;<<;<726::<;@CG?9>?98626=MLCEIYlr{zwmdO<938RWZcrovmwÿΖU<5448:CIB:<=IF41=V}|}}}|{ƻnZNJKMU_ca`]\`eab`eekkqsstsje`b``^^fhigeff??HVgpz~r`L;64><8332101B^jaa?;KJC3.4/1:`bC.,11=OabU_I53CDNGKHGJSGktaXVq}y}vsxVvQ5@ā<9dٷN/+.15--2=_E>B<=E:;88;304::8;?DOC66792405;LNCGG^gtzslaJ8957LU[bwwjjxyҮjD=421:6BGH<=BHC0/8N||~z|{|{~~ɿ|fWKJIP\`ee_Y\_adabdefknuqpmlfgd_b\bcddfghIIO\kuzylYL;35>KZfr}odDPX0-,-5443.1487344;HE:9=DB511623-48Pdd\C:B?<.,.32=jZ>1--1?PkicT40222797;DGKD;99658477614:;BIG=@CAC5.9G}{~{w{||{z}ʾq^NGGORYbeb]\\`____belpolpookfaa`^Z^ddgiiYY]ev{~tdRH<66B?C6:46<6317?:A?@TB:<<7785:=FIGGEP_lxykhT?384=SQZo{yywtop|ǍH7@8325;9GNGABJAJ7.8E{}{}~~vz{y||}||hUHCDOTaac_`[\__^`_bgnmqqpnjha_d_^b`gjhgeeimx}ndSH<49?M[gsλgPOT+.,3/33178;6387CMHIDDD76:;:=9369HSZJGC<;6-0013AL93187GPcqY947`KCD@;J8;:8:624699??DKD7;=<:;99>MIIHBOainrkaNA855BQMesyz|yxtsq|½ΠZ68B157:6=HQMCFKJO<3:Gm|yy{{yz{wvz||wwŽsZJ>BLRYccb\YZ`___]^ajpvvspmida_^Y\_edggvvrz{xl\YI;67CMVcqu]sk+,)/+,66;DIBQNI;3/=RIC@<67=DCBDB9@202453?D;34@A:?E^KLFDP[eiki^D=;:4DTSaw{x|ywz}uotyϬd=4BI687B8HS^ca_^^aba^]\]glpnt~pmgcc_YVX`acb}~vx}{obXPF?54@IYhtͅu_-+1;.36:=A??:;:FAEMHA820=X^QFA==A=ABC9:<=6833@773/2=TmO8.:=EQOLGHBDSkjXYOSZfz||[oG9;LŒVuTAi;=9:45686:=YKE???;7;==?BBHFK;9:8;8<>D[KKE@NWekli\C;864DUQ^ryw|zzz|{uip{αm?=63>OXgr~֓ou}gX362;;778;B;7;<5=CDKN<211?:865@BDGIDB>B=8,-.@`oC34FABVHED?BKdoeTVQYdl~v|xJ..1]aAmUMI6:71105206:XKF9;:>95;8<9838::?AGEG9;879=9>AB;65348040-159DQQ<*,,7GNEAECE=>8<@IT[ehnhi[I=4).4S|q;0:A?BT?B@AKbfdRU[Vano~d5),B>8^Va{=><652.6232=VR?>::A:7;8>797895@7;?SDMAFJU]bd^G>5879QXP`puwvvy}}xusvzѸN89GOYFCIBFCCMQQWNNNCL5<>W}~}wwwvvwqoosu|xsnhfn|[C4/5?JRZ_`[][YXWZWY^cihjghjb_]]_WY_fgz{}xtnd\TMIB832;LYkzپoHfJZPNB?624-41./11.448AI?//3;ITYNOB@>EFL?;<<=LF<;PXUY]qsuwuy}vrx}ҸT50:ESUF:C>F@=DMKSIEO@I36947>KZhxɝKq`nVG=;5--/12./42,1.6?DE?GT]ht}{r_JKQSX?=>AE9=Jc}fB447BKvUL>;EE:=53/50449`OGD96D;9:;:61365:D@C?A<=<:8778@G?DOEAQYZaG>>7=8FXTW\nnuwvz{}~~x|θP;4/6GXV@9@AKC@AMNWNFTEK66=J~}}y{xxwstvm{jghnruyog]Z`{ŸxX>413=@Q\_^_\]YYUVRU\caecfedc`]XTWU^a~wreif\ZPKE<86==I[kvX_mqY<211/0452+.//)*/4CYgl~{}cGGMQAFDHVE02>cyz\A<>@Jbv`I=NF?>=FWTZPFSmqu}vx|U553?~g6+3Pek77ED?:861346AaRB><8?:9>5:745:7=>=D>=@;:99659AGMWUU=<===9GXRZainuxxzz|}}~{z̵~N68217J]WD=BFLIEBNIWRFPLK8:?C~{wvuuvrpqoljfefmwyzqi\WYk^J8395:BOW_]ZYRRRWQSW\_b`egcba`XVVXZ^}yrnia`bZUROC:54:@JZjv~xn_yy[8.323112/-.-*,,0>c|zvle[YdykLAGFPFFOW4.3=]srO?>>DOs~~jMPL==NOMUREMeqqwvozxr?GF>tz<159geD8<=BBA<;9;969;BE@BGA=ORSM=:<@<:CYT]egruxvw{zxw{~~~zɯ|L43<535O\XFAIFHICDIERULKKN;:JA~}~wuyutusqlikgfa]`ro~wpcZURaƸpWBC0/1:BO[VWYWSPRQRSW\]^_ae_[ZYXUWY[xumqca^_[URKE:56:FOYjv|z|`rs432104///-./,+1:hzxqwiWF3108LlqI?JXXK?A9220>cn_ND;=EdhzUB;EPTTH?>8<9=ATR`]hkpxww{zz{~{{ǩvK23;=78=We`KBOJJQGETJSVHIHK<;IAxyzzwywvyrtnnnnpfcf\cdktx}tpcUQKXtȽmZB7133;BPTTXYVOSOSSZZ[^^a^`__WXTVZ^vtlga[WTUVRKL>;759GLYktwpwoZkA32/-10/41/122.Cfa\WrfB.&('*1CnaDJUkbE36<4,1EbX[E`MH:78=;:;8=55369>:=HE98;8937;:<:>=97=HVSYdilxyxvwxx{|}~z{¿œpC4256A?;>^b_IENOORKGTL\VOFKOF;JAs~~wywy{tpoqihelke^[XZgjjs|toiXMKSiðz]I:739=CKORTSPSSVQUUYZ]`Zc`[XWWZVYzvsj_]WSRTVQMICA8;:Qz{hlkuiLQtqtkgjd:56XbW87;?LMO<924/,1AcWC<84<@?95:3338B<9>OG7997699:9?;>>B?EKOH>E>=:7?DRR\agprpsyyw||}yʹa<2)-46CC9F]dcFELONRELPHQWOKIOD@F?p~y}zv|xrtqsmjmhf]fb]XZWa`iuyzwvpfZQNPdŻcSA76::EJLORWRNSQTVTWX[[]_]VX[ZXX|qljb\ZTQKJQSKF@@<97;EP_euvl_Wc}~]}:33100.04./730.19HQ|zG)',-,5:Ct}lPLNOquE513-.9?TyxebYWpIDF;Vv|j`dnv[Hlqkuq}z~wP;4Bd`a}><;:;98>7>987::;@<9=BHGKOHC=DA98XXeeHEMSITKIMEOVIMNSI?JErtfSKOM_nC-**,1;QqsaXh[BXxfA7SszdcaeohSX}xjojls}hyZfG:R]OU8<<;=JKVH9762/2>TS<;64::6737402:>@=;ABCBNMF>=>=:899;BHS[luzo_TIQlsqbB41,,-//-..4424CX`^mM+(*57<=Mqi_TMMDPhD-,)0;KxseTJLS_KOxs:Abk^]_X`dc`x{krlplhlp]RDVKQNJgb85;?;:EO]F;55-.3>S`@854<8853;54786:;KQU^bmqtvwx}}}~{~~¦[83/++.-.9:LMM[SkeGPM[MVMNOFVXMMJMNDR8]}}y|xwyonpljnjidfdbcab^c`^bZ]`c_hnkpngd^WRPYl¿jO82658=FEHGKJIKNQTTZXWVV\XWWW~~{wqmfZWRROMDA>;>@JT_jxxk_QKLVw^_B4/.1,/.01437@K\QKWS-)-1:7?Smd^PLLH?WR/+'7G{wt^I8>DLWHTIGZWX\i_X]_}kndrjdjtxnx^R[NDGzx6159AC@IKZK855114>T^C773;;6629728BA<;886;66565:;>?BAA;BACCD>?@678@QSV]bmswzw|}}~|¾DzfH6.,-/,,+0:8GRM\Vk^FLQZQZRPRGSXJOGRJ@Q8[}}}~|ywssxsqmkdhjgedefgbaabfcb_e\bcbdmmknld]ZXVYuĹbK;5487:=BAJGJHIMPOYYYUVYZZ[[vvrocc]TRNMBE?=:;>@EE@AA>;;CHQaqzuh[THKH^bUW50*435.-.53=NVUD5IT1-24:6>YidTAJJB=MP2),=ktp[U?>NYfunw|SAGOce[KTnriafjq`a_pz—w{_>AU5075><=HN[P<53/58DGBEFJIOXUWWVTWXX]mmbgYWNGHFB<<;867<;FIFGB>ACIQ\lw|f\MGEFNXD_;0)-+.1-,26HVOK61=A>35:6=IhnfR?@FE>@A/04M}oYYgpkqhADQ`[KYph]^apwtaOM`yU8wl?/027>>DA<9B>69879739>A:76;<;;97<=98??A@::>>7:=JLU\`hnwry~~|}}v\A75605:2.0611.79>CSZO_t\JOOXQTMMRHT`VTLFPYL=L~y~~~z~}zwytprrhimlgjllfjjgiifljqpmusrporlsqqutrqvvonlknqyýrbN=140469=CBFGLNRTZZUZT\^NNFKABEB@<>:;:92759=HIJGJIJR^hsɣmRFAS^MB9Eo6.312..19LcXO?889IJ8;;<>BjgNA>8<:4:IEJf{}pW^{qRQRTS^lSLDHeiURYbwjHJH`]RqtsvO1/396:BDGHNZRA=9133B8768=99;<:979<>CA>DNSW^]elutx|}}t^F>867758?8145-638@AF[WZdo[LYQ^QVKNQMW`WPKJVUP@L|r{zww|wzsttrpmqpjmkjikjkikmgljjmpoqpqrowryy|rvzzxvxttvqpmq~ý~gV>733076<@@BGORTY[\^RUVCDCHJEC>>;:;874.106>CGOOKIOR]mx~̭nL?FSWK75Uu;.,-.,*/Dr[A=>4=96@FSd}z|chsL/06=YVj{}lBN^cSV`_r~mPaj\N8Kge4/1214:>KFJObTA:6149<:86=7:>@=<79?BBEE>>=>8;B;89;AQVXZZbjrx{|{}ɺoVE><;89:<<:=;7588=6:=AIZX[nq_NVR\U]HSUOSa^PNRSPSDLsx|t||ytsxuqrrsrmoppmqnokmllinkmsnqvywwxuywwx{~}~|zxzxvpsq}wgO@6504547;?ADGPSYQVQOM>>BD@F<<:966865/0/7@AIMSRLOWbtҾ}N@ITD;6;kK6./2-2/A^ZUHIA9>BI8<<<=LjN6:D8:45:Nb|~y|gmpT<701:K]}ryUZfVRkhkzl\^}tX<8I|g=036665:?BFJR\UB95493BJU<8857:=3677;<<467;88368:;;97=;<>:9;;?=:65385?8?PszbjmhSP]mz{th}[K?DUp?/424373<9?GIRWVF<:072>W`85779:8;79>C<:;?K?;>68;76EKPVUZbjorvz~||´gK>;6:8;883<9?;:496/2475<7>9<B>KRH;798QN73075563Cl{szezydKOQ>65:=?;>G@9>JA==::887;LMVRTTZajntsx{hL94=7779975787=995>7088G?78?IDNZjlVTU_aT]QOURO^bMLUTFMAEjz~nksw}pgqnnmprrpstttqptttstu{y|yy}}yxxxvmtzźnWG<54////177:=FMQROM89>A;;:=54202.0342;EINSYURTZlzxoflڛMXVFD\LA9A5.6H\ZLHBDDF>EO<78=BF804:3880A?=;DG==;:;989=NINV][V\hlnprywzÿoXEA9;6985:?98:87@=A@8991/7=:7:KC@PZolTURYcT[QSUXT_cPMNUMLBFd~rgyvrjjmpllqpzxtxvxxruyyx|~{}}}yxuvlpxþucSA752632/;/46;ELIHI66;79:988511231205DFB=FJ=87=<80/406303[wpfKHSOK>;563;67789:76196;9848=<759=AAB;=9A=@AA?=79:BJHKUUY\Xahhqrut{{pbRF<7;?@76:=998<;8?93;8<=64::97<=??E@CA>DC=A@@><B<=>;:9=;;8;=ED:;B;52>5:5;K;AQ^opXU]YcSYQUOYWX[HFQMMEN@_vn|romnpstz{{zyzz}~}~{yuqqqp¾zfTC9;33/--.-19:=>=55456A965133601035:EKQ[cc]_gp|}vfZKAOsѠ_e\f8.024ASNXC:;AIAA=AHJ68698/3818037Ywa`k\LD;=\eoQ@Tgmdhl~txmG=7:69666767765::GSUIVT=77244CPB776:9459><<3779=:26;:>9>AA@DC>?>B?ADE<8==AKIS\\PJFGFLNYab^bfeelmnrtxuwxuvvxz|mcD655:7;=QK>=>?68A;86=G=EQ_pgQY^\`WVLTQTT\ZPBONVAJ;Zyr}rnroqt{~~}~~}|ztqrs}wbMD<4484.0/64679556345653732608128CEHV`b``^gv|uh]K?EMjŊ`cpt62006HRUJ@>@D>@>8;GJ?33@:216381*/_xYOR`^PC;B[qlhPMbkWh{L79222368:58;;6:97HMOJRQ=70024CY@796?756;?>:48:::59;6:98EIAJDHD?;A;MNJV\PHKCCC@DEIDIHIKLRU_`_bbeiaintyyv{k^D;89<98:<:::8<5@;9<=9DCDV^pkTXYVcUYOWMZSZ_MFJOUGN9V{}rpvwyz{xyxusqsxžubRC:42.01112250031596846213/174:=CKZbdcecnv|nbP@;;J``_Z}p76/3@=7655;7328:;<;=>CC@B?DJHEDFE9@CCPKLRQKECDCIBAEGDBICEHFJQQVU`^cbchkxyxzs_L772<6499=87:====><9;=QF;<==>9>;5:@?FHWaqlU^_RaSWITQ[R^`OIOYQCB7[~|wuv||yuuosy~iQA;53314411543<45679863227:78?DPY`dfkms}{m^UI?>GLdt}cWIWb7101DQ^iMANNA8BCS@?IGPQ?6575:CNB9<7::8?:==97:8<72775=;;=DBA=<?FTNMNLCD?A8=5=?CFDIMNOLMINUY^bcjpswt{||yhI2345>=69;=:7:6=;;;7;:ME:89<@9;68>;BCFXaqeRYYOaQ\LQW`V^\N@Q^LA@4W{~xststmZJ<9:55328754365556403259:=?IQ\acijpy}p]SJEGEHPbyoTD<=<228DJHeREXH:5;C>CEBHEGC8/.:86-2A~syYAAEFJSD<;556898<;;;9;?A?BAEC=?;?AB?C>><:AOLKKO?=;77;867:=9;@?:BTK>=8?J8<@:;68BEVcmgOZWTcR[OORaTXWPEU^KC@7R}{{wuqr~ĿweSG>9669996677534534:;6:;BOU[`eggoz|p^VHCEJIJYgzaG?86576D<:cfT_G55@?FJ=6JICD612<72//JuoN;4MRJPcZ^uW_wswknQEIU]V\OA886<6839;=9:::567>;;;>8565=98659=@@==BAE>:>@AA@H?=8@LTKOPEC>::<69>CCGUU\`gjkhpsw||~~q\5389F=77:=>9<;>:;:>6;IO@<:>E768>>><=JWdpgSYYOeMUPPS\TWZRCR`LA=5H~zwvssx¾ufVCA8846:9;966847654:=GPX^dbhkux}q`VNDGHQRY^pwQ>769=8?35Xy]cK57Z{v{g>69HJB\gUliflt~nemuox[TXM_jZB>G?8@;76665886663454=?E@EHA;633:9LD6689;58@<5378=57:8996?AF@CIC>:=EOITPC98533577;=?:<9;:8=;:ADRD96<<:7=?8>8CLRgreRRUSiNRMNQZRRZP;O[J<=5F|zzsstyte77447;:867564446CANQUb`cfgit|~pbUQJLLRT[`exj?9:9=>:18N|kaD08=KA:78996ED<;53884697??B@9@F<99@D@>=DIA?7=MHLJG97955<@GHOYZ^`dqsv{}~~rY7-27IE7986;==8769:;<@FO<9:8=>8=::?7BFRhshMPURmJPLISZSKRP?JZK:A2H|zzuqsv7667::=;52258>6;CFTV\_bbcfhr||ubULIIORTZidssY<=<:><<4N~qX63>5@<465>NNE414A90?M^bktO74CB:BQSiqqkh{pkh|t^_odMhrN:<=LJ@776699DA964:5999?HEEEC;5648;KB5889<7?A:3458858?@=>B<9??<><>J@;>ICG?:ANHOD<7678;@FISS]Zbgmqxw||y[=23:DE98;9=;96;8899;F@59:7B@NfrhKUWSmNVSKVUPORL:X[J@G4Kzxwpqyſ56556=7:564538:6=JXYZ`bbbcis{tdYPNLMTX[bdaeYMK@>HF:4Iu|R46A?@9146@YUF259@;3>PZzU_bF;7<;8IThgl{}}seaaxtzo\MJv]CWQ=AiI666;:8C=8856;:;7>EBBA@@4548=B?68;968B<9586<99:@@>?>A=@A@=@FDF<:BPMOF:;79;>CKPX^`bddpvzyz}a>/44>O;675;996659@8;BBJ<:9389C=387J\whUSVQpPQQHSYNTWK7OYC=D3Ez|xtsq}77785:<676487656;NZ]`fjhgdgo{}rbZQIHPST\ehe[\gM=;PK<5EjzQ83;>>=25.>aVD50?DSszn|wupcYNgkj{|SELQjTF:P\=64:5:;989977966@CE???>854:=?E64158=A;34659878=>>A:@@>?ADEE8?KLRLB;9;?CLPTX^acjgpsy{~pB/05:RC4216677457<96@77A?PbzjSRQNoNXRHRQQQVJ;MZF8<3D|}|yrqs}5656455769569465;GY^frmlkhfnx|scVPJIMWW\gqi^hmV=;FRAA89688D;8546:86:A;?D>@AF;:A;;FB@8=JRQE>8>ADONU\`ecejlrvxzJ1338TI3546<:8528<7@I=>>D=37;WB2;6:A>N^wjL[SPmRWNHOLJOTH;QYD778J}zvqr|55776:7::87877<8;4246;>A958;7B9;4888:9@>=;@<9AAA@=BHN\SZ]fhhfnssv{{d;845OT8505346707A8@G=8;DE66>II1:6:A@NaviLRSNjTYNGLHQQWK:RQF;::P~{~uqqx5588:669<9;78898?>=?@IB>:888@CE=F?J?89ALSLBB5S}{wwuow885:4778:89;9:88;IVcghihkejrz~pe]RLJKPT]mtrhhhWIEOFOb`YV`A>9421.21F_^G6.3?B@;:CeaeSosnn^eqlui`aYUMHLSy}{x}d=Uxcd{̟K<7;673677:::=79;9?7=C<=E>9906;634558;??HGA=;87=@FG?AEK=9:DNRKDFJRW]^`chjpoovv{J005=N<3161376549:?>IA?CL;7<:D7;7=;;EarcMRTQhRWOLIISQ[QCO@A@=4L~{ywsot777559:<;8777789??6;53;9?A?=B<84169A>89<=:;HIMCLMY[Zbhginmrqvvu}i731:L=82332353326?;@F:DJA=8:?:67<77EbwbLNTNfQOOOIJQJXXFJ?<@B9N~{vsvtq997<9=9:6:8784669>R]glikhhkn|~ue[PGINNYo~zqinbZ^WICFWYPGaG8A=33/0/?YYM36?F?;27N~u{Z^tgXwikpomXHL_YZmrYRJfmJq~uКM=;5354887;56657::D>>2/37==96;<@756:88AC?@=@C@HDD@679>BE=DANCB9@KLLGSZ_^`cimmlprssuz~E43:RH4342624766977;M;=?BF78C>49>2:B[ubJQTNcUQORLKOVVRJG9:CB4S{zwxrts~;;:979<879:999887;LZfkmjffjrv}tfVMJOKQ]xnae`Z_ZLE?IPKMcV4;;323./7T_J7;AH9;CBg}\rqQhzdhcy}iCGTTxqzH;:[xeoy˶T;210338;:7597358D==7?@87/88C:8699;7776<=@AA@@=BBF@C>74:=CF@HENB?:AHOMNVZ`b`gnlmpsuuxw{_;5:VJ85,/2048547::5G>:?AD88:=3;C39BUsbKPJI_ZWQRGJLHTXQA:8A>1T}y|zrtt}@@86<::;7::9;:8::>FWfeldjahox~rbZNFJIPcvg]ccZXUNI>?EGKod:?7961*.:O]R:8CF:55Bz|snLHuge^q|ZOQP|yqpK:>klgvwֿŹռ|<66373583473747=?<:8A@96257??;99;78<8:>>;?>>;?@BEBCA55:CFA>OHK@<=DMPMYZ_[aaklkmotutw|{|H37QI6@6212.6736>:7A<;<@;7:<4Y}}zuxqt6678:;<:;:=<;:::8;DWldffcdfnu|~qeRLHILTarcabk_PLEK988GWuyE<8961+-4MVM;9C>;1+7hwxR?bxtq^^dmvpbS`rysgTKTshd{knˡ١U896:899896987;=@>??F@;97:<<@=8=A9;8;?BAAA?BCF?CFID@8<`yvZ>;886;;>=>8282;=>52:8:88<><@B<@EC9;;>E48@Rs`NSTJd]PFN?BKFRbK:6/0@P_dD>Xpos|kHLKS:Ktug_sf=kwYwx{̫ȍD5334553495699;>A=E><2219>=8;<8F:?=?HK>:G@AC>ED><:99A=;?=F37BOq^FNQK_ePLJGEGER\H8DH><@c{ytos>=:9:;;:9:A=@<@;;:8>;=844519<>67:64>?EF?GCCJ=<7:>DSQ?PUNC@EFLO[[_hkppnlmrrtv{zz~z~{yzyxz{uxxwz{~}O?\C12520/055676689<@:5DYk]JLVKc_KSIDFIDXZE;>8:9@d{xxrwCB996::8==CE@@A<<>=HNVab[XYjs}zo`WNKJIM\~nfdghtweK@9?<@AE?B:73;>B;<9:59@ABH<;AKGA=AKGG@@8;@GPJ@ZWTH=JMQQ\\fkononmsswu|xzx||yz{{|~}~}{z~sDWH9302220/168728>>;@@:9;>>?999EU`ZLMXH]VFTJF?AIT_D;877:Ah}wut|89;9::=;=<@?C????>@CLW\]^]^jswo]USJLORTondhhs{nXJ7;7AlQ3198:424QjfG3:=XOVUQ{neDmsZXctv[FA@AA<;K=878;>:==86?@B@?@:BFDdzwr{;:78;@?>==A@C@@>@@@HOVW\`i_gt|laPMPLRTTd~hdgnsreL;C96a[80,4961;DdjI5;WYKUZHigUXJN]inM@=RRy|rtSxvQjwqŠg̺f:35=:278859?;:8::B;5:@:8?F><88ALYdJBRMbYKQHIDCE\a@4=<;8En|w{{@A<9?=@ABC>CCC@?A>?GJQW\[]_jsrbVKJKOSV[lmhfirraK8<=OPZbC7I^|{ftOnfxpj]zyrɜ`n~ֱR7;9<<;<:><9:<9?G>>:;@;@A@?EB@EC@?>EKSU[a_cmxzjXIGIMNTT]spkhmmjR>ABSGx`H@7895501Qf\?H`K7e]@_lwW8;KSXVB@Uy}nWfoR[Mca`g}r~Һ_`tȺx973853536::<;?=7544989>:B;<:788?LF@?ABHDLB975I;767AITkLDMLaXLJEILB@V]?596;7M`{x}>>==;=>>@BAGDGHDC>DCKVWZ^_bo||ePLJKNRUYi~mjpkaYGCMWCcsQ=00-43/6Pc`;NH:BjO?UwycD;=XOQJEV{{reYVPQKHPXQcwẋQeuwp?2479736:;?>::7351827>7>=98767@G>??CDIIIH>56N@974BEUlREUQ^_KFCCMAF[W:8:697S^||x|<=BB@D@FCDEFF@>DKVY\^cepx~{]QMNPRTX]mlikmceWDLL=NHE4..48.0Ca_FH?=PhA3B}iN52CQUWXhuth[Z_IHADCJOHD534>GSM<[SXTALSYajnotvyw{}z{||{~~~wC325/52425F97;5231196@LA555<@TnQHWVYXMKD>HCMYY?76538P`~wz<<==A>?EBDFHICHFH@CGORUX^_erz~|ePPNTYXZe~uhktjfcDDD8BlyCA?3..71/6NdQA==[d92FiH>7IPYhhrqhYSZ\K=@;M]l`i~xzyzǖn^krkY429;9<::9:8:037475=C9B<4468=@C8;;>IQkQERSSWPE?>>=D?@BBCCDIMFLDBBIKQVU``eox{z`SRRXW[`opquqcbUHGAASaL?D81.8204E`K>@=]Z59>dJ=>K]jjfigZQMSbU=;>QonRpkt}w~v{ѷmakjnyC719739=:<85301.79A>?@446:9DC9=GA?BGME9369?O]MEXVQUPOS^efqwv{zx||}~}xJ523123789:;=31111=:?9<=7:>DNfOJOQQWPB?9?JK\N:02949Qez==;AC@B=C@EDGEGCECALNRYU`ahsxqmfWRUVY]n}yuvtc]LAFE:LP?4<<3+7645A^L:9G`C;6AkO=TT^cfbi`_]UV^U?9468:AFAB?F=@BIQJ6888=V_FHNUVSSXVghluxw{y|½þ°iA4426481<989:553148A9>H=?>AP\OHQLNZRGG?=?S_J;.2858Sjz{|<<=???AAAFBDIFHFFDAIJP[\_Yku{wlbfzz^VRV[_crzwyf\H;II?CG;03><4;>38@UF:=Jc<;88:<:632.2A?EAD6277:A?C?DG;@ILRF5436:QgGMTZXOTV\hhlvw{~{~~~~R721463394<<=EUG89WT@@??w{jaa`a`[WerifaZS\iyqUJGCP:ISm̺m_kbYetƞ@2/44886:84602:CGKQD44:7:UmBVYXYNRUbfkluv{||}~{zwuvxz|{}w@74436366;?9534679@?>JL??>H\MOLNOVWM@9?B]`D72372:Rwyz@@?==A=CBAEGKFGGGDHGGMTTX]gq{{tcWRZyt`[Y[_`srYE7=QO?D55/1;ALMW9DMI;8V@@;;Drok^bY[dackf`VMPMWdtB;9MF3LI;5:<67=<=@C=413126>;;JMF?=DYQMSENVUIA6:>QRE:-/719Szz~~}A@>C>@?EDFFJIIGGGGIGFOTSUcdr}yq`ZQK]laW][aj|u[@;9DWVF4-/65:BML8CKT89I;=<9Gq{igcXckobU[TDGDOSR;1143823249?;7EMFC9@UYESJRTREA57AYQE9.583:Z|~}xA@@>AFCEEAFGOHIFEDEEKNRQV[cm}sfYPNQlj_[^_crz`GA7=@_T;/:EE@=BC:GLPB@@56?9Mj}wdjh[cfdYLLMA?LVvs_tuN=H^o]J>_zqϾyRbole^fȬA-.4677>80.4=MRB646;6397?>F9HGORP83105>WnFPZlZRMZ`mpvz{}~wc\[^YSSW^fjopsrtrvvxpkihhde^]cdelnx}}~ykeb\bikswtuvb;.:52-759@869864;A;?HNP=KQVCQJTVUKF88EWKA9-262>=?CB?AB?DGJGKIFHGHGMOPTY^hv}sfTKLMYjuf\]acgs_H;349IZ90DVJC>@<>COOB<964:@Heyb^bfag`OOOIB@H[vkUG]kUPZst^TWpsrɿg\kug]cl|2/342396310CSR8046:67:8BBJBEDCDEJLHLGGCEDJOPSX_jz}rdXNMKUXln_^acjlseG9:616[S7ghM99H?BACD7>=7;=>B_zqSZjba`TPHIFCEVuiQA=Lh\ao}p_xxeX`rp}Ȼ\ako^\evF/*-*133318IWM673690:;8A@IAQCKSD33557:`tS\^bXOYcimusx{~yposz}~}{yynty~wjcfly_;9452554>;454:73<=8;RS?>G[HXHRT[DH<QfN534;41=>=>>GMTJKP>76657C`nSZe_YO]`hnuwzsklxyB44713726875<6996?6=JMGBIXKYPNS[IGE?CL;6..446Dwroh}|KJECCEFCHKGKIOHKIKHHHLLRVYbl}sjYQPQQTZgtdacciithQDA>2.>msyjG<@FC><9LEBAC_rTR^^UVLOOOGBHipRC==CTWVj}~[/&',Urffmɽİ~Zam^W`r~u1..3-/13EbpV;46:22A<<@;CDKKJJ;5:635AWfU[hd^Q]fmpvy~w|\84738558=8977879>9BCMH?DWP[MJKTSGGBKL>60//04F{rve~{LLIDEHEGHKONNIIHFIEGGKPMVXajvtjYNNPORT[soadhjmt{uiN?JG;/8gteW>6:D8@LGB?<>YJARPgcK\[SRGJLPNHKZmR;:7K\ssnsh7-/0-FbwŽówU`q[^luH142/-11FakR87:713?;=;;DHHXQP736745A\jZ[ghYWdejswx~|}~xC53154289;;54565=8;HIDJMWTZKHLXQKGBNJ87/1100U}u{`|MNHBCFGLGKFMLNOHKJHFJMLMSY`k{vkWQMQRUWYb|ldijkrviV@KWG:=SxeUF0;?:7HPC=@@QE?BP^NKZLNC>HIMQPTm[@37>V|kv[/&%*-9Vk{°i[lg^dkv=.412-1EXdLFOF?ENMFUWMD=@FHFS\[`>35@QqqmxE)$'028Ji|znliqZ]qZ\dgvs/,0,./=PTG987623?9=9:AILKLF879153=dh`_mbSYchmywzȿyB1143384;E868235<:ADHPMSQWJHOPEFFDJA78400/6iytzOr|QQOJMPHMNLNLKIHKHEEDIJSRWXaow}wgYOMOSXZ[^aogijqtY;AHUbd]hutV>3;?:7@VN?EKGGG?>B^MNFBKECG[ebD;79Oppgkuy}<,2B3+/Tqpkh^``nļVcc\Z`gF00-/14FT?9>8>58@=>7?>GOSDB?87253Cigf^qeYbgmqxu|̺ȽQ9035543<<856328D=C@?GMSQQLHLJA>F@BB59312/9==38B887ED9:3311CmsgNs~OOLOOOMKMNJILKKJJFLEJINRU]ds}}veYVMOTSZ`]]^hwtoiwscAFEBG\jhw~m@.68:=\=QG?F<4;IG:F\E?CNTEMUMxk;AK\cnttyzK8LdF>478A5/1>J\[gv{_`nd]_gzp40.0233BD7789:57;C8PICB74<8104Jkeh^t\`hltvwyz~ɾ}i=34453457494317;DKF?NT\UNGFTK@GI@=9934-5Cn{vfQnxx{QQSKMNSOMMNPSQOMLKEECFLP\`hr}ri^QMOPSWa[dbhktsjvxgP9>DCRKWrd547:FE57>79:NG:KRC@JYNGLY^siMEPPW}ft}d>;KpzjPH>DI0)%0A>GNYmþXlc]`\o]1--347;56239<558;:NG?>88;:227Oqajhn]ciotty|~|}ĸþvL54676;57697349E[M@HYlq{|_D=B43668CCEIAEDQ\\QFbljrnLGotUxxxdQCIN]SIX[VfMKF?DI2,'39Js_SiZV^k}>6<=>[orgpdahnotv{~Ľ¾{_=45655467444399@5648QY[ePo{UURRQMMPTVWRTMORLNIDFHMSZcfq|qg[VQRRXY_cdedelkpwrWC79>KaZNFRO^jzY?=7487BJJTMEELZcldXnkzrfJJg[}zzXK?ABNMHjjpoH9G@JO>1..5:S~{V`e\bvt;89:9BA?::9<=8AC>=;68:1358Zno`o[^gjotx{{~}~¸ľuH7668864:696798FKA;Ia^MDIYICD=JE:A32-6Z{TZ]IftVVVXTTSWVTUYUSRPNLMJHILRX`dn|tfZSPTUWY]^_acgikkryT>236HVSIBNHKGslVD<812@HMLL@PXZfn`enhxiVDOhllG525D<:LjyeQ6B/4DG9*)1:Wx{sov}g[njcsѹN4455587666:87C=><<996338:[qsai\Zhgmutz{~ƾ~xc@6878646412378DK@6327<987=<@A@?=9=9:8467<`v~aiW[biqrvz{}~ÿtM:6:6734416692=CC?E_bJCQ\PB?9CN3661->nnW`OBMeVVUTSOOSQNRUVRQPKNKNINORXYbny|rd\WSPWX\[^`gcdjnqusuzrM22/3PUPNHGA>63W~`C=56AHSU@?YtOYzob[_vucJdbs9.--7?57X@0(().V`(%'((;t_=;UH79GZ^jlhu{sguhemq׿V.-0/-.168P^RF@RSJ:66A:11.4R{eY?./RoTSZTTRUUSSTTRNOOPKKLLJJLKNYfr}rc[RPOUY\_bdifilmpqwwwpUY_XGB`YROEP_P>@72.E}r_TN=T^aO@6@s|k_QlqntGOlh*'&).1927k{H72-**-*+0VvU91.*6E:7OC?UTO^coqy_=0.*/24;<476433914549crqkXSXdmrpywv{}|{xvt{zxo^;7935;74016D<;D?NRWFDLPI:56=@3/-6^y]T2.3Re{~TTXVVUSTTTUUTSPOJKPKKLGJJLXao{~r`\VRTWZXba`fjjkrppprrmTLffND^ZUQPPjYIPI.+;UmiE9HfjR86Kqta`Vturd@E\('1,*599Hh3./2/351384666;37479_olgVUZglmqw|w{{~~z}{trliu}|veF95659;2021E98A@KMXB@GOJ888>E22,9e|hJ6+1QZtTSXQUOUSRVQTWTOONJJGGLJDEGS_ly~tfZSPLTYXX^`eehglmrmnnjWLccTA\\\Sk{yeXNI3*-4c|dD;>ckG2MCjq\SXvyS6CO*+6,1EHG8IEI@.++,+-,12GUPqyZ>43689;:/,'*)+QúC-.,101//13465776304_kpgSX]fjjorvv}z|~}~}wqkejoxxrmeh`iw||pX8782355133@:5IVE:76>C.0,Bs{^A1.FcZ:IA4,+,.*,.37H]MEbtB130122771*(%*5|´h;-+/0/...2198;65216[lpiOX_cfjmotyy}~~zm\MDMXfba__bev}{û~ycA664635342>96;AIKPECLU@:98;<31.Ex{}|a<-/D8GfySRWUUSTVUPUOPSOMKJIBJHAA:?JZfr~rjcVLTRUX\a`dglkkonptri\PQUODUcWQdvxaWOM:-+9d[W>B[A1;Pui[`Vgg:4Py?/366;JOE?QC.++/++*16>OD69f{=+.*-21323.-*)*Wr801-,-/0//5=845345YicaRS[fegiqvwy~}~~~z}lJ::=IWaieiw{~~ī|ylR9213743/4<<9:@IJSL<;EV`nz|qki]WRUU[X_`ddjghmouu{\]SLIDMWc]]j}scRMFA-+:Vk^Q?Q946U~j[VToZB:jo<06627M??:\O/*+/52FQA96<8/520Xz_7.7.28Wn{]]UTWSS]UQUTMOPOIJHDEFA;77CS\j|qfeibif`b]`bcehiiopu{xydXUM9:K[af_evgfVMCK5-7PiXR?B309^{kSJSrF:9z^6/3844749@^L.)-/0CZ^^kdtjVVOHE:6/,...33865219Yh^ZKFP[bhlsxxzysy~}{|Ȥzr^H71122009>89ZXTktqrULYNF@GDQ5F}OK316LpaHBc]89>c47@JGE55/6>KA-./16?JIlVRC419@M\pkQ72,**+(///(&$>_G0++*-926/1108\ii\PMIY_fotvyz{~zrx|~}ʹskT@3/2420:885=EEHJFMPB6;602=8;p|mQ73+'+/tkE89+).,7\t~YYZUWUTTTNSOOLKJJEGBEA:9729HVfy}p_VMOMS\ctypjlnmlvuvrhNHPOLZ_[A[owtNGLXQBLI>RS8;d}A24059>JE?9215*,,JRAYZiZLXbo`MAH:40/+-64*++I~ukldvm<1./,.15/5F.6Xp^UNKKU]^ipzw{}yrszѿ~wthQ:503564;94=HGKPPFPH:<.-+:7E_:@;-*+/6Yp}}VUSQRSTRSQTOORKMGBB??<9562=J\hxzmbUOMLRX[_gzz||ymlmkntutmV_N<>i1-/0632;KLD2/,(,.=?9V?>onGSpg`elf[F7.---8.+(*MvwzzhgklYG4-+11312-.4[l]LKSWY[depwv{{{wsyztn`G933/27=826IFIMOIMJ8;...7:M}_2A2)*223Rhu~TTSSSSSVTPRRTNNPGFFA@<8:63;GVgz{q_VONOQTW\bdks|xkhlry{zuf>?MV`ZYAGbpob[B@PdZMED>ak=57BdqW@bnH9FR.0-4C3.51I@?72-0-45<`>6SQQawyhXPFKkoP>50+,761'+/Qdi~lorr¥y9-,((+1.,4/03\j]IBORX]dknpxyy|}zx{~Õ{tsgP;42033:;46BIIQVGMG>6../9AW~^;;1/*.,4M[sWXUUTOPRPPQMSNQHIEDCA?9:72=L]jwzlbZSSQRXY[^``hky~lkt}yrWD?AJ]USMVai^]bB81-72<6)%+3QMmxt{}Ȫ@-,)-.3//3/02Zj_EJQTY`bkpryxz}zx|~Ѿ~piU?2/0244956?HFITGGJI52.-8J[G3041.,-5IQi}UTUSWSRQOPKMMLNIHIE?;<=:57;OZlzwj]XRSVTVUX__`bfluzxyYI:=Jked\J^e\Ve[=8sj-,..4335=8826340<987d\fMM\OM\xsuq]IBB]SGG52-2>9++4+31^xwyyɿ}4+,.11,1/017Vd[IBNM[_cgmuz{z~{}и~pg\M901045:8DGGKILMJN=<.++9L^p<<245.-43NHcz~¿VVXSZROKPMJJPLPMIHH>@;;889=H[lyxl^WQROPUT^`ipsx}ttvqnoz|fL;::`rjfOL`TUR\J7=TWWVMZtaS?Yv`Wlw]>EvS*0./3/75=53502-,1;69XIIPZ`VFMh|potYIWl?-.9=63(*+(,H}rwu}ζL-+/.02--/+0TbXEKOR]dflpvy{|}~z|Ϸ}yhbRC3/1339;8AMEDNNOS;1/,,9Pmk4/,670216?B^qTTURSTNMNOOLIKLHIDFE=@>:74@L_h|wk`UQRWQRV\arrldhjlqztteL=HAlimQBe_XJK]U9BI\_YPmzdK=_kdht[FZJ-40/;=B:>53/030-/7>6GADVmlTCAPmclszjUwC,8BQ<,)$(%*7ktruw͡=,,-0/./--/OfTCJNNU_glrwt}~}}~ϫ}xneYJ6415:997CGEBPKRV81.*1;Qp~_4,+<;2/85;?Yp~TSSQPROMNRMKONLJKGDFCA?:67@K\l}zg_WOOORTT_ovnqly}zsZA?JQxtmfDNgXOd`wB7:SgZKMt~L>Urr`rWYK;<13>;8;=51.-1/-/BK9@DarqUG@@EIesxxzi5/=PrQ1**''(.Rzrxwwˈ6,,-/,-0/2L]N?ENQU_glswxz~|{|~˥ypj\L;0024=55@HGFPLJY;/--,=9DLZj{xi_VOTTRS[imlwkn~pW<9CJjxyy\?`sRC>AC8:CYe_HbS>MrcqsHWt@?@7DA=J:8>@40..-)*)*3:GNblg[XQM85U`Na|U0:UguZ/'&$%(.ZropsͳK/*+-1.+1IYFCCFO\\nmrvyz}ymdPO:/928;:=MDHQLY_70101;;=GQcn{wk_VQPTPW`}waccgtuvdD/2<7Ckxb^ttJ?8>?27PwaDfY7=^qz^FxL98?:>HA7>A52/.0..,/528BU\^UQWR<5LaZRbuO9Ida/((,(',?~vor|ˤC.+,,,+2EXD?@GPZ`ikqtxz}|}ӷ}zsgUJ=2116=9BJ@BGPYY81206:]ysQ5))4>;:745/CXl~~¿¾VVRTMRPPONRMLONPJFFHC@;<<9GPap{zqbVQSSQSbyr`^bdllvnJ13;>:Ph|sJQvwY6<740=piILT;9T~ZXl9:8;>:QA;E<32.3..1./5013FUPQILQ@6?KR\]tdD<96507PgySSPPLMNNMOOORMKMHHHGDD=;=>EP]o{ym\ZOPRSV`w}ideelmkszbG>=;5GSjvWAZx_<4248]qIHU<<>7BE7004/0611=20/@IFFIIC@84=CSbetZA[bS0++/.*0,Awnoqп^.).,-/BRB++3>C:<:644D_x~PPPSTQQPPPRPQSMLOJMHCEB><DMWYcjrrzx~ŦzznbNE>665=;:B?>ER\K4,..09ke;G,705A:?4314B[u~¾RRPPMQQMSPNNOONKJFIJDB>><=HR]o|xibYTQQV]^hqnfdhhjnlspqsrqsq|o^DLGPmyfgH?\zw\>=:8<<6G;8434641575133Gh^5.-7J<1318Qnmwp\QvnJ2-*),/-143P~{hs|}ɸu8/*..AG;;@FOWflqv{~}{yqgVFE6058@7==BCNYJ80/10?qZ7:78=Og|~~OOSPPQMPNOQSPPNNJHJKHEC?@DJN]mzyk_VQS\X]b]dcafikknopsxuusiUUzrXHETkgm_CHZniL<;;BC=>6987D=523874236/440CVf81.@H6//45Tlqm`S_jG1.0-+,*-)11:plrtxøвG/+,.3A9=CKTYglpw}}~~~Ѽ||rgWEF:405>:<:;>N_O:.010CHQ[my|meYWUZW[[a`_eflmlnoputuvvo[AQuuYBF\bm_UGKan{hG897<;<>9ViZ\l=7;B@:71948B6972@938667?:82=C667NI1-+AHbfqxf\xH/*030+)+0.,.1Uzstxzõʕ7/008E5;BFR[fkty|z|}{иz|wiZJEA:11A:<87=J]M93305EwzC20-.-7FFB46;9;CZt£}XXWURQNVOOPNPOMLOHIMGGCBB?IR]myldZSQSW[\^^ckljjnqrrtvwuxuhGBYrcew}w\KI_}h^KHK[hrhN=418>UPd}[XjgDAM>D=11229A8798;63766843I134/6D\C2**7N[eokkuY5+,),,-+.+,)),>qtrqs÷h5302>7>>EU_ipuy}{{|ʼ|yo^JAL>53:=:;8BP]M<2324An>4-150:EH;>95674;>Oi|pYcpM:BhJ?>0/41:6:;7:945::4627H:6787NX@2*%1=Qfno[A/.-.20-,/7.++*0[wpptŹúˬ>302;4:@HU_ipvvyyʴ~vmfMEC?809?=:;@M`N:2307La75-4=19BB9964447Mbw~yXXVSTVVSTQTMQRTONROKIIM@AEKP_o|ylc[VUT_^^cafffokjqppqxw}{nS^ZJHQTL\b`NCY]OL;7?FT\mrW?5>Egj[_fBD@Gh8=<542424=9776687;43:F56<>6VT<0,((0Ulj{I672///20-.6-0*(,@usvyuɼɐ9*-228?KS]glwx|z~ȱyneSBBD<2:E=;8AL]M:12/8M}Z181341:N?9;;9384G\s~zZZ[TWQTRSVPPSVTSOQOMHHDAB@GN]p}tkf^TSVW^``bgkkojipqqsts}x^Z\NHY_XUWe]KO?HP<9;CJT^lpW;>IUj_><Xn}~VVXVSXXURTQRTVVUPPNIKIFADAFQ`p{wod_WSTX\]]edhnnwpqsrsuwwhieh[e^^VUSYYZA>EG;5>@EM_kl@:KQnyxrNI?VV458@9545552544758<124CX]?0D^F6,-+,7^ckzl[d^=61,11410/674,*01@vvn|uɱѬF006@@AO\fmsx{~|~Ŵ{thYE=A@56@@>9?KXS<8237S{I4=.-356C98:972858Qi{~XXY\X\ZWTUVUTXURQOMLJLGB@BIRao|yi^]UXVY]_`delnxyvwtnx~}}zs~{p[]VMGLPKOWK??@C=9A=IQRjT=G^e~etrvoeB843:8547561453646:5;>]_>23J\Q7-&(-33.715813340.,./6[kyw˘9-.9A?74=83235Gbs}\\YW]`[XVVQUW^RSRUNNNJHBBEJVan{wi_\TVSYY\`abjkt~{xz|}y{~saWJ<:7DZYMLABAB@=I@:@IV`WGR[ss`lyp>8849986146749305369H[VC:AAShO7++/48Ga}}sgJ<PRS@:9>ADBF<=DFPd\ROZ|XQiy~{ZH?978;842/21515459>OOAJgpokM-+(.0=bztiWD9325554346434354019Sspu|μY1/:?LU^eotzz{}ztmbPBCC93@@GB5238_c=H<113;;48:=?47137;Wn¾^_``geZ\XVXWXXXSQQPLMIGDCCKTdq~wodYXVX\^^`acggjilnsN>F7;I]U?;;@A@BCHG>QidULTsnNQ_p{zuaVA420612.0061/54?RODGkpwzzwrfM<8446^pca^N718894<342653151//-7nphov˧B24AJSZamvyyz}ʿ~yxsl_NBAD:4;BL=?ICW@3844fT6HE542@?504;=:3565E=;LBV>6228svM9F=/,2GA6,6==<:7662Idv^]a_`_\_YXYZZVXTWPSNKGEDCEKV^m{uic_YWUX\`acegigkolprortsv{}s`LJH@A@DGGD=B]vWHQkupvWZm\euo[J1-+/0-06367=EYiqS_ih_VXMZrFEga_USVOF1-/89:21532152230./2DtoclwͿ{<=HOT^kquuy|Ȼ{~zwqo`TMBB=98;A>:J?ZD3/0QqbOHn{fvlYXRMdq\C,*+.2081<>O`wzaTVUOFE`qvvr~z>CHKFDEB5344:95524166275;20510T~kjqȹ]=BNW[gptvt|~ù|}~utqhaQICF;EDSH834@ys>=NL4/9D=7415:985575BVlycdcba`]^_\[Z[XUXYTVTMKLGIIOZ`m}ynf]WUW[^agfifklkopqopsstrtwzynalr~vmcms[B;<=7676=Ni_NOe}o]qf\ACHi|iP4-,-.574Zeon>68:9886:78<:53541475872354-/>mvmk˰OAKS_fjsvz}µ{z~usnh[NJCB=27:;BA@BQL5-3AtmC=IQ2-8<;4947<;:82359Ierffbdb_`^\^]YVWVVWWSSMMGIGEJTaozke`XV[\]`aeidmkonursssuqruwzwomktriQHW`rwus[M=8<981:4?\YQI[srjd|aI8:GgqXG.,*-4:48MRemQD;06cwRD>CcRuX14/4498668971334246:6:9677/31QihoˤFEPYcgpvx|~Ϳ|}z{vrnlj^KHD@?4;::?GBCKE8.5Aj=?RL41:9F2104<<<63336CZtĿhhbdb`_a_aZ\[ZWSUXYVNNMHFGKS]owl`^WSWZabbdjhkqotsrqqotppqruupkirokOB>JHP[k^E66?7116@URH@NdhoixkH>78Oh_R8-,1-6C4=?]XG:48Gv^??nKIn3//1659358436606378A555550/.1;isgguĊGHVcgotuyz}ʾ~zvuuspqgfZIHG@@3:>;>DACKE80;D~c>BUV55;8>75058;;:2232/6>=7EACTM93:ChAFW\47>7A31/299>543076Ofy~kkfefdcdb_^_]^[XWZYQRNJFA@KUbt}nbWYZVZa`cbegjnlrqursnspsrp{vsun`KB@=ENgbXM;6//-<>Y?7=HD:O]_fgofh]aH=8/24,/>ALIG:9Mq}rbLV^]d^VUg=@X]?L9:6532345444629;657156/-*,,4d~ikzͺrFY]dlstz}|ĺ~ysysvtqlgfZHDJ?>06?<9>C?LR759IdDD^P5>47=76258;><73084Gdu|}|gghgfgff`bb`]\XXZXXUTRMMFFS[juxmg\UWX[_ebbhgllroqrqrrqrnqsvm_RLGDEES^WQD>1../7Q752A<84>>5<7488B?;4012EVr|ihjggfhdbe``b\][[YY\UTPNIMT[is}zmgYVRXX]^bdfgllorqqnorppjq~n`HKPL=ATcUP:145./>:1-;9;Ae}|yuvmG997..6VUMFA`qhVFgUNH[oqowupYE8B44113944357755;45526340.1/**/^nj~ȨcQ\djqxzŵ~uilmdgkjjbf`VGAGB810<<<9>@NJ63:KbCA[M<@5=76<7269FF<35069Sqjjlhiggededcb`]_ZYZXVSTPMMQYmsvmdZWUY\[^aeiejjnpqsxpqpmkuoXIFDEGF_hS=75011/8007:DlzundlqP29=-/625142:GJA41/4>Nby~lkkljmmgaeif_]^[Z[]ZWWSPMOP\lwzni\TV\\[``ehknplpssuvsssruamrvrzsRFMXTQYWJ==710254-.?m}]Nf}zgNOQI29>0.NmC>JSgdN18Zlb_nuquosl6-.7>841154:834976655998;5///%'*.Ygit^VYipr}~x{~Ѽ|}wnVlcSXefc_`YNE>BA82/:<58?OJR83;Qs`=RgF?5<>4397315AB>99647Pbwjjjehmkjgfkd`aa][[[YSTONKRT[ktwkg\UV]\`cglfjipmprpnqtsoqg@EN]z~}ry~q]SFCHH=3136645PmXF:KguA93513763Pp9MJZ_\=.8Rclsdloma`sue2-.28567D2136566635478:941./+)*,7irfkę_Xdmsyy~up{oy|ͷrwswurymYI`SPU_\[W\ZMB?@C<529A99?QOT94B58GcuG/*-005=:Yu;;NgeY37MWfr|fnl`KZ\{~K1-04214/4145469:434;<774,//++**.Izf`}ſ^Ymowpy{p_~poyg{|{~~̳lpnqpbu_ICREJYYVU][YMD?LWR68?OdVD\cT>;=75578862:?><::6@6475;7:5:@@E:68D>936I;;;=SM55:T|[OOYeLA=64=>xXkwkkijkjfdfefcff_\b__Z^USSOKV_n{ukf]ZX][``adhlgkqrrrtoqrvnzY69446:CKbͳV=63437S`A37=Kcvf\h8-(0),6Li0;WZNMIN[O`s[T67:YnWNWYiH=FCG5546<538kV0..335BYu~|ogU514.,/C`:AX^TNBUNJdrt8NpeYHL744.3<41//3794748@C?;5377D=780,/,*1/>ndbz̼bgy{}}|unhl[Tty{|{|~Ȣ~vjc`nw~m_TB9@>757<789<[V=<=\nTT]TcICB9<542555377>;=52166FZsffiehjhfffefecd\b`^[WWTQPMWaiw}vkd[X\Y^__bfiijlkkrmpporqrqlmjWNHH9=:]cVR^u}sB9GaE.//0..07Jdki`WIF7823:SPSX]WUTWJBbeo=73;EC44:7337<1-/-,,(;0O|dhěÿhku}|~ukb`acfqzųyu|yz}Ȥ}i`_cx|vmq{iWN=9?E==:>=::559;:97ZX:8?[fHLbO_TOJ=848857536:=@>548649Of}~hhkiebghdfgegbb[]_^YYTTQMLXanx}wob[TVYW]^_dfkmhlgoomrnlokoimoojmnE?;C@9>>LWrϓ@=L5,.40+/-48RbRPHSRVI88BUTGFRQP_]YG]eeKUkN:00;:441B43:353;@?<50;C8002467<1,31+-*08>YfZgĿlluz{vz~xfZIIUguxw|vkdeqĬwt}yw|x~̫hfm{pgXQRVcv}lXLC=>:8<;=>:8129:46:TX89<\dBQ]VS_LI:;5989<7727TI>=AAITNVPVqeXPqxI9,/4=757<@9/3149HOA417?843235<<20.-+-1467Bk|YX|niswxx}wn\K;;Ofrrvwo_SEGMYz{py}vuy{z|}ͳgptn[ONZXUMOpnWJ@<;:8<<;:176334348Q]>9Ag]AV\YS[R@?=<<476;:99C>;752347A`r}kkdgffddecfhhc```_][WUTRLOU_k{uhbYSRYY\Za`dfcfikmpoigkoondlnlpntzm[NNG@734Fnl´m@200147,,/45?Z_SG<<87AEQAJ=@ISq_U{qB3.706954:B52/30>SqN43;7:34229:7363//2.3.,1DyfSfmert{}vwyqhdR>9@Majt|oYC?697:6167131058Qd96:iYCZXOLVQ=<:=85B=6:78A@:948366>;90..106DVk`M7833KS=E:=KX;39CJtgYUwm>4103:863/=1...4BdzP;570:32747@505/321,2-+.3YtqU\zilivz|woged[SA:;NX]m~qY@ARWZRN>EnǴ|c[iykjpttxvy|ėr`kwv_@V`b^WYZXJEws\LG9965449933<436238He<6:rUJ_[NLUY>?;A996399:<><;:53554=Sg}}~}||}gggeflccfgcgc_a_^\]\ZYUUPQXbpysj`VQPRV[[Zcfblfjlilikginkjjjmhhhiideee\N=;NXWm~`ouZE/.020*5=qtZL<1.;MUJ;;LM557>Dc{`NQal>643315671<52026GvtGC421424335=73//112-.+,.4LgrYk¾Ēkdjvrla[XSKB:8;OQ`txcH@UaVV[VMBEyŴoSNpodisvruy|~ɧ|`ZhbDA]cYNIXgWN@XvUGB97634788684483/34@a@7:yRQd]PEYV;>GA73469779:9:;9:5;9364?IU]C^YnD8;533350/:34.04QS;G88.-/504;<632/6<50-028HK`wdt˾_dojf[WI@>;99;JMarkK;\aZKGF[kO:Wż]P^~yfaqzxtuv|ӻgTSQ9@UQD46JUJTPHoWJ?46?45989;3748J@38A_A5ByNUfWIHWW<@E;;998877697877256:00/+,U~cmüľʶlTX^[UMD:=447;ET[T:BRQ90-/=ZF:KĽiMEEgkYSi|~||{}ҾaL;8:@:532?@NOzaI?5569:;<=:879855008ARL6=egWjDBL>]EACA=<667574;@9>746546>L`v~~bbeeedcbc`cc`__`__^ZVZ]RSVXbnwti\VPQRSWZ\^_aaaechefggjhgghjgcihceeb_^__[]ıϷ}g^oROV>4,*5421V{p_<04?46?NXU931,*)+8qncxƯĿ®lQV[[SNE=7459;COJ59BC60.1VWFXvɻaL67APQHTq~~z~˳|T@9733653<=Z|IlU?5655=?>@A<8:8777./65PE6>`[bXHDCBXF@BG@:865:89:;<96754337B\o|fffcdecddcee`b`c```Y^XUSQTWem||rh\OQPKQWZ\]__fc`cgedjeigffehkedcgaa`d^]\\[ʶϯ|~k{i^CWS82111,*7_x^:52Ctc6024FXVaVO^`5.,*45JF155;C8NT044352110.28Hc^IWRi\7123,.*(-Thhĩ½ǬcKPXRRKD698999WqæqI8885436>>Rm\NraG62458>>>A>=74:;863.65OE8GaUeOEEACVQAB@>98756989796;967828;Ni|ababeeb]aaadc__bc`b[^YXTTT[cpu}ugZSLPQRVXY\^^^`acbdddgjihcefffefjfdca\^_Z[oͿƋ}qY=9JPB60**)-7s|jYH:6Rz]F:=WWO[XFPlK0*-6>PB14=QU9ZI.3874.1/205AkvljbR=51064,*,**8isd~ǻƾ»¥]KSQKDJ<98;8:::>9=:85576;@HZgQ?3325137IgxȺhA<>969:::?D=W{yi]J;655<;;866467799<;=889569D^xaaddefda`gabedacbc^`YWXVTY]gqw}rfZSNMNTQW\Y\Z^\`gbcdljjkgkdghddigffdgcb]^cez̤}shP97LTM<0,+*/BWqpeOE@c|`9CcSNNcFOiqN+'4/:VA.2AT@3\}=12200,-1.1CfutndG/,10277..,**,G~ifî¦aPJJJKB?=99==<;>:;8667587NDaum]J?52/7328E^vŸvSD?;?988@;=LX[OCB:78;?D@?A@C?>97763.328HH9Jcb^LCCC56Wo7.10-.-.)6:ltmm^B.--2369:2+,/$)/[zk{Ģ[NJJRHCA@@<=<;@:9;<88877::6:844.25HH8Jnf^JIK7:MCBACE;:73677995=>=9;:22/4Lfggjjihjgggfiggggabfeb]`^V[\nv}re]]ROPSXY\[Y`c`bijjnjkkjijjiikghifigdiecdeedlwcejx~_I503)+)/CUd\MP[[fU@AF[fHTptQ0.-16a9:JI266`d53/3.///35YvxjO8304145563--05'()?wo|ɲƝUJPOONMGD?;>==<=;<9:9::A9=>@=?@?@DKK<43830003MP7N}mhWNF;6>>=<83.-4Ccxffjgiihfighjgefikhddc\^[XZcnyth[TTXQQTTX\^_b`_fhhlhimnjljihjghicejkkiejdgfhr|n}vR5:42+/,.>EQhQMgpM11/1=^;PW7324[b50/.,.44=IysbD40-123=77720,,.'-,/Ppiǿƞ_NU]TWQOC?DH@>A?@=@EFNILC9472-.15JV6PzqmUQG69>SFADDE=B79697=95577<>841/5?^t~kklijhfmghhgigghlgcbb`[\Y_djwrl]TNOPTTX[^\`cbifghghjmmhjjghjkiighedehfiikgllpv||V=F?97445=TZ00246527669250,+/@++1mzhpĺ˦bVYWe]VMN\XIFHEAC?><7<=EAA:679;EZ{idy}~~|~iocPEBA?;<;=<@@BBGDLLJHKR=3380-34IT3XqupVH987?[E=AG@=<9:77878976:8983/28>Tn|eeheigknlmimghhchfedb_\\Y`dkv|nf\VSPRT]ZZZ]afbaehghlgjkihheflffglmhefhkmihinmjlrqwgXW\bPB4=B1/7CQUcs|I3KVRU@at^-)++5SQi7643>R\8530-27?\]hV9-632353:462314//EA('+Dlj{ijȾȬhXZegeilheQSRMWOVFAT@AGDE@=:6:49786:69;>;7229CXjz|}gggkkkjjllfmjjgijifab`\a^aeky|sc`UPQRSXYX]^_agfelhjlhfjkkjglmihgfnkihhkmjmnqnnppnovvvuxjyqET.&(,3bujl˰vYghlqplddgkjnpl]J:Lq|]NhqQjq}~qdxvsqtslr|}zyyqpvqcM[RM^d[cTQRVQKEHP>32.34=EN4dmc^6569<\@AFBCA?@98355;<<;:==:759:@K^u~~~ggihhiikknglilhhjggee]_]Y\cov{tf^URNNXX\]_^habeimkijgghjihihjikhijlglhghilkqtrkqpott|wXmgRJf|v]@YS<729?IRitcIDCEKWv`;+./AnzF4501>SP9/.0066SceY4//0.2356313174;Q_@3+-)*=wtoxǶhhpvww{zyzxq`?_xfx~c`tt{sliphegglq|qnkgmqx}ygiqhuxrpeWXZXNDBP?3:5218HL2]o[R;78;E@CID?:7<688:79:9>::4:8<8A?320519FE3er\=9:7E@BJCG;8;45C99?:9:;?;;;AALfukjgfhnghkinjjgfiifihfe`_]_fiv{~maYRSUXWVZY[a_gddgdhijonhjkhjkjfjcgkihjllmjlopsnqosuvyv|H88C@A0*/Q}|iWWQogQLOA@CGc\\?83578Yn]P20j\1-06.8G@B<4138845867:8>=><<>=7;E\o{kkjjkhhglmikjffeliiffcca``eksmaZUSWXWXV]Z`]`gfggekmoikjkjgfggjdgihnkhjkoppqmrsvwvu{xzyPF?83-./-S|}m^[`bOEP\V?`FAZZF/:?1101/-0.38O]crS/3YW51*(+>rpiŽſ~w{}~vfe\YOOLGHKU_y»¾pf\Z[SZTWXmouojloh[F>8=22.038HE4vtIAA:89UECFEBGFAA;963;76;96:=;E=;;5<@Wk~}~onhnimlijlegghjkiikafaca]celw}qfZRPQSXU[_\_^fcccdifokimhlighfeihjigjkihikortrssvvsxzz|z|aK>95-/45SwqbdnaGEL_YD<P@FQHEEIEA<;24:775755:=>=76;7?Qj~{iiklgkjfkijfkhfiggfhebb^[acpwxocYWPMQSXYYY`becbcdihqigjgfggjjhjhjojjiklllpmrrvxvvuzzzv~}}rONAB4/.37Y{yn\HFYUHB@;U[X~I1/4,8UWZVk0++01-2?LDOL>92>OI943@401/2.26Ki^<0M`/JZ2:N1+&3=lgcvŻ|~~vi^RMEJFFKR\brqhf`d^VPNHGLA=51402056?F>6va;@4=;?KBJE@@HDB@?<8<>963478>@<<;:74;O]t~}gghfghggjhhjlihfgihgdbc_]_fkuwncYVPRSTTZZZ]cgdbfkiiijikhgkjjpomkkillljfjommnru|vxy{z{}}|{|Ѯf:=<96/39CVwºr_PKWRG=8AC^Hzt4.300@Watn.+.18,29:?VC8>8GH=422>;571554D^eOH8?]5XS.3S7(-,+Csp_a{zy{~zvole^TGFKMPR^lr{zqlc[JFA@:624002137@Q<8y_8@7:?GO<>EC>ABB?=9;>6:3><99:??;87376H_k}}ggiihhhhhjigkghikjgegcaacagkx|ob\UOQOS[X[X^^`ebdhddkikmiimljjejlililmmkmmpqqpuwz{{zxy~}{}||{ݷoa>;@6/.412=aչxo]Xm\M<9:?ZHVK1.6/2H^{m-,11;5/666<;<:AJ=9055:=3305HGOYR9A@9V9eN/5Z:(..(0Om`fwjjnvxwwunjejfbXSZ[`int}ǾvecNE@<:;40000//8E[>;|y\A?=CCMAE;;;664998;>7<:;7239DVhx}~ghjiifjfigiggiijigfeebc__chkx|ne]ZOOUTZ\ZZ]^__cdihhlkjlmjmikhjljfgekmjjoilmrwrvt{|uyy{yzy{yzʐtw\@.))../.L~tmhvmVD8;CWbCg\/+/1/<[||f+)02C435=:8=299>725129>;46=<:6KH533<]IhA68]C2.*',1jfamy[Z[\bedig`djge\iovz~ðshTGA>761120.236H_=CvT9:9AJMD8:D>>DBHGG@>7:785888<:;>;5259?Tdu}kkhfigiihddgihhfjfiggbf_^admwzng[VTLQWV[[^bc^ccgjjlkkjhgje`jhgjjgdggkklpnpopxwyx{yy{|wz}}{zy{O.//1016En~|{plute[K7@B`GXiA.*,18Nq}n2.,/?88>C>;6669A916212855:8972I<1115bTi>28YY;730'+>wyberøýVNN[]`hkokt{~~~t[JD@:851./,.37D_5QaE==:<@@??IJIHJA;9:9588878;9874728K]q}kkkiohgkgdghefdijdedbbbc]chluxob[XPMVXXZ]Y\]abcdehjhmnikkgkilljhhkimjnolnlsssrvszz{xy|zz{z{zwD;GMKWbgx~yz{tqr`=57L\HsU-+0-4>X|f>/.,6;7;INIB@8@D6152/224767>75UH..02Sbh>-.JjDGO=/)0I{t_e{·üoTRYhurz{¾ú|jPG@<8722203/8IZ5]_GFG>572;97:9>B>71569HVp{edljjjfjhcfjkghigfiedac_^`jmqypd[WQORTVYY\a^bbfgihhjlhjkoiilhkggjinghhljmnpsvvuuvvytvzzz|z}{csz}|yxz{ws{gH54;SIfm5+0,15IcX2,038138BX_]QFH>=73022349;;27XX4-/0?f`A..=gC29B:332Yf`emjm|}¿õk\LD?73101/217CR:k|UGPL;9CBC>=<@?>CH?HB;>88948>67<9=;73128DTft}hhingfhdieheieffccedbda]^ajmyypfXXSNRUUW[\bbbceiifjdfgjgnljmkihikllkkkkjnoousswuvyyw{{x{{||z{|wz{{zxtut|zvvp^B45=BXsD+-),2M^a9/,-;015FC>>E@@CDC;6677B:8;::=:4822;DThw~{jjjpkhjlgfidiibehedkhb]a``hkxxle]XTORWX[_X^c`ceghghjkhdingmllklhlmmimojmlnqrqrtv|||}z{|}x|z{{}~{|VScskv}}w|vvu{piYB68[kM/-++.T{YBB:9-.A4>A@A9IimF>H<9/032>=201;gN012BZ[?>>11[qB02/-)/1Jvtd]exÿò{kfa[G:40000/6;RLQvb\:9E9=>BJ@@AB@@@>GFDC>@=:666<866;<;673449Mfxkkimkfnligfkgidefbchcb``\chnz~yng]VPRPUYZXY[babdjfggjjgilkllljkomijkhlplmomopqvtw|{{}{zywvwyusrqrxx{w^_Yb{}xfu~}}xux~|vlfYK41@`X4/-+,NxQC6BN2,8<@5944=EhebI=>3/-3><412;Wa0.2IQV=CE6/@tmD5+&(((6Sos|mdl¿¾İ{kgeUJ:2/.2/05<\JXe[54@79?=@<>>:>A?AEHD@@B=8759:988<;9>54198EYsihkmhhjkmhffhhffiijeea__`egpywidZVRUTWXXX]bbdccgifhklfgnilikqmmomjiikkmmoqonvpsxz{wurpsoqpqqhplhiku{[`]|lowxx{wpb[QK712TY7/+.,NwG83>_90/<1/./3;BMaf`D;<125=?6353Qa4.3K?A=27946`^1)*')*/Ai{rpļxkc_WH93..1039=\NY[X5>A6637795138>Spyjiilflgggijgehgbfhcfcaaa^djqxylbYYTPRVX][]`cdcacfjiikjhmhiikkpkjligijlknppoousuxyvstvtwrtpvrrttpkm|vqurxt|z||wzkaZP@64GW>4+-.ErB<30JR65?3//1:RJB=X`TA70218<<221Bc?0>Y888./8H9NuS+)+)(*6_d{ltyih]UC8231/108HcShmYL7F>525>@C>?@B?=CCDBBIB=:78:77==9<<>;5327GNjujjhjklgjehihgfhdggfb_bc]^alp{ylfZPPPRQ[[_`]dde`iieigjjflkljmomhjillinkkmlnpnrvwypwtw{x}}}z|z}{{~||x|uw}xr~}~yz|tbWL;5;KF80/3AiH8206F9155039K^@41?TWK=537=6=232>]D2G\84<.24A:ObB-)*))2Nye]quqzqytee\RC84032./9IaFijZG9FA84>;9@==?>D@DB?A@B?>=468:8959><;95215:GZpz~hhmikkleelgijflfceba^d__^aer~ylc]QQPRTX[a]a`badbgffinkiikikllmhmjnhknglmkpompyrsx}xy}z~yz|{zy{z}zwty|z|{unsod`I:57C=00DOad941/:;20349JeM;-64AUN;:4?:5>262:XL8@P57=65D38NRB,,)*-7pY7V~rwzs}Ƚng`UK>434/1-58T\A|akA:5<806;<=@@=?ABB;?;;;58675:;;:96.118I`sjklnjkmjhfhijeifcdbdbcc`^^hovzng^VPSVQX\^[`aeddjfigghigjjijlonmhklgijkjilklorwwwvuv}{|zz~z}}xxuvxyzxҫ}upkvz~qjWL:66A91Rm[e>1-0052319Ih^A73557MZG953;<>6458KT69>1659QU18MQC2/,+2FvL(4d{w~yýƸ{md_UF:55/0127=UHK]oG6/8:<:=?<;>?A=><;@==BE>?89=854549>=;;70745?Uqklknlklihjffhgheedaaaac\_aipwxne\VNSRUX\`b_beb_cffiigiiglilklngjgmhljkkljkqqz}rstrrz}~xz}z|zy|zxwwutt~רz|vsjy||yyxb]`ZH7:57=R[ZN11/01023:XiNCBB94@CIK7618=H8846ARA=<505;e^4KQMJ7/+.4ke5$+;hyzr|ƽ{obWQC60101442?WAS`rS64975;<<>=@=;>;>B@>A@AL@?E979576;;==<86359;Tk{nnlmkmmmhieeifmlceg_ccdadeipv|od]YRVTW]\[_``adafiehhijilehilklfkhnigohjmnjqttxwvxvptxz{yyzxw{xzyxxusrrϞ{{wswqo}{}}zlebhcR?>?68CS[6-//,406FfW9HLO;235=D8775;;:<87=IL>=0/4;g[?cGDQH:89OQ1%(*Evzpw¹oicXJ?4.+.0109H^:?=AAB>D76:=J@;/.5IfYNa?KX_[UVr].&'(1Iuz{w¾ýld_TG<3,,0116@TQ:=435:?@8?:>8645895797;=732/5=Sonnknmnkgijjeifkeefffeaa`^enszng\XPORXWY[[``afbjljliklikohjkhkfkhgggghjmjmqqxqvsvwuy{zxxwxsuxxyuqmjqǍuyxuurlqty~xxt}}mijfYEE@;<;9F50..534VjB0342:9:;>/1-5=:YfC00/57IRB6;BD414<:=;224=I?4==9HJdiluXL>?4[gC.(%'&,4Y}uz½ƺxn^XNA70+).268LY@OhL:@7;H<49>;:=?;@>AA==A@EFBAA76:526487:9>;9015:AZimmlokmlmfkiikgjgfffcdeb_aggt{xoi^WNPSOXUZ^_cbebgighjiklljnllllfligghhiiffijo}tur{{vsuxuxxxwxsprjrժ|twtvyzx|ythl~{~~~|uqpibWYH:556946-6:=giE11154CLJ<3>A>@@CEHCA<>9;322886==A:<2313:Lbxlknjjkjkkjihjgjglgefdcd_^dknxwrc\UPNUPSUZY_a_aacfehkjglljjmhmoglhgijghihgfjjr}rsvq{wxutxtvstqknmqԢvsxsuyx{~tngfsv|zriwkg`MITWH76:C?5134AfkM452216@HC79?:687<;F533>AB=86{G--.(*,.+.2aurz÷ui[VE?71.025741559;;:=?>@A??F>BEEAA>::44464878>;:<71234F]r}iiiookjgojmnjkkghffggcf`adiqzzpi\XONQTUTY[]_\]agfcknfhlijlmilnhiimegigfihikmmpxsruyvzswwqrnppjgjԦzytnwwzuusjggk~{bP\[RR?J[ZR?>ARVN935:ciM;21134:HH>>??22575>:79E@C=:9FY^a?Dg<26;P{=040..*,)*+:hxll}}rh^SA8421034=HSDFd>7DA;929?<88@<;==><>@@BFAGEC<<943437;8==B=60433?Ro}gggokgmikikkkkhggbeddca`_]gox|ud]VROTUSVXZ[ad`dedhkjgmgfknmhlihijkijglihnjjfhks}puwvystyxsupkifflճ~uuotx|yxtsqqlgj{~|ypfhTEB@JWRSNOQ\][H>6;TeZ:401403CF<5C?825927=>CM>>D9:IT[Q7:^=33Blm251-/-,+*((-:mvit¶{mhaOB8//015@INQ=WU6;?<@5>4:=::D<:;;>:?>=ADEBCA;974677779<>><<324883W]/1/-4-,+*'''.Dqtks|ƿthbXM=0+.357DINJAs}Q76:8;489GH<>B>:<><<<BD@;8926548899?=6032975858A]V33AB9?UY0133210-0)'(*-Ksmt{~Ŀ}qfeXG91.146=GNLDWtP:2:77229=856:<;<<>DEB=79735232367=;4354;=GQn{}hhnlnokkkjdjigfiiihhafaa`imt~zjeWONOOYXXXZ`a``aecfcifkjjiihmpggeiggghglljklnlororvrvyzyttqtspodjghʚqnmlmoklmsyvswxvnu|m]wzurrrxqqsgK4035CW^U5515/36::5396358AKLFC6FaX32??38PW7ACKDA40-+++)+0Utmhv{wɾyma_TE8/1457FLUNCe{Q756773358584:9<8;<;>8B@A`aUQbj`V7.+0+,)*-3Rg_byvwŻtj_`P>1,6549QUNEHpvO:665482335959989;9=>9;?EB=AB@;=55<576273;9;696<;=JYo|iilmijkniomingigfgehcaa__agw{zqdZSRMQURWYZ]_ecbbcgfijkheklhifhgfjhekigdhhmqoplqqrtwtsstuutppmhfeasŏuilknrwutptrv{yutqqx~{ys~|vxq_95/18@8FXJD975257468;467GZQS?ALOXL?23=aR/,0<7Rnge\]ZH9.,.0,),,,)7[t[Uftspd\XL;2070/=YRN@K}Y;894316475687:9:?>C=?CBAB@C@5953454469<985665;CRft}kkpoklmlklkkmimeeiged]__^bgnwuocZTOOROTVYWb_cb`fbgffgfddjegfifkdhiefjhjigjmpkkosuwwuvwtvquqoogeba}Ы}iifptzyqstyz}|uolpw~xzyztV8239A:3>SPA=73255494515@W]VE?CTU^N1.4BVP03279453844998@?@<@=<84975416=7;77426:?G[i|w}mmmjkgnnoloqijihiegge_c__eisyoaYUNORPQ\[Ybc`cagihidhkhllfihegkgjhiohjhkjlmmlqnsrwvxxtrtqslkqhd_aȯwihsx|}wuxy{{~y|pkgrtxwzzt]I<>C?73;87038=>Yhv~}z|mmhnjjkomkokniehhhgeba_^`bnuxzpbWTOMKTTWZ[_a_`begfgfhffjigmgifhefkhhdhddgjkknosvpuutsxsqonolkha_`̽{nknx|}ttxvy}}~vqiijx}ym`ZJQWJ=;:LdXJC6771052487H_L@GEVTYXF/3;IP<.5>YrxkL123747=732012300+,-/;\gmxlSQ`n}xýſ|jfXOD<7627O^VMTIn{~tV=;443355576798::<@<;G:<<=@@@<@@8585373457<=:;2366=S`r{|oookmlknjhljklfehgehe`_a`fkr~zocWPNMRRVV\Z]`c\\cdfbeggchffigefgdhjceddhhjjinoknptuvqttquroojifda`ûxrowz{|ssz|~~ztjhmw{~{xmg\Sid_TMDGWYND99453417:@JSQHTEIT]M@;.;LOA13\Xv{i[:1458476696326714,.2-:@Tlu[NV^ibxÿſ¿żxibWRK=73/;jaUJVN~|`D:37/43216386968A><=?@?>?:>E=><989H55151289?:6565>MWkzzu~|oomkplklmillijlgejgdfba^^ijs~{n^URMJPSVSUYZ^c_]_afhehghhcffhgcjjfjgedfgjmhlnmhkputvtusqppqqpgd_`^ºztyx}x|zxtwv}|ztrsrtw~}vp_\zqk\ZXOMRNL@@?74/1<=GMIOFCFGTRH@?1:MQ>/9lZts]W81326=44466:66=61020.13B^ikZVY_NnýŹpdhTTC=606WhaLPNe|wcD766.3202355768??>==<<>@>=J@D?;967:44244077>985:;=IKarv}|}y{mmmollnmljimlghihjhieca_\flrxzpaVRLMQTXRVZZ`dbcbeejhjegihjgjeddegfhfbihljhkmnllprvxrospqornmid[]`x}|ymkpz{z}yyyqmv|uc[vwtoedYHPHCA?;=<;<@?DA=C>FB;97;28.24557<9863<;CIZl{}zu}llssqlnjkloljkejkjejdb`cadlu{zpeXQKIOPWU\[X__\\aeieejeedecfhdcccfdefeggijgholnnnpupuvynwosmlgc\]aʻy|~}~sebjtu{||vvu{tq}}q_Tx|xq[EDFBIH?<=;>>CX_OTQFE@G75:98AGPE9A\c[W]L67:4536755697:757266/118PHRgiSRX;Kdgqu¾xlgaOLL>0BkY]US;_~slYA81/043014365;=?=>:==?@@A===?:876:643/379<>:8877ADEPavwvtoonmnoklklmjihhkgfeff`accjms|{q`ZRMKNPSTVSY]__]cfbdhdhcefcidecgeffjjffhhijimmrqmsspvrtnpkoihicc]^~}v~zxkhkpsz~}rrnks{~xyb_|tkZPHCSH@>:@JJDEXZ^YJKF<:55254>DFEHC\^DWNF8425;585566777:76740/.2=U?DMYLZX;PuptpĿ½¾th`QHQC3AvuV`VICx}xm^C1023344034649<9<<=??@@@:=:=>A;=853502488??=<766=FCN`l~zvuppopqnpnikjllljljifgefccegmw~wmeXRJMQOWXYY\_b]`_agddageegbedbeghgghgcigigkmlkqoqrpttsrsoopmjea_[_ʿy|zyuwuqfmsw|~{xonlqlp~uyzpgVGCCGODB@JTSFJZaU[IGI?<<96643AEJVQ`Q7AHHGH3365568787<649<=?1345D^;LKCFh`F\wrx¾neXVRH4;|zVTTYB[{tqZ?2312258515445:<8;;==?AA;=AA;==<=:6412:78:8?87:8:@@KScvzy}|onnnmrpjkjiiolmiijgbdccdcgmu~vi^VRMLNQUTYY`\[_abccecdccfedfgjfjgfeeghgfefmmqmpnowpotnnpplqfhc`^\fɾ™~zutwxqginq}~urwrkhpz{{mkj[EBAFPTMGMX\LN^f^bIEG;B:D;422ATg>KMCAkgTT`ugvi^YZR>Ee}ZSURJC}oV=33442253269788888>>:>9<;=?=@@?@=6422268789;99;437ACMYj||z{}{oomononnhkmjjhhgggjgdfddbmnu}|i^\SPMOPVTYX[`[adabjceddgegdfgfgffdgfiifeghhlnljnqrqusrsmonlkd_]]Yypy{uxtxytsopy~wyxtomovw}}wwurknhdd[]QKAJQNJS[YNYb_aYCE<:==:2.67@Yk^jB/47E;TZ368578:B@DPZW_[[_YSN^uXPNKFwpU^ivxhr¸}la\\UFOvjP[GSBg{\H:652223635:6447;:?<=D>>=;C>><>@;;>73046:58=9A967:DIFRjtz{u~nnompmlmlillkkigfgihfdehgnrw}vm_YRNMORWXY_Y\^a``dfegcbbeeebedhiefhhjljiggijmimopoqpssnqqgkkc^\ZcûǺtjwsy~||ykv~}{xwzrw~yy{qnd_p|wphWGAG]ZLDRXT^Z__dRF:954732.5=Rtin<-,058Z_3?;>?;<>C@NWZRTQVO>7[tTGI7]wtZu|zhTt½sd][]NM|riia\\\}wlD:9265445343327<;B9>>>:=68;;;9?=78364379779;;=;8:=@DKbr}}vxnoqooopnmiijjkjhkigifgegfmrw~ym^VQPKORUTV[[]_`a`beffbfeggcefghhghkighhclijmnmnopqoomsonmiffc_W]vĶz_lvwz{zzpuw}||{x{y{vvpz{lTLNQYZRKOJJTSd\fcE>973120/19HhvwC0-..;9;9897:>9?=:<>755777458=;>>74K[lv}yyqpplnmiqlgmjkijiiighdgghhmuyzl]XPMNNSTX[ZZ``aa__ifecffeffeeehhihgecefijeimjlklmplmnmmijgdd_ZYfȼǶrdxx~uutz|}y~ysztmo|~}|uxsaaed[QMBJHVa]]T@>23/-002HFdo~O1.426626VLY>W=035@@738>;21/AllF2.8kxakwEYopr`^RCGjyg[gfY_tdzuzvpuɻsK7360/4346439;7==>@?;;9:A8<=9?FJRbq~|zwxnmmllnnqlmmjmgkhiefggddggps|yj]WQPPQUYY\VZ^``a`bddcfffghkfeffijgggedeihfhklonlmolkppmikihb_Z\ǻ¸ny~~}vsopy{~}}xx|xpr{vvyvzwvrqfghe\[VE>AGRZYP?8510./-6EEXjf412.2559V`^7b735=>>89>?::77AkrD4+1J|XDl{wTbpcl»xdWQKOmrbNSb`XcXn~xryjeyöF4203153150579:;=?<;98?;<>C;>88442068647=@<;@:;560@boN0,+Bi+AZczsraf¿jWQO[liSOX`\^`XZxprtgdx̾O:212917/514568;=:9:5?>;;B<=9:236<53463::;8=6:EFDSfv~vwnpkqqhnlmnpkghfgfhghjjiuy}zl`USPKQQTY[Y`bcfcccalfefgeffefeadhioifhfijhfjjninkkqllhjjfc_\^d´pjo|}zwpmsyzyz{zwz}u}}xqnbgdh[UOICEGUJJFBD_YNIF??@95146@]zo;1/.3/39S_`7a=246:BRLBBE:6489AHAMQRQBHMVV`UID@DA3-14TnhD0100226QWi:\G31075703`i*(/Gpyxv¿q]VLS[WCHUelsd]Qqwkz~ybq̬i9566CHWjzmnmlmkljnjjihhifmjkggojonrx~yn_[UOJOQUVW\a^^a_bcfddbgffjcffhffhdgefgjhfdfhiikkqlkpijfha\^Zcн½n_^k~{|~uldl|{{|{wzyty|uxnYE>N^^JFFOXUSFFO`eQHAFAA539=\s`410-/01JMj@^X65454439B^SLETV^\Q?/-L}x0''2k}rs~¾sZPKJ@:=JjlqkSIc}hqwmhyɸC8318-/0245688<><:9:;?@?@:=97;:84478::8<668;<>Tcvjkljknkmkkjkkggikijighnikrw{xiaWQIPLTVXY`\a]b_cbedfdcbbecdhllgedfeebgeefcknmnppplhlhfba]^\z͹mh_eu~~xx|xley|~|vzzrr{}{x}|oikbqm[QOKSNKJGECLT\ROLCBB=87AZ`K20-//3AAcJ^nA5^jpfMA_mgyqm}̿c>3./031364768:9:8;:<;9?9@<574453:3;;:98654:8J`onnmolmnkkhkkhhgkgmgmjjknrsz~zl`[SMNPPV\\^bc`bcbechfbfgggefhjkccdecdfffhiehkninqmijfgc`]Y[mɾȳlfir{}|omz}~~yvvx{}xuz~ziiWVTfokQA=ECDFLUKFOA>?>?9>@QP<5/0/0;;\bNhH46?:@bsbKD\tyqaE221Tq*&$4t{vuy¾¾I3,2H^omZAIvughtydh}̺A/-1<036:5697;;<:>:<:77=::96244<4::=?87<7?:@Ximmlnpkmjkmmilhfjilkmflmpov}vk__QNOVQX]Y]ba`ac`fcchdjeejcfdiechccgbeijfchikjikkhglga`aZW\Ŷİpchvwiowwz|}xxv~~{xu}wlcRP[w{tYUC>?AOVURNCBAB<;?76APN7/..07=Hchp[?>@=38;7<`vmONZvrmZ7+-/]rH#"&Znzw|ļ^68BYe\DEX}qdrvtcsϿ}6/0/.224647687<<68=<9:;<8953648879=:79385::Ndunnmpmkkkljnhkncjigflkkqqoxxwn`^YMNRRX\\]^c\`cbdgbbcdhihfhhkgghfhfgjhjhdfekjihjihicacZZYaнƪlbioy~lcfqy}{{yzz{{yww|snb[SWu~o\UYC9FQDCR`VG>:BC7554@GH73-3:=5HqzvO:MK8875>A<@=SecQ:8<8303:?F:4.09<78_pbCQVE6349?HidYKMWeB-/,4J2)26H5`~zt½¿ž^]G45?gwrl__ti_gкw>4/14/2246999=9=A<69;?<957657979:<;87/5@68Pg|ooojgqjiniejljkehifjijnpvwxul_[SNPRRXVZ]`bc`ecdeegciilegjghihjhdihfdibdcefkkiilfge_YVX[qɸμ~{{nktvtu~tkeqv|~|yv{ywhmwbkxWF??A>ALekR>=565493:@;>8::59<847=27;7;7?:379;44\t{iwjVN677=63DkfR@KVWZO7,)45+,ihBh7IvxuĿXGf]RO\njiiwӳd5..15035989><>D;;?:9;747977;5::=B864027:;Ykzopljlolkgkjlnmkdigkginnouv}wj^YTORQSVWYY_`gac`dcedgjcfgakgifeeiigghejiikimkjgjggc`_[VUgʼ˺¡s|uljgnywunp~}{~~}~y{zoQy~da\PG<=;>Klo_M9766;89<73;@94Oqrxpud\R67=304DmZCHW\c]M20*.+0\v[c1-Do{¾jSIOckkerˮX32/4502;678:D>:=;8<>:74;662236;C@<:95978Ffylmmlmomikhjjlikhlhjhkmoosx|tl^YSRQRTZX[Y`[c`ddbaeeiehld`hdgiflfddkgffnjiiijhehhgb^^YTUu͹ѱótytqe^rxyw}udnvzx|yvxlX|obZRQ@;9=L^lnZDBD:;:=45<>82@bxqo~qcL334395Ds~S>@Qfv\>3,0+*HyAT3%)=d}zú¾ǽZM`ilat}~}mmqyy}ͥV42/15437556<6=;8:==?868630248:?AEJ<:599>Xojjlmlqklkmgdghijjkgjkmpnrt}thcZXMMSRU]Y_`acdcg`dgddfggifhhijekejggfdjfhhhhheggic_`]VTY̵ƨ|~scmurto{}|xpu}|}zwvzgPyviX\SMA8DLU`geZHA:?879:;:5>L^{]f|d]L761975XmqD8=<7>?Rgnnkmnqjihjgdjgiehhjkhpopqu~~rh]]OLPNSXV[f]aagdfdcffbggdfhfjljhihgcdiiliedffiggigecbYTXcͿμ̼wfahturwvrz~}x~|x|kL~vdaSLVC>?JIa_RRYG8;669=7:BLgpZnv[bL<48?9IWchPLPP[hOA9+43pf+))&&(.\qqƾxZUs}theegcZ`\`iqt{ͩa90/255:4857:99;;?88933823347:9;;5=HM38FUqnnljiljiiiggfdehhegllrtqqx|tccYWUOPWVYZ`^bc`dfiaddgeedehfghfijhbfgfgmhmeihehchfacfWWWuϿ¸{zlbcrqtp||qr}y}{}nXw~}qcc_]I?B@L[PNOOFA?;>?=;?GVg{a\|oRXVA>;CZ_QZ|\ZML\`]O6.2uv.,*(&'*BW}sq{¼þ·h{~~{eacbhd[\[Z^`cgo{Ϲd61488775:7899:;8::54611158>@BACBM72378Lhxllkmljnllkiffiggghhponsrty|se_[UPRUSTZZ\aceacb`ghhjfhhfhgghgogfgcgjjifggcdeebhgeaZYXX{ʺоո|{}umhiloywwqr{}~|{zvecyz~~{f_mpc]PMONHIONHD:;37ls<,(,)(*0GTsrmv¾Ŀ÷zwn]`^^bb_]\^\[^^^huvҲX2-118524556<=8;=>73875267898@E=<=;98>F^rkkhkfkmkjjgifedcejjpnnrrwx{nfaVQQQSXWUY]ebhaecehijkdfiggdjhllfheediiighhehfeccac]ZVV^̸ţzpxu}~rrkapzr}xrz}}||{|vunbnykcq}tqj_e`RF??D=9?>AIcy:.()(+/*14Astk}¼ýɿ}a]^]``d`^]^][V_^`fktz͛;/1312584547:9;6:5677671466::=?;:5437=@FGK]faZx`Xqmec{hIZlk;5:?33;ar>513+92&'&+>fusƫte^Z]^d^\`_][[Z]fcffqkmwÀ=22000336759<97786447922<=9=>A<=63258F[piiijjighjeiijdgbfhnmrrssx{~~oeaYUOLQWTX\_`dcdgeddfhikggkfdhjiimfefjihkjgehfhfecbb\YXXnͻ˶~wqwuz{ztvvmektvuun{y~}}vwkh|qk_p|yty|vldcTKCND@;>;83N[a64493,/$((&+5\³ÿþ½¿˹e^Y^_W[\\Z[YX[``c``cjjorɿB854/006/3889:98:637164;69;@;>6931009UpggfhijlpnjiffgfcfkpnnooutzsbaVWRPTZX[X`_`dhaefehfefieifikhhhhfehhiiilhffihdbhdc[XYVq̼δytqmzvwys|ro{xwqiksyvyomz{~~{}rem~{zieq}{ijljk}sZbTEGNZOPOFSknl^`hbJOG@MUThtT?BJ][NKDHJ\7:H20..++(*(,1Tþ¿þſȫ~kc\YZZY\\Y\\bbaZ_acbcesÖeD7.1010187:<5;87:8;28:88=9A@:51/.05Dbucchhghljlhffefeeimijlpusty|zh[WOPPQVWX\Z`a_ae`cefffdgbfgghikmgijgfhjellkihjgfbg`\ZW_ü͹Ϳzzs|xuxyttwosty~kcpxsu{xor{}}uarv{{seguldij{tsoUDTSKa^PL]oxm[QSITT67GDIiiD6?IMMP?FTB<4005.**./,**H¾ǽ¿Űwa][X]XV\Z\_fZ_`ba`ejp{ƝZ5-130.397;9=957589>:52:9A>=851-.2=Ujffgigkikfjfgfilbflhhorrutx|ui_WRNLPTW[X\__ch`aeihijedgdjjfihghejfkkjeihhkngeefe_^ZXb·ζŮs{xwtptqqrs|r`iopvw~lv}yq]k{zqhis~uofr}xuiPLITaf[W]pr[RMQcI;F<:Dhs]E>@?=EYUI2360+,,./GG/+6`[j¼ü¿»Ǹoc]^XYY^``\\aY]_ZegopuԲ[4.626/3487<<4>895353267?<9522:-27:>HQg|ycA>?<]NC:35204/.0371/,13:\ƽƾ}re^W]W_a__X]\W_cegdrӤJ.c-3.446<6<:<8895;2276=><9744-.5C\viiigggigiehddifhgglmqoppq|}sj`YRQNRTWYWYafa_chfdceffjhhjgfjkifehbieighljjjddffe`^YUtι~vymoonqxsyyq_aszyxxr|~~}||}teu|rh]adgmfbYY`gj`UKWY^x|xzlNF@JEHF@=M`v{b<=CXBC<997:;3043223--**1Qt¾Ŭ~nh_]]][Y[\[^a^`^etς22/2/046278787347/3;?=<;;>4421/6OQ\pjQACLB@AAG;=G:2163340.--1/JƬ¿Žűla^[XV[Y[[_`\dnr~ַS.00-32657:58837;146777<:A:730288Matfggeideefdgmbffmlihlkmmovyxpf\YQOQRVUY[[ag`_adbeegdmhkmhefiknhgihhhghjggjlgee_^\XZZ˷̽|rqtlo}vwszrbgu~|os{}vs}ofdeeibSMIC@CJG:Btsxxwqj_]YSQUq^PGHQRQXFJFQA52:;802A7-+1Hxž½ĿűrdXUYUY\\_\bfgoΖ9.+*/..7976::24;3214367:==<5424:OXh|ggfedffffhgecgfgjhfghmjpvu|{tg`WTKMURVVXYa^dedcidadghigjiegjjkeflijghkjkghlcf``^\VXYǺƷ}{rv{wurv||mkmzyuxqu|y~~xp|xqonjkg^^ZWY[aM?Gzo|}{oeSGDHR\lfapgXa`^VX96U|w}~sloxrypfaYixzkdg[FRaZCEl{n^9,5xIJĽþ˽oZQW[Y]\jbcnvܭG0*./4>35576578852314;;?;857=7@=K^vhidfgfccebgcfgddgffijpnnpty}{qhbZUQPOWTX[]^c^ggffddfggecbccgfgfheegdfhgljijmgffb\ZYV[ľmfjkz~|~|kjvvnp|}re^ciilgg\Z]\houruxfQodx¾Ŀơ}hVTVZ__g}޹G/***-/244546:25956439>A=88;898@MUmggdfecggfdedcbddhhkgjlomowy{pbaXVRPOT\Z^___cfhdeeiigcdd`ccheheeccfeiejgighghefb]\XW^ϺĢwhbdv~y}iox}xxslejimpss}~}wxhZB{ëľнyc_fda_p~w11*+-/349496879656347?A@:89CG=?DHbzdcdefbfffdgcdcccggffjloost~}ob_XQQSQTTW[``fadaeadhffehefadheiggiffkfhgdgfdjfebcd]WWYϿλzqkc]iz{{sju|yzx~zx|xqi_OLʽ¸þͩypgYalt~ڧ;,//,.345::?A857;5645>JD:=8858;BDXj}bcabebhfhiecbcfbffediikilsy}}tff[SRRVTXZ[]_dbbabbifdefgbddceegjkjghgffacghjdhebac][WZ̹ǯzpnrj_^n{|}pu~y{{{wy~yxsxnhY[apÿ½ýŖnjmpxS-,,/03627<;<98@:=49::DF?>8779<7BLaqddddieghdedeicddfchehihjmvx}~vofZSROXTY\_^_abdddeieefeehkeeififgfggichjhhhhljicd``[Y^ʿİ~}pmqohaayy~|lsyyxymsz~}zƶļ¾̨yt}|0+.022539<98:86==589GEA<:A6=<48@JWm~eefegfdg^`cdcafdb`debfmipszzrjbVWPMTV[]^]a_cfdfkchedddgfhieffbddbffehggidegikbf_cZX[ɷ{wqonnfafp|tpqz|w|~q}Žþ¾›ެ=0.-2026478;658A9006G:;>:=:688DEGQdxcccjj`abaaaffdfbdaecbeihopwzqiaZVRQXWY^_`c`ghehhgfheeiidejjfekdeffgdihgefhhihjeaa\X]|į~y}vpnqnhdgxyknvy}yx|}Ƚƿͳb00.-25;17877;361249<7::?=8475:H?IUlcccfecbdcabb_hcca``dbcegjktx{ofd\XTRZXZa`^abcejfhcgdgdhejdhifgkifghilkfgjihjjgedbb_[[~¿}xywqpiklmiffnl}x~wÿʡ֒4-.362837557<962>B20268=96::67@DJM`weddggaabaceeeac`daeeldeefpxzzpg_\URSVYZ\[`cbfgbeghhghfhdfgfjieegfhjkmngjkigmeiedba_`\wȶ}|yywzpmrklkvqkcudt|}ĽѾݳA/,3/12528695799F2/25358<;544;:FII`o}ddnkebhcabdgdfbadcfccaehgnvxyri`ZSTQWYY^^bdbcfdgffhcfdghfcedegfefffiiihljjcgekega`^[XmŬ~xmxvjenmopqrqlpit||mv}w|wŵ¿ͧn...105136686996603/255:=;7546::54312859>963788=DLQ[lzjifhdebj^`fafcebcdhcdikghinyype]]SUTTSV][`dddhejlkhidchhiighhgghffhfhhihkliloiehgha`Z`ɴŲ|njfgoe_Yfrxuqtstnntnsy|Ļΰ~ѐ5/.50015?97I=:98653433:88<3474>@MUW`o{ccfbbdhieacfcecgdgbbahigklozyni^WYRUSXW]^ddbddbfhfjfddfhifhififjhifghljhhjliojklhkbb_bŬµ|vnb]elgejjv~zurwuldvwqorþ¾Ŧ~շE362,.>;E37685;7867072389<63758>CIPQfreefdecchbdbadeffcghfcgeejmtzyqd\WUSSTVZ]]cacfgaefighlghhdeiiigiefghfikigikmjlmkimki]_bź~t{{ysh`Zbtrqhnx|zyyyqkcssjox{»θs22.247A;65<87:A868361357972224:EMRPUhwfgddfedgidgkceeggckdcfffmmrwwoe\^VURUX[^]cbffecgighjiiekjefggkgggefhhihgihmhgjllihe^__͵ø~xsvwrtqg\\kqullpyzyukljjsrtvuνŰӡA/31.>7;9:55:7;9:=5413238565369>?LDIXp~edihfjdfdfgfhfehhekgffdfiluy~xsg`[YWTVYYb`_bccc`hcijjljiiidejfhkfelhhjfhlkmmillkhjhgc_bĵzntrmrplkgfivxvpqxwqiegistm|ǽ˺`0.0072733:56:766856144876683979;=8AKcudegfigefbeceeeaigdifbccihkty}{vf`[TSRVYZ^`]bbbadfeighhjlifcgjhhhgfghdiigllljnkoojmhec^e˳~}nntjimlnpnjovwpkrviehjpwzmsw¼ƿɵþђ231,0433468=6747<64:8466867897:8766CTl}fecdffdidolfdedeefiebdgegjnw{wg_XSUPTVUZ\``fefeeehiigiiegggjhfgdifjfhigikmkhjjmiijfdaeİw|~xrnkinmllxtnnossotx~uwsrmrpiwvmuij׷C2/0012344749988=B<7.37=4:9<;A=9811;Kbvcdfccgfhdggdeefedgfkhjfbhmuu|ytg`[UTTVYY[^cacbddeefhiigfffijhjdjdghjggjikllkkknmmjhf``azw{syxmkqsliqsrjhdiouxtu}{vtqlsyqsƼ¿̼l64,.311223688899AH;314659;?8B9<32.6CWo~jjfdfdfkhhghddeedfcefjfijnuy~xrk_YUPRRX[[\a^e`ddfhkeiihfdeghifjdgghdbiklkjjomslkillha`cɱ}}vxuu|llnorgjqpqrg[iwx|vt}||tsslvyz˽ƾʻſՑ93,.3461:55=86<<>:68365565=:A>:6209?Maujkiecfehefhhefeefffegfijnltvyrg]XSPTRUU[__\`bgfbjjhddhhegheggihggeckfkjhiiptokmklmec_cͼù{yzvorpnpkkqopmtu|rmgmu~|ww{|zzukr{½ƿźǸشG/+*/34724767599;693114544:?<;<3:16AQ\lykkgeghfhgb^dedjcieijjjhknptzwve`YWQOSYUZ\__efcbchecgifhdgihffhghgfgfkelgjhopnmmijkea`dyȭr}xnpmgjshfmrnwptuzwvqx{zz{{xpjr{x{ÿ±ÿj/./-734496549:96545370A788==A<8=6<>OOhsggfdchifklbgjcieiigiikjiioxw}vui][UPSTTXY]_cbdccdfdfffkmikfjgfcigdfggjheghgnpmkjlljhgccxʶv||smwsopkljikjpqotprrw~{zx}z~}{qmep|wv¿»ԉ/+,.112896456<7;557333436<8:?7<:79=BK\fuiieighhjleifdffcmhhhgejllsx{ytg^YSSSSWU[]`_bcee`digjhjigfhfigifdgiicdiigggmlotkonigbcapҿztopgjnuvplrggkkosnsvvxw|{xuyuq{z}~||woljv{xx·ڦ9.1.25249:8548<87:6950523<:@97?>AEAELV\n|ffgeifhokjgedcghffeejhgnmqv~xrkaZUPORVVZZ\a`b`edggefejjjgiifighghfjjgihmkjimlnlllikf__hȴ}xoqiglqmqnoicgnqqsntxwwupu~{yrnz~~|vqmw|z~¾ĺøN++1211731568;GCEHM]j}hgkdfhflkfiefhgekhiihgfilow}vmhbWWOTVW[]lhb^acgegidfgfighjiihjgfhjfikghkiojloklqnnke_beávnpijnhcimlkrqqkkntmgkrsvvrs{}{tnot~{|tml~~w½ǿƾ|0-25:7;9=B::3:?=;:5894366886769767BDDIM[m~jjhhhffifhffgghikmghfegkmryzypdcVUTUV[X^_b``cedjifhfghiehjjihiiffjghijmjlmnkqopklojfgc`y˸~}qfllnkhjrstpnqqhfmnvrskwyutvy|spssz}}xtqytyijȻļՌ7232256:6>8:989<789550186996:=:9==>CAIKWdrggiekhikdggdicfgjjfcjddjlps}xlf^WUTURUZZ]]e^ccdhjdgeeiijkjgihkfdejfighljloqosprnnmnkfc_n˷{nenrnlmnlqtqfilmpikqwtogrx~}z~~znrstz~}{zqo|züɹǽڜ5723686789:>95<;5782220269:38:<88;LUi|gfdekkkjhhhifhgfkjdgehekmqw~xqf_UUTSWX[YZ^f_ecbifcdhjoijlljjfjlhhghgihkinonnppprqqqnmhceŝ|zzringflmimkmbhum__lqwstu|ysgjpzwnmuzyyvvuvmwwz¶¿ſ¿û˿Ǻi-/1-06894;>667849<68825254556;7<5<79888BM_qffkfjhihhfffegeekffgfhfghms{wsi`UVSVWV\[]^b`aaffjgiigkjiikhgfkikgfjillohkkpsonrxqomljgderҿxurfkkffojmqolfgllg`hxyxxwy{ytqy|}~ysps{xzsrkltúÿ̶ɽ~3/2114876777446:6=>9786647/59:<<;869426;>Nbxhglcfddkkkhhgiighfggheahgmuy}ztl]VVRQVXY]\[ba_figlmhkjiijijmhdmnjlfidjkilnkprmrssqrqomjgemʻ|}zqmhafkjmnmospnggqrkfipvyxwxzzzzv||}~|ts|}wunnmrųȥŸؒ0,./395>>7686967:8:;61424235:97>;79126104DSn}iifgfggighhhgkgghlefggcdihsx~zrj`ZPRTVTU[]\\ccbdjkifejilkjhllhgmkhggbmlopnmnopopsrvspqiecmѻyqywjfc_hicjppnpzuifsxsiflw}xwrw|}{z{}}vrxz{xvnils½кĶޫ;.21548984585;98<;:858727336:99:<<=;90(,,3A`reedgfggmehigggglfhlfccfgbiovwnhb\SQWUXV[Y[\cacbhfhfighjgjjhmmngmiihiiklrsnpprrsuqututoijmɷyyvvice]_gdgkssuwvqjot{qfci{xwvklw~}yspqyz|yleho¿­ɧµ߸D-52135785779;8;<9==96444446;?7;=<::92.(+/;Tk|ggehhhifighekhghedffdffdhjqu|tnf^WTQVUXX^[\_cbfchegfjiimhjmnlnmmikhhiilmntnqquqwrqztvtomlkͱ}zrjjbbgchkieiprqtusuqsyupflxxvllzxx~~y}vry}ogdq|¿˸wqvǽ\13/0/45656579@:B71+,)+1DVjddcibfefefcghggiejgdgbcdcgru}toh^YYPSVYYV\^`daeaffjihljgkfggrjkgkkilkjonlmnqrqpqsuuutspnijuūzxmghjnhbnmkknj^bmvyzzwxsyx|~yvsz|zp{pgek½Ŀ˽~yj_WIMaͿ҃/--004:::8><<=<388847565432456;8>:<;860.**/4I[ubbcabbfdfbgfihgffidfeeedeipu{~tlf[YTTRSTUY\\a^beciekdehhgemjjggnjlhfeioqnnrlpqonvqvwsrrnqmirչ|roeikllhhsmlhjfY[ntuty{sv||w{~zyzxz}|zu~{xskekyľºť{ndXN?AKo³ҋ.,,-23666:?>DB9;848586545523985=;8:79=20-,-<574515224<98486;577@8=:<53/.179HWobac^daeebcddfadbegbckcffefqy{rkbYTRQRSVMX[]_bc`begdcggfgehinikhgkflhmmkoqmmoqsqpstuxtqnhlflíqhbdhjhenkqsrhonpb\huvzxzzxzzzt{{rqox}vy{vvqjlxùŽżqmx}um`WG;3.0Ab;Ր//-013347;9B:<;87915356:884406459979A<<77421879@>>7767489846/168:::8A=<9::659>I`odc_]]b]^c^cbecfhcbad_[Xaahmp||uicWRUQPTTSQS\[_^edcikigpffghhhkeihhjkhehmlljmonoorpuvuvyttookpɼzhecbkjknhlkoosxtovzpfiw}wolx{xvy|sksyyytmqtsigƼ½ΧjTas|sme\F95,**).9]ɹ̊1-/215256878;=6<88897479;89950345<;7=A>:9=7:69694440.3;469=>?>>=<8;6>IXn_^a\a_]ed^aca_gddf`]^`_Z_fqy}{sk`\VMMOKRQQRVZ\bfc`aedfgedhhjfihihgjghhfhmmmlmkpoosvuruupwllimxoiihfdkolmtnmqoszzqpqxsutwnnv}yrt}ugov||vnrtjlǿƔ[R[gu~~zq_]K=63-+(-+.3H}Ʊ^001-/32589>9>C:;==68>:859:@<;721466988=::><8664763<459;;:;<8;45:8HWg~[[Y\]a]]`_cabbaebc^]]^[^^gpw~voc\UKKOPRTVWYZ[`_`bgeeefgegghehefhffefjdijnjnknnmosrvutqqorohhn­vijjgnggmqssvognwxwwruvwywxxx|}sr|}yxvgr|y|}smrmiuúľټ}PMQYmvyniaXJ:931-0*,+,-6_ĩۜ7.00/024277889;?<<:@B;?6:4658:HWo[[\`^Z^__bac]`]b`ba`]]W[`jrv|}voaVSPLMOPSRUW\_`_`cbffdgggdgfjhaddjhfiifnkjiiqonomqsqsrupnrmjhnóulfcklmnjlotrqlituzuu|tqu~|trw|yv|zzplv|zymllkq»üú̝\FI\_px~{sh`WI>54/2//6-**.4M̶{..3/063135669=>:<8;9:A<9=87959:<9>9854=8A6;=<<<@46/24ANhxbb]\]\_`^[Y\[^^^`_][]X]WZgksyrneZULJQQUW[VZ\_]]aeacadfadcffcdcdbgfhfhekiinjkmlolnnrsqpqorkhhmnӾ|qlfhmhinlmkvqnmtvyqpxssv{xrs~ypzz}~zv~tlqw|pecjm{ŷ¼Ż͚QAIQWaq|~yqhdTF@;6424303.-..*18hʼ֛4/..21725358;@A:=;7<9@?889:7<:>:6577<<:>9<983/015GWl}ZY\\\[`__]\^]`_a`d`YZV[W[eow}{vle_UNHJPVUWY[^_Z\^`ddbccddbdedbcccgehcgknjhkinkloolopprpsrnlkghgʦ~okfioljijoqspspszujrpyvwwrnu{|xqlz}~y|{qnxysspsrtƿù½¿uFCNR^epz{qncYMB:3636222./-0),-3Nȵm,.04120454668;<<<:=78BCM=84898;;9;<<7:756;;F>@C=:17014;I]s[[\^]b]Z`Z`[Z][`[a^ZY\\Z]gls}}wpebXPMMRUVUY]_[_]a^ce^fcbceebcbebeggiddhkgijlrpnsqpuytrtrsrsnlogyʸymbijninhnklplouwvzxqtm{yqnrzwp{{{xv~{~ppvz~yqppo|ſ¾þļڪU>FMU_js}qnhXLB88446655012//6,,1G¹ҵQ*+./416256927=;AD@;===C79=7:;6?9=<>=@896597??87646834311--++.5Cx·ɑE11/01321244255:=?98;;;:;:8:9;=87;<:<<73:4:8;;?<6621-/8:=OYk|^_cd^\__`]]_[\][\Z\[ZZY\`joy}pja]WNTRXWW^ba]ceccb`egidjoggglfiecggljmwrpnonnmkqntsqrvussttnmnn¦wkfeqonhlmlprqtoksvruxqmooojr{xvw}y}|wvo~zuolqü»i:=IO]cnpxgbXM@=:2156563640..-.,-7KoͬrL62322611:C9389@>@<<<=9;><>ADC;987?=:=957538;9<@<;773435;@N[pcc^c^_^ca[^]_a__\[^`ZWW\`gnx}wqg^VUTOSUXZ]\acbaf``ebcffhhfijojegkginjknqonpksootquswvwwuspqorko{ȭyffjskmkhjmnmvqonqustvvtqozyrw~xyw}}~{y}}|oihmyĽܯ[>EIQWcju~xjaVFE:46748637325112.268BPhƼ˽_F75241236565377<>9=;<>;;=?CD?>:6?<;<86;637669==A=89565433DIQ[coz~uleVID>:64356735071/2138?ITYf©ua@43//2551<8:95;;9=?<=:87>:<>@=95>78@<:;434;<9:=734:<<:?==98411-,6@[f{^^^c`^``b]]^]_ca^`\[W]\Ybhsxxoh\[RRPRV[[X[\`db_ceefhegjihfgigjjgfihjdjhnomtsrrtvtutvsvwvwwurompqƪnikijtvfhknnpmotxopwpvtvsrzyxz{v|xy}xyz|u}~||ripqnxüļ¾˽ˢlN?FORW\eo|}sn^XMA>86468735212435<@MT_fmtzmK8332226025968:7;C@=8:;==>?<7:72:;<>===73755;==@@9764/*/58H[q~]^]^^^cf^`bc_`a^^_^]\\[[disz}{tlfa[SLLTYXW[^]_a_bggdihdiffhfglhhdifkhkfjjnnlnlpqtxuyrxwutxvyvtssuoǧuj`jppltognuqtkpxsmtsvrusqottxt|~|u{~zy~||~y~|~|szuxu|qvżſƿĽТydTCLQPX]bry~um`ZJB;6556466241258;>NS_fnv|}c@51223217484979;?=9899;<99<=76556:9;=?:893496<<@>8;64103<=Mdv~`a^\a``^b]`a]_\\_b_^^]_]fiu{~sqhd[SSQUXVZ]``c`^addheheehhifiigiggghejimjnilmnoppxuwxywtursww{stquuūzkihilmorikpuvrpsrrpsvstzxprwwtsryzz~ovwt}{vzx{xýĸûƿùpV\[NJMTZekqx}wmbYJD>5444466/30269@JV\gsy~uS:05/2112043>98:9@:=>>?9667:8;;BB?<6:1014:NWgt~]\_Z]dad^b\__^cc`a]`^_^]eksy{slg^XSRTQRZ[\ba`addcdfchbelhifkiigeffhjhjjjjlnmqonsvqutyvuyuuvvurtosw{nilmlopnisnrtvptuqvpuvtutwvpqqrpr{|~y}tz~wv{zv~v~~{Źÿþ׮XCEHLJTU_bhrzvmbVHD9657566163287=IOY`pyylI<1264346272086==9@>:9@>9=:;8;58498:;<877367:;:?<9659514?AKUhyYYZY]__aaaac_bbbba]a\_^cglrwzume\[UQTQUXZY]adbeddaciidfghijeefeggdbhigjkjnmmoorsswsrtuyxyxuz|pwxuu~Đqiikjknkhnmnrsrustuqrtossnusqmvusly}}wxy{}|}}s{{zzw¾ƾĻĽȿÆKBGHJOUW]emt}ukaZH@944378241317:FOZcft{y\?2434122412:46;<=?;<;=BC:B<<:532549C?<8<24585A9;768;528;=?F[mw[[[ZWc`ab_aa^`a^a^[^[\aadiv}|qlaa]SSSOTVW__ae_dcfdgafdjhnmlihfggiffimhgjjlsnoqoousswwwyw|{x|xwsrvwuvjmdplhfnohosswvwuzplxrnvtvwyvnqxtyu{yyx~}{ƾĿ¿Ԥ\BBDJMRV[bcpt|}ymc]JA65624330327;:?<<9997359??A684421797978G:65784>ANesXY_\bb_a``abd_da^_aa_[[ddiq{~vobgYTQRTWW\\\bad_cccdbdflhihgjkehifgiifdnijkknnsomotsvxvywwy{|zwwwytw|xtrmekihjnlnv|wxwsurrszvxywxrwqtsyyupyx~~y}||~¿ֲqD@@FKMRW]]iovyti^UL<761530//548@CQ^dm}}gI742013562345:79:?;B<;8:::H9:66478;9?9:5411687:8BC<858888?HVex^^Z^\bbb_``_a`e`\]`\[]_`ejpwroge\TONTVWZX^_`c_chhcfihkihihjjfhhhihjehkhlmlprusrtuxuxxvwzzy|zwvuxz{||wpltrnkilprwxysqtxrrsuvxtnrsqxvtoz}tvw}zy}}{t~{Ľº¿ŽɾzPDHEKNRRZ]ajnx}{rj`TI>7971201585>GR]acsw[?312.3132284759>;:=:<:=<97442:7;><;;81448=<::99=7::6<:APSgz[[^WZ^^`ca^d^ba_aa`][\]^cirxurfb[UQOSTY\]aacccejfdfgecfefhiffgghimjfgkljiqqpptssuyxyvx{xxx{x{y||y{z}}wnruqjlqrruwusupstqwtlqutpruvtxtuxzys{zz½¾ǿÓcFGJJMOTSZ\aenwzpi`VI?83812.138:BO[_nmyuQ791.1.13022;6;8;E=<>;<9<=>;879585;?>DH>:545ES[dlufG60-/011.1445589<@??==>=:<<9<443358=><<93677746>;99A>6=7>>BP[jx[[S\Waa`\]`a^^_\`ea[\^Z^aioy}|xoe]XRRQUTW\Y_cacgfchmhgkfhfiiiffigfjhljjijinnspprpqruvyuuvuy|{|wv{uy}z}{qmqupprqwvxpqnooqptur}vuv}rq|zzy}}vr{tyz{}s~þþù÷mlXGMOSUWVZ\_fjnu~|pi]XE;43//321:;FOVaityx]>3.30/00153437@<9:?>=999><32/58<=<:7612/438:ABA:6463577:=:<6;:=C@EBFRbn}dd\VZ[[Z]^`cab_`^b`\\^\]jkpy}soe^WTQQSSU\\babcdehjdkejhifehgeggfkjlhqllkmlqmkppquvv}y}wxvxvu|x|}y}z||{qtussvzxqppqrorssqrvwqt|wnp|sxr{xn~~up~{y||w}|zxþľ½̳bKKJMNQPYZXZ[\bfhqz~th^VB>3503?>::FSadj{{hE22.02.10/6797AF==><;;>:=8?75652659>D>>:74228;=79=:8<<;>A@FHWfwhh`[Y[\X\]^b`_baba\\YX^`_kp|~rne_VTPSUSW``]bedegfgdj^jgfigfdijehfhgkimlkmkknomsrstwu{wvywvzy{yz{z~z|zx~uuzvrvrqzolrsstrnqyvv|vtysmotso{zs|~yvuy~}y|x}x}~}ſĽ̶zjWRMPPQQTYX_][`dclo|vh[SC;51,0;CBBW^aiqwx^>234..01/0035=9?@>?A;6;::866575239@BA>?83434;::;?=>?ACCB>AHRbj|}qpj[WXX]^\___^a``_\^\W][cjt{{vov_YONSYZ_\]bdcg]bfkgk`fghhfkdieillhiifhlkghinorrswquyx|{ztuwwxyz{z|{z||}}wwxttontyrovvtswotuvvzzvy|ztttvppqsss{|xv{}v|wzƿԵw_XSRQOSQSY\Z`]XY\beltx~vg]RD;14A834AR`cknwqR>94../02623859><>@;><;;8032-047=@>A970318668878>9A;>AJJPZfow}~sf]ZX[ZW^ie_b_``\]Z\[[ejuy}qnh^YTQXSUW]`^fefggihhehcekegekkibdmihfdjmnolloqnpqzyqvstxvww|x{yzy|{|}~~~~~{vwsmoonsv}vupprzsuuwzwtuuv{tioutmopsqw|zx~x|zեaWVPONNUVXT[\\`]_^]bbgltyse]TE9//.4=BMUgisz|uX?10,//242133978<=<=99;C@:<8853-145:526888<879;8==DCOMNP\fov|ni][ZXX```d_[_`_\_\Z\_is~~{sjeaYTNSUY[\__dfdefifc`icfgdefikh`gighgkilolljmlqussvrzwvxwwwyz|{v}y{|{|y}{{}wpqnoqqsqupvqswrspvww{xtzx{ywutswpjnuuq~{vڼRMPRSST[XYX\Z[`___`bdiluzykaOA:2.37>BVbdkny}iH515/24.8312364;:9<:=;7:=;885445467=?BGE45578=7966758C@DHIOQTWboxxkbVZ]^\^``]\b^YY^\\_akw~~vig`XRSORX[Y\]ccceddbbfgcfjeefghhejfdgekhimnmnnonprpwqwxuwxxxyzzxz|~{~~|xz|~|~|wnmqrllqrtv{qutvuowyw|yvuvvw|wnyymhhstu}{~}wܿ[QPSQYVXZ[][\Y\\_^_bagjjuy~}xiaTE95155@KWdgluyz`D478216436462588:<;:<8::;>><6624349A>@:7665585:<86::>?IAFNLTRXclw|tg`YYXY_]a\^__\\]\Y]djtx}wqfaWQPSTV[[_\b`egeedehkdhlhdihjlichfeiigjokmmonrrosurtvzxyvwx||z{|}||}yv~{~|~rnptnnosrstoostxtlu{}ywt|vt{s|yxsikwvz~{z{sz~˙fSPUTWXV[Y\\]__\a`a^\agijqy}vi_TC63178FQZgotx}pP;254QT=@<=6448;<8=;9:8;=MTajot|jM93/>>HF>242359??7;:<646433<>?FLNKOQQZcqti_[U[\[\_[`^]\[][_dmr~xvob]YUQQSW\[\``^ddgdedieehnhfihnjjlhiiekfjhmorsmqqmqwtxzuwxxyww{|{x}z{}}}y|||~zrotskrjmrpssvttwnrpyvy{vwruos|orvrquxu{}|t}~‘]PVSUZ\\\_dbbaaa`b`cbeicjrtw|~|pmWNG<69>DPZequy`E893/710/44376:>@?;;=6@9;<99556222;@B??:98438675@:=??@CGDJPKMOXfp}woc][UWZ]\`_^`ZYWZ_flqvod^\SSOTTVZ\`c_cadaedeeihjjiklkighkjfjkilgnqonoqtnotrxuuvxvvt{wy{|}w|}|z~{|z~}ywrqptqnqmltrtuqqyspw|~|uwtv{~wusysruxx~||}ĖiVRSY[Xa``ccdcbde`gdb`adglnvx}tiZLD<8?AIX]jwy}rW=22./2681513766:??@::>;><=;9:616/47@=B<8624.03658EAB?GGDKTLLEQYiy}vm^YXXZ^[a__a^[Y^afnw~~wqe_XSSVUWW_\^acadbedhdhihhhegnhmkihhefihikinoonppsvrvwtuvxztw{xxy{{yzw~}x}|}tsonnjplpttrxvt{vnn|{~}wzs|zxxzunu}vpvxzx~}yƞmRRWVY]__bdgdceffb_fcaa`cfjotw{peVKD@:=BT]gry}oP;36//0422222477;>@9=87<<99?;763005;8<@;<46442466;?GFODDFTJCGFLZhtzsh]VWZZ\]]b][[X``^kt{}wmd_ZURWRW[^]`a]`a_efifejidhgikmkjhiigfhijjlnmomnrtsrtswvwxxwwyvxzy|{}|z}}{~}}}wunlnjqontntrzuzwtsut~~{}{u{{x}yzwx|wtoy|²Ѥm[PTU\^c^aecfbbcekhadcbf^dgjrswyidUJ?B@BI\brt}cA52-..03013/5177::<;83200479<<>=56629;38=CMH?BDGQYAG@?KRgvzld[WUW]][\^Z][\`dku{zulg`\WQTVW[[]^babedcgggigjcfgdhmokjkhkiiemoikooqrqutvwwvwsyyvx|vyxwz}~~z|~{~|~~{{sjoprltumoqpnv}vyzxnz}}}wy}{}y{rxun}~|{}¸ظuXTU[Z\_c`bagefheighfebfgeegjotu{mbVNCGDFS^fqyxX>21.11411224367?<;@<<=<7;=<:955/138;:>@=973432559899@AHNQPDB=?N[jtxjd]US[X\ZZ[[\^_frv{rrjZXPPPQTZ\^_`fddcgfeejdhfjgfgkllhfcgjghkihhjsqrqpuzvtsvt}wvvz|vz{|~}z}v}}~|{~}}vsrqnjrrrsptyw}yvtwvtu||zzvtwyvz|up{}xv{zw{{|zƿȎ[V[VZZ``dfbhhfefhbgedfeed_ehoopy~wm]YVHKJOX_nx~nT9613.-/-126:4589<8;<:;58>878773248589=:=76444857989;AFJIMDCD?BHTfv|ugbZUYWZ_[XTY[[cmu|{smdYWPRSPX[[_^cdcecefgkidjhgeciifdidhijjkjnjmortrxmwvvtssuvtvu{yy|y{{{}{~|{|}{|xtnmnpttpqtqvyyu~v}xxm~z~svzy|uw{~{oo{{||~»ˠfQTXZ]^fgdghgjhhhdefdehdf`]`glrrvxoaZTVVTY\jswkG946/00//123334698==;;;A:::857232317:>=?973/3736266:>CDFLDMI>67GSk{vmcWWXXXXYX[Y][amqwoa\WURQSW[\^_accfabgjkrdffjibjcffghgifjjmklokmqoprqsstvwtwwtytxx|y{zywz|~~~wyv}|~~~yspurnqnvrtrvyuz|xw{tpy|~|ww|z~{xyyw~u}~x{yy||z¶̨tTQY\\bffifgkhgmihefjhfigeeccjlort~zn`_WZW]^dpu}v\=3105101262463975;7:9>98=9<:9933824::@?>@844:49566:<>DAOINLC=67?Uk|{un^XVYXWYWZZZ]fmu}xm`\VRRLQUX]]a`b^afdffiidacflgleijifliffkjkmnoprroqrruuwtrruu{y{v}|~}y|z||z|{{~z~xwpqsmqqtpprqxuxx|rusqx{yz}y|tw|u~~xz|}{óĽûܸ^PX^^_eegijglihfjkhihgeghba`diopsv{ujeb`_[_fqq{sU<4157/3175:7>=;99;;==;6554047:C=>662643536779@FLYRJ@9225FYo}um_XV[[[^YXS^djsvle\VQROUXY]^\^cghfjecjdfgilfbihighjkhijkjkmolnsqusztw|~utuxuwtzttt~{z}yx~|}~~z{~ywvtsqnphknvrnt{y|zwwvxtn{|}{{xy|yw{~Ŀ½û۹xYXXW_deijkkiifjgjghgkjjgifdagjlmnlx~{wqjfjkklq{~~_F<533322330158357:98:;;:::8:5416343<7>C?769;3664646:>DJOUN?90-,7BWk|seXWVUYZZVW^`jz|wrd_VNQTVSY`\\^_cdipggiffjfkddifjfgfkiiihnjlhmsqqruqwxtwvuwtruwuztz||zx{v{|||}~{~z}~ts|sqnpqolqooruwxyvtusxwn}v~xy|xy}xôü»ȏ_]]]]bgljjmnnkhjgjjljmmkhlgkdemmjqoz{xzmonsuqwy\B85016684013:<<::4435;86:?<=HOKB79=<<<:9799335456:@9>?8794956:868;=CNMC;1.-),3Ic{{qh]XVW\UTWZbowwlb[QROPSXVY[\Zefbihhdbediehghfhegghhiigiljqmholsmmotupuxwytwyyxzz|yzs{xzv~z|}{}~|~~{swxwxrmnpkmqosrvywyytx{zyv}z}|}{y{ýýļ̾oaX]defjnmnophsnnjlijljlpnojihifispswwz{xuyxz}mM6533124096020166:;;<8;8?@=<<8554255;;:=F<782437667;;@EIE=4/.+*/6Mmwqb[TSWTTZZ`my{~ulf[TPNQSWYZ]g]bdcffhhfekjhhgjjjehkheifiihhjoloqpqmurtuwuvtsvsuzvy}|}yx|w{x}|}z~~~Ʃzuuruvuuvptnlqvswzxxww|y|o|~~zzx}øżýϸi\]a`cjjqospornmklromlninloligdhedjnruy~{xy}~}\F733210622810123789::9<;<<6:5445413589<:?;;5545757;9CAEFH?85-,'+7Tp|vh_WTSTTV]flw|{pa\QUPNUWW]]\^`d``bfebfggifgkjhaiiiefffinkoplnqpsputuswrxvswuwuxzy{|z|y|}|{}}~|{}}qrrsvytuposnrostqxvzw{s}zu{{v~}~~½þƕpmlkd]]cbgejkjqnporsrronlknominrllijjehgnrpw~}tV@6455420/70401258;@AG=;8::6885531127;:;>==<>649869;;9AGFE<6/,().7Vy{odYWSRNV\gir{|qb[TRNMOUUZ`]^`fdhhbjfhcchdeigebgifggiehjkkompnppovptqtyvwtvywvw|yz~zzz{~}}|}}}~}|z~ynpwru{xyurvpqpvsuxsx{}|{|}w}zu~||ýľ»²p_a_aa`ahfhilmktppkprqrnkmgnqolspmpilkghjlqwy~qU;9446702341597729::::;=8<;8687433045;??<984>73267;:;=CHCH@2.-&(+8^vkaXSQRV]fjs{~xndYSTONSUW[Ya^\`cbgigecenqheigdffgjghicfflilkrqqqrstusu{vuvxwsu|uw{{x{ty}{|}y}~~{~x{rutquwyvzuutooo{zyvu{~|||zy}}w}zvƿ¿ſȲrd]``ffaihkiopmstrqustnponlmmooqsqknkkighmmqtxxP970/47730334478:679:7:7?;<9@?9821168@A<:<6823522=:6=BHKJF;73()&+:`zpdYPRRW[dku{xqcWWOOPRVZZ]][`_`bhjkedgemddikfgffjhgielfkmmnoropssyzyoqrtuywuxx{xzyy{zy}|~zz|~{~~|}~toquutqs|xyywrr{{{zsz~}|}}xx~{{{~~·ºƿñlccfgghijinnmrtstyvsstsupumskollnkrplmnlggnlqt|~Y:322472121424844772;8768A>:9::54367C9=;97:5680188669:FEMC?5,%"(,<|yj]XSPQW]ku~wohYZULMQUUXa[ac]_fdjmijmmjekhifjfegigjjnnkoomplottyuxyssuuwyxxxwxw|w|yzxzz}}||~vpqotvqqvyx|}xvytzzz|vvwy~~||~vþpcgfdejnjkomqnossutvptvrprsprormmomnqliheekmqtt}Y920551464135345:8<899:77::=9;84383>7=;=C=;:98456677;@CCG@6/)$%*+~pdZVTQW]gu|wneZ[PQMVTY\^]\`^_ebdegdhegdgdgfghfkjihjhiqmonpsptpsxutrwwttyxwzyzxwzz|{yy|~}~|~worusvxzw}}wvvw|~x|rzz~~}~~~ļºǺphjpolmnlmomlsuuuswvsuuuutosprppnlnqknlkkeiknqtvy̸^<0210132321305484?:68;989;;>=76836888<<:>;523863856:>AB:=3)'&'*yp`XRTV\is{zqh\YVNMR\WXZ^ca``geffdhdgdghghjbfhikkghhhlinnnqssstrvvvvvpw{vwyyxv{|z{v{z~}|~{z~}|mdiquwvwz|~ux{wz|yzvxtuz{|}xy}}{ùmgillqknlorouquvruwuutvtsxwrrnqorplkomnonikknjmutyϿf93./122502326337:98988;><=<;=743544567;895435126359=;@C=>1,)%&uja[QU_lv~|rj^XXPNTSVWX\a`c`ccfgdcdgggjkffdfffikhhlhjqlnnknovuttuxuuswvxvvyxz}z~~}{~~}|~~yx}Ωkb_pu}zy|yyy~zut~zww|wvt~}wz|uhgflllposqtvovssurvxtwxvvvussqsooornnonmoklgklmssz}Ӿ]91/0-111444043997>=<>8=:>?<;;982034999<8<962146377=<;4/,('znd]WV_nr|yte\USONSUUZ[]]_baabagafeefddfgfimfijfkplkkipjmokqqruyuwvvy|zxuvyyy}{}}|~}~||}|}}}|~r`\mqxy}wyzr{}zux|yyzu{ys}}}{ü{omiokpmsqt}tsvuyuvtx|zxxuwxtrvsttpopqnpnlnnfjggimqstӿ\7,0,.21101125:69=;>=9<@<=<@=;953524497::74254545755=>=A;4/,*~qjd[W_iu~zre^WQQOTY\V[\\]_bcccaccdfifcmggjjdjjjimmmmmmqponusrwxy}vv{yyvyyyyv~~}|~|~}{~y~|~|~}~pkq||{v{yx~wwzyw{|wyyzzx}uw|oknnqqnuvvwtvyxuyvxyyyyxyvyytwutuuwvsrqlomohmiljlorq}ӻK0-*112.10242758:=?@<<;::?;?:5412301785<:86;5525526687<9750/yolcackt|zpfaWVOQSRUX[[_cbebdbfc`dcjiihgggggiijmmklmnmoqnorpxzwy{ut|u|z~z~x|}||}~}{z}~}~~}}~}ŏvt}|{{|{|zxx|{zwy{~z|}~~~ſľ´|pmplnqrqtwvvy{xszzu{zxyxzywxtvvxusspuspooqmoookkgjlqrsuzѷ|<+.//,.0242764997:=<;997>@;:=915545369:<9<7543153628:=>=:97~wniablu~xqh_YUQVSXX[X^]a`befddededgifhfiekkhlgjklmhklonsssww|uyxvsz{|x||v||{{|z|}~~~}}|{}~}{y~~~z|}|z|{|{~}¶ÿŷ|mknqrsutyxxuwwz{|z|z~zzz~{}x{wwyvvuupwtqqkomoklmleiopnsxzͥ`.-.-/23224811767;9;<<=9<<=:;8463455389;<8872442644869:=@@:zrkhjmw{ri_[XQRTYX^]\[a__deefdfdafeieigeimkhgjimlnuotrqsvxuvw|vu}yy{y|y{v{}}|}~~~~~}}~|v~|{zvyyxxw~zx~|Ŀvrsurtrtz|yzyzyyy}}{w|zzw|wyzywzxxuvwtsttlnnnpoimjjgllsstz|ņC-/1/1204024679799<>;;9;;9;<;654524278=?8:74663245754:<>=8|uppkqy~sgb[\XPQTX^WZZac`gehnkebhhhhfjeignilklilkkorsstruu~xzu{|yy}}~y{}||~}}~{~|~{~|||{{~wz{v~{y~ſôlstupuvstwsy{z~{{xy|{yz{wy{{||xyyxuywvwuvsrsqnrpnmmjkkpmsryx~عt4-,3//1454049059:;<>?;;;<:?A?9463412798:<:8:30388<4677;98|xusov|{mf_[WTWZYad^``dcgikfgfhjhcfjjgehiiglojnpnmmqsstuupywtxx{vzz}{}{}yz~y||~{}|}~~~}|{~}wy}x~~ȿqppyywtt{yzyw}zy{{v|{y}z|}{|{}|{uwtwutvtxstpqkmomngjgkmnqvy}شs9++0.0,00253777259=<:897998999674656677M<889642::;746>:8=}yzzx|vng`[VTSUV\ef_ghfcebdhijhfkhhjggighijmmjmnnopqvtqxv{zxxyyz}}z{{|z}~}~|{{{|z}|}utz{|{ýĭ}ooqtxvyxxyy{z{~}z|{{y|~z|{~}}yzvuvsxyyvuwrvsqoppnlilmlorovxwػK23./3003636928266:<:<=88;;:;;;:446;55884776674<5<953278;~{|}umi][UUTZZ[\^ecfhafgihhihlkiekgnkghejoooppnmrqttvyvvw|zz{~}~|{}~~~|w|~~{z}~}}{{||{zyvuwz¼vsqpuw}|z|{}}}xzyz}}}}{~~}|{zwzwvvwurtsprvronpnljlmmprvtu}ͷR9450230470138303<:;>89><=77:A8?@;78<547;>897677214546859yoe_]VVUX\^Yaacihededefhieknjihihgijlkqplkmppovwvuvxxx{{}~{{~}~|}~}~~}~~~}~~~}yx|ssrrwrv}}~}}~~~{~{|}{}z|{{ututwsuurvttqsvmosonompss{{ƥy]I:304//1/205355:<=>><@9;@9>9:99:<676387<;>>665=412434965|qe`ZUUTX\[^_ceicdhkiikohiihjnlkljimkmmmlkrsort{www|||{~zzz~{{|}~~}}zz¿ýxrrvvyzvwz|~~|}||||}|{}}x~zyzxxwovuuurtvrpqqnkhrzpt{~͵ylXG50241322-7901558:;:<:::<;7:9<:955226<;:8756532;1355;95|sh`[STX[]__]aceebhhjkljefkjjgljiljrllklklssstxzywx{{z|y|{~~}}~|~|~}ýù}rqtw}uwyx}}~}}~||w~|}||zy}xx|}tvtvuurstoronmln|ouy|о{rf]D;59/2//09:375:8:98<:<<<<=8:::;<56123579==887466333379~zogb]YY\\\_fe`gkfhhjjnlkheoijmlhkimppkhmlqqotsw{ywww|~}||}}|}}{}|~~}}¼ž¿vtsxvxxx|y{}|}}~~}}z}~|y~}|}y|zxxxquuwrrpqrutolmimrpu{|ǰxz~pdTE800371522496769:8<<=<:<<7<5<<8947124999:6;7777878378zmke[ZVU^]\baackgihjolnjjmnflnkjmnkjomnnrrqoqovvwzvz{|~}~|y|{~~mquvxx{|w~}}~~~}{|~{}~||z{zyz{{{ystuxtsuurstnnlkorurv}ɶ~x{yytiT@7630./135242457359;>:?;9<68;;98:79837499797::443444{qif[[XWW]^dcb`jiiillkklkilignnjijjlnjkiqmropsxtxvxzz{{|yz}{}}~~|~~~¿|wvuxyvxvy|y{~~~~}~~~~~~|xzy{zzwy|vytrurprnokojoprrwx;uqvwyztfRA8200013422345535498?<:89<:;:77:9575834677865741645xnia^[XX[__ace^cigimojkjlikjgiimknkrqkkkqptrswustxyzy||}x{}{y||~~~~strrv{{z|~{{{{~~}~}}{{x{wz|zusvxuvrsrrpqmlkrkqrww~пxsqxtx}|i_P=533/1213545335557<97=99:<:99;:=986403453797446128|pg^aWY[_a_bahgghhlknljlmlhiiihllnjjikkmlqquqtrvvrwx|}}|}~}}}}~~~||}|~}~wwtu{sv{{y|~}|~||~~~~~}{yy|y|z|ypsqurrsrnlppqrtxɵpmnvy|}vj`N?82/1112442535359:=8=;;><=;?;9::<5651233454759668|sic``ZY]\_`eejfghihihklkklhmilnkmjkgijklpqsrwtvsttuzzzz||yy}z~~}}}}}~~ķzyyuxzuvxvy|{~{~}}|~}~~w|{{zyxwsvstsssonnlpoqq{z˻mpimrxtw}~xm_Q<400236232644378;8<<99:H=B<=;AA<:36043328;79;874qlac\XXZ__ccacfkhikolknmloihkkniljjljkllpqrqttrsuqs{y|{~|y{}~~~~}|~~~|}|yvxxvvuxz|{|}}~||}~|~{z{zyyxussqvruurnpoporuyz}Űuknjinvtt|}zvpdRA6140.21431168889>@:9@;;@=>=<99975333458625466;}oif^\W[[_^eefhfjjmlnkjppsnihjjiijojilhkmjpsnrqruuvx{}}yz|~y|~}|~}~}{}~{ywtvxvyxsw{|}}|}~~~~~|~~}}~~|{{|zyxvxvrvxtssqpmslossvzz̼~pozppoqusu|w~yl\I:55342277642576:87=;<==CA?><=:9:57327467636675~wljb]\U[X___`ddhhkillollnlnllkmmmijiijjjolrvprpvxvuw{~|y}{~}}{}~}}|~|}~|}}~}~|~|uzyyywy|zx{|{{~~~}{~~~}~~~}{xvyutvrrvxsrqsqmorqusyznditklnvuwuy|}|vj\TD74312865322645689:??<>=>9<<=@:4?87:355549546umfd]XVXZc`aeegghghmkmklkhmhjgknliimikklllouqpqswyxxzzz{wy|z}~}~|{|~~z~~~}~~}~}}|{vy|xvy{x}}}zz|{|}{z~}{|||~{~}||xyxtuxrvwrsqplmqnrusv{ȱxffmhkomqxsquz}xjaUB736562323258387;<6>=>A??:98:5=;?77455697674xnec`YV\\_baehhldhomhjknijmijnqkhjkggliijknpnopsstyxv{x{|}z{{~{}~~}~~~~~~~}~|yz|z|z|{wvzvwuwzzzzz|xzz}|~|~z~~~~}}||~}wy{rsrtvturtomporsssw|§ldlhmllopttrvwzy{neUA84302565276688;8:>>:>>:B;>;98::85546577737|pfc\[U]]]ccadgggmlikmkopmkjhpmginmijggnlklopprptstv}~z}|{xxyyz~}z}}}{{z}}~}}~}y}~~{z}w|wxuyztz~vyw{y{x{w~}|{~}}~~~~}~zzy{}zwx|wtutvtspppppmpottx|Ƴxgdhlmonlpntsvwyy}ytbPG5740122355657<<;?>G@A>=7::88<886545478613tmib]^WWY^a^eflkigljhmilkiljkmqfglhhflikllnnoqsrsuuu||{{{wyzz{}}|}{}|}~~~~||||zwzz}}z|{xxxz{xuvw{y{~~~}z~~~~||||{yuzxvusxusxupqpnpsvyy~̺mgkjmklomsqqnusz||xscUB75331133434855:;;=??;89<6>889759:3743537|vljd]YWY\__e]aljjqmjnjghiijhkihilhkglgjijhlmmqqtquvx}zzxyz|z|}zxx~}{}}y~}~~|}|~~~~~|}{wxx{}xy{x{{z||xzw|z{|{}}}}~~~{{z{{uwsvvvvrzwrqoptpst{|Ůxgelnmnmrrvssrruy}{~}sdX?;5243314126958=::9=9@:769;;776485653423}xoie^XUX[_e`ahflnjjkhkginlmjiihjhioihkiminmnrvrvuxvvzyx|w||{|~{yz{z{{{}~}~~}}~~|~z|}}~|zw|z|{}{|{{}wy{{|zzy|}{}~}~}~}}|~~}}~}|zy{tvuuxwuqvstuuppssu{|~mfgikrjmspqtvtvyz|y{q`PA74.373225951379;>;8<99:;78878897656368yre^_^YYY\`effgihjjimnpijlihkhkgllkhlljfhkllrsotswxxvxw{|xw|xu|xx|~~~~~}~|{||}}|~}}||{|~}}~z}|}|ywy~x{{{xy{y}|}}~~}~}~}~~}~~}~}z{uxvvtwutvrqrmpprtwx|Ưuddeqoqnorstxzyrwz}~ym`P=303135266306=BCJDBBBC=A9:;89;8775455=ytha[WZ[Y\_`ccffmhlomjlggjhgnijjiikjkjlhgmllpprsvvvvyxv}z|zyyy{|}{}}~}~~~|~~~~~|}}}{{|~{y}||~y|zz||xyx|zy}}~~~~~~}}{{y|{wx{|w~yvsprmnjknntu}̹}heefmkqpqrutsyxwv{|}ywn`O=62652/13315:7:9:;;A>4103133534577388:;:;<6>:>9897::7533ypmd]^YZa\bhfhkihgjinkhijjjjhikligkikmknknlpprquqrvxywyy||z{zy|}|~z{~}}}}|}~}||~|~}{~~y{z{{}z{~}~~|~~zx{x|xvxztrtwsrpjlppqwy{}Ȳ|kfmlhmtuvussxyzx~~}}z~|m`QB432201433998<====;:79<:865:7;<:885vphea\\\\_befhhhikqlkkkklllkjmjnkkkkjiehnlknnqsrvuyxzxz|}|y}~z~|~~~~}}~~}~|z{~|~~~}~}z}{|}}{z}z~}}~|~~~}~z{zx|xuxuqpttoyplqqrtvzy~ʼkimfpnqstttuwy}y}~}y{x{zvdN?63313302564:>7;F:::99>;9997;=:886wqjdcYY^ad`ahghfhnllnommmnlgklhkkkhhemijklkrrqupvwvtzvx}v||~|}y|}~~|{~yy~}{}z~~~~~~|{~{|~}~~~~}~}~~}~}~~}zwv{tqqsnupqlpqqwvy~~skkjjmpltssuxwxy{zz}zzz|}}rgRA7200142459;?89;6=;9:;?98:8990057/19:78:956=><;;8:789697?=<|qmha^]\``gedbehjjjlkqlnopnmmohhjjhkkghjllnmnpsutttwyx|}yzz}|zz~}||}}~~{{~|~}|zx~}y}~~~~}}~}}~~}|~y}zx{xvurusporpmnloluz|˹rorkupstxzwvwxywz|{|zy~~x||}ypZI;89223<95366336779<<:::96:9@=;vsjeb_\Z]bceffighhmpnqpoqkimmoiihioknljlnmonppqsvuwy|{}}~}~|y~|~~~}}x~~}}~~}}}{|~~~{}}~}{{syyuyxwxurnssrolnqo{|~Ǯwmlmmkpqtuvv|vyy}}|vz{xy{z}{~{}}n^P>3201673457545:36::899;796::<8xtic_`^\[_abghiflinonlkrmhklmjkkijilljgiokqlqnoqrswwyx{y{|}}}{~{~~{}~z~}~|~|~~~|}~~{{{vxyxxxuxvtprpnookmuux|˺hfmsprsxxsvwvuw}}x}v}y{|yyx{}|rcR:3124476675145;2768::9<97:;>79;:;7<:688Bysid[^YZZZbcediijikjhmjmnljkoliklfkjigmmkopnpqpuwtxvzz}zx}|~{~z~~{||~~~~}}~~~~~~~~}}{|{}x|~zt{wvrtqrpnnomspy{ƴ}hjmloopuuuvyzxyx}z{{xzyz|zz{x}~~}{wr`Q>2111665524254746579:?=7:=L}vqgg^_^Y[Y[dcgjjhnjlmmkomumjllnhjjilgjkkopqpnooqvvww{{yw}}~~}~}{}}}~~~~}}~~}|{}wz}|zyuxnprprmojllotwzzohjjrpsttop}~|y||yz}|}|zzuv{~|wz{~ubN?4534:54/302545599868@:;88|xphb]][UXYdbcfiikjinjoinkkjllikiihkpjkkklomqqpostuty{{yzyx}|~~}}}~~~}|~~|~|z{||}xxtprtnomllkootqvx±yfjmnopqstvt|~z{~~|}|z{}wyyx{z|||y||qcV=805=94///151155568<:@A88zulec]ZX^`gccegfhlmmpkomllhklojkkjjhjlhklqnssqrssvuzx|z{|{z|{~}}~}~~~}~~~~}~}~~~|z~zwurpnooolklkoqqwyȹlggkkomrwswzzxz|x}}z~}x~}{{y{{ux|{z{~rcM@@II5614245225433889<<<>ztlea]]\]aafcehiijlpjlllkkhiqmnlhlmmgjllnoqnootprswzyz~{}~{{}w~|~~~}~~~{yz|zzxvurpppmlolllmnvtu|̿tgkkpnqrqvv{|x{}zux|w{w{{{{xwzx{zx~~tdPAJ@5523526038254<69<<;794345:vpice`\_^addfimgiijjmikomkmkkolklklghkjijoppptstxuzwyxxy{~|{~~{~}~~~~}|~|{zvvxsswtpqnrlhmhkotwŰkgiimlmppuqztxxtxyz~}y|}{x{{z{z}|{}z~}~|qaV@9204844484646768}spkc^`_Z]aa^ejgqihjplkllkmpnknlgkpmjkiijklkortstwuzxxx{y{~~}|~}}}~~|wtussswvprnukljjhrtzʺvehqlhjpsuvuuxyyxzw{z~{~xz|}{yyy{}}~||~|sdVB84613325836435;|qjfa]Y^]`_`dhjjiegoqpmplqohmjjljojikmlhilmnqrqutuuv{|~|~}z~~~~}~|~vw{}v{zutt{vpkomkginrxy³|piigkqmos{vuttuv{{yyx}{wyt}zzxxx{}x||~{zz|{rbUE8761/826654279}xqqg``]_____fjimhjlnoqkmmllinmjlklkmnjiikloqpqqsuwuwwzzz|~}}}z|z{xvxwpsu}lpqklijkqrzŸqjlnknonms{vwstvy{vuxxz{wzz|z|x{}y{{{{}{|~~|}~~z{rgWG<8327653395:6tng_`]\acacfgjifklkoonjmplltmkhgklniigjhlmpnrtuutzwzzz|}|}~||{~}~|z{{|zzyxvulurotlnlljjnrwx̿zikmlmkoqrqvwstvryw{zx{}{xzzxxxty||{yuz|~~z|~~~{~~}|~}}~ti\I<77H86669868uplj`[^b^`_cffiigmkllpomlolqojmjknliikjmjmqsqssuuy{zwxz|zyy{~}~~~~}z}~{~|xtyqlqmqrqpmjgilvzŲlhljntsnuuru|syxwzyv}x|y{y||yzz||x{~wzz|||}}~~x|}~}~}}woaL?=B62133768xohgcY\]]da^dfhhklmjjlllnmnmknjifkjikljjhkossostvuxz{vy|z|||||~~}}~|}y}zzzzyuvrrsrppmpljgjozyȸtkikiklorqwtvw{xzvyy{zz}{xv{|uw{w|y{z|y{}yy{{z|~|z{~~{|~|}oaO@872435567vnlea^^Z\\cfbdjfgkjkjllklnnmjjlkllklpkhikknrqsssuuvvyzz|~|~}~~~~zywzywrsunppojnknjltx~ljkjilqqrpuwz{yzzuyyyz~yv{x{zyxzwxy|yy||x|{{~}}z||{}~|~~~}wl[M=:5426445}tlf`_]_^ceidegggljkjklllhjinqnikkikmjhlonqpoopsxxuy|}}|~{||}}~~~~yx{rww{wruvrnomokjhntx|Ʒolgfljmoqtoww|zvxxvz}zwzywxxyxwxzxxzxz|}zzx~{|{{|~~}{|}~}~|}ul^RB9885477|ztmeb__^`^_dahhggijnimlgllqljmmmjjjhnkhgokpookssuutww~yz|z~}~~~~~|}}z}~}}|uwyxutrsrrjqlihnpwx|̾{nkijnnqqsvuvvyzwyxyzx|xx}y{ywyz{||||~{||~|v{~|}||~}}~}}ylcUC:46643zrrdb_[]aacbifjjkkjmpnklinnjimmmknjjnsjmnksorospuxwyz{}zz|}}~~~~~~~~zz|xzutsspqqplhkmntw{Ųnhgmmlppusuvzww|yywz}wx{wxw{|}xvy{y}~|~|y{|z}{}z~}}}~}~|~}{ncNE87467~{tpcb_Y[Z]a`gegkolomkjigmlnikkgmklmkkmmlmmlpqsrsuvy{|~~|{~~}zywvyyuxsrvrmjngirw{|Ⱥzhcgiomrrutxxttwwywyu{wwz{{}y}}{|w{z}}|~~{~z~|x}{~yzx{{}}|}z}sbWJF8<5}~nlce^`]d`edddijmpjihljliligjknnninlmmkiitjnoqryyvxwyz}{~}}|}~}}}|~|}{|z{}yuurpqoijhhhsx{~ñmjdgimjqutux|wvyzzuz{~{{}}~zzwx{x|y~x{~|}y}|||y~}~zz{|}{||~}~}yyx~zp_SE>}zqngd_a]bbehfdglklmlnmlhlkmoklmlmkinlqjknpknpprxvxyy|y{}{{|}~~}}}}~~}|zz|}|wutuvnokkiiqoz|Ǻogdihkppoxtxuxxz{}{yvz{|z||{y{uwu|zv{{|}|~{y}}{|}xw|z|}~}~z|xvt{z{}~jQzwked`^[bhbgejjkkjppnmljnnonnmnqnmonpomjlmoopuqtwzxt|{{}|z~|}~}~{||zyzzwusqqslhglrvx{̿zkjghhokrtuxvwvy|~yxux}zw|z|yx{vz}|x{|y}z}y}~|}~|}}~wv{~~~|~~{}x|tzuxwtx}{vleda^[cgbhfijkkjppmmlkononmmnpomonpomjlmnopvqswzys|{{}|z~}}~{|}{yzzwusqqskihlsvw|zkjghiojrtvxvwvy|~yyux|zw{z|yx{vz}|yz{z}z|x}~}}{}}~wwz~~|~~{}y{tzuxxtx}zwkdda^[bgcheijkkjoonmljononmmnpnmonoomjlmnnpuptwzxt|{{~|z~~}}~~z||{yzzwvsrqtkiglsux|̿ykjfhiojqtuwwwvx{~yxvx}zw|z|ywzvz}|x{|y}z}x}~}~|}}wwz~~~|~~{}y|tzuwxtx|zvldea^[chcgeijkkjpommkjononmmnqnmonoomjlmnoqvqtw{yt|z{~|z~~||~}~z||{yzzwutqqtkhglsvw|zjjghiojrtuxvwwx|~yyvx|{w|z|~yx{vy}|y{|y|z|x}~}}~|}}ww{~~~|~{|y{szuxwux}zwked`^\bgbhfijkkjopnmlkononmmmpomonoomklmnnqvqtw{xs|z{~|z~~|}~z||{yzzwusqqslihlrvx{̿zkjfhhojrtuxwwwy|~zyux|zw{z|~yx{wz}{y{|z}z}x}~|~|}}~xvz~~|~~{}y{szuxwux}libinsane-1.0.10/subprojects/libinsane/bmp/meson.build000066400000000000000000000006141437772407700230070ustar00rootroot00000000000000bmp_parser_srcs = files('bmp_parser.c') extra_cflags = [] if host_machine.system() == 'windows' # Bug with Mingw32 + gcc 7.3.0: # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52991 extra_cflags += ['-mno-ms-bitfields'] endif executable( 'bmp_parser', bmp_parser_srcs, include_directories: libinsane_inc, install: false, c_args: extra_cflags, ) libinsane-1.0.10/subprojects/libinsane/bmp/w3c_home_256.bmp000066400000000000000000000106661437772407700234550ustar00rootroot00000000000000BM6(H0DFDtB f4$"$lnlĖtԪZ$~TƼ\^\ĊdNrD<><|~|´  LNLF j<,.,tvt̞ܶĊl_7ϼl4ցoporX `GG G -G | rG4`rglo-4r_lrLorpPa-BQ(LrPBP `QLd r mPlPpaQr@mWdlFWGrPF7z3PgGLP_CGCGrd P`G=(דf(rrfd r`PT=Jd  r3&J R`Q<nlPfo(B`P(;<nzrn =*&(!& "(&*)!* (* (%' ''  ( %($("  !$  ! ** *  (' *(% &*) *%$$% ( ! !$$ &$(%$&*  !(%  &(%%%* &*&%&$%*! && *!$ %$&$$  %(!$$ *& *'"&*!%% ** * )" ($&(     ((&$(( "#*((((*(((( &(((((((((((*#  #libinsane-1.0.10/subprojects/libinsane/bmp/w3c_home_bw.bmp000066400000000000000000000011761437772407700235450ustar00rootroot00000000000000BM~>(H0?????xxp p 0?!?!???>?>????~~}libinsane-1.0.10/subprojects/libinsane/bmp/w3c_home_gray.bmp000066400000000000000000000106661437772407700241030ustar00rootroot00000000000000BM6(H0  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz{{{|||}}}~~~Fv>>>>^m,<>F>>>>>>>>^ >>Fj>>>>>>>>>>^ R>F>>>>>>>>>>>>>>vmm >>>R>>>>>>Fك>>>>> ,>>>>>>^>>>F>>>>vm j>>>^>>>>^>>>R>>>> }>>>>>j>>>>v^>>>>͍}>>>>>>>>>>v>>>>L<>>>>>v>>>>>>>>>>F>>>>>>>>>>>>>>>>>>>>>>>F>>>>>>>>>>>>>>>>>>>>>>>>R>>>>^>>>^>>>F>>>^>>>>>>>>>>>>R>>>R>>>F>>>>>>>F}>>>>>>>>>>F>>>^F>>>>>>j>>>^>>>v>>>>͛^>>>>>F<>>>>F>>>v>>>>>>>>>>>>>>>>}<>>>>v>>>>>>>^>>>v>>>>>>>><<>>>R>>>F>>>^>>>FR>>>>>j<R>>>>>>>>>>>>>>>>>><>>>>^>>>>>>R>>>j>>>><>>>>>>>>>R>>>R>>>>jLL^>>>v>>>>>>>>>>>>>}>>>>F>>>>>>>>F>>>R],}>>>>>>>>v><>a>>>>] v>>>^j>>>v><>>>F<]}F>>>>>>>><>>>>>>,}m >>>>>>>>^<>>>>>>>>>>>>>>m>>>F>>>R<>>>>>>>>>>>>>>j R>>>F>>><>>>>>>>>>>>>>>>}Ή>>>>>>>>?>>>>>>>>>>>>>>>L ],uŨuDD݉ DDDΉΉulibinsane-1.0.10/subprojects/libinsane/bmp/w3c_home_rgb24.bmp000066400000000000000000000242661437772407700240620ustar00rootroot00000000000000BM(6(H0Mdٷ|TG G G G d6ٷmmm,,,<<\0y][@ ( @ ( @ ( @ ( @ ( @ ( - NF#@ D" [ چfZM ( Fht:L&H$*(D"8h4FP_z=z^j4]TqNg0NjS Tɜ5kdc /^LKK{^'D"pl@"a`ccy9\]])N#$BP(2@0 u:Fon+TAMt ' DR$x<^׷* JJ Vsĉar<|H$޼y(:l](EB0z耀X~R '''(K҂ O`4[[[e2BP*JT*vRP(@ mmmr\Pj`r(d2`kkkmmmccfA`ذXW/--$A@^Tj4=<HR^fǎ;nܸ#F6f ʂ@yfOOD8h@`4 j*b(aD"Ζ厎4N,j-áAR6RD:p\#,J ̼g655I$B.ɒkjjy7 HrE"H\$ Ù@W^!QhEaFilljx} mHwDӓH$쎛 Nl6Nl}aX&Mx"rssO ),,#F贉;wN G577e|:w\xxxߔ6++ ٳx8q@z@0cƌYfu* _]hz}\\|__ڮ^SS3|ߐd77K~DV444lÇ:yzzh5P _M"\ zw}7;;^$YCZ~E3Q?~t+Wv>BR E?zw"u!--~=Lʕ+֣F4T%hSn޼#"" ;nR*2܆@ZZZ=J ݇ [H7>a2\.Ӧ!Cd2p g irN}A "[̙3G,755e˖ g[ٳgvu0nݺsShJ%h Jzf& F1 H$BZ(׃EL&388xƍ3ɓ+VHNN2h4jg^}#徾p/솄@WŋqqqjT*hÇq^r 0HA$,,,//U`ڏ _|aƟ0 J*#}Eh4Z@@@AAAr@.{yy9FkiigΜ:<&(޽{`9H$^c2|MYYT*%,Q AC@Oqq Ri̤YYY~inn)S(I yΧn݊vP(3 +ֺ9sA3z^р6Y*\\\L|l+//1''Snmme|>?880#^'A{ ȴi6lذzj3{ڵk !G>}1cܘL&ɴPR$<?rȑ#G~ ( RAA yyy1̂C@֭[n]/u:]YYYNNξ}*++kjjjmmMP9aT*)6vSNgϒH3f@@OZZڤI@HC:tɒ%/ F*jժaÆ:{ו<ɓ~oApiZ=]zׯ_zU,O0I ֬YfD"xP(|M愙sss###;}TVVW^}M7vXkkIQh4'O\pa/]>0~q2vvvHHH/^蘛aɓ+++zy^$''/XA7o>3'`n? rO]ZTTim ܹsw=~ oҥPsڵիWt9<_|ݣ(֮]РhqQLF&PYYum͹snzyyR}h@Kcc#ϏyEOll,1v޽#G<|P,7SL1~oͯy7:~sYA87GQk"(K믿Ϡ믿ZxӧO0YYY*((hܹ&M2ex?y:yܹ{֭[ӧOr Hj5 s =Jdd$lٲŋl]n HBBөT*6@O" ̙ ۷gݻw*JNDS8q`f a_CVlY W}N8j*A>|ߗŻ> 7oNMMc2QQQa̙JgϞ?֭[#FH$D"EEEA@AiiaÀ%j&9q9sL2dtPuo$6l)ɼ>yΝ;;~ޞwe˖EFF^~@ tl B<d2kjj0 tRT,KRp JJJ@PV Jh4:J_tAP(@iĉT*d쫮ӧO?{i C_:DEER9r?gb)JXy A@0FW>jԨ,Н9rdqq1`7@ FDDYS?px]Q;qر Hk׮7h,))),,xVeX......\.ߟd"h~Ҡ/\pŊ^^^gFɓ3b&===!!ɓ'`Zպ.^x͚5NNN{8f' yfŋ}V¦oٲeҥcƌhf9rdڵ H$677?sNwԩyyyykqFSP sYr%Dpðդ~ĉ30777*iD"ѯ:q3fD޳U5NXތrL&koo/// ϗd4mԨQx<$c>7"##SSS)ߩSH$Z~agӓ&Mz1 NNN1 =z4B)..4sZZLnmmDQQQ'))i<}T$IRB!D"FsrrbXӓd3 c۶mzs̹~:N/U{ܹMJJ xѤaDŽD"c/ܹ|pRSSw}믿6'Oill$HIIIRԱcǾ͛wyL"=[[[1 3 =55h4^tIV߸g''4Ar\.5k,<`~f0lݺuiii677oܸc d2ٳgHVD`ccf87svv&=ؕiiifڰac0gϞ%ZbgA߮lٲْg Կ>}:B^ j|?G( BP(2L&i4ǨQbbbV^߹sӧr44doop˗ctR* Jz no֑#GУF0iӦ[z{{pnNsss]]]yyyIIIfffQQD" xvXE׀br{577fD>>> ޽xↆ8 40p;f٫&///77J d20?RA@<==\\\Ǐ CPϟO$[3enjjR,/_(K+_k(JX\\PUUUVVVZZE"D"immqv )D}}} g̘A&O8{H$ooB3immurr"L֎Q@w̙wmܸq@h4fee?>==U{z999=}|wtt^^^СC_|BCܹ5dȐ9*J(gee `~NO%%%foo/JJJ|||,/OYY_yyKGn߾^RYQQB|w/?$$߽{{aCYf!gr1"h~^ FZd ڂ}gB`PT, VX͗+^Ǹ@OV(?۷k۷w C Fp?eС%%%"@ʊ`GÙ3g,X1a r<}ɓ'\.g_ 6I\. vH|B[NAA]]]ׯ_*aD/u:|+A@п0LsʕYfM:Od2I$Ҁ4z %%ý&9_h4~=r6! >$Hw,//o#F2z HAtD"|RFT*(ţG0 5Ν3=L&OOxtK@+ ,ǣ(JPL˥4449 À @T  qaa!H$rV ^vE.k eprrrqq ]]]\ F")--5 oFO^1^o󃂂1d2]]];vR).`B())oK_|EY,[??~ug*++q8 㿿`)@?;%}B088G rҕZYY9::v/֩ N'˟ ++dzҢ(r'OT+VܺukѢE<B0 ٳg_zUPt4KJX5ruN&) F#ɧNpH$/ur^hJeNNκu8#G`=+t:][[T*ꫯ\\\H$4]\\BBB>ӇZrm۶Ğ*T*E/zDJ`0ӦM0lǎTcZZ^^~ʕsl//߹s7~JR( 7nO\.߳2ٱc@… , ~p T*Unn;#hHHB(_~% BڵDLpY <c~g`p޽ __(// ?z趶6Sb޼yƍkll"i4_~^pO?oa~"S??DĔ7 D&7H$ٳǴuvvv999Oޞr{|Hў7?vIHHpttry}}͛7'MD&mllv՞ɖ-[Yva)))9Czz:[r˖|$6//o@ z_t hڮY&22/~Zp㏮=<<|נqHIIԕ,Am\.ƍsi~B9rd>IKK{qd(W$00EQ}'qe2 >vXM<ϒ?X {{4[[[T Hnn.تjccc}}}BLJXrdG"L۷txǏo}ιwNѣGmmm+++y\d2>uS{{&^?>z#GBaߍb) :.H@3qgرc,Ym۶cǎݻw0kkkerGQ@ ޽{vx{=Su2w^VqFlٲg|~nnҥKO8xnϋtڝ;wΚ5+<<<>>5552*ʉ'@Wӧ 1uG3fP(" &H$1s=xh4""vj̿kjjΞ=sQTRd2}޼yUUU/u*:o< ÜL͝;L&(jzZ-=z2x"H$Ba''DL RΜ9d2Qp0bHxb//./g֬Y\GjI~~~d2944Ӗ8|pE[ZZ0 {7̙cJ&I$nJ.A\-[^?ϟ7?(i45F)++-F=x dz|IR=~utt\zuqqqX\KV$|OOOLk.I<<<@SqF 2@mZoggw /H@bRI$JKK|L&>|… gΜ*'$$477Xbƌ666zg~۷555}'t:} ROTj4#G!hpyH5kָرcʕT*5((~{(R4++kŊnnnL&=::z$r=<<Ο?yf LdRT< _ i&֧,a\.-Xŋ9p8ƍ;~+^BV755UTT<|+W 2dȌ3_iiiL&ܹs-^bϷ߼dtΝk4 Bhii9w\AAAppi4Z\2!!ٳP(%%%vvvNO"0 d)))w~3/X)))ի-jkk+**;v,VYY#øKeee]8qP(Yd3wRsxNcXx<^X[[92::4#? dc޽իjt:fggx}믿|WWWoooOOOWWWwww6ݩ $rrrۗ HXX###z$ߺuԩSyyyjL&D(.kaU L2%>>>))̙3&Mrpp8s/]joܸуy` _7Aa8f;::xŋ>|*JW^`cc~С\ 歮^AP.;;;{{{??_~xUV0 I$Hܺu+|:رcIIIRÑH$ Nx111V ӻwP(C :uuz*_hO?X,ooٳgDPHRmll\ll3 g gѹs窫/]e˖ɓ' ScB$333.Z(00P&޻woǎR4((hĉׯwtt򴵵|hkk>tP&޽{f,\`ܹ3w._c͚5;tPEEEKK`Ɂ@'z}MMMAA;wΝ;'H$@h4ڐ!Cƍ;eV[PPpKiӦ-Yd̙=XԂ5dȐ#G*]vzzz1"44tʔ)F(kkϙ3gٲel6L& B B}} t̄6+"޽vڀAx_}ǎcƌ /3+WDѣGKRZ`X_zk׮>}ѣGx<EQCJ x<^XXXLL̴iPHOOOMMwh:SN |b1O> h4z>999<<>#8 geemܸ1((p8PnnnovbbifssG~Sh40uԋ/uzG\\a,F1 KVlB(Po``%.q b0RToo+Wv Gg4|={8&L0Rttt1 b0 kf@N81vXG *HtrrNJJ?߿?$&L8z\^^Nӿ[ Ê@m菴egg/`m1B l)Svթ~߿p'nݺcG""g77M- -9qD0ⳓHI&ܹcQ>|{>uYz@_#HN>oR&%l۶M,liix &O܌aئML4a7^S4)0P%H~~~?y뭷T:@ S!55ud2٤E}||V^]ZZzEggg~zx8hcǎ8ph4d̸T3g̛7(8<1=~b1 111{uuu7 J[;-@@ P@@ P@@ P@@ P@@ PүM_IENDB`libinsane-1.0.10/subprojects/libinsane/doc/api_multiplexer.dox000066400000000000000000000010571437772407700245550ustar00rootroot00000000000000/*! \page api_multiplexer API multiplexer On Windows, there are two possible ways to access scanners: WIA2 and TWAIN. In Libinsane, the goal is to keep things as cross-platform as possible, so we have to hide them. The API multiplexer takes 2 or more implementations and wraps them to show them as a single one. When listing devices, the device identifiers are prefixed with the name of each wrapped implementation. This way, when we try to open a device, it can find back the corresponding implementation quickly and easily. See \ref multiplexer.h. */ libinsane-1.0.10/subprojects/libinsane/doc/behavior_normalizations.dox000066400000000000000000000007221437772407700263000ustar00rootroot00000000000000/*! \page behavior_normalizations Behavior normalizations Behavior normalizers are wrappers that change some behaviours of the wrapped implementations. They do *not* work around or fix bugs. The end goal is to just to make sure the behaviour will be consistent across platforms and libraries. For instance, they make sure the default scan area is the biggest scan area possible. They also make sure in the end we get images as RAW24. See \ref normalizers.h. */ libinsane-1.0.10/subprojects/libinsane/doc/design.png000066400000000000000000005521711437772407700226250ustar00rootroot00000000000000PNG  IHDR{bKGD pHYsGGtIME  IDATxyu׷{&W0 9Q/#&=qWݟx T (*"((CNa$x̣U̻VI$iӛX 2K#I$IS@1 ?_<$I$=u-!=K$I$ISP!!={ x%$I$q``% ([*I$I67'K^<<[*I$I6S[ǁ6 ,$I$iy_KOe[byx$I$iӘ ,*Csa$I$I4"(. o[BΖM$IM<pnKHxe$I$iKG}2pBKH+y:@|$I$mۑ_=#}8/&ݽb$I$IڸQGFYo_N$I _cݿ.]=$I$mTݬ1Xw%e$I$I8v~\oc5- K(I$Iq>n)J$I^,+ǹE8UQ$I wYܦ3e$I$i4}bpe$I$ií*'d'v7[BI$I6ܼ"h/v)e$I$iüٷ3']B>䳼K$I4u:m(BJ;_(ڸ˒J$I4q8W$=_>mAkY%miJ@$I[<^o{ _V_=o $I5e ȇnm诱 $I5{[go#0e L$I$M; X]<>sܷ@;sɇ߉K؃.I)'N}9U]$IX_* p}E$$I4R8j'@;ed@$I&(ko&Vh %ɀ.I$Ӥ"L?޲.dg')V]$IX@gH@B࿀^?ζ.nKIڂYI$= 4{mY2:hoeq;ɀ.iK9$IMbZUܶ, $I҄7B{P-$$I4~S/.16K2K$IoHA~zfy%%I;6B{+rd@$I3V,_<kϾʀ.ɀ.I$ߞ6R{;W]$I[.3ۮ#d@$IGAo'xW[bItI$il;=~p /(njy%I$I/CzfF~WҖtI$mN+=#]@K2K$Ic8P ,c[Qc%ih$I)y~ t,N~ "^_<2K2K$I;|A6`*p5mW;ހ.I$I&O,ߍ|3Z&bs p)uKYu2K$Ia O9 Iܗ'Jb$" ,I$I^̺^#E` pWKX1FG_Z-GZfI$IF"D_E~HX3lZbI$IFE~=zʿ2K$I4C'p7ƺ~E~XW%*?.I$I8{4 v^n%I$IهX7qI~~4x-$I$I#;%1mv&A(5Ew.I[6K Id%|H l ^%1d2 rK$Id7Q}pe*"_Lf#X+)K-I$I:zX, Yo[YnI$I,j7{߻ۿe?ZnI$Ip hg?K]< \RZjI$I֖p~q\. ]ZP?'A',$I$I}yaFwV\V?TV_76O+I$ @$It(O6FbGBͻfN>35\QH$i8y$ZH!jnK8.q-p>,o ù$$IDӊ}Fx Ѳ 1+Ow4п XvItI$i}ˀ_{93!ۭ !|z{ȯo~u?ԲI2K$Icp~dӁnfB*=L> QͻN{ <:-$I$IOIͦx3ϝ;yjjU[9nv4ǖܒ؃.I {ǿ^| ˲'=;^FS~1pEUK$I$`2A<`hU՗Uej5VᆨF>}h7U,Ym@$I0ڏ&yyz?sJR{eov>#Ψj^E;]Ok~e,XI$M$33oW,xl _vm_կ~f="O-V^ZvI$I󣁻Y7>˧GBZ/ok[[ۯY7[VwXnIDq$IhxC>ea瓀g&D^+KуtM3g~P\]$Iz*pRgQ 5V^k[3SqBy̙{ZO__FM $IR'|{0e/gjߙrROyhߪmvJq6ls FPN$N$IM;_|q/vsgO=؇~ze/VRKғك.I|w{a^/2E0phӧO_;N:$.+.I-A$IRT|_0%%ߟ8`W:`ZjJqsIR {%IԴhc4˂ 8Ue ZiI=$Iڨ=佽;Je⷗J袋,$I6Rt^2ù$%I3gjh8`ZvՑ$$Iz*ϧg2pF,˾0w\$ItI$mjz+mmm=ˊg,X`5E]d$ɀ.IMkZ Lj7[I2K$PVwY+-$Y$I eN`7Zn-Zdq$iA$Ii|-$=$Iڠp>|̙SaYg6.I{%Iϟ@"Zz^$ɀ.IMjjbZwK]$IOy1w)ۀ>H $IԚYP,~e]{{{Y`E r8I$MXoo/rc\\W^ќ4N4qK$iB* , xT#~rl$i=ك.I wSN 'IH$i=p ZҪH҆q$Iʛj߱:d@$ISenVwItI$[Z|V{UtI$7o*5kּתH]$IO+^{{{-$%ITh4ͻ_πE,XI]$Iڜ9sX`j(`60|V=:i$ $II$iLj7>kr"I=$I+0XSՖ7.IxA$Ih|G2`Zp"I=$IVwww:ppJ-$mK$Ipsjڻ$m:K$ N:$jۊpHVF $Izx\p|X|V\~I&f $Icr.au$iӲ]$IqSV_j;$mzN'IN>zoGw/VF6={%Iիg,~ /\ga$)`$I3gRiB'ZP+#IO{%Iɲ"C~%ItIL$qwGǨ>z::tvĿ}o;;K 2wzo9-oY{?ojz蒤Y$i=ӔJO~|r/_@Z}BXD%IU_ŗ\B%I|ÎoG2Lޮc<U}y8wYF3:ٳ'|Y]~>0#nXua^7S+me1FN>uuvQ\tEͻqٛ&%H*Irp#^YT.eY;c-=p00ض.lmK)v e-!}F),kZe3忔l ]d d R68D8 xCzƮnY[JGG! Ӏl )IBȿߝRi^b2A>\Ԃz5{6G/Y26xΚ[,;xVb~%T*aVhtu5ILW`+?nt' Ҵb!\$n=M6{V{!/dMzxfy䞭nf(#~hɒ;O'a7.J[s!ocԾVq_wˀ~`7+Z흞{.I=$mz p6o)J0p9#KJFGGsqֶCS`dR7¹!rx: b>!X I+!\]|Q`Q^(M` BJ#Cg$yuQ Bt$YvWG p}W§"\GzdR3w%ɶC?>bɢn1ٹ{ .qbYv60u .Be$ω!YӀ; \~^I::nm9ǀR+wpGZm `8$$IO}}}T*O5|8ͱFz>/ 7m1V4b{'fY{4Nĸ8!5??s#;g~I YvP=Mj G?<ź,;kY10B3g:gz>5^F/o~seb|=i>83fV\yHu?KcoXy4kcc|;1o\>d 1>G71ƹFKbpH̲Wt5k Mj@̲Ӏbtؙ[ÇqfcpkVz1?cϫ,xĖ,βz>˲4bmI6K;5Y$6BXS*R71ƝwRۥrȲF%1:Kmm_!<Y/£EF_no(1,;0˲Jmmbp .],ˀB"ߏ15~Zjk[LSF̲=Fmry~(~ Li ?Jז+c(k4N(Og+cG> ,J&k4^T.%XcpC?.]YX_yOZ։JաT(gƑ1W/B iB)K"l ==o{0Ƹk68P*]_*= Jwq4bdFoR|)!d~嶶sYQ1n_nkzF)O6Zg 188_^no01h_|?j5" 8V7[ $=oͿCDXn1]>>'?u3κoHm'>ZvxugrgRV-S*Ȳ풴ytICTYe?#كB(;L>w3XM1By!;fOh#Ƹ05;mcd]눇c5!u Bx' bÐ׹g&/^v !lcܽx=,Ƹ7haÏN1o֢=Ƹ'XkK1䵟ux tsױ-1>;Œ?sǙg|Rږ%ItI袋^޺$t_$9:޽(M]HbYOӟu'"|^]6۫$Ft\}_v'ttl!XOSO1#<zr,y-Ǹ#1 ӝ$Fxd=MԲxM.NoT,୓K}-^O=;;.Ϋ ^%I[Oӽ[?>_no$Fhdǁ#z-F~~ SOO75=+i#2 4TKWei!Vz7R]^|NoY~.F{҅ W!cɲj.^9I$Iy4)zC]<Yk=v_{:-!A@c s<vtLk''!v?Tfޮe7S1-| zu0%ݳfM$ɳ*IOsq䫊SGyY `jWGǤc٪+Xz{e#6(MxOcu+?lym;+;<&`q~>[Iօsfn$-P"][jx 0x>ϟOZ8XZ-I=$\KEN\M%I~|b%B~Z%IN)>O^vIb~ Ou7Ba0*IrMWP*\I/޺xɒizu%I>]I^$@kWasY(2|v !RImN~L*RE|r0Sί !^Io/s IDATV1pK6*I9 J\iҚ~@LKoj* .W$I߆JMf -q 0thە',e!6ۯtt |kCqGG1nWIXIqbzFݶk1T*T9f㢝1uuvR }>_8Z1=`޼@Zj͕-Y$Ib;sһiZ"O?ju'kڗ̙3!$i</ux/@oo\0K;;b[ERiE1bK&^sqlI0>4ԆG;Pe~%~ǼyVTα:] s0^~M>M,{w%Ifo) ӀOk7ơIf===3%0R$$IO{%|ϓ_F~#6:)XOO[K.op6u璟ZP=Mܲa1GBV# a㏳˩tv,{%!pU=M:Sw2,]JW0q6[b\Z$6^NSi^.)1-J;gY֜zg`CT{-Zv`|O$=u,$I. $ـtvȯ~?k$K,_OggvEzX`5Ӧ}xuƗpQWK ax!p5_I*F-C.@O%Izirђ%̞=5+/-|+IZ pY|`⋇3+IrcՊ:`$/ {R*4B*bI|x3W`?YI/4^Io a!<~RsC%FZRIkpO.$t=rp^IW,~C>s̡sG%i wI6Ezi/v$Q_Q4ݍ 㧁ÈqV=M]O Bh72I!yj4 XL>4pJsȇGVO]i31>VO4_୕$y^s]$Si:[s$!>4j[IPOZUz::B'amEw%?}!0Bo(8x{tZQ:^iC=Mge˦זFczQO=(|er0苝q7ݢ4}ŋ+Irk!ށ|9.]`C"t7~|8VKv>UI{Q|mzn,[]>ƱO%$j4SOf`A  PyK~_z6:ue+WJ|)9ix"?=!F=McSJrMSmauۼy8i4-}5pKҖtI6?O@8fa.7ƻϓ:j<iO<?a!|8ç},\:JPO}$҉Clݗ#է?izdW_bnE9f^4ZOg..gFsdˬFK6jk%ig$Iڜ[G'g3C~.$ٮT?fy/#'_Joc\o7œK__=4=&Z73 z^\QW4(_:yd-Ͻ>$IBڲ.߿48VI7kˍ /]TOӵ8-e-)o,;jHD j7)IOKqPکѱ[%I^\IiڼڹEX67\~ |Xgs?\ICYӓ$ |20V&>F yOYe_VlA~NK*g8R2#Td$o'U4y7u \Ynhi`0)_R@ (i4+!|<W~O'?W֑ 1I2/|~%I~K~p>Zࣕ$c[ॄz5mmm288lo*kz\XIw|Vo||EØD>}KÀ x7oރ===̛7TIzS!IC7@5!I.J[s\NjŊ$k"?纻Jg'盛=WOO\^;Y[=M?)!E:~xeF"~ Lw_izo=M(fv_ YY$>3g`Ѣ1+g\9r$MwϝO)Əop:#00.n"VSwOZ5S*I$o[eKzٳa[/)Cq nO]c%ʚ3$v'ɓ^Kӝ$tttzzz Y|VsPV_QVcsH5$m%$IzV^ ,k]^<]$… -/_jk$=؃.I8=c&:餓 sR<¦㤑ڍ1FxB<ҦЕFxi1Ƒ9&(TX !LV1B4[eiZoX}:ڌ^m8M#{8V][Vqx$=G^ 1L~[!p8\_4 2ِ]mlwSshyn}j|=o_ծ0K]gۀ׭Ai`=#acG c1kchAyc#x}̲l ,x`뭷T$I߶jjgT$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$m|eK I$i 0 xRH$Iy d_.=#,$I0 3CtI$IA]$I6! 2K$I&ڃfb $ILJ<:]2K$I&:}(t%I$ijk ⏏S 2Ky|\uי$Z QVQDQ jl3i^ jEw˖I ٪WAЫr]QٗqӜ$Md2y3LyH$  d@$ITC.%I$i5 XA]$IFT2k]$IF)7t%I$i $IT%t%I$ =#WXA]$IFXSn]FM I$i`%I$ISc:l ̲4^XA$ITm.7e}m4D6$I*`<C16$I$I3twc?Om.I$I_#T+ٽܦy.nI$I4ޕ XВݷl6I$I׽!tvwvN$Iqْj)`z?m.-XuI$I4?{16FO$Im"}a68$I$Uk?h'}kнNlFI$Infge w~v9%I$Is!{9%I$IrCkr?ltI$I4!&_t?f$I$ipZsU#$I$ Ž@gշ{l:X~6$I$Iw6Pf?2W$IKOG |/mbI$It0awy?,I$IR&K$I$I\0$I$w΅w?'mnI$I@6)\ tM7q㣹/>S"@$I0:nXׯwC —lzI$IMwu{$r6AM I$i5} |XI6ݧ68QxlR2K$IRIa_O=B` !O ی L]tI$I=wMW߷lҹ]%I$ LȺWC.$I$;yr ]$IzTi@]$IV ]tI$I^6ˀ.I$I1ˀ.I$I} .$I$P z>[A]$Ij 72K$IҖ=.2K$IR z:cw%I$՜$ˀ.$I$nc8EtI$I)s`y%q$>Ξ-T 6:H$I.`]܋i W};EcUW.I$iLh@Ot\8xqǓ+ed@$IM?I@xN'$I$b]p~$].;%I$ DQի6m`eTwK$Iv8N kkkk$I2؀i@]$I.'xbedԿ6dz.$I$ 6YrxN؟<P1;%I$x@?ꨣX|9q8X'Iit+$IKp óᱬˀ.I$IX<7U7K$Y{ 'lK@|dˀ.I$I]ܷL8q4M 44555I .m VUW|#K$I.' ]5k6m9i$n}?kսlk>]e\fMtI$IųsFEL<L^0;ɦ8 $Iī~#p+YiFQmvPFM7 qw}':::GQo!˕ 6 6lXw饗vΛ)JSkTdH$IS?EQtG9OM:t뮻Gyl8'M&)dTP`Ð>>٘\ryl<ak¹pk$+X,滶XA$I4fǁ4@#<4M}k IDAToA +Qs5a u-оXeBQO?:w]$IRyA.o^G8YnC=c{Wo sz q< xx2Min> ۾d&M73#78 83 ^ .I$i8|L(ˏp$I;̏Br`W!*g…; C' ;aÆ-_ru%I$m9~8r!?\aO`e8 477X$+$L$ \Ie'Nxf3$sA.I$i[ ؙlB4MN66'I~rXN{:zqOd$9 Phc.f@$I44GP(ǿw%\l2?ssȖfDǯ3ˀ.I$irg YgQݼ`-[6R#w NeBE/qtI$IcKr?.WrccH?\Jomm] E#a/8ɀ.I$i xS>izN8%jeiytˀikCpa $Iƀcsd˓$yJ [paaP0K$I ǿc=>OӴU[k=uo ^{{{尲]$IR{m`wTubϹ˯mo5 $Ij4.r!lڴ Eѿϟ?Z)nˣ=M VЫ&$I4H{.̚5r,Iu4,^=V%I$ ֳtAeۺU 萍CS5d\@7%I$h8hw.L>J.]YORE r@o(`@$ITgoG}` ,9"%I$Ն(^?U՞!tǠWK$IUss3BaJ B}ǓO> ~ _ 7xj ^]$IhXreLBpޙg9 cc:l* $Iq|,?jƌ_~^f7Kto*[A7K$I%KZxN_~12;>_et]$IRr-q|<\#Rap~Ot|443%I$U9"=@ֶx101_a'fx淪ˌn@$I4"&Mz _W@ l/y1tI$IFKKx`p$~|x<fF$I1ryOp~{`pNcHt$IL$ {r~7s8~^r&.P@73%I$R… ']5?P(Tf~n._W'/l-.P@n@$I4R.\B$IRq:ye˯0,tI$I#aŴ3&%Ip<xQ.?}(,f݀.I$i$[9 h0a\@kxx+4]fF$Irꩧr饗@1\$Inظq#^Κ #}tǠ%I$'xr83%ׂVkvMP2YGAM I$z> 8{/$yU\xc.V=@e~%HCli/[^\z =65dkO]ѧt'3K$INJ~ptv+Vȇof~39O[6r:#ׅ\97BC`C؞B6-Q:`Æ }e 6dԦ!CpO ۇP}x6YE{Y{'ƾ7meC9uULNg@$I4R(:+^X,]ݛCxJM!Oz%O@8 !TW! _( C@3+]i|Ȁ.I$i8&I'.Kxz'6ZȀދ2k*%I:V=3Uwiq$ F݀.I$i,^8$*T*=<|k:tI$I/H6yBph e)ϔ$qtI$I!=yZ[[*Y*Ut+}n@$I4\,Xi` 6sx@t]$Iinn)M8{D]$I0)Jydkgu7oނbPtgq7K$IڦE_ tI6]ܷNst$ImU.K$Y ua\f̀y睗hw$IM9M&uYݵ͌5&$IC$IB{ JҦ!큛B-+{{þr~|87.V $I+p"0'I`#`BmkVOǁ'Sܶ&&[.m#8Gx-Q=B^I $I?!>;?#sac^Cg움 !,V|gwѽV70rin@$I4b4Mɺߕ$%P9d),`xs~V. ~1lG $I8#\I>d]RE}x 0=ʾr{g֓Ur߀.$I! ؆p>eLJ)F] mFSK$Ic\O> |,#mC]$I6rInw+$1x˶]$If W]$m̀z>l$IAz/ٌ髀u=3[:0K$I8g'M$I~~z>:κoי?a@$I?٬P@ǀާ-Ơ/[Y$IƠ R(1+$,&r`sTtI$iv7DQ [f=ʅPze@7K$IڊτiͮC@m ]$IROͫ,?p\R?6ٵ}H!T}+ih$IΝ[9Z0yx-2k=р.I$&:+$y̖0Bt$I~|lElm mI $IzA+*K$yņ1TH0$Iԋcg]Bs7nU2k;wЫ˱$I1p՗[[[,[\@͍e]$Iz+A7K$I+_ k ­̰tπn@$I`8nvVZ[[7Ehݐu+i $ItRN9x_ommm6z>j+="]$I*utt8(o&IRvra %I$'oV~a VY $IҸ/p1N:Vn}`W߄H$I5X, I-Z\`m{@m;zK$I5UK:;;=Žn@$IƯB(0lJjz Q>W)vq7K$I9򶷽m"p$Iu5CV6%Iq顇`ƍ rƥk3q2$I4~̟?믿8-! 2I?A6.]" z%IgB< ހ3ts]$I??|88h'I[8p1[A] $IҸbpQ$Ilu ] $I1bxg$Inqb ( tI$i|H4MMlh*e]$I*Yael vq[t$ITἭb$IV:#]fm`݀.I$4=;\'̈Tϔ$ ]$I_ql.`y$:U VWH1tI$~U;r|.@KK Tnon@$IƏ8^.~}uss36tǠLWЫı$IR͛7.6vuu}T*Ӭj4M(J͍e]$Ivډ){U,]tussszvq_р.I$յ .7kAMU=}kUϝ݀.I$տ4M t$IT^@tU5}`^e6$I4Š"iNfL$-ƥ:>B!-^v $IBUqn!݀.I$եwS?mnn&5z z\f̀.I$՟ŋO>.W(:J 3z1[Ki V $IRhnndU;Z݀ n@$IGTbV$Ir-S3/Jg@7K$Ic_z~`:8p!gan@֒y]t$I4J%wNoJG}4gj=Vk=X+ q8$I4Ɠ`;\<`vaj'[AQ7!$I0 MUIK. 5!-2zK$I,o~ Z4M?b -Eϟ_^ vqˬ+$IȨ{Bυ :84R\>oٲeqWɀ96ݪU3f8ʬK$I>Ά m `=,Z_ H z| $I2y/2'8GGq< Oe.tI$i?>]tqx%X$ɓ3庵*t vq7K$IcDze*U-%[WYIM 7. F$I46TBe/dUcf`?q#$ U}p zВ$I6J>;Q imN/$y^pn}1Ub]$ILJ㯵9]ǵ\|xǠktI$iۃg X| mo /$C[$t e]$ID69Isy /r~\Q*]$Ir!X`(njv+m$ɣ/u4ztzM$I4D_ܱ8AX$Mө)L$IrZ ]jn.+$I6x mSX/)ƶ ydKEɕXb2ˬ t$ITܹ͛sWP:喟;'\uU\(@ջԀn@$Ij;@' WsMx|/^t_+J]c ]$Im]tqO&[2l*pG$KyE7W]](~]OY1tI$iL8'`k;OommX#gUI$iZZZj lRN'uMTn$5ZoB$M^c$iԵ0x7@E2eJJ , Wh˭k~2;Gyd-}>J$Ig1 :R@M$I1IP.?HV]5M"_|q$`q`uֆm HV瞓(z;@\>K.o:9/v {"\]ݯ4lt$kLaNU/>nԦ M!$Ic`B?q)Y51c ֮]˕W^! aևua#͛#4릅m*[N p+^NT՞tI".?z^>o'BM'IU$kfndo^<8kd\xn [4yd84Or{/{ IDATze9.^g&cGۺW/] tIwF6^o#͹\D64XoWۄ42.\H{{;sCp1I[eFE񿀫zv07l;m{`K^ k֬y-I!7 ~z`ex(JmSįSu ɖ~{_x"p닎͟?e˖*tI{&ZL&|llw݀Vdgav(:52bX/]1i}|׻uի?յ? |"l!wJw%w涍!f ONew3s$_>>x pV,KȪ֜$ O?8o JP7^B%o̠Z춆Wkpd/#zf [T5K I!|d0\>T'qVFĿ /Vk=q| ]*577WT*毆/#>3'S TN!z\-80p3d$I c8H6Q'$=zy3ȆMU:gm٤S?&Ir@TL\SŖ V 4.|//#ph[< 4O|/IFI@6<(>F6(dzǣ:EEdWOdLw}z_t=VJ݀.Iȫ/uI-.%rIy$IC1H-eо0dnZ*>:?I?8~V+]x 6]ͳ/sfǝOcdk?IN6$ Mss3IAdK$Y{%l [Iz8 6m;B>{`%7U pHm ]J#rj-s p<3Ȗy7AU+ bm8… +_^L#l րY/jl7z Wʟ`]J ٺ>R ǟ%i*8>8K+Z[[_,'nլY*_$Iike 3#[X蕫ijw$ՍV‡PU L@X7 ec w}{q|p|p'Imx.W=,J zP0%n\F6ɺnc>IrkEpO$ \^.~gҥk.\H[[[.'!nUn;r_{^Ӏ+p ]ɺm" *>w鐤xq-=ٗ_hoo7pp`a[3۟j=@(8G`6W7mt$y&%ZF9|x8DAEwLd}nɵz!P7wNbɪw]0ez Ž E/6Wn@1mY]Ç S#I;SKIMsUQ=^K17zǶ6 !+,oc@@8?w z"$Ip ٘z>ْn˞$?əa4MWp/^o~=;U M~R6V+>vl]W+Q 4}+.rY=Ȫ&{z$iK.-.d]$IgM Wӽ(/#$IV sO:sn9\<}|1tI/'`c < @wƳFma@0%iLy%Y.35<7um\>4^TA6_{P-&;KhiiC|\.?2_\ǠϬ k8>lxVB]ܫõ$i, fe? O!מ>II'\@XG_- 8 @X. \^YtWSw?G=;{UXAF@u[͛ߏ ..BIMe4M+ۀZ[[:{^ߍ+bx8ٸ.=I5ֆ++?Ǡ%iL/ZxBgώq8g֬.73<ƛKp9YɁ+$WF`B٭!,9טdH=$q dC6T%צН݀.Icɺ.FkdǴqR}qT*Unv7㕸䚤qR%. > V'&H;5 Jy{  :5w!R9J7݀.IciKk Gv|妕j}^=5WKJ,t^JRe?E\.3M7440c <4MxpVE.oiii3/ilnl,z,{Gzj;8mȺdoἭŋOrƛFy+km'lyDCi(Jñٱ KO o;jU8Khkk;+Irا~W&|X"MӿGQ8x9|ɞ}Ic΢E*4M煫ՕY8l8t/Y ~.ƐyK.i?3wwm߳k$u>WQ +>;:gt$ &5[:&~ի;YbE2k֬uٻ3|@:lRq|Mop+I+Va!n'I_ ?uеDGGwPHtE,U%Ǡ%iLx__O35Xz87I(:6a~8橕bgTr_J. f6 :R&[Cggd|:IǁZk^ ʅO?|1tIIƚuMQi-pk#|TY87Ix9ɆVgFQ&Rǯ)s'Mŋ}HU'p!xq$ɓaBzznMWuÅ V_.gQ}ED6jtǠ%`]b22[/8JQ+W8~=~EdՆ566>An~V$Ն)tOe˖m?>?u=wl೹77򗦦?izFEQWWם/ ٠FpT 55 &q;u c T%!V:|}Wv-e2nDM#>-w<9d巹 BT!> 4] Tv& ^deһgs%XW>'Ir'oEQt9-d&=?I\]---=jAwSQ_=vʹ@y:\)]un8q"{w:q{ٍ-U׆Uׇa{:ld'*o [ϬG!L`:.'&& mv/ &[{Svq7KRMzpp85|;|ʇ%KpWS*7q{Q'&l/lqp~cc_|mttt8^]Ҡ477S*JMwn B0Cy9s> p7iJreߛǾ:sE.~wnpG+6п u.tIS{ɪ,Y3wŎq7̝sy3Kez~֬Y]fbƌ====;;;趛> {Ωw"M6SPg|># zubKPz=ZGSI$] ˜# œu0n^F@455QWWGii)MMMK1{qل^֋$eUSSv?8/9Re=JU_q]v~[WWǼy|UPيOy Ё]X OKZZ< uYf Z'0r(S KRd6^QJLNO.NOpd!O | ~w*wyr=EoW Ă.]a y[AఒuWO'a@>wݭwW?Cj ::j}Mz&.n8|_mqiqWа1||MX2-lX#1裌 ^Ƭ3KHY:1 Ç0 R3Vrwr$Qk}>. UUV,oՁ1UU3GqQSQSpmC۬}ucd]pZgOǘkosw Z?!X.ߙSRSS3("ލML }flٲTlP[ZZI9⼨z$>* HZK݀/mn^1fMO;1~.~+ Z맱ׯVs1=v[`с \$Ij<{ hc(N8ۮƺ|ܯ:!( |Tཷm JM>>R0\[E! {( +}:82{R|NP]a k\.@'|8j7(ZQ 9LL7%KزYi8~@udD;Iގ_nkkq}>K5e`{1?+ aZq uJ0\p1Ǭw/ttt~0|}\@aHƽ@-u_:a) Ïb]+USNZi&#xsTU>@MZ3|w\^>XV`_c̃gMG.(a9yRb=(n&oa/p?6{E?b'Z^ 1gV- /h |8L>p]8P)l骿c-ݥǁϘ2G߈i3o~{3t6>E!*9$$ ӲS;3]l6;n>p @r=nu?LfpQG[ax)䰹Ev†bCɍn(t N,裈 Yk1 t-}0%/cyZ*u/ΛjbQ::}}Rax9pd+Z*OQ~ 6r!o7vǗzt( |@CP]'#r醁~yr̍eZqefK3oA=(WU6@Q*Rߎ۳ ~E׮߿8.綷PΫ ǫݱo7r>p_jZhe3^ M>} ]0f IDATvpDzQeqG,{J lDUqބ+-&k05}k=deZ'O|ZAed^`~G~D8J<:MqcR`9b3&Xk8]+砃0}8^TW#/&o{ ƔL/uïqRJ);p&ut::LI޾ |XOЗrޖsǭXo(2qwt50 Z z{߻kVZE{ҾF|>+srjGYA8vb^n6 O={v0 onZ?'v\\0\I$K/!ii>]a/#П'm^A2fa, 0-J)$I6|YkIПMSO?D '&w0Թ ƘΚ~݋ȉ'*>Rַ6 I@Gcc87Gq|0Kz@.?:7V^7ژfwsn ɹ- e?8>Q0iX/M+cVd3%PwXlhhHSI 0 [@NgWˆT'E($] ˜#u7}a"ukZmaج_tb}5֢t WcuZZ_gFYQvt0ehG`^J 6>&IJ `aa@'J-N?($@ nB}Go%7ޘ`]tற-8a<`c6e9 9Q`o b/cCbGkYf1" Up!aIH' lX<0ڝ|E0 ZVJd/5Nнpi,܇0Me7 ,|g̒Ė2\OY=c(u~ܿf\kӝd93$؅"/ LpkoOrd7Fq` c1 c\WAuE1/{pkw2Accg>>vl[(oǫ_vC'\TU$jJxǢzOlUpCfdɻwErE Xl>]a쇍Ml>^zjAڈtb>s? pcQp ۤ'm/ǰnJlQ6ݮz܇>$8o$+(?%WwVaP ܧr`%Y幞n ~8jap0cl,m.|[ꛉޞ|>; vg1@{pJ\n%הR1W<~o8>^ӮC=EȵEsM5jƢw"G l}xHGQ`]ުk~N]innMؚɁk^J?Z_\RiӦpqu1zz.4%=&jo/S1vt,?ϣ=͸~aPU;:7卾_sOWW~cޫʺlԗAU/Pj5mr9e-AVR7Gq:@WJ.  T7$uʭM>}ֺJkk}ZkySk} }jYqR]Df߆8ٕ3+z 5t)Nwl/ ] >$g>W_RAGyPur9kwluSk̵q̺F)e>`hZf̘!OK]tA-ζ}8l{qG>sLZ0ŹXC?;Ǝ<^X;keIs1tvv]d>4mYA[l$q"A}rt&~p2l(&d8㩽9۝0a|>O<+|\J"] XyئXR``Ma.K–9s挻{z6GFٚ5kxe0lY^#"G A6O& c{pg?|<ɡ0v"A=r< D eŊh y^ a–Ġ@A3H$Oa̱{?^ PRRre˞bs XE 9>=|*/C@alr% ڔ)S3cbbA.0&<xo'ʊ.08S}?}xڒsߋ}2k Cy`'^v'ܫ A[X5ԅ$ϲe* ] ˜y ˱l> ^1~zX:ۼ'Ja̡~7P~ 0WzeL!.tA  {}vp p{MOv6n!:(<{k 7s<ܽM浩5YwW`^*Aa!Z냀0\& C頱#Ћ]tA-Jւ;Wu2-ջa-;#C5 \z߉ίu`{4 0J444byW½HJ t {.E&|:]SUH9]y/źd'@%ތ;js?ߛyൡI l!hjj]Ƙ)))0sbiU @~>ho?unz%%J$EOւ>ԝ|`CYa P__Oss)s]wtŚ$N"Їŋ.nƋuCuEk*u]8xQ vS\܋ltqkArtZ{]KO9唾k˜()6k,f͚%g\QQQ;g1ohhA0l2qNN Pd-=̤C, LCCsAk=ؘ@ID"Eo6Y Ƙ#=)}C8װeVd&{2>0.#>ZE 2!̛77̙S/$N)M'PQQAss3r]Թ[TJ5$y\)NDRc̥̆ FYʂ ['TD Bѳe֊Y, HCCG?]܌E"Rju'EE*ε'(nuy0 Y(΁M xy]aĄ &?p8 g9cbK^FjZvj0 N=Tz9 lVʬIwAQ% C{縏inn~TzfR$]l"RRRr*p0tRĹ q,:^ITSSg1Ц$Na+'ft,..g1'ea6Ϝ9 &uW+Gj'%Iv|$Na)--MGwa', Eo)Ă>ED)7֬Y#gY7r,* )BCCCNk}0ZÀ21gbAAaZ&/ JJdWKbRd<s9GƖqI'a "gY7-*B$GW?Z,1 @ 1+sԧ>ESST >zJ"Їvm)~qA`P=+@#]aZga5R/EM˵s`Qg؅#%#V;WlW>ĉstzYי#7,㉋ =Җ`644ؘ_@P  ⼱q&@c܍ \^[[[zM7Yq^]7\R X N$_12##' Y̟IJZ@5 RYNV?|J+QJ%ɏ/?aUy@'47wjh'SXqn)zL͠c֌0=o]%7Ԅ1sdVbVVWWS$KgUU;gz'qn}Μ9o|bR1@ĉ@ߜP"IA{x1ɦ+і Tիp7,Zߦ~9shnnIMu5Ov= . z':1_1bgQѵo  zºqkYeuuuT{ AߎAb (_G}J}x-|eJyݹ\PRvόdC8wdžJ\ϝk\fw8F)c4 @[Gk֬Z18pQu?/x3}&Jg PmC~.7&lb]8lw*c:W]6S 6Cv 'WVs=UAkrle?uạS <3~` 8 ۙai箧U_ ݢ@3AU՛P['܂EPJ1Ywn^TǼ֎j3J1H9zϯ⊮Y/LTUI>hǒ0 /mQ tCgq$xwA #n8ltlҊy=qb0 O ݄=@\>RkRq> .2ώ `9p'З+cN>D8^L?~*j]sCgyyje.>|$Oځ1rvX7awWbc?˳nWǝx00K[w6XWrcȿ <] 7(o3i\wWOr}lHn ,bҽR$I]WspLXό&&E]XY 0wL`:ÂEcv}̵a%1{}\ƘK9fkI} xJ-R5 nQ~>+O VdqyՂ.G kAeֲE}I\K`ݕ}l'nzWiii~? QGAUڇ(bz˔R/σlvN,('^΍Nd.nU#BPPWsdv<c-dp\\ʓ}u_2~x(WAc79s Iy]lJcqPOBPUVU洧1M1Q?[$v> 0=Y|{Ԃø/̸׵%*I~'߄sNj| |&6585ߧUJz{K8^{zzΟpa`^d2kM]/n\M8JCZۗd :!jo_>[PŘK8^'tso!۽9Q՝?Q 9.,Q)ӟm )ijߊ'vg<3QG'pq{?UgLd_0(iwj߿zYݘ~.S3jry穣>,^)n >9Ljϋn.4(?XVveժZX'8+_^Ƙ?c-U(Чjw.^끑o#?ZX~2* 2knNŹ@rb]{PUGrqt⼦j:Z[9\.W3e(FqL>tXk>t)jo_[{w}AUU'5=p7I򿾿wt<2!jjPU{MeR˱\`>u55ˈ::fksr/`ta({ {Uwfx{lN.^&R85kV*z yyqR.|^St aZ#&EFx/H|KKKZcȾ YJ[WY2\ $D'7 y-ʝ*瀃ԯS&[mтl+3%t |9 ʁmR&N <[b裰*c]_0V$kŽؤly/X(~XcvVr/NLk&vZ=Qj_%  Ϙ=9(e2cZMSݶWƘל𵫋IқعPz1ޚ~h](p,0ʣ߿8SsQgrcj.hBInTJ .3݁11!d֮E6qI[۽`!iyvD)m[Y7j;Wfm̙̚538#ٙƛ_<=VJN 6g(V.+<Ś], =r#9 g?qWNܤyjmey.wKMlt*+|ޖxޞXWݴ;qIPJK77JaFӁ[2ѯ=oM.IyMe%c>-!W-eڰ#pJ}kt.VzcD83u<9?qzn;)Nmz\~8f? 8#Zw?[-ovR6a :Rkw;p\fl_^I:e(ζ87NXvq̯jDs[]\+܂́?|ׅ.pR,.dk`3(J4 |?8@;}k]P{+;Q[7пRfմظo$_K+ {[sHcy7#]`[Ї}c&JjjjzfeؘwZ~3gΆ'ҾyK Lsr]MØwGqp^Oc浵%Q xj 0( ܏Rǖk:-ִMY2N`Q<[ [ XqeޏN^yxIdQ1 888R[Nɵ'e\`kw>-նvwccRJ ЅuТnIk$5|Ak<{^&\ |X1b-g?[ jۻYSPR"I ¿%8~y9|Rv!!(c%^oDq|6 g{\̋nlF[.[e$ks`1b}ޝ^Ę]Hf1k'V) nP! |[)HiWZ~qfѱ<3/k^5J=jz 7 l\:A,AUQGKkt_aoo+33 O=vc^Ml~.V_kʍ1utn/Nܞ 7tM]@-7LEqSƼ(Stk/.G^dcmU߳j&xsT;{\7@϶>W|y:b>n+t_u5Q{Z!8餲/_3<S^0\[QqVE( 6:SJj+(Oy($jo񮩩tZ';찋kw)(K๶8~&ݟq7pRmUTԛR+Z/8?68AQ_rQ}ˁꚚ}$Cs|߷z{S}uաWV6gzQGѽnӰ 8'(u K{`hnn'lxxțPDhsZZka8=diw&3Z$ YzcZk_t~Mkݡ>]k=1z˔ [iGeqf-;j+_gUT צʾc?ymy(m)dNj./ySco|6H$9H?? _Ժh 4n 99[@ೠsZخ2nB6M|^c@8i Ӧm;70F'Z@}TV]Tazyz'M4\[k3L=.q}`%4R?^^^__A9#KĦhs@TgZJA6O%~ퟌ 6xPWWǤIk@)lIXִZݾKc[KbKx:W VѺ҅ߝPETVy;$OhuؚGavW]Xd@?^ (!lOpR=rkwqqa8H%u2us.m5ՕR=MMMWWhO&: [lZ&,c3la7D/3]W_4oO]s cQ'gYt?9JĉɊ^p.Iѱ\k]2cSJb*mQg׬9'ee>Ǚ41g=ÜP8w-B1#Y YAm~d&cj;x ElӍ1ӱFJ;q󔖕%Ytin3O(Ll,3Z(]klB^5kTYyy/i!2ƌFhL3@^c`7670cH_7Jk 17-\TYKt<#pKziŘꫯlf0JnbK 0ũbf\ Hz/bƘtNIw5#0?lǫ}Lo4KrCCMMM477/h:-3ƌJGYlReU01F{JGa+=#}nr{F b&ml׮l4,X )c#:K&$IR"Va(} oeUR 0; ˆ@]]@Tc3?k zvn$@ Djx ۽ ‡ ( sa=?. J 0]5eueqg֞^o 1 t9􊩴 [T\?|u>N`U܉A=ۼ/&`?`;y ¦ibjyM"`K y\ ,]!O]x/P'h+ϑku>2xŽN+}f$`{` 0ՉN;]"WW . ŝtt)f z]M"AaHz3?&=nׁ^6،22*F25wg^]ظ}X 0DM[̍C"/GaB Їg(?䊍) LB@gY7'1%B iJz(?@q09!>H#@衆jlIcf;[tz?ϳ^ٻ۝ua8.e4=gKR7$"v 檭~/"{.]^YWx S 帡<L],"ЋAVn`[zglKGTu ƣ<\AE;ƻg_ZXo"=\췴 P.)G.E#tAJUwE(K\ " ?AÔ F@RE6AUAA(lP=2:"Ћ#B)/OM z)ws& oD-K "{BK* ]ȑ-+E-"EO\ ɌAΎVz۱@AIY t,#BwRV]k;hG_qqAPQeJUǖA.@, t/"͛1/i0ƐJ&A&>A`M[N$g $N.Aո k6|8?>pP:_kABŽB,H& Gn,ʬy۽|z߭|L&>A8J4H@fd )BwR6.ƘEX;6"]Aa(OƠ755IwیY IDAT;)$qs x<@)d/E QV%+Vw06DDLKާʬ]wu$I2@HL*: eEtAA(lP}ƍc@SYFb KYŠg2c  L[)g`ok ZƘvH* Bc#(Ww;;r9 {mm-L9k퇁JuMdA n $Zk>hl-[9NAz =Ԑd^o]>@vUADbAk=R)up&p8ezLR]zш+ IĠwFCCs4P  M> @( .BRVe:c͚5H ٰae'N#//6TUU> ೱXl Pn-& 8W `ӌ1wDݼy@7c fA$q t'R"9xG׿e+**,Z €xq^ 9ЩL9 Ă.} "лCGy|>?'joZ By 0= XOc$W"k], @km1$]R\- e֚L&>*kփ@d2ٺFQ*Ȼ•YrЍLI\(cׁOצ)uuu;iĂ"P>Rp'A8 Lccd!Cj7H =[pAfD# k핸2l o}jA9dt:|p p1u=[(oRn@*+ @ IHDz HgX,`2<%-AC.m׷m޼yc=vƪU^*vuIGuJAzo9'$?^t:ݔJDw.t 6( À݁ӁÁ}"Ћ:p_hk׮]TUUeJS!?{'jnn J._An >X _3\&[[Kw[wAʉ8XRdg+Yܷh~4x<ʕ+7755,2qD93b ?xAG7՝ WyƘSjiiq;C YEq Pg1Qs}is.-^}'`(x3|1ˑL&f-A|q>砃cp,ZaŦ#8%8 it+5EIkԩS![ tA8\9|$0g96x|vHDˬz7572 >Ѧ .. 7;ŀvAƏ?=yOZ J)Qc݀8{x`ĈbE^@ ?;Cq5]n:֡ `":p/9{zΊ$I[1W=ܓ>aÆ]%   c1rRYYg 80N?JD&)'Z-UUUDAw8?_ Bږ-g׫mdZƘO ~qG4bĈe.P87pWs1y p}}dt:-'g)wrk zssXE r`e s+y̯ R6%˯:ȗ 8y}eҤIsnjcAoK_ve v}A/r_jySkM&ջ{w"Ћ[l9 Ӌ@ +:Fh,.m) to6|[|>4f=5g} MŋZ[R?}.… {`,p,XL¤E-A(^s+[I8^/S?H> ]544dkjj_\~=(kOlhh:3Apy;G>H_}z…G;N{J^/q)+H<DŽ©c rPA)Ղ2m4V\) N@?Ș ܳB}cDY'G"&4G3gɂ38," 9o;E:`CC555}݋o&NX;dȐǍ1ʭ!@6L~$)Ƙ"muO|;}X}~l}s~yxI~a=~>?^_M\Eo@=Xʕ+ BWXVB>nڕq#KZw|z<6Y;Kk87_M۸PIv"zgy'2+Ă>omӟ:IsbÆ ~#ٳj,Z̅ HXFI^8+`L&HM6{Cg}~p:a\~ /؇bYs7 /H,җXط2ex)Jw,ѣGWP%0Pi+v`;3,[Vڑn|Ȳ;aP14Ɋ&/CK}qC)>#&ڲV@g{z;z~_G>ˆ#A Z__O2B 8uuRƘGdTwp_!j\Bh_E^ p/+I7p̍YC:YȺ>9 ߟUA~=C|ߴ }WY*i}Zl.?RJ@7C/3#@ojjH9|b}{ 0y!«~KCh숳PQeG\T 8v7u8XWvdyǿΕj wi4펋aРA^zu]wuI3f̎Ad֟7,d2t`=ADWԥ;A 6*"KRP<[h[m¥A~"Cк\SS30͚5{wq#G\f? SLawf>`1f5НDQ!{.g ^yDTϥz\h~y!<hA3.bA߂O?PM|/Sh=jAA蟬z |wA3*<"}[bz:TұzDZŸ<׭[;^:u]_icT*E:H~I(of 7w}^x1=tS_?v^yL,;٠v-VHN:7>~_CLao>Zі fk.]^nǮbtA8Fk#,zVm*)!y]?ʹ\A6rKMFykD7t\p~uu|>? hhhF o w*Z{ u^x mbEaB]>(";ڇ07Ҧa_(eZ]t xD} Ed/QZ B(r\ywAI ADxsk '-֟C}Z4_ܰa7~L0rk4`ҥK߭tAp{Zk?O-\ tѝl@/ʹP*[y[УYEg9OSp997ɱ?.π7V,ܚi? --Zzⲱ6 Q},Ezw` .|3<@u*Z'.Z=; ŞN|Bk="RGXd% s}gi*E*FD)蝞K-@LM5D&3v~ #,UYƘ&cK{3H!VtAN:$:};TJd y/O,Vt^J䅰-DXx KLq@N%v1cɲ@x7|3?K|?oAk믿;‚ ]L&I|)@\\cZkr7=/An Y+t¾0.Wq? - 8'nrXk̚ &/ǿ]9Z:|tDkAZhhhh4\~sΕ;RLٳg~RnY]iA&=R} A.*bKSwތ"X,&.PER .7i*b!ww]}!_"spF8_wR/^ @]]ܙ t+ZЭ}{pU'6K7lU%$"A:P,Q <?q9op/]bd k/^ܮ)#vEE^mAX܋7}i?d.Bsyq1;6=,*URj fq+< <ǀG 5IRJb˶hȬ,Я~Nڒ ԁJK !9C[|c/8όЉH뛴)\8` cmR+]eʔ)Njɒ%Vk}"x' I&X#{EzM[k-Z|яbp@f-.Ƿ}#~F,!7#篳PxS/o(5ےǔRzn31)XPA!Zk 5\c3_+0so(3Lo rU=+\@g๸S5Y.7l gM"&-?y9I6/2H\hL&WjoCm o?8P` nZmRܱ %΍1\s5h6i𲵶sqǹ$Ͻ${R̗@/UrŖ]q ^}\{+2k.E-0gIXGi#W IDAT&l|o7-D2"# ^/G&Cz4?0L& e)~4t:-1 D*&$Λg(ĔL&@MM 'xb)F7%emUVJ[n p+Rp͗ O" a tA(ՐWG ]vGj_YW2~1(sdBדR)UFk}6 t֚t:> .ܦ Wy1ѰE][mukC}%"Ї 7pw?BZwOXHwAzs%"лjLǮbf )]mIR\aZ BGZߺoy٪>ƘÝQ p(p9^btuZБtA(5l=XO̖I -=lScX Rbt h-uArJFb  7|:c[,dq߾Ivo?s‡qgpG_YdKOsyf,榅P/݁ǿ}*ł6PppqoUh۵i$ 8˿Xkyu,.qvp1z-uuu-L?ihYOՂn)*|W[o *(\qɍ_ Ly FyW=漁z3z#I8A(-qI5"zEDԯ+?G!tqqVL&Cmm-뭵qZWIL ljjjZڵ\kp0Ɯ %KXx[oIz;Ys}d2YN6lv$t|`>.@~} ~} p;t\I~IG%K"_t5@Yk|9& >o2pZ0:thX(`.fӃ i8zk7 $qٵ. ]p'> |/}Xy%H\qQyz'mCq[Syg#RPz(t:ʹi831V_dT*5xɒ%7ݐ'OB'MDn뉭MW/MDW]MovءqsSTl9j w-ѵ}-n2 3sLQ&$AD&]|I[kocٳ{Zo ڵkH&'bu?)^s=? @,L«rƘ@}x{$CSpY[Wq%6ꉝ)7jAWJ]!zkK`e*UzG߀O/c/~y7.Y|7e3m~G3hs)c[GփwibۑE]2[s8W]5xI_rʨgy|kd2뮻nykM\lxdl.xl.GbƌQj֐ߓ]|c" LrP1\r~u<^`'Ss,KIGfsry&C"r7&3Q ˖祈Ǖ 6gsMu\Y87r$}QM6tP6{?t)Y*hi9x-fT~ϓǏe>~bӦMwf- f͚Ui[Z=˽f_L& ׾o{WF!2Ɣ҂t+ZȖWRk,XX{?zaAuZ1kqxa~Db|o'orΌ.u9d6>#VFɡӇ n6Ӹxi8q\ ncq:Yu'pqM+7Uv{Z\ɏ%~ؿ{`!.&J ]?so=iK[I&PYY96"• h@UFXtp xWUJ][WW7k-&^se$O_?, Rq8f##`  z=̘1iӦu K-~uu,]>ߙ6Y[yvb^x]I583"쭿0 7N&~YwuvjfXo̗v MM>[eo4@Í7SO}[!C|s67  8c"?/9^ӷCp9.^SXoA]uu&s%#{KzƘ7%mWkc3gNtw L9멝)+ *PL ۴kڿʈ~/hg]8/Yww1h\H/8}8,o^׿裏>#@?~<ƍ{fݺu5rcJhP .N J\|'{0΢-P7IRApYgAb ˗C,i\D<>)7 =} P ءk !Q]73=,,_3(5Xҥ0Z{RZXtٲ5x|$3l.R3}zE lF˖1z/ӰE\9W6^ԲebsV HY AdqaZQ55h7Q o1˴? FR]wD";… ӡfKcRxcX$q?.}Hܬ')łii㒘L<38Z{P,Y6VVV?zRdK;]@E&C(\\6},%D2y7>nSqxÇsPR?7'wuq\ڳMY_q^&ܝ>?B qw?ZS7~XY3Fb\XlWt '+kcOOTWp=}Y8J݂f9k;sƌ\=xV_,_H\ K L; WKb]pUR7%;8?N `ic5X`z nLTW `WHg<}H(#֎IW)XEYzr5MLո8̯cOf͜9oZ ,Y>O|la,1&Mu"?x6lc8+3g%1x/\l.1`D<~ --_֡/֫Z\.rDr%Z ^\y(ǰ6|\(5 \>]?雁es3ܧR5}R\>Ɠl.w後 59-r]+ެ<^o͜ydWX従往V ܳ8q-cJyY6L̉pRl.]&.L;r75}z;trf?pgsC7,]1ONrWdPBxS~r޾O"5BZrҿ/L&)Ri h"2 Z] !n}G/\2k/NfyEV}A9Ǡz0Wp.x{ ږ ZOZ>Fk=Ikcdr>:~t;~ɷe"ЋD Bs|[ *YW.hG8|M1f4\|=]>?Ÿp풹M5c3Z}۔D]1/_:oosz~j"-Cuǿü9x$/LUpq6sS^SS8q/O5444q0X,wGɤncꣵDo@Wt.U/+Wnݺ?\| o?%p/߀+azRf<#pKWrOޚ-+'^j./0OPZbԋe.Z+WcƹK vg}&mb, L/4ƴ&Kd2i\=pnhw KD<> ߻~JM܊l.wcهݛ\87)`G~L$qx|? "}i. Z ˖O$;Yk_ I@|-.?{~>S=%[s|fs[\ޟƖX 1};[k_R`(lKq1BpT5~`p ;XF<b?\~bTjihh L'No}ec&rqsAs*JV_;<4$7l_奂bŪT}\sƘRYkӮұ]q]G<>qXWg܏;ɷƵ'tApE%ڂ [+@ƍ>j.sN!fj~4urg9~Jk=!tu/XչS6?resSQڄ-@$ x,`w]"vg`r'ٶ /ۮ,/'D ޼l5φUbVu{*Pt o>iDux?yöwvvpQ^kQ8o>c嫸2;pV<~x͌#f{UjDPP<NU]}A0~XDu^xJl.3OlLx՘l.Ⱥds̘9l.Wr~ S}|^YkoA`X+}9MAk\6|Cą?ASSZ{;s|v5MkVWz;VۖF5V AgO2jco,Y;Sl>5j'p_/|(N)Y.0 & {d\x߁z};\ aƘ}1S1cf2}i/?Fv|_ׄ0ָcz{BJ&RKp_3D :'w?Ö#Kpndp#ngT]N-^Ww:ۯ|Vv*s݂wmnöXk?dj?֟Ɲ[OApdee% 4hRUU_/^hQJ<:ITj."=0{a8j̏gc6xU^?$q!~ઉbDl4, }~P ڿ%j_foI&{w~x\knk6@Y{A*8q-jmy--[XCq%%0<>W#]u (mَAhv|vA4q+/ bX+Alb*U4ARYYY֪#F䭵&o$dGq-ĹZ|ބ݁+fqnnĕP L31ӹXK%-$q݂Ҿ]&$/1UV-nlldwgӦMZ[JՉ@A >qz\2,JS1fΜ9D-No tqq= .f0uH.I\ӽP`s7c tAFe}%I@'*зF[o;3 6\f͛Wdɒtwoƅ]( 0?~RjB:+Jdɒe hJ}LQ-`l ?; M 6@wAXEI Xcp.d Ld2̝;iӦ1<{_*BGk͢EsbؑMMM<|?Lӯi v"Ћ?.S)KqnvbsGJa1IXo;f܌e#M^ԠG\"_*ZO[x1+W86 PVْ-<=V{{3wf*_)hz o&r8/q6ݵYxq&YV)ô8y~ꫯ*)an[Kp8ʍ\,K)=27sέ[l  ?Uq7織rk1itOar q &jW;1wM@/B@wt?_0B9kjjԽ|< tJ)چ3l6mZk k 7PHw`)08///mW؟w z#&@ 24p(e2ksVqY#꠽Rx-m~]@x< #l„9GIѧB0oQJΝ;w(m9 t+y/0| h~ =z+ʃ;#'Ы*T"q9^+PvԱ7%zgI)7?>CT=΃p8J_RWJ4jA@RjRrGxhߣ]DWx]12DmYs^A9KL81#09gs̜9sC>G~p8`ڴiQq Lz&PJ=#.}v48 8 x9&?,'Ћ5\i@w8GTT@SZDJAwq]w7WJ=LN/ܗJwtt0s ) . p T9s LbZ}M)uR};N[@8|z)Eˁ+oULaK%}G4Zq~%>p)}5Lc@/:N;>4 yBNn/KJy@gg`+/?quJJ?>---1)e L]]]2 "sy1Be3V1\2>TskŴU;SeL߀NL5'Kܐt8C3Sď zЇ@2e (~B)婡H?p8F)%tQAhQJhѢbjrE胥bCW\y#Q}K,L~OF|Lw$TnCYJ}r׃ C܋b2bRˤFn9RʯRږm1"L6pqq n>m_Zd^:hr&|~켅8;stf)zout+|w12:x5Zt2 qZUURAp&=|xDJoUU[} n~p8EGJɜ9sd2H)>̟cQ?_kjjZm[9n}qAp[|>M(}k^M0ޢw/1Qt+у9!Hܺ7oK.p{ 8y^&YJG=(eu8`ڴiX"O~ľ< f@EA_y"fWH9pM`*p ^/a:a kZ^ZkX,vrt:_{0@Cp8}R8,⼥4Ayb[UĆ{_g`_l1η qw8#!E;qъRӧS[[R.L R#Bp-;y0])X Rz)W,Bxd~/=RH=>EnLfW(ɴi Hc7{v L@5(ܷہXӛ+`"czrXnX\Do9 tA_*id2R&ǀcǎup NIR[AƓ7 x0ﮔezƌb?Q'#/ZO/ic SN5(=uTt. Voyt'7S1%_Ǭe0+y -u})*1|(+8ɾ[zf}J q//`<[`Ģr>ߥ"bw:{[L1 C} l,ՑA,&ZM2J1C B4FCm{'K)=z'Zo_(ޘ7t:ͱB 8!L6~^!ֈ A0驧x<6)W,X9s\ӦM#L ;|Jks)PO+d2I* a*eWYqԌ)7Ű]ziEI&?8* ͹T>DLrtiLp8Wc…5~Bv,^AvOZprgXWW/njoo~'5\.ׇ1c-Gj k[YHL#یx;=D]ŋGֲ60{lRFZ_'ۗ_NTJ-zGpoC @TUUzTIJZq ]vWzLTHaRfaÀ7~Aw8FF6k#5bX3j1)唩Soao6H<Y`Bp` [STQ_G#ā.)'P?*`Uk JOD}}ڼgj![MtQG﹋zg̘zsLJDO>u& L1C{`7~xy*ٳg#Kk "oPJ-c^Ўnnnfر8 H)Gj bTqL{%2E kWxL{0ݕpK|!&f?ǀ1B֛b}5UY_гF$:*NU}ܘZNocƬLxަHr.tuݖ};yvzznD"o.^HxޮZv1_ND8dIb[k{ ;&=(?LQ} x}ǿw7ȏS ߵU;ygJZZZ.|s X5I)f=g) ƍ~젊kϪGBŁI<+?NΰcrK~Q`!fyN?,ìX@w8JRBBym5aZ+=z6HX'G͛7oT*5ChEa1Id2n/ZQ)Ky|X RrĝU݇G^e ve}] [wѣ!y?}X쏍{fb%<|jX?8&bEn7ߌ0|z_'37%<$@`<~' s<}_HuT]h»=y_&pD-ևa _ϛ{b.\NCUn51~(0~^[b,&T|"p p0xxFɌ}vbœۍ1u Zf֦!Mx^?=Eq/pGmԃ}m {[ g|>|g}hms,%Y_ri֑Fv ǣ1]vT)?LqR=)%mmm, 8LDÞ}89?]Ӷ1i 1\}v|{,4Oa9b(0С9 IDAT0޵님'!cWIN;%)zQM5`'L&PJjx~ZQtT*QuD*OEbCcUwhV!qq ϛ9 Y턽.oSkWg}̬Xh}DdY߿@kLxجLfŌZc" fڊ}4OZ/h 4ikAY߿>PN<~bV ~4PO~BS]TUɳ 1Gxkŋw z`7x}LkC*Lk~'Y1?O1;,LH۬_d?(@74g}g7?5kFwYߟ`&k_ Y߿4R X( E}.Z4"pAd2Zq?쭔=hs'N%&eS(qR*@G@W2&dw8nD UsiC;8>Lx{N4 f%ZL^ tcd$zYK{{{E{ghI)ΘL&eUJja=i p?pr|x/Gc\^󎴂c߄}4rY,P nuൄ}\. =x^m4X,G}6|YSوmx"LlڄCjm{f6]~åkZGC#BL?y` 55w}tm1{K4xNBˬ~Qkn'w9 }`cZL˧vX%z h & a_Ix^ p' %< Oθ-fyv yIxޏ/xE\=R`w@-;V|϶,H^^'Tx `/ᘕ&ЇE(>*WSN _ 8[ |AJL&Ô)S R R].盩wƈ0zG=b%pIg}WY{{MHzG1WZ++ 4ˀs' j欍'D]D`T.&X >F|?]=ZshW}`[i{Wm">xh>olWWRW5mAZ Z|Y6:2>ln5ت{{1).WE2d2]DiߗcR'>mmn;8z!D}, d^O&K{E󽁉:P+0`6yj%#yCWa&;1E j!ep8OeA7o$Iϟv`m_虣F]JB^>X"09ٗj͙LFϚ5km%muӅ3rףucӏޟV&yWOf-z >BVsUu Sp wXw[ l]jAp^mo #cwU}ϑ˵$&150,T ƭ@c9R 20}KbF#T=}Ƅ܅Y\ ɹH"N8 S PS0yU P%G9r[$bƓbRnVh}0$>˔R?1Bo3 # u}޼ӱxq?1nDWmv1 %h}}n@[1g X{X]̢a @>_UUU]m[ D߅=sfѶ w;| is=?~Nc&r묥5P]`B<pRt:bKK P9Np6Ns1T%/B xA)uQ %JςR9LhWLE7oL붘`UQ]L:1]`r{TS=9A[5JJ8*[c }a3vxc\ˁsRa}x;84 p2K}bþ܁r`DFoB3d; j !bAjA@jL Au<gΜ91SΛaQi455 ZD'MYrRj1Ê+MIR bmm-Yx,Y"{ /_Ҿ.Nvj11[˶b?Y4X _,zpcU0JF193"|ڞ/Xc또Z;x7};YtgRPJ]-rI;XJs ͚..u2$NRm!~ By+n+Ƶ^,A\.Vyzr9!Ydu9>Wxm}GؿpCOZy*超^GkSXźQ+?ֹY,˭TUUXqbՎAk!}:ܹssR~Ί/ۧn~=m+Oń Tk}QOASJ q/g7!19kc]R@St'&i p /py.c@R*MT*u]:s~p?_nIJ)yiﲓ?v`qE->!LvG0u ,$AUO;6IOE1_!NrW/X`jRH&Qqk^{mƓO>ySbTqwmz˫)}m'YoiܷAw8JϠ.W^~X.JݥMNZ&n?=` 6h`֬YK)gӚƢZ S *m ׳Z_ثXe~>{m~61k/8SnTxSkݨshZEs0b؍HU{㎾$K{%Y= |ט p8@_.CA/$BmRcrl~c^lYM[[TBJEޟf `2e"ţ㞞m{hKu]WXr^j!DֺB tE"ڶg[ )ҷߪvhPaL&4P*eR\ɑڀΝ; Sx\@#&J%-G q*yL1I444.\QfA'Nt)Z럍=z}#Z Wn= ]DA2T+ٳg-/\3fL圇BJJy"MP?SJ* (#񕋌A/n6ê֋8/ĔƯl1x<.Q\RfR477gzbM/wUY;G ^1clJ2V? HH9/FX|Ux9>L,}w3uF5bzvbڰm@ƍKpMKh@3O>ijjGyG{Yv~/NJ9Gs7n8qZɘE[0 /Go]E|67V@/l{>oY&_\yNJ "?9},Y3{`zyЇZWsG+DO~aL70EۀB\rAwE0g3o޼0WK,!r2vl`9(;RTҾ)pG;6?1nܸ#|sLQ?S05D` bU"΃^D?> _L/w_MVn<G'R}FA_ܭa_z%++ttAr]9Rʣ+ޝhyc}l p9EZ NeviX>۽iC%(}0WT(NRYPqp*:3N?dHRkk3\FGI;o_zR>;ήk.>j0C11Qc%Vԣ}x;Ir~"V}&2>*Q_\zEZ,d3 C 5t-Bܝ}+0uTPJ*|!p RK~K.Bq΃p8J&jjjhkkCJ7UJLRXwA~vx(:&,Mxx>^70u}K{[>&xldc# oٿ -9S;^\V_IzgbV#`!AvQ<^t7򠯖>o<`TUUDW]/~5L2̻E}(㠔rp)SJ2e K.+2a`ƻ<ڊ/cBݿd }DY<S -=Lv,dOTbޏGc"MK+33|Xv*M*@/g-0+u/׫6XO '_-pQ8c%?9c5zH~YUU(nRnh Z! Tt:}w>Kp8$STz&c;5ܶumk;X=nE{Χ1+njey(]y>og=ayߞWUUԿ2c \Y CAGRJ.r<Ƃ)3.Q4^U*¶u{6Tu)[۞.RJ0sLfΜ9ԟÅ;"Likk#J>HٗWJ=1uT&`BwvjokyW?w߹#\џV@wG~_i_ֿEokg0AvQ 8j/y8&}}5@UUU`rGG:e"ju]RJ1c f͚RwR{_bRNcR֙3g*4 p8FUaR#8Ӿ|pR=)媴 1Ş/zٿC](ԫ|џ+ _n2Jk tA/S9W`L.^$hN>8#WxI\&/lۃ2k֬URK)%W0QPRkR'GC<c RS17xu{& Bp 7>ėW[hs^ 3A8q9Gs?&GTDd2R>$f3R8rD6&5>cJ+1m$|HJShQtAw8#JhZa>FJyp)T<$Ν-4DOfa`=vX'ih hl$b]e7R+CpqRrE3p Oԣz&tqoA)eyt3i(Vu8&J>)yo?zDJI[[;a)+ڃ.3!G؟#|܊xÁٌ3xw!@knRjƭ6:#71u9w}ؽ"LaR> X,vt:Thgkp8FHybL.|>΂ drCX7o}Q9O6ŲsWa* I_r!L2eR_[q>P ŹK,k[RqQgEd8<ڋx"& w~edsk3ϟK9Ly`BN;#?)Kr͇UWCoH6ms!N/Rދ): &#OrEGQRqZm_z*lPd4lrqT l%{ہ?biv ?wv IDATaȾ Y/a˽Ag 8WJyrb,dYT*5nhwAw8N2)q~bŊ)mmmA2bp.$ R׌CJLhOv#K୵(b()GG@=enRcRϺ\t袷rñ1. [̟?KJy&ЉE)<drz&y.LR]]ͼy۝;a%jJ)Fcj/R뻝*q\"2JO璘ow 8 inn{[)uR})&N;#F LDHܚj"^G!#A)RALwp )73 [p,488Rn.0-Eg(Ss$9;4m}]2`Zis`T2kX_#-)Sj4( =,ywCigg'je+k҅---cp}R*Ys9 |Br6)eE>΃p8\iO.'bZ o)p}IK)ז~*9Ee$пm &2k}=O凈ALjrYHX]h5cc}Ї]O:&ROA0ZJ)}:X3f`3`RPĻZH@e"=L?/fQGхoyb[V 4]`a---}PixLe]ϣCAG751i$46z~mf̘ߵv< aIxު*M&=uBEo<Hep-ٳÖiJ&N:-t͕f U |ǁ91|pb!~9ޕ!dk 6}^UUeJoc"2'x?3/\g͚7=ns؎m…9}^E"`_R6~B]8nn-!~Sv" z?!hlhhLY߿i}Ѣ$L)y.ˁӕRX(HRiEE2V7M0!=}L_f p1·\37)%G܃^p% R|~˗?;v555I) ꁑ]8@5\y[q {eOǚ:j{/,]zs­֛Z W |c՞ۧlS{4&Y/qھ&M}ID@{}[)SV;C0'y1k#hpɾ~ ^47631>2>rn~ᅽ8hd?cȂщW&{@ohӥ\{NcA'p{t\nDŽ+w1PV|ʔ)L<X2L`j.bo+tE(M*=Z!p #Aؗ _vδ0!@2cAkML n Y\ 4dR*~ܷnnFWJyt:vKK ݴ+^>vl^|y[D'yGAU[ uu.\]-yӑ;Wy 40.yg}E$ LxބW>P`罀.ZX_Q.;cAD|/ٴNչ{k;yorCl;QW l)D]>B:=m(_ zs}=9? TϿ{,/> TW&pzt 5Es O\riE56dZtw3 Hl5Bv.aMMM$<߿u9_Ƚtw/ӣG_ Z`z-<#Wg};n x"ۅw㭠oMx~Vh}r.F1aBLe}"{P𼳁=mn"]c]~}L4!g?{g_GUtoٗEVAE6ܤ (/ QQP MizI QvYEd)kMr 4if}O>IfΝwO) d%p1B"-Ѕ8yЅOVޘ %wര޴}4!\tBQtD ے.P3Xk9s&Ƙb͡zLk=Yk]jiӦSЎ|"B>;xPyA9kҥ[3h_y%3kJmLiExv(+l vv>:y^.7o^G l> x?Ryj`98ށa \.ӟ,J;1vOD6RWZ֞RvaۡNx _?J-o*x x'ҳ&Z R_JM .8:/&ڇ iZgU6+Uڅnbb"q"C; 8:4f> =#4£JJJD vJA/h¶"~8N}ZOڵQkSc.y޳I׽W_5w g}^ܚc GvAtd؎j'G7I׽ <ﭤ>t ,0&\SM'] mwv9{/e9Im!90y^D'K9ϊ9@cSZ^BPIߵPeakwڳoa{Wey+J1}zJ0\.ݟ|A h&еi c ¨ 6m ޒ$t(=pԐ ўM I2Vn/# Ed#B`&mj} ҳ~UmJgf{WVQHBJP DP7)@TV`casp'^_ Z?3Tްe(ܬX[Г^A(B 95"V/Fuw8`끓RX @PTH l\RM&ѺעiֆyA(n$\'D &w"~A'WEP)D肰 tgOBܥ#ZKza 0<Ϝ9;0HO!e? SB @N|7z&lzx] †kիWwv6@/%4%;}F;0yd˂0pmpz:"{%ЇDn E.a5=Htv 0֒߹TtP(D"!lOxwU۟Ƈd U~Ls. CwdăILw%y l=zov EtuByDzPRR" 5b}Ÿ}cY.#|it>A.ZQ9  wG ADEhT?$ߋ W}Av? 9%İA0z)>E↪"q 3}ZGav6K!EN8X, ۦxA8 %CZ €wT$׎t: ̙3Z; Plt)'$Kuu5555Y6{xE.k׻zkkk|5q\ QSO3|1;6BP wJA1:; LZ?`}{i$]a/8)\tخ\eyVXPQ8xQ+{!,ks^e<9IBapphENRjjjn.08t˓UJ]fuƘI$d2}fA)e az= EA_^ǀ;PHVAۓ"q}2[9)' S@k},LQ)L&B}}\_24A1+5B0TQ`[|D07nC$]+,KXw?'.{0 Bѥ6QDPd}XWWGCC\b;/!ިi ܅`?+s rɓ'HS*"qZ;>WpT*uz8 ݕ{ЇZ 5Qxz*Bk=U`c̣;hxЇ@G̉j``ҥK۟ %Ƀڅ@ Ӂj_$HM {]ZotI%uuuiַbK -QԔsJeƘ}Exz8|ѶG1&!0xPNzͰfmѤR)1OOԨ:%(y=AZW>;<Jf)] 0C'o>___ߒNimmPQT}'G0wO@A8q^l9 vd޼y@0zCCuuuK_Ƙ@]uu(Z_lvU"=>X~:E.EA(vq 9ڵʍ1E"^*:΃.}lo Lv$ |4rл*7ܫy` u~ IDAT׿kjb,qZY)5&\PF܃.EALfZbƘv^*:Nfl   A.tANi u7ĝb툖.]u`=?k 0;x ֟ B1OƽBQl]< fC0]ڝa1W k* }}m^OB܋#$a޷1KMj/vWx7YQSS386\v80Ƽ.!*: [/oׁ*ONI<'"q0R1䠗l,1Xhߌ1e@ 2j[SN={8]bMpZk )`Jss5uuuk鴄T q U}_I};*x#k  9#HSz:آoGޓУ i !H<|G|om'Ju}a"q fj}ݗ=ڱƘu~)*n&2P$  | C򻇒AH$H 8.ӬuG|t 6* 2ܪ~bt7v„ y7m72CopA~AyBpVii)WfW?|cpU.ֆFpn"Ay=y`}3M/ a ] ww<d2L>V1|{.HvMD5.]< {"᭵>Z+qƵCk ؠRÍ1 l{׾ƞ{y:m[*p*o&(gC?}:t:R㼸߮bADd$]NUܻj"dhZ1Zkw2ZܸqkOR[1# thVo14WۉӦM* |Zo}jhsHP-`FlwZ+vayappAx iCUUlv1fc=;ǧ)jmmMiGY[dEaBT!]k%e1)jkkihh@kR cƌ8\)1t:##.Jz ɑ똆4kR k᪟Zku6}#jS7Gu'xb4Hp$\}?Pf7jy"ɬ8qb-dH~r{aH iK؏---}<0aDk}D.AœT*E&tzN`TlvŴiӘK)*!(,908"}8wQSB{/uSgu;Ƙ;[Z#^'@ېA/2 lW}38NKO3 555cMa.pxXnU.^T֒4 "a޻A}z4fӦMs+Chl ܧN2@@{-!6Zp=Ƙ'#!!eF0,UJ}'5L&$F.9CQkUaAFA >\YzmO',` |Kk] Th~mYuI'S__!#^Yn IMM |>q0p p%ƘSNe̘1̛7ߏᨣbvQl `<>#L&oΜ9y 0H> ؒ`DAv՛c555?/\}l6EwM1΃.]z/-A"q0 7c3)6 vk3>24iR瀥Z9JXk?20uTFɂ 6$]AL3g:--- ۥ71hbۓ/ d2f̘Z[[g A{_=qD-[&|PAwGrE {7xǣw%@ya{_~ncJWM܃.S 0TUU1bHۆp@ԩSoީhrÿomm=83\*p1fE㢼tGe1y]PlӬ91KkA<7nӿcfƌc:spAA&`hȓQjAaCNihhE1q~]P8֚ ncJmP(>J%R?N!( |Z{K6]#潲U]z 1aoSp/~n-NbΜ9cfRR VB!dn. NQJ%|?(>\c}lۺQX{:Z{%Lh[l{0m(]l4VQ$ yŃs{oi_9s;G~="ikwgE] Jnf P?^Ƙ60֖j+[&y7iDqWTT(vکmmIw} J) n%/z¶;I(b9Hk3gj7"A0bKgm\qmCDŽJ뀆{^)5uZGypamX/N/P_m$]r$aPڒb]<}}y4P G䫪w~LKKMcǎq^y{/_Ayo#b߶6 )nd2Ϟ={c誃~M@ pA6@=;EBܥ \V- riӦQ("XkZ㼕d$]~m#[kdٗ|xqZoW>䓥< @sQoy{֛ W/fcuٳgQ30 _£;9*]w$pRr5\lBq>[*x`#vqr0pJ/yT*ѣ;w.ZTi#\}^IIo,X&J1a„A<\k}*p}گ{4q[9s19Jm9E <_/w`.xQ  ^$?߃:x}}=7|3tUƘ1C=tۃ:R'2z;M軕:·}EkӒ` ב8k< 8> 3/rN:6Out!'4hywX@Ք)#Jk@0SA/;D"ǫ9%pYuGL8Q~l6 88P(\`5tl6AĹֺ4,ym(W?s?aGj_[|K  _P9NiCgt U pz>I$kLcs˝' 2UMrMM_ee)iz<zwÁ?[dyyBaS:BA-׫\WY> Y9VVDrʲ1Vs(@ey[-g0k)rMM YY'\> [u?Ku p7;xךq-o;99ϻuos`m-[<+ShԯoWJUf2icF([ֺlhPSSCP ͒dHӟwܛH$N]}φ8" *Е1VE  pf->J,Q8kte A1<|]w+}ժUŜֺAkM$wqkatTtSR#RY{i={_{c3֒t/xq Jk ']w<( 'VA']w xBJcaPVǩ`g/wwR{;I8M7x?b tTbk|$T0!iӦQYY ]R8=px&yEkZ=GƘ/gُ{+fhGh[k_ 1G֮Jl"C #Z+90mP/UԱXw΄՟~yǕRmZK[DF0/RHZ|V@u _yޏn)9J>_3?y9+EBq`@< 9^7,`F߁Y9n( 8!ywv-rX4±P٢ 2+.|kmcuVԏ9| ؓn] Z-Z{>?&ck4Y{ۣA}p*1GؗPʼzKcfL>]]*%]zϧ;EANi8eߘ q\{=ߍ9hE= A x̷"GǭRcC!.oemsy)S6K#`G`n{_0mb8vy&*}|&]wS`tt>:$]w. r{OfTyT^2y29Erp[ 9!?$?O.X9@O8. cZkPI&E H PaA~wUUQy*7|'OZkƘGǴ`y z_jӌgya;'%]^]YI8gǚ5kZΝ{/A( s'POR7Q?QL'dyKP Y'F \_GOS3{VBxN8N 0>|ϻkN>n ،MZRwZR(u"[8]lBi"Ѿosh@ J=.O_ϩfڴi;?Rk3 iipǏ/]k=Ak} iWc.2Ƽ}/톆2 Zo( H% :9rɓ'9F2kkӮji(60E[$N)%]A__Աݏ]zyc>N灩Jk֬9]kP O4T={6gφ FR罜tmBqbZ;k$]w6{s<=ӎ= &PXյ_rDZ7%]P\WauMU"䯯]*?%گbOk_Gs ~1,7 MS NSJ R%]wZ3;*HŵYk DYmm5O–ʾa{ 0ҤIlͺzmg 6a1,qGסzRj *cR]B׎K^wz|XB58zAʬUn֬YYL&s)&Zqǁ掮Rjnmm-5jwbr8:@5JF, %mOG75+f+W^вzJG~qSp+nlmn~uw|NtSZz#^- IDAT⦦*~i g ŋ~,+ӵZk+/YJx\*lbQ%KeewFPNR,+k:1ݻz|lj БkloRc-fj;f̘7RۄCkjz vTYX@իkCrq(1o f 5.L&ôi Rm;vo&P?*,j({@EW Z\oj'H펍Q=D[ 4ZM*vl6\n lpvH0_C8s$}QLLt)p6n#އ d#~Co>g(9A B9Ā 8; @]Aw#>[`I"ldqE· ^.۶OP+ kc#p?> q1عEf6Ѷs, 9U J kR`-XXP'kmRʢT^Ǡm D}k4oС%%T~iZNtpdSJ3@jug~DZs-*]kuQ, k7Dyރ pՓiƘGbT(p*vmۅY ۸:ciӦb .]ڭ/:䓝UV]'U!9cYyng B76>xDM' ~񮪪E?$ }/Nz|iC58n944< Ft\#r$:X>XLlEhD'@i}Nk)R1Zz'\]}8omcUx?TwxZ]]݇рqU744J6Z?\)uV&ɞuYmg!@k9a}O" S;&DTyO&lA10EPRR"<0wEmd$˖PB)5 =]ڐuL6ϣ;1`ja83ʕ+xPJQ(J;na8yG ^|>_~@" %oۭ8OBߧRE~rt2Q{Sҁ1_k t23u(Dq:طd(ڇ|{p]D'#lu]]oޮݗ A&y6N__tLUUi+&|x>:Gg_!qW+q\@*ᩂ0p]z&[zw]mrz1fe?MvH&҅މpuNS8o|\v9o> /Fka[tcѻړU2 `p* c6F!1xE@!*瘧齭gy8@ka;="^It7yu^J0} L־fTt;a:(ƎS6Tu&Ts8 ?~/oF>~#DrЅ>P5j_UU%wX^G:uRJZוּ>Wk!r А2pt}9u.lm7j<@sQ_*Z|AZcQe|cLŹVqp 73|-|)JNZ_ \7R_2\iӦٍT]ޕ@CvBu;\^YVv)S|Elٹӧ36uSN8^Ogר-/ZW;$M7]kYEYeQ,.xGI,,nD"qv14\W{"af+9]1eGcQz%}]S3#!U$NSQQ5^xKYƘƘUZ>Mۧwaw_1?6mUUU=X[`RjL&`:f…=b=7q\ E.X*` +{rt r-ZEMMTM2wϖ*t-YBc&<I%#> : /9guEkr7v5kkU yYY S8}>y޲\SbP][˷;p/b|g*d257B8*idx]aۓ"qwAZ\'Ƙg"!q^UUѣ[ZZ{ yqxyYj@tbv? b2|Z;c̚,W]AG;/'I%Q6~֩==NʪUzi,ֺ m Mk~Ƙ욙3g8_?Ś.}(F}&NFbm)|spM9Uu)"ARG{<#~ n3RSq)luNl  IRXk;` rl 'Y^V S|Z*YG>PYVUjG_E8`K`ˤnIY$JuSK|)-]fʊBa;ōөWV*? | @]eUYVXTHX¦74p9KLE)7zuNt'yޓ'Ms%̚5իWS__߶,H8|jM7MT#5ƘFOOgkvR$¶.Ń.ɓfq{U\ccĉ7iG)`Q,7I%4vp|'KC׹[s(5 eӬYHRr-ꢁ[%Ƙ﫽8'!k;a;r ~a1JH{4H]4^yI6uy< *3t8|_\\l'R_*r7)pj}Zu)~ak!l vAjgihwkYV?߿ 3&mϵ4|.^[P*tݙ'+'߿q#_J0'Zm{cV틚5iZWkC|?XTkugiWDm k-5]7sY43Ũ%Pz<@1:i?pM */ǮFh'[ tHM d ^xq_)\.~Zz뺃 dn->F[M0ڲkhѢHy^`<x&w޹>皜:uZ4kb9}c(-KBk+†m 'k<@1:pi柾a$AAjkg暚,/kbϔe(R`زmۉ<#ׇ`Dߩ"~!G^Q^ BWS!`!xע}tuZ郬 +F鍞=0|P\18tFe]aw0 +,SNH$n%}?ZIƘ<$]aN'zz网tݕŴ%љ>:bE)Ө.{R__vuo y`qV)J6])/0ՕѠ~`A,l!0)+TTTn9\^ߩ8vOtlKe2;on)# @(MUUeeel"J}󄌝#j„ $+s1.А~ohx WIGR&ٰ7NNn'Q~'͋uT ݛ0ᴝL Zc'9YBn~+\)0LlT3Az0W#\)KDWʃ1*#%bBWR~SIŎ7'$Fj@R7(7cNrcyU{lHWJJy+x8:-y)wFΟN8r^ZZɓl8` ;1n=XQQΜ9sI>VbB)--E%w?sÇֻZh1MW ?Z ~%/evE=a kk0!n>„E7!Y1Pz$0y}Oc,hƛftf;#>7qK iߞhA;1yx)J;a1 gy;;8Nxҏ*6J-*"4n}BcND<1?OGGBKfvpDɄ ֆRªd{g;#|B6G8B.Zhnyyy9UUU̜9uvaulx9bA# ;^M.*)iӦqRW^3;о\V\Tt. 8GGuŋ]R?~QL:ٳf=g0p?!Q]pK%uW\qW9,[jgJ0sc^Wϵb3~{s.5 vۍnIʨhͪ&]ݸR"~\gv7z+eeฑ#oAQZ(rEk&(MQ#F,~O[2ݿDgxA?n֓Ǐg΂oė|y|7/TvH@Oۅ涴 vASƏ-*RoݩbB| IDATzEEʼnZIQ014`ʷ<|~o\վrZ.= q_ѝ2kZ]6b? y}L n(%CSJDC Ft(i>q֠nMw5a2B< fϔvxX|:k?ϭǷ)ń_ft6(& N&=ے}bB.fHAτw&\1v=)R?*ZԂRS)u-J1R.~+m$߅JIm,=b36-G S}`DbÃ@I.Y멈nB̪z?o`LneS?=_Lj4=:Ĥe| ]Hd1#0vTL2Q<ۘ(=<4"Bz!/0\]]]amNƽ0Cw^qk-J9"Pjy= )PjW9S,{00?Pju[X8(W*R*P\J=J?JcK~PRT\) Ls)CZo0~ g ߏr7@m] Õ8γ8ΎA]rW(CWK!j-C90 Bf;9ТM~hssUR~ L[gJJ@)mB^v| S(=ց̙?}̾bjx R17XCMʧ}*0 ş}bbJ ?1ɭ1ˆ$a[aK|9%OigVWW?Mz0ho 'uݐgLj3+WIrB{eju'#:P'hĔ~{h~Tӧ3}qR۟'Ķ;!M#ϸWyW {8|o),,dĈ%{^?j~?b"֜״..((q-ŅǹI%sz) 3rL&#bUa#@T^^R /i#Q8BRLSa\a[7O-=zURsJ gؾ/T\nKݢ+?q ^eFSQTD+=EiAu7pK aX5cM۰a9WxTh{Rc80=49"vW}S,*bzUU՝v&+{w<0p [ZCA탃> 4 S"uX&B̋6gFYY t< !Jr aLf6FC P999̙Y]y 0aByg466zs&Mbܹ 9۱r8a̋)JPn);9H\Ļ;MUVVO}_0eʔ[[[Nx>yFXO/Or>l*s6@9- pyzK&gF/S=a̘1l̙3]& !ygYlYPᦆ'\h@L&#hB7 uNҀ$Hz D$sl:=A4`-Ub=\y1Ǭ|yW0s---\8QJ%/~ .^!6%gY[Q'?_;a? {F;̻ロо%礒:;ă ÖAtcă>AnzS=^/ujn5Zk1dȐr{O2Jjjj<׏ttSud=z4ӦM$^mlru|nz#FgkF伧1r{:И__c9@B7Ay%9}A0AO`J-=G'8+**iiitCnmm}0|3:x MAMM %hk/7[:DIu!{,[QT+7,Qh?Rn+`O J5JJ'B`Y_]O(u+I6D*CncvfRULfTqc@{_ih%R~S;:'5Jt 62rssAMnW}1zV04"SgΜ(NB/!ƔY8o<:y6٣^ZXh.5<.ojZ߁ PN`Rc9߮D  _e7t:!1)g؞UɎ2: ' = 1D!okdJ ?NIy1w\<!FΟB}t'vYEEE,\?(p^;%eM$.AOua?[AYKB'& >SO={Ӂ |pSq8C>}zf||j!ǺR>({])OV-܃na`O՘PT$ Q. Dʯh(34\$Lx/w< 8!f#=g6CRǞ?%?`\nw,(RwKUKS;ø;V\)GbJS`H󋹹i>}zaĸZ,q- k9-p [1#< CDg] Þ SUUYgXb:pmӟ;ڒi}~1 E0‰IDb$x$nKg6'&"qwDY\ 1l <+]p!ӧO7=" 9 'Ɠv|WMFVvzqktt-ĕh 0߆vo\ %b50])TJkh-kkB/p0ƕwױRxS@ Po׻+Q9F_><@yR:\|Sw[[[1L RÖ̘+9cYuZ߸Rӕ򦴔GLz`ĉxTTTɾ ꨨbŊUUqvmm'NLy@k%6!=9j% "A1 YAߢB70yʱ敾_8Vb y#}+qByyy %WJ R^'NA_]);W|` ׺'qˁ(@CY:˺'-i(AoARm=s`0N [J=(u6( zxW̓wnW xx~I}CÚ,#@.tLh=kz/xׁ[TJV @R?RERRn Z.`=;RS* h0ew-Zcx{ =1𕖖7Ɉ/X}^D$y^y/SswLo r @|Ÿ;1owW$N1f=CCEE?8X6}[&R\)Zep@ۨu | k^ACâZ^x8p@zܢ~ul_kwIYyyyZgmif !}PUUyC9Gk<3&g}?V勞3xGMM `}Ky$au; A">iL& }?%w'ImwBܷzViR#IzzWDvCwEA0m4VXuzwGɲ+QSԇߋq_n%qwrr:>u\QRϭSٕĕrw:ނ ֑=B} tWʷ"6@hI&_KJS`kt{=AƕrRm7 5%ZJ9}K0aû6_d@\)w ٕp&0q;$df"X "yoQhE&B<ݟ; Sn:M>󂆆8au0:g/Z@@RkAϺRZ|FjQNNιjk Y@.YLa >FgBg(--%777Z ruߞ(--'SO͝9s%]l@A_%Ol.zAO-wx{ A_cGN;o\ˁtANN_0?{w:F&d-2s0;[;WRe+Jj3G%p+{Yօ봔o9Vx `H&bv{0Bvo ])'sl [Zr2Z? xݮmڰ{ROEESbh}!bds6B4"ChZ|)VOVΟJ .xj0NfǏ-ྻn ۪hF0By Z3͹ֈɒtzOѺ,Z&?ǶͶ@Hi?ǞsZ`J E89TN }8vJهWf QTM!ZZ ֙mI'pRRꗭ15JO(`KCv`|pakVỖܵa{ׁS-^J9mPm>(_l1Gj!BacaނQ%F/;@aa!pM]ŃA}}#@8?`OJ1ͣd }zvy^?W}=`c<_Xsyy9̙3Ŕ_]W OUU[$bƨ=1W?! A x0$hѭY,Q5$W $?@yna+8dS/gU`\)Y2<8;Pj _~7DJdԝv`93XfM%Y IDATI&]5wܖMkva&v8bzƐˀ@3])\3WhSl9<<+1aqvcL0|ŒEF=~inVarPF0wǗ;hN֯Ev&>],Èb+(UҖo|u"iMߊ?ƕA $~fgYFھ b^owygt=FfLJE pj6=m췝M'O֖cWdNI:>ƀɑ+//wP~zNbIOPT`jնϜGh=USVj8 cM 4@%;.v22(+LY~ݏL8q0 `REQ2.}MwMmxF~^Bп䓩Zh8>x&1a{***> 8|gp֪b7&+#03vDU򄭇06w2`<2-Ѵ`c,ؐhJ'^,ǯ5 'cھvt5_4 f_<C1/tc.ƄL<9s 9UZ<SohG;CջᄏZzj/^\%[YW+|o{>F:#LDW|م=?gӶIY1bIz?D65 AJ- J>ڱ%kbCUW}\h(Ƹƭ:jisjXQ7$*Zkyw-^m`6i¤A ;6 !j!~Ǖ8G Kfڙg6 gI;QpaGN!5k~Dr{܁r߳ϮKF`qQqMtnI:MSs3 cۥi75QiS1yw#g3#X3ЩLf` fX+%R`oα..Acԩ,]{ B0jԨ:ꨟjĄCėXR8UVVWN>ӧLwz"aT}=d_-d2q0\B!^D%NAKSLX1Mh= \3 J wT*5ەRJ0\mG{r 3\)RJD V -AB7'~@])iB >'PZWQR߲DJmCb+.*-*:Uj%p+/bDGR~Cr<>#N6tׁRwRJZCxGu~׿q\/@EuQҢ"j0n\N.DŽ]QTTDKK  v }(;7Ja8 hkkk㏇|xêN8vu={?$i2ݛ09dn'Z]|RBLaN8'555+;j AO ӦMk/UW,Xs_EK-Zg 'P[[˼y(//3 پ J.`46>̚&_8|!KH! ]78I?kmp'BLxοbZ2m7Cq< #.g:濬lKN<y-,ֱ:9q4aAG$ qNĄ;!ķC!6(Z5fj(rp&'V@K ihh`A,z LJ=.9Nh< BˁgbʐQ.Xx5/_\P{/{'!N39Dڨ]F Ok}A&UTT $=ANSn;lZvᄏ axsn^ns=mzd|Wn}Dyy9r)B-9IDcpWlM@h ~HMcÅhՉ|;7 +e  3kzrA F^Q:)Z] ?%UiЂ`.װL_WG̫Æ-4|ghN'UUUL8qx%XLj9`/aʼy2yяECГ>dtj{]ͷ w|[`JB|zyW1ꀠ'A}=n:= OO3QTLaà]; Nohv;A}^pokRmUlښ@ymǔʷ R],r~9p|]PPP?sLEEK){KK˵)?^?%au$=\o }b>%d"Y߀@~X*JJ 0a}߄g[*S ~bD'\]cz^9B\ PT#p,x;MS]) 6&h!OW!@BOR*)* #t7h)GԘ!u>['Ԭ XXаXG-.hc0 D&4k|ɒs09kIѓHm/&,UUUv ;(SmGs=[yqPBly%;4M1Z B7f %{`n|Kuhvn)@IQѶZ53 dD8 ])E (Wgm (uYOmkkyQq09е7GF%@k1pyUL #u?#盃ԃ&Vl1yvK_'?-;X[}}=G3p:)u7Fl=:8!ma]RfWVNN7헱V@̮MbKo[kUUžϚ`죵> (xe }jS$elBWYYV}߿1cN4iE{> 'bP]qi+R(J#4Ǧ*z 2Z.5rG;3%Z^G}4*NO_fKz.fL3pp3pB<K$OZ? ܊#ĎB7nsrix S]3q]Z_lu9yŜ@haYv$Ak'Md2gaC0e~ msoAO }rN&---ОtZ !DNk 0!SqA{ׅ]'ޡf 09AGmT8Yۈ~u;Y\ֵx`JgJܛF)qUYY*w0P: AAgQEm5F/-,*bEYQѯL4ZP(5RJ}CkR?eHtP_+{R])? z#uֈI-)9<]g| }Ò1>tzx&sgUUUOBK%!z |z!u?¼yyWea m-t={[6^x`>okk[]SS'=lٖJz''ox}݉'^df !~ AĞ{ʕ+}G^5kVEp$P|N 뷈cMЫx H)wuWJ)B|Dsz??{g^GUϙ T  (PJr$m&eeQ^ٔMeAA;7-XvYZ6A(KiKlw9Lo6Ko|>{f̙} RO+XGԉc~b JRm@N/hfWR6 =:j(X8>EmcsmN)//#m)fRHg XLRFcm-˽ZZ"!&]fO7N2K_ҾÇ:XhwjjjS\\r^(4!yLc& rM5uo#*o#К0|xu7B<$B}hУ} 677|qnUJ'8h̘13q& !?4b~9.=_Ҳ`DxLbɼYp<!vFzRgmj=IE{Tѣw&URR?=o-O&b$BlT IDATwM22&F 'ҞA :Xe2 l)cM6Ft 9חw\igKJ%)B  )-іkZl-@}V/ulƛd^T2|>p𨀭S b )BzW$V]6R9\nsEq1Ǎ@Cj l ַNut65"{$.FLc R˲Rh o߲Ԛ[;8' _>Bq}2DA )m",5OAZ'y9KJJZ2;Tb;e "L|n2nkCԷuݷ3vmvemǎ8]}4bט:_84ׁ N47vwr)IP!3!V惥Kflr)' M?$L8ޚg !tV :8c?i8GGrN :痁?(CHO97H,%,m]fm:זUyF[ oSm)ǠT:ȿǔ#ζY-)1pMUpB Bx(u-OJAkPYYٳ[m)FG\# PPlKBqʖ ^GǬXiN{8:B~i!wkjj^---m&Nvm̙3dMv[8,"5)|,iub#&mCRc7}6 чufϞE&C{vj*ϒz{: Nr>(++cԨQ̜9s}0:9eEm'{? |3mӞ/#kL x\n":U 4DZ׬9QBX6CiqR8hTJ<ѰçcGtzAS!JϽlvh&XU wVЮha(5!FǿZJZKx`K9L 5gzse6:xxJrśhM/7I@&^t\ >34>[+Oh+B)[ 9B}~NICg|ay@!B$Pȣ] e2MSЩ='ܚxz*a-Bx -YmVZ0J#\|uʚsʔ)y晜p ۯ\#G eY?5k+SNF}C ]D^BCbcyqF盀#-T162\֖qh||tkbt.5Sа?:vW\q ѩC;Ӭ1O,2m15?AH~**+~'we1 =~ň1HkG{d9g%Q9c{j^K.Y\8h53ǹ8uݗÓ{b"jL[m)&}k?Fk0bKy0^(h: X\=;<}'))$IbK=@r%p[PEhm]A|X8@%?69f+ЩR~ ܆>[R),|r)Z 03.BJ "Z͆\i_h|գ*K S(p]W9sX=5f\;7@A0i֬Y)>1m4r$ 81hB瞳ϟ x Q|{Z&ň z7A#w)j#!]/itR=JdM 6Y'~Kd񵚚M{gZv@;gKpEJhMsAkur&f B>Q=rɪ"-̵ 𯈏|pCzڄ6{l3t.eЙ!pϠMېdrdrҩ?@O+À٥OE*Ցcw`m)bԎ=o4eB rbE\wD'e::VΚ5iԩ!tqgT},k/8{`BL1Ayb1btzQhQYYZ)A?L{pr٠ z>v])Dk@zǙaQYYVvsi5oQ-@S#3 m:N&hkSJ~<[}j\q<_P 庮ۼ arqSJ;^{mA$ h hň zA<5F#p3m~<;bkBA_go-@8Fn8]ˍ|R6e]kvz)̺NjP kp%q)!~-~b;N&*!~i{ٺPj<[)OypРl)oK!c"QޖYSTj19,%m'mgKy FϯH&VJAG-!? :?kB$բFUUU LGgLp7߼ اIJ+)Y ȉFtX#ƠBL{Q=ڸ| | |b z={'`!>E laYG뺔N;q7/fx≙)v~8iBjjj 횭TL& %%%J=.=:"ed<"Ak A:Ym~d'!*CKBiw^xr6 7`Y @ :zqJ|e5CHݙW!**F۳M[/q-tնmyz0G#԰lV eKYNB$Б[+2 zcGyee%Æ cƌT푹, DJ7!AQ#8N8 QYUU7J{By1SQn;g :q6:VS7喣5(cYS+wZC'Ndgƌ8pkYfΜ^<`?iOBg(6IG[DӬD!ߤ4k?Aaq/h}[[c71yv8u59X=(EFhV؝p7GaGqĽ3L9`ew qsJ&H0}tǩnDmt̙3W񴶶Z~RO mbB#Y4!R\kOHm%$~`}Au3gm/%%%Cko@kyJ EGu\ \h%?uqf̘1PGq/~~Ĉ z\+))nA| m`ΉmTY06T&h4{wU+))uFNqє Te}!F SN9e˖Q[[KUUVB@KQi ={<Lj zG}k̜93~1b Ao"Jj~s%-]B'dc/=FPYLj+K nt \]2m42 }CEq=c zw<^1w&CIذm; zwGcbr b8YW?nmmq*jD#&4xcĈ1H[,gĶ'a1b/8EX 3d,2q)b z~AF? xEwAA6(p^Qc"1b( z$;S(o_kĶ+`~ĉR^eT*yHG !hG*uwNCRZROIi3/+BʒTYYI::$%eIE2YR=iu ]`{l@ ljFi?xF6C?rgCz!i Ĉ/XMc##CĽ'kxo:"1A@TVVNcK0 m>5_ n=LRx v*JIeoN|[#m"6*x=͝ ,-H$*<5 B\,XST4 Բoa/+[+'v|~?2i!=5j#gG469,s_Ks]׽7$Bi kLcĈq zF5?A!0*~Ž&C!HܐA_GgR~_=8E_[bB{&1+p7u F#8:}@m)kw`{9 l7ݼRnYq-p#[a={̧xƖnl-6nSpX}"Yw]qۍ`cs`R감WWWƻz6V߻x`Ĉ1xfz3,3_fyaD"UWB!>cR FycKY0&/R&RBW$,W\AU̺Z*LBdruuuR ɶPB}_9Rad 7drO/}#0`@%5kּ\MV_ߣ!t͞i޽?1-Ebj.TJ 1jT~td/\JҦdBX} xsp5װK-uLRgms]V&eY9 2鴪HlR3o ,+n**Uŗ1c,V)εJY(%B35C6յRJY RnhtP 7>+Z|hY鏏LhipLaֈP^SSCuu6Y[[RUUEmmmg(;ALjQP"誓8g 9<g9 y((J4&$̙dSy,X`K xM[lRO J)['ojjRu N=Ulh7boR>]\!#2!ćqFWl)Er槁ٶϐH,,/NH|ImK+V-Hw"h)ORk<ږrSH=|'`|.@{QP`V(dJR^(E{ډN>dn&rs](ս"腶ߏ}c HgXP6FC-HAz`2P [CN> f7EkE60`7UAQ/P0qʂ5Rj3shg\շQǡFH/T-Jՠ}c&Mc6F z.1btgՠe0:/8t0.ې](CV^^Bkže`/`Vlټ7mhu3o\O׉ 1GS8Jlv:MVcYZ (ħ8kV[}e-QA0R@F%hl)W9N>lL&9v"M;Dv\eKY| xt̀0!J!R~on|ѐGM; 6ˁ]1AЊe")/VR\ ԠREEe= \cK9i DƲvgh5Ǜ" SpD-0\{%B(5pp-it# "ODyA(e)!Pp7@F lX)qz2m٬ORo&L_CH)5/ELd) k̗@B]!4k1o=&1b+A_{)6jm i>5Dhs" olg6_6C~ |8ȧ!a#D&"" )lHfk6xڄC~L\miȹkk'mqڟ'!b[ʛ)V\nbơS^9U451'Z" Z495nuy )K&/O/E!nzm)l)3/!=mT*%l)я!Vmu˭jrz_<ߟ{R.7yB" p]qvljjzw u]?6sQ[5<Ȟ/ IDAT4&1 jiixňcp z)S5Iqkkkc1YEd3UCkB-8> ZK~v4 )Z{y[a>h W Z4ː0|&^[gz :ު h&MɄT2%hR.|bJ !)X&> 'a+Vxudr$Tz3[GY[4 4~3}6]"o: =6h;2uQ+̸J`4K.EXlCC- Upڒ<ռ0"H>2uaw̞3ʲ2߁e=c)Ub൛y\QG5J"A=B4myN;%NjKhl= v29!ƛ9iN8l)}fvϘrto5)m)w,\"a}6p{<_TJzA۶EIII m-H~̗1Ax=FL)rJctD"q:pi/U[o}M 1|7}|ɐfZ=X ,A]b}"O"|qD=}(l::L6)03Ϝp%gpş>Įx!~\XV+Ap&0Wn,`!pKhp5(쀈]욛Ѽό<"#h $6Ypm~4;ڝ<>,[ғ*Xw#].VQQq}`负lOr3Xe5?~nnh`#jуF-"~'9@B1qDtSrDw'h '>g 0\ q2:@Dbl,zr-YczAQUU5i?g낼^6l0ޫ )Vg[ }|*-hpW[oUMùbK9Pqɼvdڛͤɬ|~ra{)x3}*Lڷ ':ɓIg2D>׽ߐv5y2:wFp? J}em0rxN<+~./KJ}[ B'E.f~WM(2醜 Ԡ]"Nt\]\L fes]5f޿jci*)A ްN;4}Hirs|<GЭ@/Ezv B{ʔ)c|0;uB?98+\7vC 1bl])MKbEsp8$id~զs>1C}jʡ:һ4k,=G˜+O醆O#h+c@Է  it ږc9dĈJ=;W{Tj7:: fi;d|h&Jz>VvͻmCj"e2˥d0ÐqwΜsY#.x4mor/mseC(gJP仧-.!&e2)g[:;a ̙p-夺ts ùo"Qyup-偞?_mh@ok[,̙3L<1cƄBB(/Z/lg` f}^;6qu =F hWVVR\\LMM l6w,p5ŀ[[[XUUUT"/GknG._5&5 C0UXŶ%vD?\`H҃_:C\#_h"mYc1*%;nK#J[OAJ;* XeuvK^b t;3q:ݱ?T| ֲh'farb淶v|=[3m)?^'!Aiv~)ehl[@+J7‚#}#EJsA ,zk'{]kK̵EWVi&}-hK"eN-R.;ɹU:ׁgLݗwCӶM"jͫB[+]/}c!Az(Bg/w仧>5o9jf1 Gɶ8WWτˁu@=>֤@މ6\~ϛϏ6 ASߟ|)|"A!ܛLFl,&2J"!T`4v|-I .O&Bi6썆?]Y?zt>55ݼefl_mkhb pXLJc!<߯|{,p5KE߁S|׀|fT nsLZjS!Mf Oj.yq/0Rsδ!7t[Rmm^w>lmm-**gk@Ec-THIK&au0Ww9pWMMjҤIl̘1qF~ 9Ǽ-"xߐ{bBU :Y_bbcԩ;:Y8.qĈ1h,F{s8:q٢rQG%W=%ǣK)F2~>&wSS~LgO!J z}yy:wGmKI2ywwٽN;4diie*S)z]WuڡkضL{b8#,qvGF [,*Z HkG[Yt|+F_7MkocP8f"ЩxYhNTu hǞJ\n6$i/t/h7wSa;hm]!AhB΍с:$663˗VTkXל{(D hayZz,]B)3uEcc#Fty1˲r(qx!pۘ~xQ& $Jh+0-[x^FBpR/fVI@ Wl1v A?t0_ \hc|qјALjaJUWq8s-::2舼)u_ӧT=7Ufa>-i nmn!iou]MfA`[}/ПuTJQRRB.65żؓ6[QSIdka{X4縮{ԩSjΑΙr_o.0qCZPJݖH$AX0>#"(c,ňt)F}{3RaКLٙe;sI@Sۍn< !d(!Μ93pg::a'z1F,r'yT\OExяzZB}hX4/6gbUU>|{6g |9rWv7t@N8rڪn, NDe WčfmxA/ֲ8Z3*1jЏ?xf̘3f[rg)9sfӴi+LOҬusLO5_GS"yC. =EADN}VAWwcDc޻'z!g3'z(؀_9z>E=2e{ݕ[%N#Ɔ{mq(98RWI ׿ f8{i0A~c>0p]8_y$#FAR T.A5i=pT4:nGkqh;G}@ ; w@{f-!1bn&"3160A7m;sc `֮ "93kh BtZ%Cfmq}ƈgz뭃M\2oN:2t*ƭRYYI]]] 4r<AWF}xA_50F>w$jN 츼Rw䟛JIޫ)Pb?)-]']LOCݿ';?uLzXhGݖHT>:Uqpo=!S =و u9MoA#F#̙2Յkdto݊c`Yf-Z okd=F~!CB2q|[QB?m#1ee!vF["l nĖrG`K_ vyy A+|LeeP&+*JL￟f^:0@7THҦYx 0%U]O>RʒzTԛmF@{d(4f D&9uoRؗ qxHE{{T:<*a)T֘Lj#F e" Mǹ8 mYCu3 q0PMЮk ukmUO/FL7gjleN ,m3pJejv) |Ε|,&}uF7frKcPEk,3WR^<ߏ{`%p9?BJd2$@S]II_=-ފ ;ͶH$=o)w;:AǏ!r[s] Žr wFG_tiz :y_ >$McĈc {jPG H%ǻ{ҠGgEh/ 됇R*Wkh hhh Pj?s9r9I^ڑRʓZ8 AQiXq8}%Пܖr-mfĉFfl{U6m<ۍx)Z(PAwv块S=鳙Wd`jE/M0۹\HM^7NpfknB$](4/پFq/?NO6TP- 9@Σ_L(/tl#FD_0"iO6ꫯӐuDHuߺӥm"?eٻ=Fn6 DL{5hC$Z vV{G%/ =•oeFJ]ֶސ-Dk;롇j"Dl-!hm֓TR~ g{ CszcF`El ,^|RD֪n¾FbF"~@UҶˁFX<_|ŖrtN?hnY,kOfo{jSVVFCCCGH:[ʽM݃šxզhv({:+쎖F?K!(c8(OM|[s=M/Je2Ϭou9Gd+N$(>r]!*ViEL&5B6j?7=Mu%971SJP[[<A51bĈ6.A#a{v\uA1P&!AoD[֠ꅠ#&1bų=y2~fI@Mηw_7eTP@LNٿ/pX0 fdJ hIX_m)'^6SNwwˀDdЁDZug{ږr<: 7K([ =_u1^Ҳu݇aTk+F+ T=y;NcP7A_<5BB <fKԽ1z/J]!Nڴ,<< !vΐ zϖ^n#D.Fk?C[L2`l)K#``zE2mdRSBsL=MjК8Ґ\G3ڏ;ċB# hupE;. h\FsDӁDŽ2$`mַ*ƴǾE2oqQG +,JjsLG$x*_S[[q,X'uN '"tq܎L-йRǚG B3wQ*&&1bĈ5A_@UUv'Oq= H(_Cr^]]=Dd \B;rm zwB{$.I`/[&hI׀6^RQk# v*5֐3b4m(--Dۦr}P{,v*e}H&|D4 ,k[C$ Zx!/[r# %5쓖Rڴz{‚=_"ty+=ߟvG8a<75J_サͷ:{>V7r+9̚TYhimКe@=!Jz<'Ӗt?PjK#eMB?W-0}[%4xތ?m8S8h]g}g}?\0k,O^4J 6B|o(yTG#?H\_:/S#둺g(#FYP &8 !6l^ ,PK/(yG"wDmccH퐇H)^=bV !A`ߛ@Җ 8.oBѾ[Q6dҤI(.>ϣ\=v...F0 !nܻ12]W :WN\eR7yEmB4–Bw2r)Gsё - ͣl)3ajڷ}Mz>ng˽ښGfs]<<1A\kHI仳u7jkk5&1bĈƠ-,?~ &@)U~n _> y]!v:!@#&CJȠX+~;q!.B-hNI'Xbc6&0R۶-zO>av:@g f޷ IDAT22rEE\~#Pjx6+_!TR;gvy0t> <\)pvZ1ztY?!M5砵kБF/GsRJ+n@;Bnp=M6*ɄҋKN|BTAC0iّFg{`ޫλS5kVH'~u=D⢹s)r>Ah4I}h{F x9$tg8]e٨9}^UUurĈ#FNIQ&LpRMXxi< _8\ep!F[ ыu,6q˦G\훹/:pRW#XW;~ ?}/Ŗh !dr#WB&pV\cr*WTNN/;٬8 HYI_|6QS)]Yt;,mj@mSy47'ef?r[-V x?=3y*DG/|T:6ʲ^@]ya'RE|ͭ-e)Z[>h55"@yee%#G{qLAgwΘ1*CkM'ӌkB 478q!v]NqfGAwm#:uI=Xƌӝ6=6q#Fu`mfL0WKq?!w$>i־j.#u"#&,Ax l)[T`!wlF KN/lRGzݶ;)u袢5 NA49nJy덞Pe,[ȭ'9ϫC8ǖ&ں|]`ⶁA ̺C={`K#R(ՖdcK,p-$> :_eK9XO N&AGf?5}0[~K\h nhC]}5OnJtl #/29@1m'Ն"BR]]RvLpJ˲^ImmM9]=F1֝'?~8CJ穮1eʔ̓f] SPͨ?񱴻;.gm-u1bt7&SfE ڬ}R)Bk1_BvÖrt` tխwG rR !u:|z<@)0Z+(Qt`M?{^q-\yt>tUkhXm)﷥֖%MUϢXdNtN#l)=oڐ,.OﯳQja`Y:Zv-kKy#BЅ凝L6-ն\8b7w|ƿb:8`zqbc֭tu+c0@HBPpHHyC H۷V2t) L  -ncfY*.|>unwf_y~yt^}:s8/ir{TZ Ao5)~G~8 DmF96.++c̙$} [qD3!;"󼼼a'x᧟~К=K\8̟??dQh9iXPI~ Gx/:A79gݩtZ, kIv{y~_)[a'7GP+P;r;*Gm%=/ PԆ:|'qn06j}R o ׫#/ђJ7" '%gDV<}A/<J9}nkPF| i}%̳J`/`Owk{aMͲFelL! xC'D0!; c8?G؍444xbb !'@$a޼yfG c~zQalctރnD Ao(t6Ľ˲+ uAt4PD3"^p3KPއ=8%!''}A&kqAr.+Zuq"!VO*!9k,f͚EqqiQTUUQdMe &N$k0***8f,%YS HH&[+\ `v8}lgpz^=13$Fa!UUMQ*> zݢ...f̙3x<>Zq *!ī>+VLҫN5> :(mzz2}$Q2MuW&k銒B_NރΥ?G; {+snw]/,ss_swz,=a(PCQqAIж оͨ Q/%*TxڝqP 6n܈sBs/]pWΙ3gPcccp_Q$[jbY4AWsb!'=z6o`Z,6@ZVcEEE: D?ɖ99+(ϧ,̯J1jTq***p.d `jqqdgYYYe>-4ɤh<ϣжsHz1>Lz+[t㈬d}@PRT#KdC PyLbɤ\#9 7|G7X&w˧B' ೌ7kuq`<f9oj(Қ)//Tgq/AYU \]*y[݄w ` QGzm+BRZec| zn?_g!{ׄҋI W6o7XxXfMx3]:}3J. '? м\]YS `E}`:H-N {|ll"@Um>zX.K0*VIi!nL^s!ߛ7:4GKE̝f`xH>}șiN3fts=>π&I/=Є&-3gd$#F<)#F1qDyW^ &m(w/ќv࣢%\Td@7co :EO7l XaDVASz̶KQ"h Bvvm(yp~jI\4&DvrX}S %4z A]B}_l}s55鱨Y(#ᾨj*c=9yohs~& eeeggeeU2X ^mWDJ7!}A{ڰ- 3tA70}ƌRͨ|3y܎@g=;@Ap=xiCÞѣG3{uyG"?}=R伷D]ao7%=oU=4aܳN;'T{>똫'* A\ _W(PbcUǹ5K*'ɚb.Ra>+FWibBXp j3T?Z5l{0X? dm rc=IzޚmRz!\>&y%m6'=o]TWY7[7G_=~;לBGM4I Y78@}Ѐk55Bk-*JsI[ſr0\…1c祗^leI]@s?B<*7?fqgq@'njt8(cq^6ho~Ug{e0؍~Ѥ;#4*T "qr 70u^}/Du{oe*BqbqccwJJJ1i$JKKNF[ڲt[dg&぀ R? 8(T:~MOpUZ R^ PBL !~qaZ\Xؙ] "6@ ^ԓ'fOWƢ3:{By=8(C\\ -ą=E/h6@зIK | /?t:_T=-˪/\)g7ł# d4ߕJM )ROKQ< 囨<k5#:X }Eз6ݢjjkX2vu hrC Nk`}s~~]eee&퐠'2x[A(ݗR>|#8)9Bqu?@KB2 &J):{; Xe1~ .08^LY^SCm77l(ͣ:LHY (puqM7m}q,FR~0],XցHy!Jꆘm?JT\%=&m}WߠWo^ UYIkFڛ(wB>xȐ=;7+lX &\mUT%T|m`)MH9d̶Io:Km #*sͲ;4&GPrc] ا^$8?_)P)mh!I'>sj)-u_Jv~ҚUGq^jg=C AZ2w\q(p1}HO65"AAVD,Y%Kf8 Jkx<>Ų6mZ[TY]L̶%p:Je~ FI#If@ym< 3b褿VU-wb=0f۷AՍj m{b!pM7}RXP0Zs²H&W7YE#BOVW^EEm6D T@:n!''6/+'MĐ!CZԘmTRyhjzs禂ML";;(=W q&*,_jCQeŌ #)| x-7+DeeOByF.-)sFCXNc:=PfG5|҉ϗ1f (fS(TKWeAXsicԨQA  Wǯ/w[J9 }P%V=i`kaˊPxuG` t]w1*\OE$sAvh4׾ q>~ qouq]LJ9 !K)ͽd0lT( >DvղJEȾʍڈWvd|r<3H2R)H߿@Hy#R.߿$Ay N<Ċc}X̶ThbYU KK0Q坅J ;v Dg?Bxf4p/RMUNmˤgU}I:+WԼXy i=4 ~S/ц6lQ)`7Jz^[%>F|PN{mUa@J Gd5J&Lt{O#W/**DB׿^__4F}Ԡ@wQQ)G%T8ښJ{&NJ;!H,$}!o$ytb"x:XXbB;O{;}[Pq90sL6lYEE%Py"J4I_NK9sf a8qf8zh<:ĉ->M|f!&Lˣ8o?hT좢 jk"^9ߎkV~a &Okm5 [fDCyId{ qOEvdw;l!~_.8èyρHV_oۿۿ?f m/ΝUnq]wk5? {0*A(`Ic: \ < 9E98Q/MW[100zog0A!bI$<F$ΦPu)Z"8P[37uG"A B.δ A2\׽qQ^@`MOt\`gB.Tp/]2dqzbu%Se򲷁0׾7/O|Z"#=(B󃚜DZ,2s98'Pe wB_ o/tC{D?tg{DyӇB>}e ZC|Z%}{CnEˍ7_60:L`Kw!7'5]o^*MUkA oMe +X=@XXTbC AeƓO> ʲyGCCÓBϟ/KJJnB0zӒ=ӧOg޼yp6=NLu: 82xGDp)QU>}zWs"BK4 sPqBmmθMKPwq%sT~+gڠ'}Jеȍto@ZJD"![Mw3g2{l$8IJK d20&n``g 9s a]'(cu7(QL: !Cǣzwǃ[ZƱJ80=mjĀi%rC.$) U/|MZ-}9=ٳgSZZz(_)MrL&{`s~g->Nr'mWVVF<q'By!ľ3ꠄZGT{@Η&Ch*.ЧҸҝ2k 8v8$XT*ɜhŸq! ƃn``}Hzqqqk0RJ!Zr#)A;p{={BҚTG e__}MQ^4:o kB.EhB p85>ۍ݅=(t ^]yy)u%w8pꪇZ#T߽vʨo~p;JY< \H$օ r4Gj-FZop?}.s=W Jh|7,utTitmC).Bʪmč n M7i"k>p9zE7&&`+=&V aYwv AίB9E{ŌwwjH=N$ADm )g>?׍cK2zǁW(lUsK00$AiqE r.Riog$*pK.2&ÁQeaƢA)P%(OQs~** zOcN5H$())Aw"%{;+/#e!}3O;mhtK?yrYfqmԩS[|Fx=iRυ qH$\|Ŗ8M! uz[Qar'>AGyGzH[n^Wsd||P> ?t]Dŀx51I!rD">:WQ vC:q p ׃ ~Dc&A FT(~kC | wq&`j~+?V"嗖oI͟<9"|YҲ5lڴ!7CCÀ)#iIb%)SR׋/y HvKqI,Xh^^60)F ӗB|B(w8s% 'MշQ+ҪiuO>yck׮MjrsH$_J[&4G&-"z Tw^@kLkJ/y#m߭KKRW!ˁ(\`)fIAO&zP"MOJ93 x&D_~ H$T -M}৚? Q$뚬WC(5ك~?ƖhcO׸;uݱ}8%ԉlFopJ9{R!#Rg X(';jRUUt/--HJ7=8υN$LAߍNnDGrpRټ5 ĐC 5HiAC8.KhΉ"F)e|PZ: [\(BHy(g Ƶ??kͿAîp]o2^Wq)}0N:#Gr}8ԫ7]oyyyZ#eh9I7PtNK }*,\GE Uk0`D;D-lusO~ʿz-|l^&000Wє%Sx|.0 {Z!͛O>6VB8 8NO4ڊ D⨪"lJ$KKKϒR>BJ8?p]WatA70E5uuE~,B(Tix 7>l"yy Ѽ)9r$ַ'^˅3ģ\ ´3W5'QaJl+סP+9SL}KKKcͫԄ/^(4 ˎ=\yy.@HO[P.#:iq *g~2 "Y Rb)7{tdcY?册 ?9 t/@bTDҀy6K`(*}NЉR`SN e(AsgAJj+Rڸx2QaGC-c OzhC4 D³]*{8Eڋ:zkؼQLN8~f`ɲ,}q='@;h^%E'L8E?Tpg,w@ΓD" }[`8"5u[3w\9-;;/P-v/Υ}@TdD]} .& YgsG:(qQ0hƃn]"L&4hW]ufj= rNP]] y}lJkx(ϧvs T;¬Y{&lMcT\3gaÆ&L!Jd,6m+zҥOI) Ҿ-<=iYG(p:!hxL\}tr1*$ug_uQl.9g҄=oh^^9p0R^*n坢 g =@fm4/NMܣܮps|4{h^$ ~g~<`YVR8kxop]FN{7Yfo4BARPYAK˿4V (t_z~W IjPtI3A 8#~Gw|-jow0l3)1>n]ۍ7J%LTBĦNm"~a0޼Mr~6@9XAJez֬Y^‹=ׂF kv(b =̳gϦTxBMի]`[ ܄ )C49;|{g{Ǡj,-'Pe}?8_4ר5cA T=W}OoR[>JQj?Ά5"e)EEFEG-Yך:YSW: }^ e{k3:np^QU TpPԩn`SYYDq9s$ Tduo1cSN roA sT_ܖ}_TBE$3;@0E˓'O4lذѺ2I)?0`@g*[zxP)mx*$R's'p\}R#掣 % v>wW_UVKP!nχH@s~hA+5RFc${jn:=X~;f%=ov!(55铀4yln(FiCEu pU̶= IDAT$=o^Pjrrr3gW]uXl(/B "c˲^ WzA<<'Om9*Dq *k "9<7ROTv>C ׏l6v'xz(8M %4iFb޼y^kB[}ߏ~ᇼ{׃1Vt :nk2{6-g5OˈfK/fGkRJ!˲Re!5u҇{;ӇSBߍ@ 8ꨣV 6,;++k׾.vmmmA;3JyoC[M6i|+Vvꩧdee;sL>M~&01ZZÿQVп_g} )h=oPV*?RCXhXj*ij3)n5h/>x>B}x[캮0}tRT_S: qpck? 2SN9eШQ g? !%lg~sFҜV6Pp cCsU=ڇ}'{;w(ͽ8{lƌU2+mlHzsz8%\ e=Lbf! ͒Vl;HHK ߿ >a1&ykJ6M:-}'yPbl{/lj 01#u~ުUH}t̘1x@￿5oA@~ y?ѐԆ]Q3| '~Ũ`+͊}աc>uA1(v>S^eޫ_G :+>-++V{㬬,o?u"MUĢQ Z zkԩfn_ئ8c?_JOc:>@a;mRX2)`ۨRQ|2-?Vi+g,!sKTX:Me,cybIњ{*9O񁜜c9_G~ʕԿA?n(C<=p9*~ H˧QяǁS\a,*" TZ!CQiNזG/YYYg!V9J8gzr,qm6|ێh[y)m`)@H.k]ʃ_'FϠBE\)8eee`ҤInٻX7%%%]lWzŶ=x&aY$OԤ*tLq~PDfmmSy8p )Vv$2!Ux^$#LR?ȩ޾Q`"e PɳU~9OP!ݚ5SFB O54|1 ;EUyF#R‡Iϫ*]TPYYUUfǃ9ٲ#J儿Ӟ爔cH(d1?Z1uf :+u3V7u%p{eKTH{cǎs=IR/566㏿Qi{qyCPV@<07Jݐ{ cJ, M2(t?"R;+p̶!k0J|Dy-O&bt61۾<)c1LZ֭Ry/HYJ c}n ۶<߲FTO~Id,B pLn`BB\@s:JC̶~|:P% q9nE x˜m_JI;0Cmo//u]0`t:Ϯ Dj (kb;P/AH{$&g@o-=r mD7xoŊr) 2dW)=!5n`N)4U] #èqPZDus)&$AB>TQV9Gaԩ9Hڤl{*Ђ)S>nV mێ `Yܲ28!lsR^ٍ{o{34GoX_5A? Yz o@lIk(R7[}| t5,E u:n{Ј y} %&7lCyhz<>Xk7fB߾./9-u?IZ{@Σm['hY>,G=/90,f2Pj\G1>v: rX,%w8g~NFjQWeBYw(R[/mL>ߣBG$+*(8mCIt1qk@-*=+48NBiӦeT~K.!1hРѡ攁"=exk~6 fmd}x;A8R4k-tJ իWc1~x 28iu1!(m|5p,,( RA<%ؖ4_35`E'K)E} *+"Fo^jh*b#峨p˒f]*Ige 7DwT #ُ:lEv~8pZM|v颋.b͚5AȮ(--#.9 B ]]}e :5| u | '륆-&!^Ƈ "?_zb4&e X6 ԧR/}'H׀;w]w g1% _=oiMOH Ȓq}xvj=m m< \FK, zhVc}>:(f'D ..vF '&=oK)c}ߐx2++V\4ZHR,Yd  }>nPF˼nz.zD`ƍ~ &0lذARʻY뮻vmnY8T'ㄔӀ\!Hz;(4TXcّ\'mvj˜JxPBRc!!ne%|%hϣDXKzޗvXhC+IlHCpT C9*R(!L^a2n^\d۹])P"Jmh,pXj``}9ꫯ.rgʕ+J }Ǐ>\d{/HM)=$^Я#PM' #<ʕ+, ]|HxwxU?gn@ "6lk]%"QZ&1L6]][~.B&¥$A\!X{Ybo6IC&$H}6s3!BD#"~Sbܹ^tQ@0d/Y)v?{&u^ABFT30'Eo &C w# wR*wl3-$yh)69oEb&,,51x$vG—_ǃ~lR4ݩ+t41~$,s俁rONarBb^ cr3oK(;r۶%X=ϛ7&$I&x,1*_Y2HL /0~srvg5Fx6fr`<KG~N+.CFvǤ3DMѣGW%b!kn%K^j{V޶#AK &/{7yVI3(y橧O?Ų,222n?"4(=N999oɵ|<&XbuzzveeSb.Ys*+?oXW7)L?7TsWf ɕu yS䎖@ζ1xkozƌSSS9ubrj0* h@o;b^~-ƢBʎWLg9&cMZd/&l&8s~#!K6oj_Dxw ,9Om믪ؖ>+BY{Zβarٿ!:KbovsDǕYW hV}K `!WVԽ+?^|1RRcZDOZzꩧۣG{֬YK]5 efT*5,4ζ6AXۛ%ݱmc8 Wnڴg}X,}هC9dd2k:"DAS`С[ @]92J=$I֘0 3FY|4!JR;0McwN_J3~r s6o5 Bk͜Yu ƓxL_~y/+**5phkL]1 AѰIӿaz\+r~:`b0cuk$&tWBY &h#W%?{7#DT*u&&< p:vO۶w(((kcF'm9ߠq5ZM߱۳++\|Yѽ%++4`@&k99z5M`Y?as#_]Y٠/Θ]Y*&`/#r]\F,TtxSƏ!{}0)Bz7lm**Ϙ{RF+&'6:`qMM/ްa{Xc9;]n 7"4;l>id;CCRjn.k)Q*TJZki1,kZg5f l`}Kj*Vk+P:Ĥ#h20!֧rܷ%+ \1d(&8(op& cƈˮxe_xW_ف%0U۰0b1 Ӷf21Q&9r$ׯo2d`N[462)ⲁ)=99(w6l]:tP]2&++v$=&1cũ]=KjήX+pe!99>zٕ ɹD>#cv'du"Q y:碋:*|j`;T:R65RfϝTLh+ |ќ"RQVVF~~~̶_̙3ض sODd2 ;OFߖt~%F-2x}mZJA>cBQYI`m1V@>ɶ={"a{05SUTR^; ,X#l.@vp*[1bl{b#„Hk9_ߴR? yݫ=LeJnnJ2qfYVO۶o-JmRf.oI[~YZw K[:|ؿ{2]"֋m@&uo@y7q5dG1[ cJ?.!A:uBvg3hFm}09R?!2'Y1n m"Y߻q̘1'XjFty_J#D=BZ v&lszX4C&Iezzt v(cjxn&cYm5n3pLVĮrgj;Kj+Q0ᇄ!C0k֬@)Xk=xT:osLY lx6QRg/fȳ [V31~4  /s΁S`3gFA!Bc}!dE:th;˲ghOaBUGa@7L.PuxFp*ƋQPP@mmmW$Чʾ| #pT^M0eӿP[Սۂ:I}xjd7n8RGLrss,r.2RBϓEbwZa=쫀m19ro#~{'Q:ƸI{0xb_s0nsĶB.L3 >%++ӣ`G!¶A8Fl֬ٶ':E5$VΗ)FǢSa7ňhg)@ '"DNm٘*$AՓ7<ϛ pebŊDS*6_S8$u"ZP[nu j+haJ]H p5:a ؗyF40'L"DZOῷúFs0rk^zPGؾ^ѣ΁n;ǩN6m۔ζ{0r~:; ~,;mQ~H|E"(<ϛ1Gfڶ}Lc (v&{]qy#DZ n<;?<)jA2(0gݾ8H>,ЦBD:La}"wukucۻ۲E'NlJZJ i31+Wvyaұv?.YRowtLHu_lD{1cb nqT=B ebY>o)bm}?썱/`B(//@A ޾x(:%A$3efea1; mo-qc ]{322zR1"1z0M#͹;v,-=AپD=|6{;֎5 a̘1 >QF5vw!BAB 0`Jռ#ϲڵuQXo{]lG)NBxX<LNvÑby%ض}8@yM 70 S7Bq>p]GL&7tЁ3j(N=WϺW_jkkVJtLk~8r]W*;?&Ww뺵EEE$I瞆d`Rg.**:|DŘ8T*,,:Ӳ,kӦMk,YZzL8yySޤPRYCt{79?)y`_'}0vM5ҽ{ϔRV5Nl>& 璿cYT$StJ"l 9pusw.**Ri˭NR\UZe|K^:+m$ꢔ(}WII ӦMce纮 ZnuQJ==z,*H=]U]tjo{JJJ8w0;}N&n?hO+))qJyJs322zwM(!dsǹ6d)cҍ^2gi  yyWov.t⸽ :BZ7@ d-1Hs S&4y:775ZLa_qtBq~n^P)5u=\@ѣ;9G\׽u 0EB nOiT.8uBu,Dv8{h?L&{Wm8(~q]BuG{h," BV~ {#\C晷ڰd3uݳ] 8j̘18+ `e;^VB!Bm1qߑJI&bؽ<ȂkfR(dl&Dj}tw:NL9ce~c W&!+05bxwX,d2g.]n}^`ֺ'ƣvz$CkLcթT„gkYG.w]wUW]ń e9ZnB](.,, u=ٞ5xN=z&Mj[?eݏdݧ- O=T/|3@aaaUVe)[1"uJ{Tgee1Ξ_RR\V\\8>~ L4sYq~dS''`뺷2UJ}J3Z̘1# Lkb YfYʾٸq5oKZEۧz :b8mgx` ֭ˡ=0c۪qOl>y=Z)ض|f9ד)q!KDLs7~8*..q.M e/,:`o?1|hL 208 L[Ru׆<6|YRRoB>:y?xq^'Ο]}3τ H#:3z`?_t]R<㻁p]#1jmԏ֋1v=ȄA!B#xsժUwkJKKFGńŵX~)Ƴ~2cYMjѢE)ys=OS:w[ǎ~,[,0aiOaƾNI텢"&L.0b˲u &lz3( LL(Uu?On|p8Nab3i<&8_~q.NΎXz6&)CY017:4 oqj'S[[ }a+'MW^eYL4 LbK&%5RE5 #77w39m{~yBޙ>}z[]nGt'*ZPؔF:" =CF;lKty۶큘ryGmy䆌=BHk{)xD]'< Fa >Sb xQ/1%~|#<ևma}2 Fvg+Vk]xH:1v;[oE<yK:Mݩ+#>JN;^BƋSPd۲lD#D6og̜93cLQ%ϡQ= zEoG}s9.]pqѡC_}2:yD Fqqfx3fL.Ƌ28$wzJ)u vvxĈU/4f`7`rZ7kEjr_wRzv=&W4+-{e8uiu}I۟w0ץݻoʓvG&D~_Rԉetd BFdAo-&}rm%^r׃:!m@@UJm畇OqT2M<},:\늋ׅۓyuƿԯw]eذaCS$&(V ~O)eabN0Fw!s>Ǥ,jb-1 <~`̘1M8q_9p뺟67޸F5pO¼<""DhEN..n,//_G3B"^jozXlN&̛7P۶<>8:v8EH{,0ayej҂2ڵ[T]]%p( MքFjք 6dee]B +^(r u y;Qu9ʕR3FBja! s8O9JJJD$⣵sֿxhiLw5hfarO~Rky8O֧HU8=WA뮻2qEB~/#S%UTj8 e;F%C1;S)PW&!퀬ѣGg@Lk=p0uuݚX,vzΒ}z`>[:ѣq]wFyLl S'&`QVV/|&|73R7{Ann.;9O !'9L )݁Ӆ%$?l}Nl!Vڟ,ɵÔ{_+1D8:䘶z Y2L^}eddP[[^ZH_*.v]w٘1;Rj VJEB]9LDU [)up.NVJ5UDk}|>&33iZG)uRRh+EV+8}K_ʶ5'KJJ>)ԩ#6YƋ ƈiS;}uUJ\0Ȳ_+WJX]#D{!,LAk=c¹/!eK/46gΜ%\bo^R)f͚{9SRQQ:SlmRmׯ_NׯוK/Us̩{g>:t9sRJF ˿#J|<3˲PJQZZy+T*Ŕ)S :twQ"?%<hLĄwuki;;7!B!]It 1`ެR*(9&z]vCʲ,Հ 6*++K}BmꚚ iYr2I&RJedd48>%I_kMFF%cKm&I_h+}w SJeoη,j';z9m+)pz@D"l'~>&L;TJ *//'d! yf-wsYWnJ7YV7$1!Ƅ&={=Kv~r}0S?"1%x~Dol:@*tXBvA ->FL0|pNJAAAf2J,LFHZbh 177b :1n[f~F=B-FcgvF`_yWlڴ)RюI m~yDhK :4Ӳ0vN|Q)U^^^)2: ?b|2uB5  Ds#iC qAA3f //oWd? R# R+AİaØ6mxD"ಁer{!}۶=[o 77wo4LN S2c"M`"l/bx<o<׹b1ʢ-098Y; LܑH$<FiV6c:ddd ܛH$n #$u%u cإ; H}0aE;'G}Ē%Kn?DX &=@01oc^T̋K֚!CƵH=BkVF)^L5kR*˘H`rf5jJ l 8bĈ]lWPJ \E+C189|ذa̘1c#Frb}17Ҷ֋SDD=Bk` k/N}t{a-U 6`YVGLo+ cQpmkLd3᳏ |O>7Lk퀱>)C0] ԴmVebSyƍyw#FFk]1UJU\"D!B !aYR7 8bĈ])qKkӿU~ )ORY<WWW3L2+]2$J^nʔ)1Zk+H<aδ,kh!')j}=ß2e W_}5֭;zʔ)9ɓ'Ǐ1mO&k/ZJ޴,kFdZ"SyԩS?)))#H0lذvebjѮ^&.Ϫ.'dKy@m۞ s}筓7"D0eʔ ̸ڶ0qgh-//_"G!BAmɓ'WcBOJn2 ˲N r,@uu y^N$1?7#Gd221=ƑVzAk=0auO5ZsֳR]}z?0B%$C~^Z' =7tҶNmZ[Y  f͚EsR "DQHzpWTTaKCƆ1!v kkk,wR^K/ɟ3SN}+-?}1\fΜ8$`y*Sc̙aj`sGzK~]wGF"D12$L!X,}|Rmg}6]tQ巖jR[[DĪ?H-wj"DakEjwDx<~Bn_0"rkU `݁ X #@ek7& JmiZ:O\CJgAlzM{5ڵklZҺRjz/ /D"13$̗XZ5|M77779m$͞vv1x@ ӼZI@.PdvOVTTlumم >} ǔi I+JÀʅ n";;R .>Yd J0*.\w޻ФZpaAUW)u!… R~:p4… + \UUak_.;;{#0*q";;;JyGV?쳃BUUUkZg۷#"D;,BD{>0)Hsg<'[hvyyBR{X{M_w#n W\qL/D 5Dx<2pֺ\)SW=_VJI$6(Rͪx`|AA.ˀ끙(Ny5ڧeYb{I˲ˣ6?dyyaJjD۶i/jk޵7c4 4H|Cnpֺ S?Ikq7`4xɒ%6>0tPfΜRR@,;;'z͢EM:Bk}&-0볳Ozo߾,XL xḼ"AW  j`RV6%K :nZ,#Cs? ]ȟ 0v x(7`>LNJ&ZcJE~<#NrÈSұceŁ0}G)pzB&' | (D F]}2]&UUU Gg ^9o}- VUU+bT'Ɠ#-ZT#m~k\h~m!/U̪+wGkͣ> & 逾}vX`Ή{h~*߂vb!"v A~ZImYoY91c|p7lz Wo迆mDҗ̴kkkG]}ՙǏo^ɓ_?,e՟1^ <[0 9h Ҿٌ>µC_ߪϢGy$={ŶmxSZ뮶m<-M —0F9> DJ$.xݻzLZ˽>`;0);{.(IB$92d5cdʚd㳺1j6ɳv㑘%=5q .#4!ȥrsvNQ 癧{:.c=y^;+S 0^Dr{k 8ε̛7"t@sKKcCP;xsNd A\q]w(2x3W ѮɊJ.q֍?>uq}'#zլYl֌{ߤFKyZ,=sֱ٪ϰZ,V[\)_Q~ eBH:pb.-$|t6~Lb3fΘs*_]ws(Dw\}Ekk륑Uc*---9!˝˧.Qaޠ]O*?q9_b@PT 8Dۏ)DBEZ<L=B.~/\s͕7t[Y;9k֬#! d2X,E&>:3N;į!!;VJ$|,5Sy\׽ qS 9y>lY`A >X[[{yV:3 ԜI:9"nYm=8!LB)ˁN'2)w0el-*ُG9m}@aB cY x $Lw5HqnE&Xz\|>mOD9s2WCzϮnllu-  n(0m:Ʋ=nw]j2VY rռ'ZE@?@b7#qug[:k3^t# O_ ڦd~Fϥ bX K$8FrILIDAT& }2H?w?*&~|c{y|G/Ǒm bQJ$>8!>%p5H8BBbH9%*d7^}}x|>a.[V <.9s;[XC:=(|+jI Ї8&LQ!tq,A2$&P=@nJv.[\ӣuuu_&O&m󼥮/'M#]V{3::KqSm&5r數Sgw8=\s8?$v73Ëb0^@JLNd2:r]Ff;|X^Ф8q"-C,`748R~4̟?Gt ]yO<':sƍ>w xpJ~qW"rA~-ɹ i.mktI]AhWMg!oTn5l _ғ\GܣW*Hrj9}:Vע7ض"V`0p,bm2 q% ı 䘶C>_E>ﻮ{30(L4hP16RYYIEEdziӦ~yތ)S?y*Y Fz?-F&zw5{%2~*bM#~~eJKģ'::г+Gr.ȄkڏU 0BDq q(W՝8ίSmNZ9cONUU.h@NcX) IEOD&9ҘE$$AXIa8byB$YoCÏ(f.q+Kl򔾽"e\G-%Ǖ.w9ėqtZ97XXi};}7i8{2$EPYnoXnX,1=K!l+sie3Ʈ&fHl*6DB>;GHˎ"Ʉ3gδwbq+e:˻-fXz:s'"qjR)$(4Te ,`V79"`2;e }˜<0Dc:quC2[ <6EHj!f ȀbX,]e"]C@Z,V[,K Z{0p~*aw nr~Hv2CRڬCJq~U@n70koE;]Xᗖq<DrNB.?nX,ѻR^($1\o/bbvU R뵄uZ^RAg(/6`]ckSWX-ųqeڼDh? E `]ݤ )^?-,ef>- )zRy$n!bXnX,1̎eE$[̈́kW6v02ǑR%ʮMi;,[;y7 '<4y32}NDlكkՂb췼eh9k"a"*g#"دbb7l'5A\@@\A,W=NTb2$gh kI<:;@`got;H__${R8])H/cX,HYcԟfă_M8?IHjXnX,1t I|]@ڇ&ˌC53F8H2ko"uEH ğE.끛ψLxhl@b?l~_Iq#t qAxC:OmaX,L/`%iGo="M e=;AHelo [)~ CO,l8bX,dkK*:ÐpsGHemSK |)n^]8f-U?_ L3ڝ_b{7 yg/ b`E\U%;D!@i5#`[@bX,錊 mCrmT"U:J;8Nh36r+ېD>mm41ۚmlnF&]Z,KO$>kβ /KYobEiC,i۵fə1Ym"B 9F`6=vJך:p) *ha;-{xY>MzK mh;bHb#b&>jN`xoX,] 鯷A%G_}Aod$  ̾|D8}ߟSŲK`XjKu!W`h羒De@ܮ*n7Ǵ9F׊XKed4 op$=7X `mX'עX.!քRAJ9!9_WVX,]p_ kZ | toG&TLL}tM ) !ƿEu#j?WiR1v1~Nׄn5~ROTIENDB`libinsane-1.0.10/subprojects/libinsane/doc/dev_rules.dox000066400000000000000000000055511437772407700233450ustar00rootroot00000000000000/*! \page dev_rules Rules for contributions ### Changes must come with tests Any change in the code should go with corresponding changes in automated tests. Don't hesitate to add tests. ### Tests must never be broken #### On GNU/Linux Debian ``` apt install \ clang-tidy-11 \ valgrind \ libcunit1-ncurses-dev ``` Then just run: - Build with -Wall -Werror -Wunused: `make` - Static analysis: `make check` - Unit tests: `make test` - Documentation generation: `make doc` #### Microsoft Windows On Windows, there is no automated tests for WIA2 or TWAIN support (there is no test backend). But it's still worth running `make test` to test all the workarounds and normalizers. `make check` and `make doc` may or may not work on Windows. #### [CI](https://gitlab.gnome.org/World/OpenPaperwork/libinsane/pipelines) is always right Tests must all pass. The Continuous Integration is the reference. If some tests pass on your computer but not in Continous Integration, then CI is right and your changes won't be accepted. CI works mainly with GNU/Linux. After each commit, CI will build and test Libinsane on both GNU/Linux and Windows. It will also build the documentation, run static analysis. CI builds everything with: - Debian GNU/Linux stable. - Linux version: GCC (32 and 64bits builds). - Windows version: Mingw64 (64bits build only). - `-Wall -Werror` (see `make` / `make build`). Therefore: 1. Libinsane must always be buildable without warnings on GNU/Linux (even if your changes target Windows ; with `-Wall -Werror`). Documentation must be buildable as well. 2. All normalizers and workarounds must build on GNU/Linux. Only direct API wrappers may not be buildable on GNU/Linux (for instance the wrappers for WIA or TWAIN APIs). 3. Libinsane tests must all always pass on GNU/Linux (except for non-Linux base APIs). All normalizers and workarounds must have tests working on GNU/Linux, even if they are eventually designed to fix Windows issues. #### Code style convention For C code: When coding on LibInsane, please try to stick to [Linux coding style](https://www.kernel.org/doc/html/v4.15/process/coding-style.html). There is only one exception, line lengths. In Libinsane, line lengths longer than 80 characters but shorter than 100 characters are tolerated. For Python examples: Please follow the [PEP8](https://www.python.org/dev/peps/pep-0008/). If you want to fix style issues, please make dedicated commits. ### Maintaining your contributions Please take care of either maintaining your contributions (or find someone else to do the job), or document it well enough so others can maintain it. Contributions unmaintained for too long and poorly documented will be removed. It would be appreciated if you could leave a way to contact you in case bugs are reported. The most straightforward way is simply to put your email address in your Git commits. */ libinsane-1.0.10/subprojects/libinsane/doc/doxygen.conf.in000066400000000000000000003245021437772407700235720ustar00rootroot00000000000000# Doxyfile 1.8.13 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. # # All text after a double hash (##) is considered a comment and is placed in # front of the TAG it is preceding. # # All text after a single hash (#) is considered a comment and will be ignored. # The format is: # TAG = value [value, ...] # For lists, items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (\" \"). #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all text # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv # built into libc) for the transcoding. See http://www.gnu.org/software/libiconv # for the list of possible encodings. # The default value is: UTF-8. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by # double-quotes, unless you are using Doxywizard) that should identify the # project for which the documentation is generated. This name is used in the # title of most generated pages and in a few other places. # The default value is: My Project. PROJECT_NAME = "LibInsane" # The PROJECT_NUMBER tag can be used to enter a project or revision number. This # could be handy for archiving the generated documentation or if some version # control system is used. PROJECT_NUMBER = "@VERSION@" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a # quick idea about the purpose of the project. Keep the description short. PROJECT_BRIEF = "Cross-platform Cross-API Cross-driver Cross-image-scanner Image Scan Library" # With the PROJECT_LOGO tag one can specify a logo or an icon that is included # in the documentation. The maximum height of the logo should not exceed 55 # pixels and the maximum width should not exceed 200 pixels. Doxygen will copy # the logo to the output directory. PROJECT_LOGO = "@TOP_SRCDIR@/doc/insane.png" # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path # into which the generated documentation will be written. If a relative path is # entered, it will be relative to the location where doxygen was started. If # left blank the current directory will be used. OUTPUT_DIRECTORY = "doc" # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- # directories (in 2 levels) under the output directory of each output format and # will distribute the generated files over these directories. Enabling this # option can be useful when feeding doxygen a huge amount of source files, where # putting all generated files in the same directory would otherwise causes # performance problems for the file system. # The default value is: NO. CREATE_SUBDIRS = NO # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII # characters to appear in the names of generated files. If set to NO, non-ASCII # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode # U+3044. # The default value is: NO. ALLOW_UNICODE_NAMES = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), # Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), # Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, # Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, # Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, # Ukrainian and Vietnamese. # The default value is: English. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member # descriptions after the members that are listed in the file and class # documentation (similar to Javadoc). Set to NO to disable this. # The default value is: YES. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief # description of a member or function before the detailed description # # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. # The default value is: YES. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator that is # used to form the text in various listings. Each string in this list, if found # as the leading text of the brief description, will be stripped from the text # and the result, after processing the whole list, is used as the annotated # text. Otherwise, the brief description is used as-is. If left blank, the # following values are used ($name is automatically replaced with the name of # the entity):The $name class, The $name widget, The $name file, is, provides, # specifies, contains, represents, a, an and the. ABBREVIATE_BRIEF = "The $name class" \ "The $name widget" \ "The $name file" \ is \ provides \ specifies \ contains \ represents \ a \ an \ the # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # doxygen will generate a detailed section even if there is only a brief # description. # The default value is: NO. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. # The default value is: NO. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path # before files name in the file list and in the header files. If set to NO the # shortest path that makes the file name unique will be used # The default value is: YES. FULL_PATH_NAMES = YES # The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. # Stripping is only done if one of the specified strings matches the left-hand # part of the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the path to # strip. # # Note that you can specify absolute paths here, but also relative paths, which # will be relative from the directory where doxygen is started. # This tag requires that the tag FULL_PATH_NAMES is set to YES. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the # path mentioned in the documentation of a class, which tells the reader which # header file to include in order to use a class. If left blank only the name of # the header file containing the class definition is used. Otherwise one should # specify the list of include paths that are normally passed to the compiler # using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but # less readable) file names. This can be useful is your file systems doesn't # support long names like on DOS, Mac, or CD-ROM. # The default value is: NO. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the # first line (until the first dot) of a Javadoc-style comment as the brief # description. If set to NO, the Javadoc-style will behave just like regular Qt- # style comments (thus requiring an explicit @brief command for a brief # description.) # The default value is: NO. JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first # line (until the first dot) of a Qt-style comment as the brief description. If # set to NO, the Qt-style will behave just like regular Qt-style comments (thus # requiring an explicit \brief command for a brief description.) # The default value is: NO. QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a # multi-line C++ special comment block (i.e. a block of //! or /// comments) as # a brief description. This used to be the default behavior. The new default is # to treat a multi-line C++ comment block as a detailed description. Set this # tag to YES if you prefer the old behavior instead. # # Note that setting this tag to YES also means that rational rose comments are # not recognized any more. # The default value is: NO. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the # documentation from any documented member that it re-implements. # The default value is: YES. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new # page for each member. If set to NO, the documentation of a member will be part # of the file/class/namespace that contains it. # The default value is: NO. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen # uses this value to replace tabs by spaces in code fragments. # Minimum value: 1, maximum value: 16, default value: 4. TAB_SIZE = 4 # This tag can be used to specify a number of aliases that act as commands in # the documentation. An alias has the form: # name=value # For example adding # "sideeffect=@par Side Effects:\n" # will allow you to put the command \sideeffect (or @sideeffect) in the # documentation, which will result in a user-defined paragraph with heading # "Side Effects:". You can put \n's in the value part of an alias to insert # newlines. ALIASES = # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding "class=itcl::class" # will allow you to use the command class in the itcl::class meaning. TCL_SUBST = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. For # instance, some of the names that are used will be different. The list of all # members will be omitted, etc. # The default value is: NO. OPTIMIZE_OUTPUT_FOR_C = YES # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or # Python sources only. Doxygen will then generate output that is more tailored # for that language. For instance, namespaces will be presented as packages, # qualified scopes will look different, etc. # The default value is: NO. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources. Doxygen will then generate output that is tailored for Fortran. # The default value is: NO. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for VHDL. # The default value is: NO. OPTIMIZE_OUTPUT_VHDL = NO # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, and # language is one of the parsers supported by doxygen: IDL, Java, Javascript, # C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: # FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: # Fortran. In the later case the parser tries to guess whether the code is fixed # or free formatted code, this is the default for Fortran type files), VHDL. For # instance to make doxygen treat .inc files as Fortran files (default is PHP), # and .f files as C (default is Fortran), use: inc=Fortran f=C. # # Note: For files without extension you can use no_extension as a placeholder. # # Note that for custom extensions you also need to set FILE_PATTERNS otherwise # the files are not read by doxygen. EXTENSION_MAPPING = # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments # according to the Markdown format, which allows for more readable # documentation. See http://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you can # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in # case of backward compatibilities issues. # The default value is: YES. MARKDOWN_SUPPORT = YES # When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up # to that level are automatically included in the table of contents, even if # they do not have an id attribute. # Note: This feature currently applies only to Markdown headings. # Minimum value: 0, maximum value: 99, default value: 0. # This tag requires that the tag MARKDOWN_SUPPORT is set to YES. TOC_INCLUDE_HEADINGS = 0 # When enabled doxygen tries to link words that correspond to documented # classes, or namespaces to their corresponding documentation. Such a link can # be prevented in individual cases by putting a % sign in front of the word or # globally by setting AUTOLINK_SUPPORT to NO. # The default value is: YES. AUTOLINK_SUPPORT = YES # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should set this # tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); # versus func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. # The default value is: NO. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. # The default value is: NO. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip (see: # http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen # will parse them like normal C++ but will assume all classes use public instead # of private inheritance when no explicit protection keyword is present. # The default value is: NO. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate # getter and setter methods for a property. Setting this option to YES will make # doxygen to replace the get and set methods by a property in the documentation. # This will only work if the methods are indeed getting or setting a simple # type. If this is not the case, or you want to show the methods anyway, you # should set this option to NO. # The default value is: YES. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. # The default value is: NO. DISTRIBUTE_GROUP_DOC = NO # If one adds a struct or class to a group and this option is enabled, then also # any nested class or struct is added to the same group. By default this option # is disabled and one has to add nested compounds explicitly via \ingroup. # The default value is: NO. GROUP_NESTED_COMPOUNDS = NO # Set the SUBGROUPING tag to YES to allow class member groups of the same type # (for instance a group of public functions) to be put as a subgroup of that # type (e.g. under the Public Functions section). Set it to NO to prevent # subgrouping. Alternatively, this can be done per class using the # \nosubgrouping command. # The default value is: YES. SUBGROUPING = YES # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions # are shown inside the group in which they are included (e.g. using \ingroup) # instead of on a separate page (for HTML and Man pages) or section (for LaTeX # and RTF). # # Note that this feature does not work in combination with # SEPARATE_MEMBER_PAGES. # The default value is: NO. INLINE_GROUPED_CLASSES = NO # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions # with only public data fields or simple typedef fields will be shown inline in # the documentation of the scope in which they are defined (i.e. file, # namespace, or group documentation), provided this scope is documented. If set # to NO, structs, classes, and unions are shown on a separate page (for HTML and # Man pages) or section (for LaTeX and RTF). # The default value is: NO. INLINE_SIMPLE_STRUCTS = NO # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or # enum is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically be # useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. # The default value is: NO. TYPEDEF_HIDES_STRUCT = NO # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This # cache is used to resolve symbols given their name and scope. Since this can be # an expensive process and often the same symbol appears multiple times in the # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small # doxygen will become slower. If the cache is too large, memory is wasted. The # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 # symbols. At the end of a run doxygen will report the cache usage and suggest # the optimal cache size from a speed point of view. # Minimum value: 0, maximum value: 9, default value: 0. LOOKUP_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in # documentation are documented, even if no documentation was available. Private # class members and static file members will be hidden unless the # EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. # Note: This will also disable the warnings about undocumented members that are # normally produced when WARNINGS is set to YES. # The default value is: NO. EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will # be included in the documentation. # The default value is: NO. EXTRACT_PRIVATE = NO # If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal # scope will be included in the documentation. # The default value is: NO. EXTRACT_PACKAGE = NO # If the EXTRACT_STATIC tag is set to YES, all static members of a file will be # included in the documentation. # The default value is: NO. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined # locally in source files will be included in the documentation. If set to NO, # only classes defined in header files are included. Does not have any effect # for Java sources. # The default value is: YES. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. If set to YES, local methods, # which are defined in the implementation section but not in the interface are # included in the documentation. If set to NO, only methods in the interface are # included. # The default value is: NO. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base name of # the file that contains the anonymous namespace. By default anonymous namespace # are hidden. # The default value is: NO. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all # undocumented members inside documented classes or files. If set to NO these # members will be included in the various overviews, but no documentation # section is generated. This option has no effect if EXTRACT_ALL is enabled. # The default value is: NO. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. If set # to NO, these classes will be included in the various overviews. This option # has no effect if EXTRACT_ALL is enabled. # The default value is: NO. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend # (class|struct|union) declarations. If set to NO, these declarations will be # included in the documentation. # The default value is: NO. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any # documentation blocks found inside the body of a function. If set to NO, these # blocks will be appended to the function's detailed documentation block. # The default value is: NO. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation that is typed after a # \internal command is included. If the tag is set to NO then the documentation # will be excluded. Set it to YES to include the internal documentation. # The default value is: NO. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file # names in lower-case letters. If set to YES, upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. # The default value is: system dependent. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with # their full class and namespace scopes in the documentation. If set to YES, the # scope will be hidden. # The default value is: NO. HIDE_SCOPE_NAMES = NO # If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will # append additional text to a page's title, such as Class Reference. If set to # YES the compound reference will be hidden. # The default value is: NO. HIDE_COMPOUND_REFERENCE= NO # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of # the files that are included by a file in the documentation of that file. # The default value is: YES. SHOW_INCLUDE_FILES = YES # If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each # grouped member an include statement to the documentation, telling the reader # which file to include in order to use the member. # The default value is: NO. SHOW_GROUPED_MEMB_INC = NO # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include # files with double quotes in the documentation rather than with sharp brackets. # The default value is: NO. FORCE_LOCAL_INCLUDES = NO # If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the # documentation for inline members. # The default value is: YES. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the # (detailed) documentation of file and class members alphabetically by member # name. If set to NO, the members will appear in declaration order. # The default value is: YES. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief # descriptions of file, namespace and class members alphabetically by member # name. If set to NO, the members will appear in declaration order. Note that # this will also influence the order of the classes in the class list. # The default value is: NO. SORT_BRIEF_DOCS = NO # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the # (brief and detailed) documentation of class members so that constructors and # destructors are listed first. If set to NO the constructors will appear in the # respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. # Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief # member documentation. # Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting # detailed member documentation. # The default value is: NO. SORT_MEMBERS_CTORS_1ST = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy # of group names into alphabetical order. If set to NO the group names will # appear in their defined order. # The default value is: NO. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by # fully-qualified names, including namespaces. If set to NO, the class list will # be sorted only by class name, not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the alphabetical # list. # The default value is: NO. SORT_BY_SCOPE_NAME = NO # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper # type resolution of all parameters of a function it will reject a match between # the prototype and the implementation of a member function even if there is # only one candidate or it is obvious which candidate to choose by doing a # simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still # accept a match between prototype and implementation in such cases. # The default value is: NO. STRICT_PROTO_MATCHING = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo # list. This list is created by putting \todo commands in the documentation. # The default value is: YES. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test # list. This list is created by putting \test commands in the documentation. # The default value is: YES. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug # list. This list is created by putting \bug commands in the documentation. # The default value is: YES. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) # the deprecated list. This list is created by putting \deprecated commands in # the documentation. # The default value is: YES. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional documentation # sections, marked by \if ... \endif and \cond # ... \endcond blocks. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the # initial value of a variable or macro / define can have for it to appear in the # documentation. If the initializer consists of more lines than specified here # it will be hidden. Use a value of 0 to hide initializers completely. The # appearance of the value of individual variables and macros / defines can be # controlled using \showinitializer or \hideinitializer command in the # documentation regardless of this setting. # Minimum value: 0, maximum value: 10000, default value: 30. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated at # the bottom of the documentation of classes and structs. If set to YES, the # list will mention the files that were used to generate the documentation. # The default value is: YES. SHOW_USED_FILES = YES # Set the SHOW_FILES tag to NO to disable the generation of the Files page. This # will remove the Files entry from the Quick Index and from the Folder Tree View # (if specified). # The default value is: YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces # page. This will remove the Namespaces entry from the Quick Index and from the # Folder Tree View (if specified). # The default value is: YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command command input-file, where command is the value of the # FILE_VERSION_FILTER tag, and input-file is the name of an input file provided # by doxygen. Whatever the program writes to standard output is used as the file # version. For an example see the documentation. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated # output files in an output format independent way. To create the layout file # that represents doxygen's defaults, run doxygen with the -l option. You can # optionally specify a file name after the option, if omitted DoxygenLayout.xml # will be used as the name of the layout file. # # Note that if you run doxygen from a directory containing a file called # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE # tag is left empty. LAYOUT_FILE = # The CITE_BIB_FILES tag can be used to specify one or more bib files containing # the reference definitions. This must be a list of .bib files. The .bib # extension is automatically appended if omitted. This requires the bibtex tool # to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. # For LaTeX the style of the bibliography can be controlled using # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the # search path. See also \cite for info how to create references. CITE_BIB_FILES = #--------------------------------------------------------------------------- # Configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated to # standard output by doxygen. If QUIET is set to YES this implies that the # messages are off. # The default value is: NO. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated to standard error (stderr) by doxygen. If WARNINGS is set to YES # this implies that the warnings are on. # # Tip: Turn warnings on while writing the documentation. # The default value is: YES. WARNINGS = YES # If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate # warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag # will automatically be disabled. # The default value is: YES. WARN_IF_UNDOCUMENTED = YES # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some parameters # in a documented function, or documenting parameters that don't exist or using # markup commands wrongly. # The default value is: YES. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that # are documented, but have no documentation for their parameters or return # value. If set to NO, doxygen will only warn about wrong or incomplete # parameter documentation, but not about the absence of documentation. # The default value is: NO. WARN_NO_PARAMDOC = NO # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when # a warning is encountered. # The default value is: NO. WARN_AS_ERROR = NO # The WARN_FORMAT tag determines the format of the warning messages that doxygen # can produce. The string should contain the $file, $line, and $text tags, which # will be replaced by the file and line number from which the warning originated # and the warning text. Optionally the format may contain $version, which will # be replaced by the version of the file (if it could be obtained via # FILE_VERSION_FILTER) # The default value is: $file:$line: $text. WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning and error # messages should be written. If left blank the output is written to standard # error (stderr). WARN_LOGFILE = #--------------------------------------------------------------------------- # Configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag is used to specify the files and/or directories that contain # documented source files. You may enter file names like myfile.cpp or # directories like /usr/src/myproject. Separate the files or directories with # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. INPUT = "@TOP_SRCDIR@/include" "@TOP_SRCDIR@/doc" # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses # libiconv (or the iconv built into libc) for the transcoding. See the libiconv # documentation (see: http://www.gnu.org/software/libiconv) for the list of # possible encodings. # The default value is: UTF-8. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and # *.h) to filter out the source-files in the directories. # # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # read by doxygen. # # If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, # *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, # *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, # *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, # *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf and *.qsf. FILE_PATTERNS = *.c \ *.cc \ *.cxx \ *.cpp \ *.c++ \ *.java \ *.ii \ *.ixx \ *.ipp \ *.i++ \ *.inl \ *.idl \ *.ddl \ *.odl \ *.h \ *.hh \ *.hxx \ *.hpp \ *.h++ \ *.cs \ *.d \ *.php \ *.php4 \ *.php5 \ *.phtml \ *.inc \ *.m \ *.markdown \ *.md \ *.mm \ *.dox \ *.py \ *.pyw \ *.f90 \ *.f95 \ *.f03 \ *.f08 \ *.f \ *.for \ *.tcl \ *.vhd \ *.vhdl \ *.ucf \ *.qsf # The RECURSIVE tag can be used to specify whether or not subdirectories should # be searched for input files as well. # The default value is: NO. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should be # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. # # Note that relative paths are relative to the directory from which doxygen is # run. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. # The default value is: NO. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. # # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test # # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories use the pattern */test/* EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or directories # that contain example code fragments that are included (see the \include # command). EXAMPLE_PATH = "@TOP_SRCDIR@/../libinsane-gobject/examples" "@TOP_SRCDIR@/../libinsane/examples" # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and # *.h) to filter out the source-files in the directories. If left blank all # files are included. EXAMPLE_PATTERNS = * # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude commands # irrespective of the value of the RECURSIVE tag. # The default value is: NO. EXAMPLE_RECURSIVE = YES # The IMAGE_PATH tag can be used to specify one or more files or directories # that contain images that are to be included in the documentation (see the # \image command). IMAGE_PATH = "@TOP_SRCDIR@/doc" # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command: # # # # where is the value of the INPUT_FILTER tag, and is the # name of an input file. Doxygen will then use the output that the filter # program writes to standard output. If FILTER_PATTERNS is specified, this tag # will be ignored. # # Note that the filter must not add or remove lines; it is applied before the # code is scanned, but not when the output code is generated. If lines are added # or removed, the anchors will not be placed correctly. # # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # properly processed by doxygen. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: pattern=filter # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how # filters are used. If the FILTER_PATTERNS tag is empty or if none of the # patterns match the file name, INPUT_FILTER is applied. # # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # properly processed by doxygen. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will also be used to filter the input files that are used for # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). # The default value is: NO. FILTER_SOURCE_FILES = NO # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and # it is also possible to disable source filtering for a specific pattern using # *.ext= (so without naming a filter). # This tag requires that the tag FILTER_SOURCE_FILES is set to YES. FILTER_SOURCE_PATTERNS = # If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that # is part of the input, its contents will be placed on the main page # (index.html). This can be useful if you have a project on for instance GitHub # and want to reuse the introduction page also for the doxygen output. USE_MDFILE_AS_MAINPAGE = #--------------------------------------------------------------------------- # Configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will be # generated. Documented entities will be cross-referenced with these sources. # # Note: To get rid of all source code in the generated output, make sure that # also VERBATIM_HEADERS is set to NO. # The default value is: NO. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body of functions, # classes and enums directly into the documentation. # The default value is: NO. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any # special comment blocks from generated source code fragments. Normal C, C++ and # Fortran comments will always remain visible. # The default value is: YES. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES then for each documented # function all documented functions referencing it will be listed. # The default value is: NO. REFERENCED_BY_RELATION = NO # If the REFERENCES_RELATION tag is set to YES then for each documented function # all documented entities called/used by that function will be listed. # The default value is: NO. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set # to YES then the hyperlinks from functions in REFERENCES_RELATION and # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will # link to the documentation. # The default value is: YES. REFERENCES_LINK_SOURCE = YES # If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the # source code will show a tooltip with additional information such as prototype, # brief description and links to the definition and documentation. Since this # will make the HTML file larger and loading of large files a bit slower, you # can opt to disable this feature. # The default value is: YES. # This tag requires that the tag SOURCE_BROWSER is set to YES. SOURCE_TOOLTIPS = YES # If the USE_HTAGS tag is set to YES then the references to source code will # point to the HTML generated by the htags(1) tool instead of doxygen built-in # source browser. The htags tool is part of GNU's global source tagging system # (see http://www.gnu.org/software/global/global.html). You will need version # 4.8.6 or higher. # # To use it do the following: # - Install the latest version of global # - Enable SOURCE_BROWSER and USE_HTAGS in the config file # - Make sure the INPUT points to the root of the source tree # - Run doxygen as normal # # Doxygen will invoke htags (and that will in turn invoke gtags), so these # tools must be available from the command line (i.e. in the search path). # # The result: instead of the source browser generated by doxygen, the links to # source code will now point to the output of htags. # The default value is: NO. # This tag requires that the tag SOURCE_BROWSER is set to YES. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a # verbatim copy of the header file for each class for which an include is # specified. Set to NO to disable this. # See also: Section \class. # The default value is: YES. VERBATIM_HEADERS = YES # If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the # clang parser (see: http://clang.llvm.org/) for more accurate parsing at the # cost of reduced performance. This can be particularly helpful with template # rich C++ code for which doxygen's built-in parser lacks the necessary type # information. # Note: The availability of this option depends on whether or not doxygen was # generated with the -Duse-libclang=ON option for CMake. # The default value is: NO. CLANG_ASSISTED_PARSING = NO # If clang assisted parsing is enabled you can provide the compiler with command # line options that you would normally use when invoking the compiler. Note that # the include paths will already be set by doxygen for the files and directories # specified with INPUT and INCLUDE_PATH. # This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. CLANG_OPTIONS = #--------------------------------------------------------------------------- # Configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all # compounds will be generated. Enable this if the project contains a lot of # classes, structs, unions or interfaces. # The default value is: YES. ALPHABETICAL_INDEX = YES # The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in # which the alphabetical index list will be split. # Minimum value: 1, maximum value: 20, default value: 5. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES. COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all classes will # be put under the same header in the alphabetical index. The IGNORE_PREFIX tag # can be used to specify a prefix (or a list of prefixes) that should be ignored # while generating the index headers. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES. IGNORE_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output # The default value is: YES. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of # it. # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). # The default value is: .html. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a user-defined HTML header file for # each generated HTML page. If the tag is left blank doxygen will generate a # standard header. # # To get valid HTML the header file that includes any scripts and style sheets # that doxygen needs, which is dependent on the configuration options used (e.g. # the setting GENERATE_TREEVIEW). It is highly recommended to start with a # default header using # doxygen -w html new_header.html new_footer.html new_stylesheet.css # YourConfigFile # and then modify the file new_header.html. See also section "Doxygen usage" # for information on how to generate the default header that doxygen normally # uses. # Note: The header is subject to change so you typically have to regenerate the # default header when upgrading to a newer version of doxygen. For a description # of the possible markers and block names see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each # generated HTML page. If the tag is left blank doxygen will generate a standard # footer. See HTML_HEADER for more information on how to generate a default # footer and what special commands can be used inside the footer. See also # section "Doxygen usage" for information on how to generate the default footer # that doxygen normally uses. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading style # sheet that is used by each HTML page. It can be used to fine-tune the look of # the HTML output. If left blank doxygen will generate a default style sheet. # See also section "Doxygen usage" for information on how to generate the style # sheet that doxygen normally uses. # Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as # it is more robust and this tag (HTML_STYLESHEET) will in the future become # obsolete. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined # cascading style sheets that are included after the standard style sheets # created by doxygen. Using this option one can overrule certain style aspects. # This is preferred over using HTML_STYLESHEET since it does not replace the # standard style sheet and is therefore more robust against future updates. # Doxygen will copy the style sheet files to the output directory. # Note: The order of the extra style sheet files is of importance (e.g. the last # style sheet in the list overrules the setting of the previous ones in the # list). For an example see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_EXTRA_STYLESHEET = "@TOP_SRCDIR@/doc/libinsane_doxygen.css" # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note # that these files will be copied to the base HTML output directory. Use the # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these # files. In the HTML_STYLESHEET file, use the file name only. Also note that the # files will be copied as-is; there are no commands or markers available. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen # will adjust the colors in the style sheet and background images according to # this color. Hue is specified as an angle on a colorwheel, see # http://en.wikipedia.org/wiki/Hue for more information. For instance the value # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 # purple, and 360 is red again. # Minimum value: 0, maximum value: 359, default value: 220. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors # in the HTML output. For a value of 0 the output will use grayscales only. A # value of 255 will produce the most vivid colors. # Minimum value: 0, maximum value: 255, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_SAT = 100 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the # luminance component of the colors in the HTML output. Values below 100 # gradually make the output lighter, whereas values above 100 make the output # darker. The value divided by 100 is the actual gamma applied, so 80 represents # a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not # change the gamma. # Minimum value: 40, maximum value: 240, default value: 80. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting this # to YES can help to show when doxygen was last run and thus if the # documentation is up to date. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_TIMESTAMP = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_DYNAMIC_SECTIONS = NO # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries # shown in the various tree structured indices initially; the user can expand # and collapse entries dynamically later on. Doxygen will expand the tree to # such a level that at most the specified number of entries are visible (unless # a fully collapsed tree already exceeds this amount). So setting the number of # entries 1 will produce a full collapsed tree by default. 0 is a special value # representing an infinite number of entries and will result in a full expanded # tree by default. # Minimum value: 0, maximum value: 9999, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_INDEX_NUM_ENTRIES = 100 # If the GENERATE_DOCSET tag is set to YES, additional index files will be # generated that can be used as input for Apple's Xcode 3 integrated development # environment (see: http://developer.apple.com/tools/xcode/), introduced with # OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a # Makefile in the HTML output directory. Running make will produce the docset in # that directory and running make install will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at # startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html # for more information. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_DOCSET = NO # This tag determines the name of the docset feed. A documentation feed provides # an umbrella under which multiple documentation sets from a single provider # (such as a company or product suite) can be grouped. # The default value is: Doxygen generated docs. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_FEEDNAME = "Doxygen generated docs" # This tag specifies a string that should uniquely identify the documentation # set bundle. This should be a reverse domain-name style string, e.g. # com.mycompany.MyDocSet. Doxygen will append .docset to the name. # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_BUNDLE_ID = org.doxygen.Project # The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify # the documentation publisher. This should be a reverse domain-name style # string, e.g. com.mycompany.MyDocSet.documentation. # The default value is: org.doxygen.Publisher. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. # The default value is: Publisher. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three # additional HTML index files: index.hhp, index.hhc, and index.hhk. The # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop # (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on # Windows. # # The HTML Help Workshop contains a compiler that can convert all HTML output # generated by doxygen into a single compiled HTML file (.chm). Compiled HTML # files are now used as the Windows 98 help format, and will replace the old # Windows help format (.hlp) on all Windows platforms in the future. Compressed # HTML files also contain an index, a table of contents, and you can search for # words in the documentation. The HTML workshop also contains a viewer for # compressed HTML files. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_HTMLHELP = NO # The CHM_FILE tag can be used to specify the file name of the resulting .chm # file. You can add a path in front of the file if the result should not be # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. CHM_FILE = # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler (hhc.exe). If non-empty, # doxygen will try to run the HTML help compiler on the generated index.hhp. # The file has to be specified with full path. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. HHC_LOCATION = # The GENERATE_CHI flag controls if a separate .chi index file is generated # (YES) or that it should be included in the master .chm file (NO). # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. GENERATE_CHI = NO # The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) # and project file content. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. CHM_INDEX_ENCODING = # The BINARY_TOC flag controls whether a binary table of contents is generated # (YES) or a normal table of contents (NO) in the .chm file. Furthermore it # enables the Previous and Next buttons. # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members to # the table of contents of the HTML help documentation and to the tree view. # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that # can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help # (.qch) of the generated HTML documentation. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify # the file name of the resulting .qch file. The path specified is relative to # the HTML output folder. # This tag requires that the tag GENERATE_QHP is set to YES. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help # Project output. For more information please see Qt Help Project / Namespace # (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_QHP is set to YES. QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt # Help Project output. For more information please see Qt Help Project / Virtual # Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- # folders). # The default value is: doc. # This tag requires that the tag GENERATE_QHP is set to YES. QHP_VIRTUAL_FOLDER = doc # If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom # filter to add. For more information please see Qt Help Project / Custom # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- # filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_NAME = # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see Qt Help Project / Custom # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- # filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's filter section matches. Qt Help Project / Filter Attributes (see: # http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_SECT_FILTER_ATTRS = # The QHG_LOCATION tag can be used to specify the location of Qt's # qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the # generated .qhp file. # This tag requires that the tag GENERATE_QHP is set to YES. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be # generated, together with the HTML files, they form an Eclipse help plugin. To # install this plugin and make it available under the help contents menu in # Eclipse, the contents of the directory containing the HTML and XML files needs # to be copied into the plugins directory of eclipse. The name of the directory # within the plugins directory should be the same as the ECLIPSE_DOC_ID value. # After copying Eclipse needs to be restarted before the help appears. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_ECLIPSEHELP = NO # A unique identifier for the Eclipse help plugin. When installing the plugin # the directory name containing the HTML and XML files should also have this # name. Each documentation set should have its own identifier. # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. ECLIPSE_DOC_ID = org.doxygen.Project # If you want full control over the layout of the generated HTML pages it might # be necessary to disable the index and replace it with your own. The # DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top # of each HTML page. A value of NO enables the index and the value YES disables # it. Since the tabs in the index contain the same information as the navigation # tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. DISABLE_INDEX = NO # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. If the tag # value is set to YES, a side panel will be generated containing a tree-like # index structure (just like the one that is generated for HTML Help). For this # to work a browser that supports JavaScript, DHTML, CSS and frames is required # (i.e. any modern browser). Windows users are probably better off using the # HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can # further fine-tune the look of the index. As an example, the default style # sheet generated by doxygen has an example that shows how to put an image at # the root of the tree instead of the PROJECT_NAME. Since the tree basically has # the same information as the tab index, you could consider setting # DISABLE_INDEX to YES when enabling this option. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_TREEVIEW = NO # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that # doxygen will group on one line in the generated HTML documentation. # # Note that a value of 0 will completely suppress the enum values from appearing # in the overview section. # Minimum value: 0, maximum value: 20, default value: 4. # This tag requires that the tag GENERATE_HTML is set to YES. ENUM_VALUES_PER_LINE = 4 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used # to set the initial width (in pixels) of the frame in which the tree is shown. # Minimum value: 0, maximum value: 1500, default value: 250. # This tag requires that the tag GENERATE_HTML is set to YES. TREEVIEW_WIDTH = 250 # If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to # external symbols imported via tag files in a separate window. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. EXT_LINKS_IN_WINDOW = NO # Use this tag to change the font size of LaTeX formulas included as images in # the HTML documentation. When you change the font size after a successful # doxygen run you need to manually remove any form_*.png images from the HTML # output directory to force them to be regenerated. # Minimum value: 8, maximum value: 50, default value: 10. # This tag requires that the tag GENERATE_HTML is set to YES. FORMULA_FONTSIZE = 10 # Use the FORMULA_TRANPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are not # supported properly for IE 6.0, but are supported on all modern browsers. # # Note that when changing this option you need to delete any form_*.png files in # the HTML output directory before the changes have effect. # The default value is: YES. # This tag requires that the tag GENERATE_HTML is set to YES. FORMULA_TRANSPARENT = YES # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see # http://www.mathjax.org) which uses client side Javascript for the rendering # instead of using pre-rendered bitmaps. Use this if you do not have LaTeX # installed or if you want to formulas look prettier in the HTML output. When # enabled you may also need to install MathJax separately and configure the path # to it using the MATHJAX_RELPATH option. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. USE_MATHJAX = NO # When MathJax is enabled you can set the default output format to be used for # the MathJax output. See the MathJax site (see: # http://docs.mathjax.org/en/latest/output.html) for more details. # Possible values are: HTML-CSS (which is slower, but has the best # compatibility), NativeMML (i.e. MathML) and SVG. # The default value is: HTML-CSS. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_FORMAT = HTML-CSS # When MathJax is enabled you need to specify the location relative to the HTML # output directory using the MATHJAX_RELPATH option. The destination directory # should contain the MathJax.js script. For instance, if the mathjax directory # is located at the same level as the HTML output directory, then # MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax # Content Delivery Network so you can quickly see the result without installing # MathJax. However, it is strongly recommended to install a local copy of # MathJax from http://www.mathjax.org before deployment. # The default value is: http://cdn.mathjax.org/mathjax/latest. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax # extension names that should be enabled during MathJax rendering. For example # MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_EXTENSIONS = # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces # of code that will be used on startup of the MathJax code. See the MathJax site # (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an # example see the documentation. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_CODEFILE = # When the SEARCHENGINE tag is enabled doxygen will generate a search box for # the HTML output. The underlying search engine uses javascript and DHTML and # should work on any modern browser. Note that when using HTML help # (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) # there is already a search function so this one should typically be disabled. # For large projects the javascript based search engine can be slow, then # enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to # search using the keyboard; to jump to the search box use + S # (what the is depends on the OS and browser, but it is typically # , /